ERC-721
Overview
Max Total Supply
52 CHTA
Holders
31
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 CHTALoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
ConchitaToken
Compiler Version
v0.8.0+commit.c7dfd78e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-02-01 */ // SPDX-License-Identifier: MIT /// @title ConchitaQueen pragma solidity ^0.8.0; 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); } } abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } 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); } } } } 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() { _setOwner(_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 { _setOwner(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"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } 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); } 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); } abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } 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; } 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); } contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //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); } /** * @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); } /** * @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 of token that is not own"); 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); } /** * @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 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 {} } interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } } contract ConchitaToken is IERC721, Ownable, ERC721Enumerable { using Strings for uint256; string public baseURI; string public baseExtension = ".json"; uint256 private _reserved = 150; uint256 public PRICE = 0.03 ether; uint256 public constant MAX_SUPPLY = 10000; uint256 public MAX_PUBLIC_MINT = 10; uint8 public constant MAX_WHITELIST_MINT = 20; bool public saleIsActive = false; bool public onlyWhitelisted = true; mapping(address => uint8) private _whiteList; address public constant t1 = 0xeb274e92143E2cbc599e57Ee083C7a590734dF6F; address public constant t2 = 0x2E14Ffddbb0D5Ef3304eBeda88a5edcDc19A0CbA; constructor( string memory _initBaseURI ) ERC721("ConchitaQueen", "CHTA") { setBaseURI(_initBaseURI); } // internal function flipSaleState() public onlyOwner { saleIsActive = !saleIsActive; } // Mint function mint(uint256 _mintAmount) public payable { uint256 supply = totalSupply(); require(saleIsActive, "Mint not active"); require(_mintAmount > 0, "Need to mint at least 1 NFT"); require(_mintAmount <= MAX_PUBLIC_MINT, "Exceed max tokens"); require(supply + _mintAmount <= MAX_SUPPLY - _reserved, "Not enough Tokens left."); require(PRICE * _mintAmount <= msg.value, "Value below price"); // TokenId starts at 1 for (uint8 i = 1; i <= _mintAmount; i++) { _safeMint(msg.sender, supply + i); } } function mintWhitelist(uint8 _mintAmount) external payable { uint256 supply = totalSupply(); require(onlyWhitelisted, "Whitelist inactive"); require(_whiteList[msg.sender] <= MAX_WHITELIST_MINT, "Exceeds max tokens"); require(supply + _mintAmount <= MAX_SUPPLY - _reserved, "Exceeds supply"); require(PRICE * _mintAmount <= msg.value, "Value below price"); _whiteList[msg.sender] -= _mintAmount; // TokenId starts at 1 for (uint8 i = 1; i <= _mintAmount; i++) { _safeMint(msg.sender, supply + i); } } function claimReserved(uint256 _number, address _receiver) external onlyOwner { require(_number <= _reserved, "That would exceed the max reserved."); uint256 _tokenId = totalSupply(); for (uint256 i = 1; i <= _number; i++) { _safeMint(_receiver, _tokenId + i); } _reserved = _reserved - _number; } // Wallet function walletOfOwner(address _owner) public view returns (uint256[] memory) { uint256 ownerTokenCount = balanceOf(_owner); uint256[] memory tokenIds = new uint256[](ownerTokenCount); for (uint256 i; i < ownerTokenCount; i++) { tokenIds[i] = tokenOfOwnerByIndex(_owner, i); } return tokenIds; } // General function getReservedLeft() public view returns (uint256) { return _reserved; } function setPrice(uint256 _newCost) public onlyOwner() { PRICE = _newCost; } // Url function _baseURI() internal view virtual override returns (string memory) { return baseURI; } function setBaseURI(string memory _newBaseURI) public onlyOwner { baseURI = _newBaseURI; } function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, tokenId.toString(), baseExtension)) : ""; } // WhiteList function setWhitelist(address[] calldata addresses) external onlyOwner { require(addresses.length <= 2000); for (uint256 i = 0; i < addresses.length; i++) { _whiteList[addresses[i]] = MAX_WHITELIST_MINT; } } function numAvailableToMint(address addr) external view returns (uint8) { return _whiteList[addr]; } /// Sends balance of this contract to owner function withdrawAll() public payable onlyOwner { uint256 _each = address(this).balance / 2; require(payable(t1).send(_each)); require(payable(t2).send(_each)); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_initBaseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_PUBLIC_MINT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_WHITELIST_MINT","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_number","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"claimReserved","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSaleState","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getReservedLeft","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint8","name":"_mintAmount","type":"uint8"}],"name":"mintWhitelist","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"numAvailableToMint","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"onlyWhitelisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setPrice","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":[],"name":"t1","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"t2","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"payable","type":"function"}]
Contract Creation Code
60c06040526005608081905264173539b7b760d91b60a09081526200002891600c9190620001eb565b506096600d55666a94d74f430000600e55600a600f556010805461ffff19166101001790553480156200005a57600080fd5b5060405162002ed738038062002ed78339810160408190526200007d9162000291565b6040518060400160405280600d81526020016c21b7b731b434ba30a8bab2b2b760991b815250604051806040016040528060048152602001634348544160e01b815250620000da620000d46200012060201b60201c565b62000124565b8151620000ef906001906020850190620001eb565b50805162000105906002906020840190620001eb565b50505062000119816200017460201b60201c565b50620003e8565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6200017e62000120565b6001600160a01b031662000191620001dc565b6001600160a01b031614620001c35760405162461bcd60e51b8152600401620001ba9062000360565b60405180910390fd5b8051620001d890600b906020840190620001eb565b5050565b6000546001600160a01b031690565b828054620001f99062000395565b90600052602060002090601f0160209004810192826200021d576000855562000268565b82601f106200023857805160ff191683800117855562000268565b8280016001018555821562000268579182015b82811115620002685782518255916020019190600101906200024b565b50620002769291506200027a565b5090565b5b808211156200027657600081556001016200027b565b60006020808385031215620002a4578182fd5b82516001600160401b0380821115620002bb578384fd5b818501915085601f830112620002cf578384fd5b815181811115620002e457620002e4620003d2565b604051601f8201601f19168101850183811182821017156200030a576200030a620003d2565b604052818152838201850188101562000321578586fd5b8592505b8183101562000344578383018501518184018601529184019162000325565b818311156200035557858583830101525b979650505050505050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600281046001821680620003aa57607f821691505b60208210811415620003cc57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b612adf80620003f86000396000f3fe60806040526004361061023b5760003560e01c80638d859f3e1161012e578063c04a2836116100ab578063e985e9c51161006f578063e985e9c514610622578063eb8d244414610642578063f2fde38b14610657578063f421764814610677578063fb5343f3146106975761023b565b8063c04a283614610596578063c08dfd3c146105c3578063c6682862146105d8578063c87b56dd146105ed578063daa023aa1461060d5761023b565b8063a0712d68116100f2578063a0712d681461050e578063a22cb46514610521578063b0e1d7f314610541578063b88d4fde14610561578063baf2f868146105815761023b565b80638d859f3e1461049a5780638da5cb5b146104af57806391b7f5ed146104c457806395d89b41146104e45780639c70b512146104f95761023b565b806342842e0e116101bc57806365f130971161018057806365f13097146104335780636c0360eb1461044857806370a082311461045d578063715018a61461047d578063853828b6146104925761023b565b806342842e0e14610386578063438b6300146103a65780634f6ccce7146103d357806355f804b3146103f35780636352211e146104135761023b565b806323b872dd1161020357806323b872dd1461030957806324ec277c146103295780632f745c591461033c57806332cb6b0c1461035c57806334918dfd146103715761023b565b806301ffc9a71461024057806306fdde0314610276578063081812fc14610298578063095ea7b3146102c557806318160ddd146102e7575b600080fd5b34801561024c57600080fd5b5061026061025b366004611fcc565b6106ac565b60405161026d9190612228565b60405180910390f35b34801561028257600080fd5b5061028b6106d9565b60405161026d9190612233565b3480156102a457600080fd5b506102b86102b336600461204a565b61076b565b60405161026d9190612193565b3480156102d157600080fd5b506102e56102e0366004611f34565b6107b7565b005b3480156102f357600080fd5b506102fc61084f565b60405161026d91906128f3565b34801561031557600080fd5b506102e5610324366004611e46565b610855565b6102e5610337366004612084565b61088d565b34801561034857600080fd5b506102fc610357366004611f34565b6109d6565b34801561036857600080fd5b506102fc610a28565b34801561037d57600080fd5b506102e5610a2e565b34801561039257600080fd5b506102e56103a1366004611e46565b610a81565b3480156103b257600080fd5b506103c66103c1366004611dfa565b610a9c565b60405161026d91906121e4565b3480156103df57600080fd5b506102fc6103ee36600461204a565b610b5a565b3480156103ff57600080fd5b506102e561040e366004612004565b610bb5565b34801561041f57600080fd5b506102b861042e36600461204a565b610c0b565b34801561043f57600080fd5b506102fc610c40565b34801561045457600080fd5b5061028b610c46565b34801561046957600080fd5b506102fc610478366004611dfa565b610cd4565b34801561048957600080fd5b506102e5610d18565b6102e5610d63565b3480156104a657600080fd5b506102fc610e27565b3480156104bb57600080fd5b506102b8610e2d565b3480156104d057600080fd5b506102e56104df36600461204a565b610e3c565b3480156104f057600080fd5b5061028b610e80565b34801561050557600080fd5b50610260610e8f565b6102e561051c36600461204a565b610e9d565b34801561052d57600080fd5b506102e561053c366004611efa565b610fa2565b34801561054d57600080fd5b506102e561055c366004612062565b611070565b34801561056d57600080fd5b506102e561057c366004611e81565b61111e565b34801561058d57600080fd5b506102b861115d565b3480156105a257600080fd5b506105b66105b1366004611dfa565b611175565b60405161026d91906128fc565b3480156105cf57600080fd5b506105b6611193565b3480156105e457600080fd5b5061028b611198565b3480156105f957600080fd5b5061028b61060836600461204a565b6111a5565b34801561061957600080fd5b506102fc61122b565b34801561062e57600080fd5b5061026061063d366004611e14565b611231565b34801561064e57600080fd5b5061026061125f565b34801561066357600080fd5b506102e5610672366004611dfa565b611268565b34801561068357600080fd5b506102e5610692366004611f5d565b6112d6565b3480156106a357600080fd5b506102b86113a7565b60006001600160e01b0319821663780e9d6360e01b14806106d157506106d1826113bf565b90505b919050565b6060600180546106e8906129c7565b80601f0160208091040260200160405190810160405280929190818152602001828054610714906129c7565b80156107615780601f1061073657610100808354040283529160200191610761565b820191906000526020600020905b81548152906001019060200180831161074457829003601f168201915b5050505050905090565b6000610776826113ff565b61079b5760405162461bcd60e51b8152600401610792906125f4565b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006107c282610c0b565b9050806001600160a01b0316836001600160a01b031614156107f65760405162461bcd60e51b81526004016107929061279b565b806001600160a01b031661080861141c565b6001600160a01b0316148061082457506108248161063d61141c565b6108405760405162461bcd60e51b8152600401610792906124cf565b61084a8383611420565b505050565b60095490565b61086661086061141c565b8261148e565b6108825760405162461bcd60e51b81526004016107929061281f565b61084a838383611513565b600061089761084f565b601054909150610100900460ff166108c15760405162461bcd60e51b8152600401610792906123dc565b33600090815260116020526040902054601460ff90911611156108f65760405162461bcd60e51b815260040161079290612675565b600d5461090590612710612961565b61091260ff841683612916565b11156109305760405162461bcd60e51b815260040161079290612246565b348260ff16600e546109429190612942565b11156109605760405162461bcd60e51b815260040161079290612770565b336000908152601160205260408120805484929061098290849060ff16612978565b92506101000a81548160ff021916908360ff1602179055506000600190505b8260ff168160ff161161084a576109c4336109bf60ff841685612916565b611640565b806109ce81612a1d565b9150506109a1565b60006109e183610cd4565b82106109ff5760405162461bcd60e51b815260040161079290612299565b506001600160a01b03919091166000908152600760209081526040808320938352929052205490565b61271081565b610a3661141c565b6001600160a01b0316610a47610e2d565b6001600160a01b031614610a6d5760405162461bcd60e51b815260040161079290612640565b6010805460ff19811660ff90911615179055565b61084a8383836040518060200160405280600081525061111e565b60606000610aa983610cd4565b905060008167ffffffffffffffff811115610ad457634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610afd578160200160208202803683370190505b50905060005b82811015610b5257610b1585826109d6565b828281518110610b3557634e487b7160e01b600052603260045260246000fd5b602090810291909101015280610b4a81612a02565b915050610b03565b509392505050565b6000610b6461084f565b8210610b825760405162461bcd60e51b815260040161079290612870565b60098281548110610ba357634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b610bbd61141c565b6001600160a01b0316610bce610e2d565b6001600160a01b031614610bf45760405162461bcd60e51b815260040161079290612640565b8051610c0790600b906020840190611cda565b5050565b6000818152600360205260408120546001600160a01b0316806106d15760405162461bcd60e51b815260040161079290612576565b600f5481565b600b8054610c53906129c7565b80601f0160208091040260200160405190810160405280929190818152602001828054610c7f906129c7565b8015610ccc5780601f10610ca157610100808354040283529160200191610ccc565b820191906000526020600020905b815481529060010190602001808311610caf57829003601f168201915b505050505081565b60006001600160a01b038216610cfc5760405162461bcd60e51b81526004016107929061252c565b506001600160a01b031660009081526004602052604090205490565b610d2061141c565b6001600160a01b0316610d31610e2d565b6001600160a01b031614610d575760405162461bcd60e51b815260040161079290612640565b610d61600061165a565b565b610d6b61141c565b6001600160a01b0316610d7c610e2d565b6001600160a01b031614610da25760405162461bcd60e51b815260040161079290612640565b6000610daf60024761292e565b60405190915073eb274e92143e2cbc599e57ee083c7a590734df6f9082156108fc029083906000818181858888f19350505050610deb57600080fd5b604051732e14ffddbb0d5ef3304ebeda88a5edcdc19a0cba9082156108fc029083906000818181858888f19350505050610e2457600080fd5b50565b600e5481565b6000546001600160a01b031690565b610e4461141c565b6001600160a01b0316610e55610e2d565b6001600160a01b031614610e7b5760405162461bcd60e51b815260040161079290612640565b600e55565b6060600280546106e8906129c7565b601054610100900460ff1681565b6000610ea761084f565b60105490915060ff16610ecc5760405162461bcd60e51b8152600401610792906123b3565b60008211610eec5760405162461bcd60e51b8152600401610792906128bc565b600f54821115610f0e5760405162461bcd60e51b81526004016107929061226e565b600d54610f1d90612710612961565b610f278383612916565b1115610f455760405162461bcd60e51b8152600401610792906126a1565b3482600e54610f549190612942565b1115610f725760405162461bcd60e51b815260040161079290612770565b60015b828160ff161161084a57610f90336109bf60ff841685612916565b80610f9a81612a1d565b915050610f75565b610faa61141c565b6001600160a01b0316826001600160a01b03161415610fdb5760405162461bcd60e51b81526004016107929061244c565b8060066000610fe861141c565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff19169215159290921790915561102c61141c565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516110649190612228565b60405180910390a35050565b61107861141c565b6001600160a01b0316611089610e2d565b6001600160a01b0316146110af5760405162461bcd60e51b815260040161079290612640565b600d548211156110d15760405162461bcd60e51b8152600401610792906127dc565b60006110db61084f565b905060015b838111611107576110f5836109bf8385612916565b806110ff81612a02565b9150506110e0565b5082600d546111169190612961565b600d55505050565b61112f61112961141c565b8361148e565b61114b5760405162461bcd60e51b81526004016107929061281f565b611157848484846116aa565b50505050565b732e14ffddbb0d5ef3304ebeda88a5edcdc19a0cba81565b6001600160a01b031660009081526011602052604090205460ff1690565b601481565b600c8054610c53906129c7565b60606111b0826113ff565b6111cc5760405162461bcd60e51b815260040161079290612721565b60006111d66116dd565b905060008151116111f65760405180602001604052806000815250611224565b80611200846116ec565b600c604051602001611214939291906120d1565b6040516020818303038152906040525b9392505050565b600d5490565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b60105460ff1681565b61127061141c565b6001600160a01b0316611281610e2d565b6001600160a01b0316146112a75760405162461bcd60e51b815260040161079290612640565b6001600160a01b0381166112cd5760405162461bcd60e51b815260040161079290612336565b610e248161165a565b6112de61141c565b6001600160a01b03166112ef610e2d565b6001600160a01b0316146113155760405162461bcd60e51b815260040161079290612640565b6107d081111561132457600080fd5b60005b8181101561084a5760146011600085858581811061135557634e487b7160e01b600052603260045260246000fd5b905060200201602081019061136a9190611dfa565b6001600160a01b031681526020810191909152604001600020805460ff191660ff929092169190911790558061139f81612a02565b915050611327565b73eb274e92143e2cbc599e57ee083c7a590734df6f81565b60006001600160e01b031982166380ac58cd60e01b14806113f057506001600160e01b03198216635b5e139f60e01b145b806106d157506106d182611807565b6000908152600360205260409020546001600160a01b0316151590565b3390565b600081815260056020526040902080546001600160a01b0319166001600160a01b038416908117909155819061145582610c0b565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611499826113ff565b6114b55760405162461bcd60e51b815260040161079290612483565b60006114c083610c0b565b9050806001600160a01b0316846001600160a01b031614806114fb5750836001600160a01b03166114f08461076b565b6001600160a01b0316145b8061150b575061150b8185611231565b949350505050565b826001600160a01b031661152682610c0b565b6001600160a01b03161461154c5760405162461bcd60e51b8152600401610792906126d8565b6001600160a01b0382166115725760405162461bcd60e51b815260040161079290612408565b61157d838383611820565b611588600082611420565b6001600160a01b03831660009081526004602052604081208054600192906115b1908490612961565b90915550506001600160a01b03821660009081526004602052604081208054600192906115df908490612916565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610c078282604051806020016040528060008152506118a9565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6116b5848484611513565b6116c1848484846118dc565b6111575760405162461bcd60e51b8152600401610792906122e4565b6060600b80546106e8906129c7565b60608161171157506040805180820190915260018152600360fc1b60208201526106d4565b8160005b811561173b578061172581612a02565b91506117349050600a8361292e565b9150611715565b60008167ffffffffffffffff81111561176457634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561178e576020820181803683370190505b5090505b841561150b576117a3600183612961565b91506117b0600a86612a3d565b6117bb906030612916565b60f81b8183815181106117de57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611800600a8661292e565b9450611792565b6001600160e01b031981166301ffc9a760e01b14919050565b61182b83838361084a565b6001600160a01b03831661184757611842816119f7565b61186a565b816001600160a01b0316836001600160a01b03161461186a5761186a8382611a3b565b6001600160a01b0382166118865761188181611ad8565b61084a565b826001600160a01b0316826001600160a01b03161461084a5761084a8282611bb1565b6118b38383611bf5565b6118c060008484846118dc565b61084a5760405162461bcd60e51b8152600401610792906122e4565b60006118f0846001600160a01b0316611cd4565b156119ec57836001600160a01b031663150b7a0261190c61141c565b8786866040518563ffffffff1660e01b815260040161192e94939291906121a7565b602060405180830381600087803b15801561194857600080fd5b505af1925050508015611978575060408051601f3d908101601f1916820190925261197591810190611fe8565b60015b6119d2573d8080156119a6576040519150601f19603f3d011682016040523d82523d6000602084013e6119ab565b606091505b5080516119ca5760405162461bcd60e51b8152600401610792906122e4565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061150b565b506001949350505050565b600980546000838152600a60205260408120829055600182018355919091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0155565b60006001611a4884610cd4565b611a529190612961565b600083815260086020526040902054909150808214611aa5576001600160a01b03841660009081526007602090815260408083208584528252808320548484528184208190558352600890915290208190555b5060009182526008602090815260408084208490556001600160a01b039094168352600781528383209183525290812055565b600954600090611aea90600190612961565b6000838152600a602052604081205460098054939450909284908110611b2057634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060098381548110611b4f57634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600a90915260408082208490558582528120556009805480611b9557634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000611bbc83610cd4565b6001600160a01b039093166000908152600760209081526040808320868452825280832085905593825260089052919091209190915550565b6001600160a01b038216611c1b5760405162461bcd60e51b8152600401610792906125bf565b611c24816113ff565b15611c415760405162461bcd60e51b81526004016107929061237c565b611c4d60008383611820565b6001600160a01b0382166000908152600460205260408120805460019290611c76908490612916565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b3b151590565b828054611ce6906129c7565b90600052602060002090601f016020900481019282611d085760008555611d4e565b82601f10611d2157805160ff1916838001178555611d4e565b82800160010185558215611d4e579182015b82811115611d4e578251825591602001919060010190611d33565b50611d5a929150611d5e565b5090565b5b80821115611d5a5760008155600101611d5f565b600067ffffffffffffffff80841115611d8e57611d8e612a7d565b604051601f8501601f191681016020018281118282101715611db257611db2612a7d565b604052848152915081838501861015611dca57600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b03811681146106d457600080fd5b600060208284031215611e0b578081fd5b61122482611de3565b60008060408385031215611e26578081fd5b611e2f83611de3565b9150611e3d60208401611de3565b90509250929050565b600080600060608486031215611e5a578081fd5b611e6384611de3565b9250611e7160208501611de3565b9150604084013590509250925092565b60008060008060808587031215611e96578081fd5b611e9f85611de3565b9350611ead60208601611de3565b925060408501359150606085013567ffffffffffffffff811115611ecf578182fd5b8501601f81018713611edf578182fd5b611eee87823560208401611d73565b91505092959194509250565b60008060408385031215611f0c578182fd5b611f1583611de3565b915060208301358015158114611f29578182fd5b809150509250929050565b60008060408385031215611f46578182fd5b611f4f83611de3565b946020939093013593505050565b60008060208385031215611f6f578182fd5b823567ffffffffffffffff80821115611f86578384fd5b818501915085601f830112611f99578384fd5b813581811115611fa7578485fd5b8660208083028501011115611fba578485fd5b60209290920196919550909350505050565b600060208284031215611fdd578081fd5b813561122481612a93565b600060208284031215611ff9578081fd5b815161122481612a93565b600060208284031215612015578081fd5b813567ffffffffffffffff81111561202b578182fd5b8201601f8101841361203b578182fd5b61150b84823560208401611d73565b60006020828403121561205b578081fd5b5035919050565b60008060408385031215612074578182fd5b82359150611e3d60208401611de3565b600060208284031215612095578081fd5b813560ff81168114611224578182fd5b600081518084526120bd81602086016020860161299b565b601f01601f19169290920160200192915050565b6000845160206120e48285838a0161299b565b8551918401916120f78184848a0161299b565b855492019183906002810460018083168061211357607f831692505b85831081141561213157634e487b7160e01b88526022600452602488fd5b808015612145576001811461215657612182565b60ff19851688528388019550612182565b61215f8b61290a565b895b8581101561217a5781548a820152908401908801612161565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0391909116815260200190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906121da908301846120a5565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561221c57835183529284019291840191600101612200565b50909695505050505050565b901515815260200190565b60006020825261122460208301846120a5565b6020808252600e908201526d4578636565647320737570706c7960901b604082015260600190565b602080825260119082015270457863656564206d617820746f6b656e7360781b604082015260600190565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b6020808252600f908201526e4d696e74206e6f742061637469766560881b604082015260600190565b60208082526012908201527157686974656c69737420696e61637469766560701b604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526012908201527145786365656473206d617820746f6b656e7360701b604082015260600190565b60208082526017908201527f4e6f7420656e6f75676820546f6b656e73206c6566742e000000000000000000604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526011908201527056616c75652062656c6f7720707269636560781b604082015260600190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526023908201527f5468617420776f756c642065786365656420746865206d61782072657365727660408201526232b21760e91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b6020808252601b908201527f4e65656420746f206d696e74206174206c656173742031204e46540000000000604082015260600190565b90815260200190565b60ff91909116815260200190565b60009081526020902090565b6000821982111561292957612929612a51565b500190565b60008261293d5761293d612a67565b500490565b600081600019048311821515161561295c5761295c612a51565b500290565b60008282101561297357612973612a51565b500390565b600060ff821660ff84168082101561299257612992612a51565b90039392505050565b60005b838110156129b657818101518382015260200161299e565b838111156111575750506000910152565b6002810460018216806129db57607f821691505b602082108114156129fc57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612a1657612a16612a51565b5060010190565b600060ff821660ff811415612a3457612a34612a51565b60010192915050565b600082612a4c57612a4c612a67565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610e2457600080fdfea26469706673582212203d0608136a664ec6a6e70a136c64da37aa4dbd5743b47147c9714b876d2cc60f64736f6c6343000800003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5034446b7459703869424543394a346b4a55525347364d724736423477647333797a56676e55694b4a6139692f00000000000000000000
Deployed Bytecode
0x60806040526004361061023b5760003560e01c80638d859f3e1161012e578063c04a2836116100ab578063e985e9c51161006f578063e985e9c514610622578063eb8d244414610642578063f2fde38b14610657578063f421764814610677578063fb5343f3146106975761023b565b8063c04a283614610596578063c08dfd3c146105c3578063c6682862146105d8578063c87b56dd146105ed578063daa023aa1461060d5761023b565b8063a0712d68116100f2578063a0712d681461050e578063a22cb46514610521578063b0e1d7f314610541578063b88d4fde14610561578063baf2f868146105815761023b565b80638d859f3e1461049a5780638da5cb5b146104af57806391b7f5ed146104c457806395d89b41146104e45780639c70b512146104f95761023b565b806342842e0e116101bc57806365f130971161018057806365f13097146104335780636c0360eb1461044857806370a082311461045d578063715018a61461047d578063853828b6146104925761023b565b806342842e0e14610386578063438b6300146103a65780634f6ccce7146103d357806355f804b3146103f35780636352211e146104135761023b565b806323b872dd1161020357806323b872dd1461030957806324ec277c146103295780632f745c591461033c57806332cb6b0c1461035c57806334918dfd146103715761023b565b806301ffc9a71461024057806306fdde0314610276578063081812fc14610298578063095ea7b3146102c557806318160ddd146102e7575b600080fd5b34801561024c57600080fd5b5061026061025b366004611fcc565b6106ac565b60405161026d9190612228565b60405180910390f35b34801561028257600080fd5b5061028b6106d9565b60405161026d9190612233565b3480156102a457600080fd5b506102b86102b336600461204a565b61076b565b60405161026d9190612193565b3480156102d157600080fd5b506102e56102e0366004611f34565b6107b7565b005b3480156102f357600080fd5b506102fc61084f565b60405161026d91906128f3565b34801561031557600080fd5b506102e5610324366004611e46565b610855565b6102e5610337366004612084565b61088d565b34801561034857600080fd5b506102fc610357366004611f34565b6109d6565b34801561036857600080fd5b506102fc610a28565b34801561037d57600080fd5b506102e5610a2e565b34801561039257600080fd5b506102e56103a1366004611e46565b610a81565b3480156103b257600080fd5b506103c66103c1366004611dfa565b610a9c565b60405161026d91906121e4565b3480156103df57600080fd5b506102fc6103ee36600461204a565b610b5a565b3480156103ff57600080fd5b506102e561040e366004612004565b610bb5565b34801561041f57600080fd5b506102b861042e36600461204a565b610c0b565b34801561043f57600080fd5b506102fc610c40565b34801561045457600080fd5b5061028b610c46565b34801561046957600080fd5b506102fc610478366004611dfa565b610cd4565b34801561048957600080fd5b506102e5610d18565b6102e5610d63565b3480156104a657600080fd5b506102fc610e27565b3480156104bb57600080fd5b506102b8610e2d565b3480156104d057600080fd5b506102e56104df36600461204a565b610e3c565b3480156104f057600080fd5b5061028b610e80565b34801561050557600080fd5b50610260610e8f565b6102e561051c36600461204a565b610e9d565b34801561052d57600080fd5b506102e561053c366004611efa565b610fa2565b34801561054d57600080fd5b506102e561055c366004612062565b611070565b34801561056d57600080fd5b506102e561057c366004611e81565b61111e565b34801561058d57600080fd5b506102b861115d565b3480156105a257600080fd5b506105b66105b1366004611dfa565b611175565b60405161026d91906128fc565b3480156105cf57600080fd5b506105b6611193565b3480156105e457600080fd5b5061028b611198565b3480156105f957600080fd5b5061028b61060836600461204a565b6111a5565b34801561061957600080fd5b506102fc61122b565b34801561062e57600080fd5b5061026061063d366004611e14565b611231565b34801561064e57600080fd5b5061026061125f565b34801561066357600080fd5b506102e5610672366004611dfa565b611268565b34801561068357600080fd5b506102e5610692366004611f5d565b6112d6565b3480156106a357600080fd5b506102b86113a7565b60006001600160e01b0319821663780e9d6360e01b14806106d157506106d1826113bf565b90505b919050565b6060600180546106e8906129c7565b80601f0160208091040260200160405190810160405280929190818152602001828054610714906129c7565b80156107615780601f1061073657610100808354040283529160200191610761565b820191906000526020600020905b81548152906001019060200180831161074457829003601f168201915b5050505050905090565b6000610776826113ff565b61079b5760405162461bcd60e51b8152600401610792906125f4565b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006107c282610c0b565b9050806001600160a01b0316836001600160a01b031614156107f65760405162461bcd60e51b81526004016107929061279b565b806001600160a01b031661080861141c565b6001600160a01b0316148061082457506108248161063d61141c565b6108405760405162461bcd60e51b8152600401610792906124cf565b61084a8383611420565b505050565b60095490565b61086661086061141c565b8261148e565b6108825760405162461bcd60e51b81526004016107929061281f565b61084a838383611513565b600061089761084f565b601054909150610100900460ff166108c15760405162461bcd60e51b8152600401610792906123dc565b33600090815260116020526040902054601460ff90911611156108f65760405162461bcd60e51b815260040161079290612675565b600d5461090590612710612961565b61091260ff841683612916565b11156109305760405162461bcd60e51b815260040161079290612246565b348260ff16600e546109429190612942565b11156109605760405162461bcd60e51b815260040161079290612770565b336000908152601160205260408120805484929061098290849060ff16612978565b92506101000a81548160ff021916908360ff1602179055506000600190505b8260ff168160ff161161084a576109c4336109bf60ff841685612916565b611640565b806109ce81612a1d565b9150506109a1565b60006109e183610cd4565b82106109ff5760405162461bcd60e51b815260040161079290612299565b506001600160a01b03919091166000908152600760209081526040808320938352929052205490565b61271081565b610a3661141c565b6001600160a01b0316610a47610e2d565b6001600160a01b031614610a6d5760405162461bcd60e51b815260040161079290612640565b6010805460ff19811660ff90911615179055565b61084a8383836040518060200160405280600081525061111e565b60606000610aa983610cd4565b905060008167ffffffffffffffff811115610ad457634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610afd578160200160208202803683370190505b50905060005b82811015610b5257610b1585826109d6565b828281518110610b3557634e487b7160e01b600052603260045260246000fd5b602090810291909101015280610b4a81612a02565b915050610b03565b509392505050565b6000610b6461084f565b8210610b825760405162461bcd60e51b815260040161079290612870565b60098281548110610ba357634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b610bbd61141c565b6001600160a01b0316610bce610e2d565b6001600160a01b031614610bf45760405162461bcd60e51b815260040161079290612640565b8051610c0790600b906020840190611cda565b5050565b6000818152600360205260408120546001600160a01b0316806106d15760405162461bcd60e51b815260040161079290612576565b600f5481565b600b8054610c53906129c7565b80601f0160208091040260200160405190810160405280929190818152602001828054610c7f906129c7565b8015610ccc5780601f10610ca157610100808354040283529160200191610ccc565b820191906000526020600020905b815481529060010190602001808311610caf57829003601f168201915b505050505081565b60006001600160a01b038216610cfc5760405162461bcd60e51b81526004016107929061252c565b506001600160a01b031660009081526004602052604090205490565b610d2061141c565b6001600160a01b0316610d31610e2d565b6001600160a01b031614610d575760405162461bcd60e51b815260040161079290612640565b610d61600061165a565b565b610d6b61141c565b6001600160a01b0316610d7c610e2d565b6001600160a01b031614610da25760405162461bcd60e51b815260040161079290612640565b6000610daf60024761292e565b60405190915073eb274e92143e2cbc599e57ee083c7a590734df6f9082156108fc029083906000818181858888f19350505050610deb57600080fd5b604051732e14ffddbb0d5ef3304ebeda88a5edcdc19a0cba9082156108fc029083906000818181858888f19350505050610e2457600080fd5b50565b600e5481565b6000546001600160a01b031690565b610e4461141c565b6001600160a01b0316610e55610e2d565b6001600160a01b031614610e7b5760405162461bcd60e51b815260040161079290612640565b600e55565b6060600280546106e8906129c7565b601054610100900460ff1681565b6000610ea761084f565b60105490915060ff16610ecc5760405162461bcd60e51b8152600401610792906123b3565b60008211610eec5760405162461bcd60e51b8152600401610792906128bc565b600f54821115610f0e5760405162461bcd60e51b81526004016107929061226e565b600d54610f1d90612710612961565b610f278383612916565b1115610f455760405162461bcd60e51b8152600401610792906126a1565b3482600e54610f549190612942565b1115610f725760405162461bcd60e51b815260040161079290612770565b60015b828160ff161161084a57610f90336109bf60ff841685612916565b80610f9a81612a1d565b915050610f75565b610faa61141c565b6001600160a01b0316826001600160a01b03161415610fdb5760405162461bcd60e51b81526004016107929061244c565b8060066000610fe861141c565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff19169215159290921790915561102c61141c565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516110649190612228565b60405180910390a35050565b61107861141c565b6001600160a01b0316611089610e2d565b6001600160a01b0316146110af5760405162461bcd60e51b815260040161079290612640565b600d548211156110d15760405162461bcd60e51b8152600401610792906127dc565b60006110db61084f565b905060015b838111611107576110f5836109bf8385612916565b806110ff81612a02565b9150506110e0565b5082600d546111169190612961565b600d55505050565b61112f61112961141c565b8361148e565b61114b5760405162461bcd60e51b81526004016107929061281f565b611157848484846116aa565b50505050565b732e14ffddbb0d5ef3304ebeda88a5edcdc19a0cba81565b6001600160a01b031660009081526011602052604090205460ff1690565b601481565b600c8054610c53906129c7565b60606111b0826113ff565b6111cc5760405162461bcd60e51b815260040161079290612721565b60006111d66116dd565b905060008151116111f65760405180602001604052806000815250611224565b80611200846116ec565b600c604051602001611214939291906120d1565b6040516020818303038152906040525b9392505050565b600d5490565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b60105460ff1681565b61127061141c565b6001600160a01b0316611281610e2d565b6001600160a01b0316146112a75760405162461bcd60e51b815260040161079290612640565b6001600160a01b0381166112cd5760405162461bcd60e51b815260040161079290612336565b610e248161165a565b6112de61141c565b6001600160a01b03166112ef610e2d565b6001600160a01b0316146113155760405162461bcd60e51b815260040161079290612640565b6107d081111561132457600080fd5b60005b8181101561084a5760146011600085858581811061135557634e487b7160e01b600052603260045260246000fd5b905060200201602081019061136a9190611dfa565b6001600160a01b031681526020810191909152604001600020805460ff191660ff929092169190911790558061139f81612a02565b915050611327565b73eb274e92143e2cbc599e57ee083c7a590734df6f81565b60006001600160e01b031982166380ac58cd60e01b14806113f057506001600160e01b03198216635b5e139f60e01b145b806106d157506106d182611807565b6000908152600360205260409020546001600160a01b0316151590565b3390565b600081815260056020526040902080546001600160a01b0319166001600160a01b038416908117909155819061145582610c0b565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611499826113ff565b6114b55760405162461bcd60e51b815260040161079290612483565b60006114c083610c0b565b9050806001600160a01b0316846001600160a01b031614806114fb5750836001600160a01b03166114f08461076b565b6001600160a01b0316145b8061150b575061150b8185611231565b949350505050565b826001600160a01b031661152682610c0b565b6001600160a01b03161461154c5760405162461bcd60e51b8152600401610792906126d8565b6001600160a01b0382166115725760405162461bcd60e51b815260040161079290612408565b61157d838383611820565b611588600082611420565b6001600160a01b03831660009081526004602052604081208054600192906115b1908490612961565b90915550506001600160a01b03821660009081526004602052604081208054600192906115df908490612916565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b610c078282604051806020016040528060008152506118a9565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6116b5848484611513565b6116c1848484846118dc565b6111575760405162461bcd60e51b8152600401610792906122e4565b6060600b80546106e8906129c7565b60608161171157506040805180820190915260018152600360fc1b60208201526106d4565b8160005b811561173b578061172581612a02565b91506117349050600a8361292e565b9150611715565b60008167ffffffffffffffff81111561176457634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561178e576020820181803683370190505b5090505b841561150b576117a3600183612961565b91506117b0600a86612a3d565b6117bb906030612916565b60f81b8183815181106117de57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611800600a8661292e565b9450611792565b6001600160e01b031981166301ffc9a760e01b14919050565b61182b83838361084a565b6001600160a01b03831661184757611842816119f7565b61186a565b816001600160a01b0316836001600160a01b03161461186a5761186a8382611a3b565b6001600160a01b0382166118865761188181611ad8565b61084a565b826001600160a01b0316826001600160a01b03161461084a5761084a8282611bb1565b6118b38383611bf5565b6118c060008484846118dc565b61084a5760405162461bcd60e51b8152600401610792906122e4565b60006118f0846001600160a01b0316611cd4565b156119ec57836001600160a01b031663150b7a0261190c61141c565b8786866040518563ffffffff1660e01b815260040161192e94939291906121a7565b602060405180830381600087803b15801561194857600080fd5b505af1925050508015611978575060408051601f3d908101601f1916820190925261197591810190611fe8565b60015b6119d2573d8080156119a6576040519150601f19603f3d011682016040523d82523d6000602084013e6119ab565b606091505b5080516119ca5760405162461bcd60e51b8152600401610792906122e4565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061150b565b506001949350505050565b600980546000838152600a60205260408120829055600182018355919091527f6e1540171b6c0c960b71a7020d9f60077f6af931a8bbf590da0223dacf75c7af0155565b60006001611a4884610cd4565b611a529190612961565b600083815260086020526040902054909150808214611aa5576001600160a01b03841660009081526007602090815260408083208584528252808320548484528184208190558352600890915290208190555b5060009182526008602090815260408084208490556001600160a01b039094168352600781528383209183525290812055565b600954600090611aea90600190612961565b6000838152600a602052604081205460098054939450909284908110611b2057634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060098381548110611b4f57634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600a90915260408082208490558582528120556009805480611b9557634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000611bbc83610cd4565b6001600160a01b039093166000908152600760209081526040808320868452825280832085905593825260089052919091209190915550565b6001600160a01b038216611c1b5760405162461bcd60e51b8152600401610792906125bf565b611c24816113ff565b15611c415760405162461bcd60e51b81526004016107929061237c565b611c4d60008383611820565b6001600160a01b0382166000908152600460205260408120805460019290611c76908490612916565b909155505060008181526003602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b3b151590565b828054611ce6906129c7565b90600052602060002090601f016020900481019282611d085760008555611d4e565b82601f10611d2157805160ff1916838001178555611d4e565b82800160010185558215611d4e579182015b82811115611d4e578251825591602001919060010190611d33565b50611d5a929150611d5e565b5090565b5b80821115611d5a5760008155600101611d5f565b600067ffffffffffffffff80841115611d8e57611d8e612a7d565b604051601f8501601f191681016020018281118282101715611db257611db2612a7d565b604052848152915081838501861015611dca57600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b03811681146106d457600080fd5b600060208284031215611e0b578081fd5b61122482611de3565b60008060408385031215611e26578081fd5b611e2f83611de3565b9150611e3d60208401611de3565b90509250929050565b600080600060608486031215611e5a578081fd5b611e6384611de3565b9250611e7160208501611de3565b9150604084013590509250925092565b60008060008060808587031215611e96578081fd5b611e9f85611de3565b9350611ead60208601611de3565b925060408501359150606085013567ffffffffffffffff811115611ecf578182fd5b8501601f81018713611edf578182fd5b611eee87823560208401611d73565b91505092959194509250565b60008060408385031215611f0c578182fd5b611f1583611de3565b915060208301358015158114611f29578182fd5b809150509250929050565b60008060408385031215611f46578182fd5b611f4f83611de3565b946020939093013593505050565b60008060208385031215611f6f578182fd5b823567ffffffffffffffff80821115611f86578384fd5b818501915085601f830112611f99578384fd5b813581811115611fa7578485fd5b8660208083028501011115611fba578485fd5b60209290920196919550909350505050565b600060208284031215611fdd578081fd5b813561122481612a93565b600060208284031215611ff9578081fd5b815161122481612a93565b600060208284031215612015578081fd5b813567ffffffffffffffff81111561202b578182fd5b8201601f8101841361203b578182fd5b61150b84823560208401611d73565b60006020828403121561205b578081fd5b5035919050565b60008060408385031215612074578182fd5b82359150611e3d60208401611de3565b600060208284031215612095578081fd5b813560ff81168114611224578182fd5b600081518084526120bd81602086016020860161299b565b601f01601f19169290920160200192915050565b6000845160206120e48285838a0161299b565b8551918401916120f78184848a0161299b565b855492019183906002810460018083168061211357607f831692505b85831081141561213157634e487b7160e01b88526022600452602488fd5b808015612145576001811461215657612182565b60ff19851688528388019550612182565b61215f8b61290a565b895b8581101561217a5781548a820152908401908801612161565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0391909116815260200190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906121da908301846120a5565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561221c57835183529284019291840191600101612200565b50909695505050505050565b901515815260200190565b60006020825261122460208301846120a5565b6020808252600e908201526d4578636565647320737570706c7960901b604082015260600190565b602080825260119082015270457863656564206d617820746f6b656e7360781b604082015260600190565b6020808252602b908201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560408201526a74206f6620626f756e647360a81b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b6020808252600f908201526e4d696e74206e6f742061637469766560881b604082015260600190565b60208082526012908201527157686974656c69737420696e61637469766560701b604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526012908201527145786365656473206d617820746f6b656e7360701b604082015260600190565b60208082526017908201527f4e6f7420656e6f75676820546f6b656e73206c6566742e000000000000000000604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b60208082526011908201527056616c75652062656c6f7720707269636560781b604082015260600190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526023908201527f5468617420776f756c642065786365656420746865206d61782072657365727660408201526232b21760e91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252602c908201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60408201526b7574206f6620626f756e647360a01b606082015260800190565b6020808252601b908201527f4e65656420746f206d696e74206174206c656173742031204e46540000000000604082015260600190565b90815260200190565b60ff91909116815260200190565b60009081526020902090565b6000821982111561292957612929612a51565b500190565b60008261293d5761293d612a67565b500490565b600081600019048311821515161561295c5761295c612a51565b500290565b60008282101561297357612973612a51565b500390565b600060ff821660ff84168082101561299257612992612a51565b90039392505050565b60005b838110156129b657818101518382015260200161299e565b838111156111575750506000910152565b6002810460018216806129db57607f821691505b602082108114156129fc57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612a1657612a16612a51565b5060010190565b600060ff821660ff811415612a3457612a34612a51565b60010192915050565b600082612a4c57612a4c612a67565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610e2457600080fdfea26469706673582212203d0608136a664ec6a6e70a136c64da37aa4dbd5743b47147c9714b876d2cc60f64736f6c63430008000033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5034446b7459703869424543394a346b4a55525347364d724736423477647333797a56676e55694b4a6139692f00000000000000000000
-----Decoded View---------------
Arg [0] : _initBaseURI (string): ipfs://QmP4DktYp8iBEC9J4kJURSG6MrG6B4wds3yzVgnUiKJa9i/
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [2] : 697066733a2f2f516d5034446b7459703869424543394a346b4a55525347364d
Arg [3] : 724736423477647333797a56676e55694b4a6139692f00000000000000000000
Deployed Bytecode Sourcemap
39034:4429:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32884:224;;;;;;;;;;-1:-1:-1;32884:224:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20362:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;21921:221::-;;;;;;;;;;-1:-1:-1;21921:221:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;21444:411::-;;;;;;;;;;-1:-1:-1;21444:411:0;;;;;:::i;:::-;;:::i;:::-;;33524:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;22811:339::-;;;;;;;;;;-1:-1:-1;22811:339:0;;;;;:::i;:::-;;:::i;40596:603::-;;;;;;:::i;:::-;;:::i;33192:256::-;;;;;;;;;;-1:-1:-1;33192:256:0;;;;;:::i;:::-;;:::i;39288:42::-;;;;;;;;;;;;;:::i;39882:89::-;;;;;;;;;;;;;:::i;23221:185::-;;;;;;;;;;-1:-1:-1;23221:185:0;;;;;:::i;:::-;;:::i;41590:359::-;;;;;;;;;;-1:-1:-1;41590:359:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;33714:233::-;;;;;;;;;;-1:-1:-1;33714:233:0;;;;;:::i;:::-;;:::i;42295:104::-;;;;;;;;;;-1:-1:-1;42295:104:0;;;;;:::i;:::-;;:::i;20056:239::-;;;;;;;;;;-1:-1:-1;20056:239:0;;;;;:::i;:::-;;:::i;39337:35::-;;;;;;;;;;;;;:::i;39136:21::-;;;;;;;;;;;;;:::i;19786:208::-;;;;;;;;;;-1:-1:-1;19786:208:0;;;;;:::i;:::-;;:::i;11273:94::-;;;;;;;;;;;;;:::i;43266:194::-;;;:::i;39246:33::-;;;;;;;;;;;;;:::i;10622:87::-;;;;;;;;;;;;;:::i;42071:90::-;;;;;;;;;;-1:-1:-1;42071:90:0;;;;;:::i;:::-;;:::i;20531:104::-;;;;;;;;;;;;;:::i;39474:34::-;;;;;;;;;;;;;:::i;39992:598::-;;;;;;:::i;:::-;;:::i;22214:295::-;;;;;;;;;;-1:-1:-1;22214:295:0;;;;;:::i;:::-;;:::i;41205:362::-;;;;;;;;;;-1:-1:-1;41205:362:0;;;;;:::i;:::-;;:::i;23477:328::-;;;;;;;;;;-1:-1:-1;23477:328:0;;;;;:::i;:::-;;:::i;39646:71::-;;;;;;;;;;;;;:::i;43095:114::-;;;;;;;;;;-1:-1:-1;43095:114:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;39379:45::-;;;;;;;;;;;;;:::i;39164:37::-;;;;;;;;;;;;;:::i;42405:406::-;;;;;;;;;;-1:-1:-1;42405:406:0;;;;;:::i;:::-;;:::i;41973:92::-;;;;;;;;;;;;;:::i;22580:164::-;;;;;;;;;;-1:-1:-1;22580:164:0;;;;;:::i;:::-;;:::i;39433:32::-;;;;;;;;;;;;;:::i;11522:192::-;;;;;;;;;;-1:-1:-1;11522:192:0;;;;;:::i;:::-;;:::i;42837:252::-;;;;;;;;;;-1:-1:-1;42837:252:0;;;;;:::i;:::-;;:::i;39568:71::-;;;;;;;;;;;;;:::i;32884:224::-;32986:4;-1:-1:-1;;;;;;33010:50:0;;-1:-1:-1;;;33010:50:0;;:90;;;33064:36;33088:11;33064:23;:36::i;:::-;33003:97;;32884:224;;;;:::o;20362:100::-;20416:13;20449:5;20442:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20362:100;:::o;21921:221::-;21997:7;22025:16;22033:7;22025;:16::i;:::-;22017:73;;;;-1:-1:-1;;;22017:73:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;22110:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;22110:24:0;;21921:221::o;21444:411::-;21525:13;21541:23;21556:7;21541:14;:23::i;:::-;21525:39;;21589:5;-1:-1:-1;;;;;21583:11:0;:2;-1:-1:-1;;;;;21583:11:0;;;21575:57;;;;-1:-1:-1;;;21575:57:0;;;;;;;:::i;:::-;21683:5;-1:-1:-1;;;;;21667:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;21667:21:0;;:62;;;;21692:37;21709:5;21716:12;:10;:12::i;21692:37::-;21645:168;;;;-1:-1:-1;;;21645:168:0;;;;;;;:::i;:::-;21826:21;21835:2;21839:7;21826:8;:21::i;:::-;21444:411;;;:::o;33524:113::-;33612:10;:17;33524:113;:::o;22811:339::-;23006:41;23025:12;:10;:12::i;:::-;23039:7;23006:18;:41::i;:::-;22998:103;;;;-1:-1:-1;;;22998:103:0;;;;;;;:::i;:::-;23114:28;23124:4;23130:2;23134:7;23114:9;:28::i;40596:603::-;40666:14;40683:13;:11;:13::i;:::-;40717:15;;40666:30;;-1:-1:-1;40717:15:0;;;;;40709:46;;;;-1:-1:-1;;;40709:46:0;;;;;;;:::i;:::-;40785:10;40774:22;;;;:10;:22;;;;;;39422:2;40774:44;:22;;;:44;;40766:75;;;;-1:-1:-1;;;40766:75:0;;;;;;;:::i;:::-;40897:9;;40884:22;;39325:5;40884:22;:::i;:::-;40860:20;;;;:6;:20;:::i;:::-;:46;;40852:73;;;;-1:-1:-1;;;40852:73:0;;;;;;;:::i;:::-;40967:9;40952:11;40944:19;;:5;;:19;;;;:::i;:::-;:32;;40936:62;;;;-1:-1:-1;;;40936:62:0;;;;;;;:::i;:::-;41022:10;41011:22;;;;:10;:22;;;;;:37;;41037:11;;41011:22;:37;;41037:11;;41011:37;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;41096:7;41106:1;41096:11;;41091:101;41114:11;41109:16;;:1;:16;;;41091:101;;41147:33;41157:10;41169;;;;:6;:10;:::i;:::-;41147:9;:33::i;:::-;41127:3;;;;:::i;:::-;;;;41091:101;;33192:256;33289:7;33325:23;33342:5;33325:16;:23::i;:::-;33317:5;:31;33309:87;;;;-1:-1:-1;;;33309:87:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;33414:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;33192:256::o;39288:42::-;39325:5;39288:42;:::o;39882:89::-;10853:12;:10;:12::i;:::-;-1:-1:-1;;;;;10842:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;10842:23:0;;10834:68;;;;-1:-1:-1;;;10834:68:0;;;;;;;:::i;:::-;39951:12:::1;::::0;;-1:-1:-1;;39935:28:0;::::1;39951:12;::::0;;::::1;39950:13;39935:28;::::0;;39882:89::o;23221:185::-;23359:39;23376:4;23382:2;23386:7;23359:39;;;;;;;;;;;;:16;:39::i;41590:359::-;41651:16;41680:23;41706:17;41716:6;41706:9;:17::i;:::-;41680:43;;41734:25;41776:15;41762:30;;;;;;-1:-1:-1;;;41762:30:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;41762:30:0;;41734:58;;41808:9;41803:113;41823:15;41819:1;:19;41803:113;;;41874:30;41894:6;41902:1;41874:19;:30::i;:::-;41860:8;41869:1;41860:11;;;;;;-1:-1:-1;;;41860:11:0;;;;;;;;;;;;;;;;;;:44;41840:3;;;;:::i;:::-;;;;41803:113;;;-1:-1:-1;41933:8:0;41590:359;-1:-1:-1;;;41590:359:0:o;33714:233::-;33789:7;33825:30;:28;:30::i;:::-;33817:5;:38;33809:95;;;;-1:-1:-1;;;33809:95:0;;;;;;;:::i;:::-;33922:10;33933:5;33922:17;;;;;;-1:-1:-1;;;33922:17:0;;;;;;;;;;;;;;;;;33915:24;;33714:233;;;:::o;42295:104::-;10853:12;:10;:12::i;:::-;-1:-1:-1;;;;;10842:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;10842:23:0;;10834:68;;;;-1:-1:-1;;;10834:68:0;;;;;;;:::i;:::-;42370:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;42295:104:::0;:::o;20056:239::-;20128:7;20164:16;;;:7;:16;;;;;;-1:-1:-1;;;;;20164:16:0;20199:19;20191:73;;;;-1:-1:-1;;;20191:73:0;;;;;;;:::i;39337:35::-;;;;:::o;39136:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;19786:208::-;19858:7;-1:-1:-1;;;;;19886:19:0;;19878:74;;;;-1:-1:-1;;;19878:74:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;19970:16:0;;;;;:9;:16;;;;;;;19786:208::o;11273:94::-;10853:12;:10;:12::i;:::-;-1:-1:-1;;;;;10842:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;10842:23:0;;10834:68;;;;-1:-1:-1;;;10834:68:0;;;;;;;:::i;:::-;11338:21:::1;11356:1;11338:9;:21::i;:::-;11273:94::o:0;43266:194::-;10853:12;:10;:12::i;:::-;-1:-1:-1;;;;;10842:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;10842:23:0;;10834:68;;;;-1:-1:-1;;;10834:68:0;;;;;;;:::i;:::-;43325:13:::1;43341:25;43365:1;43341:21;:25;:::i;:::-;43385:23;::::0;43325:41;;-1:-1:-1;39597:42:0::1;::::0;43385:23;::::1;;;::::0;43325:41;;43385:23:::1;::::0;;;43325:41;39597:42;43385:23;::::1;;;;;;43377:32;;;::::0;::::1;;43428:23;::::0;39675:42:::1;::::0;43428:23;::::1;;;::::0;43445:5;;43428:23:::1;::::0;;;43445:5;39675:42;43428:23;::::1;;;;;;43420:32;;;::::0;::::1;;10913:1;43266:194::o:0;39246:33::-;;;;:::o;10622:87::-;10668:7;10695:6;-1:-1:-1;;;;;10695:6:0;10622:87;:::o;42071:90::-;10853:12;:10;:12::i;:::-;-1:-1:-1;;;;;10842:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;10842:23:0;;10834:68;;;;-1:-1:-1;;;10834:68:0;;;;;;;:::i;:::-;42137:5:::1;:16:::0;42071:90::o;20531:104::-;20587:13;20620:7;20613:14;;;;;:::i;39474:34::-;;;;;;;;;:::o;39992:598::-;40053:14;40070:13;:11;:13::i;:::-;40102:12;;40053:30;;-1:-1:-1;40102:12:0;;40094:40;;;;-1:-1:-1;;;40094:40:0;;;;;;;:::i;:::-;40167:1;40153:11;:15;40145:55;;;;-1:-1:-1;;;40145:55:0;;;;;;;:::i;:::-;40234:15;;40219:11;:30;;40211:60;;;;-1:-1:-1;;;40211:60:0;;;;;;;:::i;:::-;40327:9;;40314:22;;39325:5;40314:22;:::i;:::-;40290:20;40299:11;40290:6;:20;:::i;:::-;:46;;40282:82;;;;-1:-1:-1;;;40282:82:0;;;;;;;:::i;:::-;40406:9;40391:11;40383:5;;:19;;;;:::i;:::-;:32;;40375:62;;;;-1:-1:-1;;;40375:62:0;;;;;;;:::i;:::-;40497:1;40482:101;40505:11;40500:1;:16;;;40482:101;;40538:33;40548:10;40560;;;;:6;:10;:::i;40538:33::-;40518:3;;;;:::i;:::-;;;;40482:101;;22214:295;22329:12;:10;:12::i;:::-;-1:-1:-1;;;;;22317:24:0;:8;-1:-1:-1;;;;;22317:24:0;;;22309:62;;;;-1:-1:-1;;;22309:62:0;;;;;;;:::i;:::-;22429:8;22384:18;:32;22403:12;:10;:12::i;:::-;-1:-1:-1;;;;;22384:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;22384:32:0;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;22384:53:0;;;;;;;;;;;22468:12;:10;:12::i;:::-;-1:-1:-1;;;;;22453:48:0;;22492:8;22453:48;;;;;;:::i;:::-;;;;;;;;22214:295;;:::o;41205:362::-;10853:12;:10;:12::i;:::-;-1:-1:-1;;;;;10842:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;10842:23:0;;10834:68;;;;-1:-1:-1;;;10834:68:0;;;;;;;:::i;:::-;41313:9:::1;;41302:7;:20;;41294:68;;;;-1:-1:-1::0;;;41294:68:0::1;;;;;;;:::i;:::-;41375:16;41394:13;:11;:13::i;:::-;41375:32:::0;-1:-1:-1;41435:1:0::1;41418:100;41443:7;41438:1;:12;41418:100;;41472:34;41482:9:::0;41493:12:::1;41504:1:::0;41493:8;:12:::1;:::i;41472:34::-;41452:3:::0;::::1;::::0;::::1;:::i;:::-;;;;41418:100;;;;41552:7;41540:9;;:19;;;;:::i;:::-;41528:9;:31:::0;-1:-1:-1;;;41205:362:0:o;23477:328::-;23652:41;23671:12;:10;:12::i;:::-;23685:7;23652:18;:41::i;:::-;23644:103;;;;-1:-1:-1;;;23644:103:0;;;;;;;:::i;:::-;23758:39;23772:4;23778:2;23782:7;23791:5;23758:13;:39::i;:::-;23477:328;;;;:::o;39646:71::-;39675:42;39646:71;:::o;43095:114::-;-1:-1:-1;;;;;43185:16:0;43160:5;43185:16;;;:10;:16;;;;;;;;;43095:114::o;39379:45::-;39422:2;39379:45;:::o;39164:37::-;;;;;;;:::i;42405:406::-;42479:13;42527:16;42535:7;42527;:16::i;:::-;42505:113;;;;-1:-1:-1;;;42505:113:0;;;;;;;:::i;:::-;42629:28;42660:10;:8;:10::i;:::-;42629:41;;42719:1;42694:14;42688:28;:32;:115;;;;;;;;;;;;;;;;;42747:14;42763:18;:7;:16;:18::i;:::-;42783:13;42730:67;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;42688:115;42681:122;42405:406;-1:-1:-1;;;42405:406:0:o;41973:92::-;42048:9;;41973:92;:::o;22580:164::-;-1:-1:-1;;;;;22701:25:0;;;22677:4;22701:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;22580:164::o;39433:32::-;;;;;;:::o;11522:192::-;10853:12;:10;:12::i;:::-;-1:-1:-1;;;;;10842:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;10842:23:0;;10834:68;;;;-1:-1:-1;;;10834:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;11611:22:0;::::1;11603:73;;;;-1:-1:-1::0;;;11603:73:0::1;;;;;;;:::i;:::-;11687:19;11697:8;11687:9;:19::i;42837:252::-:0;10853:12;:10;:12::i;:::-;-1:-1:-1;;;;;10842:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;10842:23:0;;10834:68;;;;-1:-1:-1;;;10834:68:0;;;;;;;:::i;:::-;42947:4:::1;42927:24:::0;::::1;;42919:33;;;::::0;::::1;;42968:9;42963:119;42983:20:::0;;::::1;42963:119;;;39422:2;43025:10;:24;43036:9;;43046:1;43036:12;;;;;-1:-1:-1::0;;;43036:12:0::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;43025:24:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;43025:24:0;:45;;-1:-1:-1;;43025:45:0::1;;::::0;;;::::1;::::0;;;::::1;::::0;;43005:3;::::1;::::0;::::1;:::i;:::-;;;;42963:119;;39568:71:::0;39597:42;39568:71;:::o;19429:293::-;19531:4;-1:-1:-1;;;;;;19564:40:0;;-1:-1:-1;;;19564:40:0;;:101;;-1:-1:-1;;;;;;;19617:48:0;;-1:-1:-1;;;19617:48:0;19564:101;:150;;;;19678:36;19702:11;19678:23;:36::i;25315:127::-;25380:4;25404:16;;;:7;:16;;;;;;-1:-1:-1;;;;;25404:16:0;:30;;;25315:127::o;2066:98::-;2146:10;2066:98;:::o;29297:174::-;29372:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;29372:29:0;-1:-1:-1;;;;;29372:29:0;;;;;;;;:24;;29426:23;29372:24;29426:14;:23::i;:::-;-1:-1:-1;;;;;29417:46:0;;;;;;;;;;;29297:174;;:::o;25609:348::-;25702:4;25727:16;25735:7;25727;:16::i;:::-;25719:73;;;;-1:-1:-1;;;25719:73:0;;;;;;;:::i;:::-;25803:13;25819:23;25834:7;25819:14;:23::i;:::-;25803:39;;25872:5;-1:-1:-1;;;;;25861:16:0;:7;-1:-1:-1;;;;;25861:16:0;;:51;;;;25905:7;-1:-1:-1;;;;;25881:31:0;:20;25893:7;25881:11;:20::i;:::-;-1:-1:-1;;;;;25881:31:0;;25861:51;:87;;;;25916:32;25933:5;25940:7;25916:16;:32::i;:::-;25853:96;25609:348;-1:-1:-1;;;;25609:348:0:o;28601:578::-;28760:4;-1:-1:-1;;;;;28733:31:0;:23;28748:7;28733:14;:23::i;:::-;-1:-1:-1;;;;;28733:31:0;;28725:85;;;;-1:-1:-1;;;28725:85:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;28829:16:0;;28821:65;;;;-1:-1:-1;;;28821:65:0;;;;;;;:::i;:::-;28899:39;28920:4;28926:2;28930:7;28899:20;:39::i;:::-;29003:29;29020:1;29024:7;29003:8;:29::i;:::-;-1:-1:-1;;;;;29045:15:0;;;;;;:9;:15;;;;;:20;;29064:1;;29045:15;:20;;29064:1;;29045:20;:::i;:::-;;;;-1:-1:-1;;;;;;;29076:13:0;;;;;;:9;:13;;;;;:18;;29093:1;;29076:13;:18;;29093:1;;29076:18;:::i;:::-;;;;-1:-1:-1;;29105:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;29105:21:0;-1:-1:-1;;;;;29105:21:0;;;;;;;;;29144:27;;29105:16;;29144:27;;;;;;;28601:578;;;:::o;26299:110::-;26375:26;26385:2;26389:7;26375:26;;;;;;;;;;;;:9;:26::i;11722:173::-;11778:16;11797:6;;-1:-1:-1;;;;;11814:17:0;;;-1:-1:-1;;;;;;11814:17:0;;;;;;11847:40;;11797:6;;;;;;;11847:40;;11778:16;11847:40;11722:173;;:::o;24687:315::-;24844:28;24854:4;24860:2;24864:7;24844:9;:28::i;:::-;24891:48;24914:4;24920:2;24924:7;24933:5;24891:22;:48::i;:::-;24883:111;;;;-1:-1:-1;;;24883:111:0;;;;;;;:::i;42181:108::-;42241:13;42274:7;42267:14;;;;;:::i;276:723::-;332:13;553:10;549:53;;-1:-1:-1;580:10:0;;;;;;;;;;;;-1:-1:-1;;;580:10:0;;;;;;549:53;627:5;612:12;668:78;675:9;;668:78;;701:8;;;;:::i;:::-;;-1:-1:-1;724:10:0;;-1:-1:-1;732:2:0;724:10;;:::i;:::-;;;668:78;;;756:19;788:6;778:17;;;;;;-1:-1:-1;;;778:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;778:17:0;;756:39;;806:154;813:10;;806:154;;840:11;850:1;840:11;;:::i;:::-;;-1:-1:-1;909:10:0;917:2;909:5;:10;:::i;:::-;896:24;;:2;:24;:::i;:::-;883:39;;866:6;873;866:14;;;;;;-1:-1:-1;;;866:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;866:56:0;;;;;;;;-1:-1:-1;937:11:0;946:2;937:11;;:::i;:::-;;;806:154;;13174:157;-1:-1:-1;;;;;;13283:40:0;;-1:-1:-1;;;13283:40:0;13174:157;;;:::o;34560:589::-;34704:45;34731:4;34737:2;34741:7;34704:26;:45::i;:::-;-1:-1:-1;;;;;34766:18:0;;34762:187;;34801:40;34833:7;34801:31;:40::i;:::-;34762:187;;;34871:2;-1:-1:-1;;;;;34863:10:0;:4;-1:-1:-1;;;;;34863:10:0;;34859:90;;34890:47;34923:4;34929:7;34890:32;:47::i;:::-;-1:-1:-1;;;;;34963:16:0;;34959:183;;34996:45;35033:7;34996:36;:45::i;:::-;34959:183;;;35069:4;-1:-1:-1;;;;;35063:10:0;:2;-1:-1:-1;;;;;35063:10:0;;35059:83;;35090:40;35118:2;35122:7;35090:27;:40::i;26636:321::-;26766:18;26772:2;26776:7;26766:5;:18::i;:::-;26817:54;26848:1;26852:2;26856:7;26865:5;26817:22;:54::i;:::-;26795:154;;;;-1:-1:-1;;;26795:154:0;;;;;;;:::i;30036:799::-;30191:4;30212:15;:2;-1:-1:-1;;;;;30212:13:0;;:15::i;:::-;30208:620;;;30264:2;-1:-1:-1;;;;;30248:36:0;;30285:12;:10;:12::i;:::-;30299:4;30305:7;30314:5;30248:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30248:72:0;;;;;;;;-1:-1:-1;;30248:72:0;;;;;;;;;;;;:::i;:::-;;;30244:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30490:13:0;;30486:272;;30533:60;;-1:-1:-1;;;30533:60:0;;;;;;;:::i;30486:272::-;30708:6;30702:13;30693:6;30689:2;30685:15;30678:38;30244:529;-1:-1:-1;;;;;;30371:51:0;-1:-1:-1;;;30371:51:0;;-1:-1:-1;30364:58:0;;30208:620;-1:-1:-1;30812:4:0;30036:799;;;;;;:::o;35872:164::-;35976:10;:17;;35949:24;;;;:15;:24;;;;;:44;;;36004:24;;;;;;;;;;;;35872:164::o;36663:988::-;36929:22;36979:1;36954:22;36971:4;36954:16;:22::i;:::-;:26;;;;:::i;:::-;36991:18;37012:26;;;:17;:26;;;;;;36929:51;;-1:-1:-1;37145:28:0;;;37141:328;;-1:-1:-1;;;;;37212:18:0;;37190:19;37212:18;;;:12;:18;;;;;;;;:34;;;;;;;;;37263:30;;;;;;:44;;;37380:30;;:17;:30;;;;;:43;;;37141:328;-1:-1:-1;37565:26:0;;;;:17;:26;;;;;;;;37558:33;;;-1:-1:-1;;;;;37609:18:0;;;;;:12;:18;;;;;:34;;;;;;;37602:41;36663:988::o;37946:1079::-;38224:10;:17;38199:22;;38224:21;;38244:1;;38224:21;:::i;:::-;38256:18;38277:24;;;:15;:24;;;;;;38650:10;:26;;38199:46;;-1:-1:-1;38277:24:0;;38199:46;;38650:26;;;;-1:-1:-1;;;38650:26:0;;;;;;;;;;;;;;;;;38628:48;;38714:11;38689:10;38700;38689:22;;;;;;-1:-1:-1;;;38689:22:0;;;;;;;;;;;;;;;;;;;;:36;;;;38794:28;;;:15;:28;;;;;;;:41;;;38966:24;;;;;38959:31;39001:10;:16;;;;;-1:-1:-1;;;39001:16:0;;;;;;;;;;;;;;;;;;;;;;;;;;37946:1079;;;;:::o;35450:221::-;35535:14;35552:20;35569:2;35552:16;:20::i;:::-;-1:-1:-1;;;;;35583:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;35628:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;35450:221:0:o;27293:382::-;-1:-1:-1;;;;;27373:16:0;;27365:61;;;;-1:-1:-1;;;27365:61:0;;;;;;;:::i;:::-;27446:16;27454:7;27446;:16::i;:::-;27445:17;27437:58;;;;-1:-1:-1;;;27437:58:0;;;;;;;:::i;:::-;27508:45;27537:1;27541:2;27545:7;27508:20;:45::i;:::-;-1:-1:-1;;;;;27566:13:0;;;;;;:9;:13;;;;;:18;;27583:1;;27566:13;:18;;27583:1;;27566:18;:::i;:::-;;;;-1:-1:-1;;27595:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;27595:21:0;-1:-1:-1;;;;;27595:21:0;;;;;;;;27634:33;;27595:16;;;27634:33;;27595:16;;27634:33;27293:382;;:::o;2888:387::-;3211:20;3259:8;;;2888:387::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:607:1;;110:18;151:2;143:6;140:14;137:2;;;157:18;;:::i;:::-;206:2;200:9;279:2;256:17;;-1:-1:-1;;252:31:1;240:44;;286:4;236:55;306:18;;;326:22;;;303:46;300:2;;;352:18;;:::i;:::-;388:2;381:22;436;;;421:6;-1:-1:-1;421:6:1;473:16;;;470:25;-1:-1:-1;467:2:1;;;508:1;505;498:12;467:2;558:6;553:3;546:4;538:6;534:17;521:44;613:1;606:4;597:6;589;585:19;581:30;574:41;;;90:531;;;;;:::o;626:175::-;696:20;;-1:-1:-1;;;;;745:31:1;;735:42;;725:2;;791:1;788;781:12;806:198;;918:2;906:9;897:7;893:23;889:32;886:2;;;939:6;931;924:22;886:2;967:31;988:9;967:31;:::i;1009:274::-;;;1138:2;1126:9;1117:7;1113:23;1109:32;1106:2;;;1159:6;1151;1144:22;1106:2;1187:31;1208:9;1187:31;:::i;:::-;1177:41;;1237:40;1273:2;1262:9;1258:18;1237:40;:::i;:::-;1227:50;;1096:187;;;;;:::o;1288:342::-;;;;1434:2;1422:9;1413:7;1409:23;1405:32;1402:2;;;1455:6;1447;1440:22;1402:2;1483:31;1504:9;1483:31;:::i;:::-;1473:41;;1533:40;1569:2;1558:9;1554:18;1533:40;:::i;:::-;1523:50;;1620:2;1609:9;1605:18;1592:32;1582:42;;1392:238;;;;;:::o;1635:702::-;;;;;1807:3;1795:9;1786:7;1782:23;1778:33;1775:2;;;1829:6;1821;1814:22;1775:2;1857:31;1878:9;1857:31;:::i;:::-;1847:41;;1907:40;1943:2;1932:9;1928:18;1907:40;:::i;:::-;1897:50;;1994:2;1983:9;1979:18;1966:32;1956:42;;2049:2;2038:9;2034:18;2021:32;2076:18;2068:6;2065:30;2062:2;;;2113:6;2105;2098:22;2062:2;2141:22;;2194:4;2186:13;;2182:27;-1:-1:-1;2172:2:1;;2228:6;2220;2213:22;2172:2;2256:75;2323:7;2318:2;2305:16;2300:2;2296;2292:11;2256:75;:::i;:::-;2246:85;;;1765:572;;;;;;;:::o;2342:369::-;;;2468:2;2456:9;2447:7;2443:23;2439:32;2436:2;;;2489:6;2481;2474:22;2436:2;2517:31;2538:9;2517:31;:::i;:::-;2507:41;;2598:2;2587:9;2583:18;2570:32;2645:5;2638:13;2631:21;2624:5;2621:32;2611:2;;2672:6;2664;2657:22;2611:2;2700:5;2690:15;;;2426:285;;;;;:::o;2716:266::-;;;2845:2;2833:9;2824:7;2820:23;2816:32;2813:2;;;2866:6;2858;2851:22;2813:2;2894:31;2915:9;2894:31;:::i;:::-;2884:41;2972:2;2957:18;;;;2944:32;;-1:-1:-1;;;2803:179:1:o;2987:666::-;;;3134:2;3122:9;3113:7;3109:23;3105:32;3102:2;;;3155:6;3147;3140:22;3102:2;3200:9;3187:23;3229:18;3270:2;3262:6;3259:14;3256:2;;;3291:6;3283;3276:22;3256:2;3334:6;3323:9;3319:22;3309:32;;3379:7;3372:4;3368:2;3364:13;3360:27;3350:2;;3406:6;3398;3391:22;3350:2;3451;3438:16;3477:2;3469:6;3466:14;3463:2;;;3498:6;3490;3483:22;3463:2;3557:7;3552:2;3546;3538:6;3534:15;3530:2;3526:24;3522:33;3519:46;3516:2;;;3583:6;3575;3568:22;3516:2;3619;3611:11;;;;;3641:6;;-1:-1:-1;3092:561:1;;-1:-1:-1;;;;3092:561:1:o;3658:257::-;;3769:2;3757:9;3748:7;3744:23;3740:32;3737:2;;;3790:6;3782;3775:22;3737:2;3834:9;3821:23;3853:32;3879:5;3853:32;:::i;3920:261::-;;4042:2;4030:9;4021:7;4017:23;4013:32;4010:2;;;4063:6;4055;4048:22;4010:2;4100:9;4094:16;4119:32;4145:5;4119:32;:::i;4186:482::-;;4308:2;4296:9;4287:7;4283:23;4279:32;4276:2;;;4329:6;4321;4314:22;4276:2;4374:9;4361:23;4407:18;4399:6;4396:30;4393:2;;;4444:6;4436;4429:22;4393:2;4472:22;;4525:4;4517:13;;4513:27;-1:-1:-1;4503:2:1;;4559:6;4551;4544:22;4503:2;4587:75;4654:7;4649:2;4636:16;4631:2;4627;4623:11;4587:75;:::i;4673:190::-;;4785:2;4773:9;4764:7;4760:23;4756:32;4753:2;;;4806:6;4798;4791:22;4753:2;-1:-1:-1;4834:23:1;;4743:120;-1:-1:-1;4743:120:1:o;4868:266::-;;;4997:2;4985:9;4976:7;4972:23;4968:32;4965:2;;;5018:6;5010;5003:22;4965:2;5059:9;5046:23;5036:33;;5088:40;5124:2;5113:9;5109:18;5088:40;:::i;5139:289::-;;5249:2;5237:9;5228:7;5224:23;5220:32;5217:2;;;5270:6;5262;5255:22;5217:2;5314:9;5301:23;5364:4;5357:5;5353:16;5346:5;5343:27;5333:2;;5389:6;5381;5374:22;5433:259;;5514:5;5508:12;5541:6;5536:3;5529:19;5557:63;5613:6;5606:4;5601:3;5597:14;5590:4;5583:5;5579:16;5557:63;:::i;:::-;5674:2;5653:15;-1:-1:-1;;5649:29:1;5640:39;;;;5681:4;5636:50;;5484:208;-1:-1:-1;;5484:208:1:o;5697:1532::-;;5959:6;5953:13;5985:4;5998:51;6042:6;6037:3;6032:2;6024:6;6020:15;5998:51;:::i;:::-;6112:13;;6071:16;;;;6134:55;6112:13;6071:16;6156:15;;;6134:55;:::i;:::-;6280:13;;6211:20;;;6251:3;;6357:1;6342:17;;6378:1;6414:18;;;;6441:2;;6519:4;6509:8;6505:19;6493:31;;6441:2;6582;6572:8;6569:16;6549:18;6546:40;6543:2;;;-1:-1:-1;;;6609:33:1;;6665:4;6662:1;6655:15;6695:4;6616:3;6683:17;6543:2;6726:18;6753:110;;;;6877:1;6872:332;;;;6719:485;;6753:110;-1:-1:-1;;6788:24:1;;6774:39;;6833:20;;;;-1:-1:-1;6753:110:1;;6872:332;6908:39;6940:6;6908:39;:::i;:::-;6969:3;6985:169;6999:8;6996:1;6993:15;6985:169;;;7081:14;;7066:13;;;7059:37;7124:16;;;;7016:10;;6985:169;;;6989:3;;7185:8;7178:5;7174:20;7167:27;;6719:485;-1:-1:-1;7220:3:1;;5929:1300;-1:-1:-1;;;;;;;;;;;5929:1300:1:o;7234:203::-;-1:-1:-1;;;;;7398:32:1;;;;7380:51;;7368:2;7353:18;;7335:102::o;7442:490::-;-1:-1:-1;;;;;7711:15:1;;;7693:34;;7763:15;;7758:2;7743:18;;7736:43;7810:2;7795:18;;7788:34;;;7858:3;7853:2;7838:18;;7831:31;;;7442:490;;7879:47;;7906:19;;7898:6;7879:47;:::i;:::-;7871:55;7645:287;-1:-1:-1;;;;;;7645:287:1:o;7937:635::-;8108:2;8160:21;;;8230:13;;8133:18;;;8252:22;;;7937:635;;8108:2;8331:15;;;;8305:2;8290:18;;;7937:635;8377:169;8391:6;8388:1;8385:13;8377:169;;;8452:13;;8440:26;;8521:15;;;;8486:12;;;;8413:1;8406:9;8377:169;;;-1:-1:-1;8563:3:1;;8088:484;-1:-1:-1;;;;;;8088:484:1:o;8577:187::-;8742:14;;8735:22;8717:41;;8705:2;8690:18;;8672:92::o;8769:221::-;;8918:2;8907:9;8900:21;8938:46;8980:2;8969:9;8965:18;8957:6;8938:46;:::i;8995:338::-;9197:2;9179:21;;;9236:2;9216:18;;;9209:30;-1:-1:-1;;;9270:2:1;9255:18;;9248:44;9324:2;9309:18;;9169:164::o;9338:341::-;9540:2;9522:21;;;9579:2;9559:18;;;9552:30;-1:-1:-1;;;9613:2:1;9598:18;;9591:47;9670:2;9655:18;;9512:167::o;9684:407::-;9886:2;9868:21;;;9925:2;9905:18;;;9898:30;9964:34;9959:2;9944:18;;9937:62;-1:-1:-1;;;10030:2:1;10015:18;;10008:41;10081:3;10066:19;;9858:233::o;10096:414::-;10298:2;10280:21;;;10337:2;10317:18;;;10310:30;10376:34;10371:2;10356:18;;10349:62;-1:-1:-1;;;10442:2:1;10427:18;;10420:48;10500:3;10485:19;;10270:240::o;10515:402::-;10717:2;10699:21;;;10756:2;10736:18;;;10729:30;10795:34;10790:2;10775:18;;10768:62;-1:-1:-1;;;10861:2:1;10846:18;;10839:36;10907:3;10892:19;;10689:228::o;10922:352::-;11124:2;11106:21;;;11163:2;11143:18;;;11136:30;11202;11197:2;11182:18;;11175:58;11265:2;11250:18;;11096:178::o;11279:339::-;11481:2;11463:21;;;11520:2;11500:18;;;11493:30;-1:-1:-1;;;11554:2:1;11539:18;;11532:45;11609:2;11594:18;;11453:165::o;11623:342::-;11825:2;11807:21;;;11864:2;11844:18;;;11837:30;-1:-1:-1;;;11898:2:1;11883:18;;11876:48;11956:2;11941:18;;11797:168::o;11970:400::-;12172:2;12154:21;;;12211:2;12191:18;;;12184:30;12250:34;12245:2;12230:18;;12223:62;-1:-1:-1;;;12316:2:1;12301:18;;12294:34;12360:3;12345:19;;12144:226::o;12375:349::-;12577:2;12559:21;;;12616:2;12596:18;;;12589:30;12655:27;12650:2;12635:18;;12628:55;12715:2;12700:18;;12549:175::o;12729:408::-;12931:2;12913:21;;;12970:2;12950:18;;;12943:30;13009:34;13004:2;12989:18;;12982:62;-1:-1:-1;;;13075:2:1;13060:18;;13053:42;13127:3;13112:19;;12903:234::o;13142:420::-;13344:2;13326:21;;;13383:2;13363:18;;;13356:30;13422:34;13417:2;13402:18;;13395:62;13493:26;13488:2;13473:18;;13466:54;13552:3;13537:19;;13316:246::o;13567:406::-;13769:2;13751:21;;;13808:2;13788:18;;;13781:30;13847:34;13842:2;13827:18;;13820:62;-1:-1:-1;;;13913:2:1;13898:18;;13891:40;13963:3;13948:19;;13741:232::o;13978:405::-;14180:2;14162:21;;;14219:2;14199:18;;;14192:30;14258:34;14253:2;14238:18;;14231:62;-1:-1:-1;;;14324:2:1;14309:18;;14302:39;14373:3;14358:19;;14152:231::o;14388:356::-;14590:2;14572:21;;;14609:18;;;14602:30;14668:34;14663:2;14648:18;;14641:62;14735:2;14720:18;;14562:182::o;14749:408::-;14951:2;14933:21;;;14990:2;14970:18;;;14963:30;15029:34;15024:2;15009:18;;15002:62;-1:-1:-1;;;15095:2:1;15080:18;;15073:42;15147:3;15132:19;;14923:234::o;15162:356::-;15364:2;15346:21;;;15383:18;;;15376:30;15442:34;15437:2;15422:18;;15415:62;15509:2;15494:18;;15336:182::o;15523:342::-;15725:2;15707:21;;;15764:2;15744:18;;;15737:30;-1:-1:-1;;;15798:2:1;15783:18;;15776:48;15856:2;15841:18;;15697:168::o;15870:347::-;16072:2;16054:21;;;16111:2;16091:18;;;16084:30;16150:25;16145:2;16130:18;;16123:53;16208:2;16193:18;;16044:173::o;16222:405::-;16424:2;16406:21;;;16463:2;16443:18;;;16436:30;16502:34;16497:2;16482:18;;16475:62;-1:-1:-1;;;16568:2:1;16553:18;;16546:39;16617:3;16602:19;;16396:231::o;16632:411::-;16834:2;16816:21;;;16873:2;16853:18;;;16846:30;16912:34;16907:2;16892:18;;16885:62;-1:-1:-1;;;16978:2:1;16963:18;;16956:45;17033:3;17018:19;;16806:237::o;17048:341::-;17250:2;17232:21;;;17289:2;17269:18;;;17262:30;-1:-1:-1;;;17323:2:1;17308:18;;17301:47;17380:2;17365:18;;17222:167::o;17394:397::-;17596:2;17578:21;;;17635:2;17615:18;;;17608:30;17674:34;17669:2;17654:18;;17647:62;-1:-1:-1;;;17740:2:1;17725:18;;17718:31;17781:3;17766:19;;17568:223::o;17796:399::-;17998:2;17980:21;;;18037:2;18017:18;;;18010:30;18076:34;18071:2;18056:18;;18049:62;-1:-1:-1;;;18142:2:1;18127:18;;18120:33;18185:3;18170:19;;17970:225::o;18200:413::-;18402:2;18384:21;;;18441:2;18421:18;;;18414:30;18480:34;18475:2;18460:18;;18453:62;-1:-1:-1;;;18546:2:1;18531:18;;18524:47;18603:3;18588:19;;18374:239::o;18618:408::-;18820:2;18802:21;;;18859:2;18839:18;;;18832:30;18898:34;18893:2;18878:18;;18871:62;-1:-1:-1;;;18964:2:1;18949:18;;18942:42;19016:3;19001:19;;18792:234::o;19031:351::-;19233:2;19215:21;;;19272:2;19252:18;;;19245:30;19311:29;19306:2;19291:18;;19284:57;19373:2;19358:18;;19205:177::o;19387:::-;19533:25;;;19521:2;19506:18;;19488:76::o;19569:184::-;19741:4;19729:17;;;;19711:36;;19699:2;19684:18;;19666:87::o;19758:129::-;;19826:17;;;19876:4;19860:21;;;19816:71::o;19892:128::-;;19963:1;19959:6;19956:1;19953:13;19950:2;;;19969:18;;:::i;:::-;-1:-1:-1;20005:9:1;;19940:80::o;20025:120::-;;20091:1;20081:2;;20096:18;;:::i;:::-;-1:-1:-1;20130:9:1;;20071:74::o;20150:168::-;;20256:1;20252;20248:6;20244:14;20241:1;20238:21;20233:1;20226:9;20219:17;20215:45;20212:2;;;20263:18;;:::i;:::-;-1:-1:-1;20303:9:1;;20202:116::o;20323:125::-;;20391:1;20388;20385:8;20382:2;;;20396:18;;:::i;:::-;-1:-1:-1;20433:9:1;;20372:76::o;20453:195::-;;20528:4;20525:1;20521:12;20560:4;20557:1;20553:12;20585:3;20580;20577:12;20574:2;;;20592:18;;:::i;:::-;20629:13;;;20500:148;-1:-1:-1;;;20500:148:1:o;20653:258::-;20725:1;20735:113;20749:6;20746:1;20743:13;20735:113;;;20825:11;;;20819:18;20806:11;;;20799:39;20771:2;20764:10;20735:113;;;20866:6;20863:1;20860:13;20857:2;;;-1:-1:-1;;20901:1:1;20883:16;;20876:27;20706:205::o;20916:380::-;21001:1;20991:12;;21048:1;21038:12;;;21059:2;;21113:4;21105:6;21101:17;21091:27;;21059:2;21166;21158:6;21155:14;21135:18;21132:38;21129:2;;;21212:10;21207:3;21203:20;21200:1;21193:31;21247:4;21244:1;21237:15;21275:4;21272:1;21265:15;21129:2;;20971:325;;;:::o;21301:135::-;;-1:-1:-1;;21361:17:1;;21358:2;;;21381:18;;:::i;:::-;-1:-1:-1;21428:1:1;21417:13;;21348:88::o;21441:175::-;;21522:4;21515:5;21511:16;21551:4;21542:7;21539:17;21536:2;;;21559:18;;:::i;:::-;21608:1;21595:15;;21486:130;-1:-1:-1;;21486:130:1:o;21621:112::-;;21679:1;21669:2;;21684:18;;:::i;:::-;-1:-1:-1;21718:9:1;;21659:74::o;21738:127::-;21799:10;21794:3;21790:20;21787:1;21780:31;21830:4;21827:1;21820:15;21854:4;21851:1;21844:15;21870:127;21931:10;21926:3;21922:20;21919:1;21912:31;21962:4;21959:1;21952:15;21986:4;21983:1;21976:15;22002:127;22063:10;22058:3;22054:20;22051:1;22044:31;22094:4;22091:1;22084:15;22118:4;22115:1;22108:15;22134:133;-1:-1:-1;;;;;;22210:32:1;;22200:43;;22190:2;;22257:1;22254;22247:12
Swarm Source
ipfs://3d0608136a664ec6a6e70a136c64da37aa4dbd5743b47147c9714b876d2cc60f
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.