ERC-721
Overview
Max Total Supply
90 TOADK
Holders
59
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
7 TOADKLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
Toadkids
Compiler Version
v0.8.10+commit.fc410830
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-01-07 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } library Strings { bytes16 private constant alphabet = "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] = alphabet[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) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } 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; // solhint-disable-next-line no-inline-assembly 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"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (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"); // solhint-disable-next-line avoid-low-level-calls (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"); // solhint-disable-next-line avoid-low-level-calls (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"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.delegatecall(data); return _verifyCallResult(success, returndata, errorMessage); } function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private 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 // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } 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 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); } 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}. 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(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { // solhint-disable-next-line no-inline-assembly 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` 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 { } } 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 Toadkids is ERC721Enumerable, Ownable { using SafeMath for uint256; using Address for address; ICroak public Croak; IToadkens public Toadkens; string private baseURI; uint256 public maxSupply; uint256 public kidsCount = 0; uint256 public BREEDING_PRICE = 800 ether; bool public breedingActive = false; mapping(uint256 => uint256) public toadkids; mapping(uint256 => uint256) public kidsTime; mapping(address => uint256) public balanceKids; event ToadkensBreeding(uint256 toadkensId, uint256 parent1, uint256 parent2); constructor(string memory name, string memory symbol, uint256 supply) ERC721(name, symbol) { maxSupply = supply; } modifier toadkensOwner(uint256 toadkensId) { require(Toadkens.ownerOf(toadkensId) == msg.sender, "Cannot interact with a Toadkens you do not own"); _; } modifier toadkidsOwner(uint256 toadkidsId) { require(ownerOf(toadkidsId) == msg.sender, "Cannot interact with a Toadkids you do not own"); _; } function breed(uint256 parent1, uint256 parent2) external toadkensOwner(parent1) toadkensOwner(parent2) { uint256 supply = totalSupply(); require(supply < maxSupply, "Cannot breed any more Toadkids"); require(parent1 != parent2, "Must select two unique parents"); require(breedingActive, "Breeding not active yet!"); Croak.burn(msg.sender, BREEDING_PRICE); uint256 toadkensId = kidsCount; toadkids[toadkensId] = 2; kidsCount++; kidsTime[toadkensId] = block.timestamp; _safeMint(msg.sender, toadkensId); balanceKids[msg.sender]++; emit ToadkensBreeding(toadkensId, parent1, parent2); } function transferFrom(address from, address to, uint256 tokenId) public override { if (tokenId < maxSupply) { Croak.updateToadkidsReward(from, to); balanceKids[from]--; balanceKids[to]++; } ERC721.transferFrom(from, to, tokenId); } function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data) public override { if (tokenId < maxSupply) { Croak.updateToadkidsReward(from, to); balanceKids[from]--; balanceKids[to]++; } ERC721.safeTransferFrom(from, to, tokenId, data); } function setBreedingPrice(uint256 newBreedingPrice) public onlyOwner { BREEDING_PRICE = newBreedingPrice; } function setCroak(address croakAddress) external onlyOwner { Croak = ICroak(croakAddress); } function setToadkens(address toadkensAddress) external onlyOwner { Toadkens = IToadkens(toadkensAddress); } function toggleBreeding() public onlyOwner { breedingActive = !breedingActive; } function walletOfOwner(address owner) external view returns(uint256[] memory) { uint256 tokenCount = balanceOf(owner); uint256[] memory tokensId = new uint256[](tokenCount); for(uint256 i; i < tokenCount; i++){ tokensId[i] = tokenOfOwnerByIndex(owner, i); } return tokensId; } function withdraw() public onlyOwner { uint256 balance = address(this).balance; payable(msg.sender).transfer(balance); } function setBaseURI(string memory uri) public onlyOwner { baseURI = uri; } function _baseURI() internal view override returns (string memory) { return baseURI; } } interface ICroak { function burn(address _from, uint256 _amount) external; function updateToadkidsReward(address _from, address _to) external; } interface IToadkens { function ownerOf(uint256 tokenId) external view returns (address); }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"uint256","name":"supply","type":"uint256"}],"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":false,"internalType":"uint256","name":"toadkensId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"parent1","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"parent2","type":"uint256"}],"name":"ToadkensBreeding","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":"BREEDING_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Croak","outputs":[{"internalType":"contract ICroak","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Toadkens","outputs":[{"internalType":"contract IToadkens","name":"","type":"address"}],"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":"","type":"address"}],"name":"balanceKids","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"parent1","type":"uint256"},{"internalType":"uint256","name":"parent2","type":"uint256"}],"name":"breed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"breedingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"kidsCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"kidsTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newBreedingPrice","type":"uint256"}],"name":"setBreedingPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"croakAddress","type":"address"}],"name":"setCroak","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"toadkensAddress","type":"address"}],"name":"setToadkens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"toadkids","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleBreeding","outputs":[],"stateMutability":"nonpayable","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":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526000600f55682b5e3af16b188000006010556011805460ff191690553480156200002d57600080fd5b506040516200283138038062002831833981016040819052620000509162000265565b82518390839062000069906000906020850190620000f2565b5080516200007f906001906020840190620000f2565b505050600062000094620000ee60201b60201c565b600a80546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600e5550620003159050565b3390565b8280546200010090620002d8565b90600052602060002090601f0160209004810192826200012457600085556200016f565b82601f106200013f57805160ff19168380011785556200016f565b828001600101855582156200016f579182015b828111156200016f57825182559160200191906001019062000152565b506200017d92915062000181565b5090565b5b808211156200017d576000815560010162000182565b634e487b7160e01b600052604160045260246000fd5b600082601f830112620001c057600080fd5b81516001600160401b0380821115620001dd57620001dd62000198565b604051601f8301601f19908116603f0116810190828211818310171562000208576200020862000198565b816040528381526020925086838588010111156200022557600080fd5b600091505b838210156200024957858201830151818301840152908201906200022a565b838211156200025b5760008385830101525b9695505050505050565b6000806000606084860312156200027b57600080fd5b83516001600160401b03808211156200029357600080fd5b620002a187838801620001ae565b94506020860151915080821115620002b857600080fd5b50620002c786828701620001ae565b925050604084015190509250925092565b600181811c90821680620002ed57607f821691505b602082108114156200030f57634e487b7160e01b600052602260045260246000fd5b50919050565b61250c80620003256000396000f3fe608060405234801561001057600080fd5b506004361061021c5760003560e01c806370a0823111610125578063d9ecad7b116100ad578063e985e9c51161007c578063e985e9c51461048b578063f0999af4146104c7578063f2fde38b146104da578063f3169b86146104ed578063f61ed267146104f557600080fd5b8063d9ecad7b14610446578063e512e0ac14610459578063e81054a414610462578063e86b0b2c1461048257600080fd5b806395d89b41116100f457806395d89b41146103fc578063a22cb46514610404578063b88d4fde14610417578063c87b56dd1461042a578063d5abeb011461043d57600080fd5b806370a08231146103bd578063715018a6146103d05780638da5cb5b146103d85780639564dfae146103e957600080fd5b80633ccfd60b116101a8578063438b630011610177578063438b6300146103515780634f6ccce71461037157806355f804b314610384578063601240b0146103975780636352211e146103aa57600080fd5b80633ccfd60b146103035780633ed194cc1461030b57806340f284f41461032b57806342842e0e1461033e57600080fd5b806318160ddd116101ef57806318160ddd1461029e57806322956054146102b057806323b872dd146102bd578063277b8547146102d05780632f745c59146102f057600080fd5b806301ffc9a71461022157806306fdde0314610249578063081812fc1461025e578063095ea7b314610289575b600080fd5b61023461022f366004611e87565b610508565b60405190151581526020015b60405180910390f35b610251610533565b6040516102409190611efc565b61027161026c366004611f0f565b6105c5565b6040516001600160a01b039091168152602001610240565b61029c610297366004611f3d565b61065f565b005b6008545b604051908152602001610240565b6011546102349060ff1681565b61029c6102cb366004611f69565b610775565b6102a26102de366004611f0f565b60126020526000908152604090205481565b6102a26102fe366004611f3d565b610843565b61029c6108d9565b6102a2610319366004611faa565b60146020526000908152604090205481565b600b54610271906001600160a01b031681565b61029c61034c366004611f69565b610936565b61036461035f366004611faa565b610951565b6040516102409190611fc7565b6102a261037f366004611f0f565b6109f3565b61029c610392366004612097565b610a86565b600c54610271906001600160a01b031681565b6102716103b8366004611f0f565b610ac3565b6102a26103cb366004611faa565b610b3a565b61029c610bc1565b600a546001600160a01b0316610271565b61029c6103f7366004611f0f565b610c35565b610251610c64565b61029c6104123660046120e0565b610c73565b61029c61042536600461211e565b610d38565b610251610438366004611f0f565b610e0d565b6102a2600e5481565b61029c61045436600461219e565b610ee8565b6102a2600f5481565b6102a2610470366004611f0f565b60136020526000908152604090205481565b6102a260105481565b6102346104993660046121c0565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b61029c6104d5366004611faa565b61122c565b61029c6104e8366004611faa565b611278565b61029c611363565b61029c610503366004611faa565b6113a1565b60006001600160e01b0319821663780e9d6360e01b148061052d575061052d826113ed565b92915050565b606060008054610542906121ee565b80601f016020809104026020016040519081016040528092919081815260200182805461056e906121ee565b80156105bb5780601f10610590576101008083540402835291602001916105bb565b820191906000526020600020905b81548152906001019060200180831161059e57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166106435760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061066a82610ac3565b9050806001600160a01b0316836001600160a01b031614156106d85760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161063a565b336001600160a01b03821614806106f457506106f48133610499565b6107665760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161063a565b610770838361143d565b505050565b600e5481101561083857600b54604051622d7af360e81b81526001600160a01b038581166004830152848116602483015290911690632d7af30090604401600060405180830381600087803b1580156107cd57600080fd5b505af11580156107e1573d6000803e3d6000fd5b505050506001600160a01b03831660009081526014602052604081208054916108098361223f565b90915550506001600160a01b038216600090815260146020526040812080549161083283612256565b91905055505b6107708383836114ab565b600061084e83610b3a565b82106108b05760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161063a565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b031633146109035760405162461bcd60e51b815260040161063a90612271565b6040514790339082156108fc029083906000818181858888f19350505050158015610932573d6000803e3d6000fd5b5050565b61077083838360405180602001604052806000815250610d38565b6060600061095e83610b3a565b905060008167ffffffffffffffff81111561097b5761097b61200b565b6040519080825280602002602001820160405280156109a4578160200160208202803683370190505b50905060005b828110156109eb576109bc8582610843565b8282815181106109ce576109ce6122a6565b6020908102919091010152806109e381612256565b9150506109aa565b509392505050565b60006109fe60085490565b8210610a615760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161063a565b60088281548110610a7457610a746122a6565b90600052602060002001549050919050565b600a546001600160a01b03163314610ab05760405162461bcd60e51b815260040161063a90612271565b805161093290600d906020840190611dd5565b6000818152600260205260408120546001600160a01b03168061052d5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161063a565b60006001600160a01b038216610ba55760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161063a565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610beb5760405162461bcd60e51b815260040161063a90612271565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b600a546001600160a01b03163314610c5f5760405162461bcd60e51b815260040161063a90612271565b601055565b606060018054610542906121ee565b6001600160a01b038216331415610ccc5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161063a565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600e54821015610dfb57600b54604051622d7af360e81b81526001600160a01b038681166004830152858116602483015290911690632d7af30090604401600060405180830381600087803b158015610d9057600080fd5b505af1158015610da4573d6000803e3d6000fd5b505050506001600160a01b0384166000908152601460205260408120805491610dcc8361223f565b90915550506001600160a01b0383166000908152601460205260408120805491610df583612256565b91905055505b610e07848484846114dc565b50505050565b6000818152600260205260409020546060906001600160a01b0316610e8c5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161063a565b6000610e9661150e565b90506000815111610eb65760405180602001604052806000815250610ee1565b80610ec08461151d565b604051602001610ed19291906122bc565b6040516020818303038152906040525b9392505050565b600c546040516331a9108f60e11b815260048101849052839133916001600160a01b0390911690636352211e90602401602060405180830381865afa158015610f35573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f5991906122eb565b6001600160a01b031614610f7f5760405162461bcd60e51b815260040161063a90612308565b600c546040516331a9108f60e11b815260048101849052839133916001600160a01b0390911690636352211e90602401602060405180830381865afa158015610fcc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ff091906122eb565b6001600160a01b0316146110165760405162461bcd60e51b815260040161063a90612308565b600061102160085490565b9050600e5481106110745760405162461bcd60e51b815260206004820152601e60248201527f43616e6e6f7420627265656420616e79206d6f726520546f61646b6964730000604482015260640161063a565b838514156110c45760405162461bcd60e51b815260206004820152601e60248201527f4d7573742073656c6563742074776f20756e6971756520706172656e74730000604482015260640161063a565b60115460ff166111165760405162461bcd60e51b815260206004820152601860248201527f4272656564696e67206e6f742061637469766520796574210000000000000000604482015260640161063a565b600b54601054604051632770a7eb60e21b815233600482015260248101919091526001600160a01b0390911690639dc29fac90604401600060405180830381600087803b15801561116657600080fd5b505af115801561117a573d6000803e3d6000fd5b5050600f805460008181526012602052604081206002905582549194509092506111a383612256565b909155505060008181526013602052604090204290556111c33382611623565b3360009081526014602052604081208054916111de83612256565b909155505060408051828152602081018890529081018690527fea71fce1520dcfabf89a554edcfc0613a72a8e6470e61c5dabebdf2f54cde5a59060600160405180910390a1505050505050565b600a546001600160a01b031633146112565760405162461bcd60e51b815260040161063a90612271565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b600a546001600160a01b031633146112a25760405162461bcd60e51b815260040161063a90612271565b6001600160a01b0381166113075760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161063a565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b600a546001600160a01b0316331461138d5760405162461bcd60e51b815260040161063a90612271565b6011805460ff19811660ff90911615179055565b600a546001600160a01b031633146113cb5760405162461bcd60e51b815260040161063a90612271565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160e01b031982166380ac58cd60e01b148061141e57506001600160e01b03198216635b5e139f60e01b145b8061052d57506301ffc9a760e01b6001600160e01b031983161461052d565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061147282610ac3565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6114b5338261163d565b6114d15760405162461bcd60e51b815260040161063a90612356565b610770838383611730565b6114e6338361163d565b6115025760405162461bcd60e51b815260040161063a90612356565b610e07848484846118db565b6060600d8054610542906121ee565b6060816115415750506040805180820190915260018152600360fc1b602082015290565b8160005b811561156b578061155581612256565b91506115649050600a836123bd565b9150611545565b60008167ffffffffffffffff8111156115865761158661200b565b6040519080825280601f01601f1916602001820160405280156115b0576020820181803683370190505b5090505b841561161b576115c56001836123d1565b91506115d2600a866123e8565b6115dd9060306123fc565b60f81b8183815181106115f2576115f26122a6565b60200101906001600160f81b031916908160001a905350611614600a866123bd565b94506115b4565b949350505050565b61093282826040518060200160405280600081525061190e565b6000818152600260205260408120546001600160a01b03166116b65760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161063a565b60006116c183610ac3565b9050806001600160a01b0316846001600160a01b031614806116fc5750836001600160a01b03166116f1846105c5565b6001600160a01b0316145b8061161b57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff1661161b565b826001600160a01b031661174382610ac3565b6001600160a01b0316146117ab5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161063a565b6001600160a01b03821661180d5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161063a565b611818838383611941565b61182360008261143d565b6001600160a01b038316600090815260036020526040812080546001929061184c9084906123d1565b90915550506001600160a01b038216600090815260036020526040812080546001929061187a9084906123fc565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6118e6848484611730565b6118f2848484846119f9565b610e075760405162461bcd60e51b815260040161063a90612414565b6119188383611af7565b61192560008484846119f9565b6107705760405162461bcd60e51b815260040161063a90612414565b6001600160a01b03831661199c5761199781600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6119bf565b816001600160a01b0316836001600160a01b0316146119bf576119bf8382611c45565b6001600160a01b0382166119d65761077081611ce2565b826001600160a01b0316826001600160a01b031614610770576107708282611d91565b60006001600160a01b0384163b15611aec57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611a3d903390899088908890600401612466565b6020604051808303816000875af1925050508015611a78575060408051601f3d908101601f19168201909252611a75918101906124a3565b60015b611ad2573d808015611aa6576040519150601f19603f3d011682016040523d82523d6000602084013e611aab565b606091505b508051611aca5760405162461bcd60e51b815260040161063a90612414565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061161b565b506001949350505050565b6001600160a01b038216611b4d5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161063a565b6000818152600260205260409020546001600160a01b031615611bb25760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161063a565b611bbe60008383611941565b6001600160a01b0382166000908152600360205260408120805460019290611be79084906123fc565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001611c5284610b3a565b611c5c91906123d1565b600083815260076020526040902054909150808214611caf576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611cf4906001906123d1565b60008381526009602052604081205460088054939450909284908110611d1c57611d1c6122a6565b906000526020600020015490508060088381548110611d3d57611d3d6122a6565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611d7557611d756124c0565b6001900381819060005260206000200160009055905550505050565b6000611d9c83610b3a565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054611de1906121ee565b90600052602060002090601f016020900481019282611e035760008555611e49565b82601f10611e1c57805160ff1916838001178555611e49565b82800160010185558215611e49579182015b82811115611e49578251825591602001919060010190611e2e565b50611e55929150611e59565b5090565b5b80821115611e555760008155600101611e5a565b6001600160e01b031981168114611e8457600080fd5b50565b600060208284031215611e9957600080fd5b8135610ee181611e6e565b60005b83811015611ebf578181015183820152602001611ea7565b83811115610e075750506000910152565b60008151808452611ee8816020860160208601611ea4565b601f01601f19169290920160200192915050565b602081526000610ee16020830184611ed0565b600060208284031215611f2157600080fd5b5035919050565b6001600160a01b0381168114611e8457600080fd5b60008060408385031215611f5057600080fd5b8235611f5b81611f28565b946020939093013593505050565b600080600060608486031215611f7e57600080fd5b8335611f8981611f28565b92506020840135611f9981611f28565b929592945050506040919091013590565b600060208284031215611fbc57600080fd5b8135610ee181611f28565b6020808252825182820181905260009190848201906040850190845b81811015611fff57835183529284019291840191600101611fe3565b50909695505050505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561203c5761203c61200b565b604051601f8501601f19908116603f011681019082821181831017156120645761206461200b565b8160405280935085815286868601111561207d57600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156120a957600080fd5b813567ffffffffffffffff8111156120c057600080fd5b8201601f810184136120d157600080fd5b61161b84823560208401612021565b600080604083850312156120f357600080fd5b82356120fe81611f28565b91506020830135801515811461211357600080fd5b809150509250929050565b6000806000806080858703121561213457600080fd5b843561213f81611f28565b9350602085013561214f81611f28565b925060408501359150606085013567ffffffffffffffff81111561217257600080fd5b8501601f8101871361218357600080fd5b61219287823560208401612021565b91505092959194509250565b600080604083850312156121b157600080fd5b50508035926020909101359150565b600080604083850312156121d357600080fd5b82356121de81611f28565b9150602083013561211381611f28565b600181811c9082168061220257607f821691505b6020821081141561222357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008161224e5761224e612229565b506000190190565b600060001982141561226a5761226a612229565b5060010190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b600083516122ce818460208801611ea4565b8351908301906122e2818360208801611ea4565b01949350505050565b6000602082840312156122fd57600080fd5b8151610ee181611f28565b6020808252602e908201527f43616e6e6f7420696e7465726163742077697468206120546f61646b656e732060408201526d3cb7ba903237903737ba1037bbb760911b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b6000826123cc576123cc6123a7565b500490565b6000828210156123e3576123e3612229565b500390565b6000826123f7576123f76123a7565b500690565b6000821982111561240f5761240f612229565b500190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061249990830184611ed0565b9695505050505050565b6000602082840312156124b557600080fd5b8151610ee181611e6e565b634e487b7160e01b600052603160045260246000fdfea264697066735822122004d640816a20f95b337af3721e583b36a6c7320658fc34c1a8b88e8890f3484164736f6c634300080a0033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000008ae0000000000000000000000000000000000000000000000000000000000000008546f61646b6964730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005544f41444b000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061021c5760003560e01c806370a0823111610125578063d9ecad7b116100ad578063e985e9c51161007c578063e985e9c51461048b578063f0999af4146104c7578063f2fde38b146104da578063f3169b86146104ed578063f61ed267146104f557600080fd5b8063d9ecad7b14610446578063e512e0ac14610459578063e81054a414610462578063e86b0b2c1461048257600080fd5b806395d89b41116100f457806395d89b41146103fc578063a22cb46514610404578063b88d4fde14610417578063c87b56dd1461042a578063d5abeb011461043d57600080fd5b806370a08231146103bd578063715018a6146103d05780638da5cb5b146103d85780639564dfae146103e957600080fd5b80633ccfd60b116101a8578063438b630011610177578063438b6300146103515780634f6ccce71461037157806355f804b314610384578063601240b0146103975780636352211e146103aa57600080fd5b80633ccfd60b146103035780633ed194cc1461030b57806340f284f41461032b57806342842e0e1461033e57600080fd5b806318160ddd116101ef57806318160ddd1461029e57806322956054146102b057806323b872dd146102bd578063277b8547146102d05780632f745c59146102f057600080fd5b806301ffc9a71461022157806306fdde0314610249578063081812fc1461025e578063095ea7b314610289575b600080fd5b61023461022f366004611e87565b610508565b60405190151581526020015b60405180910390f35b610251610533565b6040516102409190611efc565b61027161026c366004611f0f565b6105c5565b6040516001600160a01b039091168152602001610240565b61029c610297366004611f3d565b61065f565b005b6008545b604051908152602001610240565b6011546102349060ff1681565b61029c6102cb366004611f69565b610775565b6102a26102de366004611f0f565b60126020526000908152604090205481565b6102a26102fe366004611f3d565b610843565b61029c6108d9565b6102a2610319366004611faa565b60146020526000908152604090205481565b600b54610271906001600160a01b031681565b61029c61034c366004611f69565b610936565b61036461035f366004611faa565b610951565b6040516102409190611fc7565b6102a261037f366004611f0f565b6109f3565b61029c610392366004612097565b610a86565b600c54610271906001600160a01b031681565b6102716103b8366004611f0f565b610ac3565b6102a26103cb366004611faa565b610b3a565b61029c610bc1565b600a546001600160a01b0316610271565b61029c6103f7366004611f0f565b610c35565b610251610c64565b61029c6104123660046120e0565b610c73565b61029c61042536600461211e565b610d38565b610251610438366004611f0f565b610e0d565b6102a2600e5481565b61029c61045436600461219e565b610ee8565b6102a2600f5481565b6102a2610470366004611f0f565b60136020526000908152604090205481565b6102a260105481565b6102346104993660046121c0565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b61029c6104d5366004611faa565b61122c565b61029c6104e8366004611faa565b611278565b61029c611363565b61029c610503366004611faa565b6113a1565b60006001600160e01b0319821663780e9d6360e01b148061052d575061052d826113ed565b92915050565b606060008054610542906121ee565b80601f016020809104026020016040519081016040528092919081815260200182805461056e906121ee565b80156105bb5780601f10610590576101008083540402835291602001916105bb565b820191906000526020600020905b81548152906001019060200180831161059e57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166106435760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b600061066a82610ac3565b9050806001600160a01b0316836001600160a01b031614156106d85760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b606482015260840161063a565b336001600160a01b03821614806106f457506106f48133610499565b6107665760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606482015260840161063a565b610770838361143d565b505050565b600e5481101561083857600b54604051622d7af360e81b81526001600160a01b038581166004830152848116602483015290911690632d7af30090604401600060405180830381600087803b1580156107cd57600080fd5b505af11580156107e1573d6000803e3d6000fd5b505050506001600160a01b03831660009081526014602052604081208054916108098361223f565b90915550506001600160a01b038216600090815260146020526040812080549161083283612256565b91905055505b6107708383836114ab565b600061084e83610b3a565b82106108b05760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b606482015260840161063a565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b031633146109035760405162461bcd60e51b815260040161063a90612271565b6040514790339082156108fc029083906000818181858888f19350505050158015610932573d6000803e3d6000fd5b5050565b61077083838360405180602001604052806000815250610d38565b6060600061095e83610b3a565b905060008167ffffffffffffffff81111561097b5761097b61200b565b6040519080825280602002602001820160405280156109a4578160200160208202803683370190505b50905060005b828110156109eb576109bc8582610843565b8282815181106109ce576109ce6122a6565b6020908102919091010152806109e381612256565b9150506109aa565b509392505050565b60006109fe60085490565b8210610a615760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b606482015260840161063a565b60088281548110610a7457610a746122a6565b90600052602060002001549050919050565b600a546001600160a01b03163314610ab05760405162461bcd60e51b815260040161063a90612271565b805161093290600d906020840190611dd5565b6000818152600260205260408120546001600160a01b03168061052d5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b606482015260840161063a565b60006001600160a01b038216610ba55760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b606482015260840161063a565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b03163314610beb5760405162461bcd60e51b815260040161063a90612271565b600a546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600a80546001600160a01b0319169055565b600a546001600160a01b03163314610c5f5760405162461bcd60e51b815260040161063a90612271565b601055565b606060018054610542906121ee565b6001600160a01b038216331415610ccc5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604482015260640161063a565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600e54821015610dfb57600b54604051622d7af360e81b81526001600160a01b038681166004830152858116602483015290911690632d7af30090604401600060405180830381600087803b158015610d9057600080fd5b505af1158015610da4573d6000803e3d6000fd5b505050506001600160a01b0384166000908152601460205260408120805491610dcc8361223f565b90915550506001600160a01b0383166000908152601460205260408120805491610df583612256565b91905055505b610e07848484846114dc565b50505050565b6000818152600260205260409020546060906001600160a01b0316610e8c5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b606482015260840161063a565b6000610e9661150e565b90506000815111610eb65760405180602001604052806000815250610ee1565b80610ec08461151d565b604051602001610ed19291906122bc565b6040516020818303038152906040525b9392505050565b600c546040516331a9108f60e11b815260048101849052839133916001600160a01b0390911690636352211e90602401602060405180830381865afa158015610f35573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f5991906122eb565b6001600160a01b031614610f7f5760405162461bcd60e51b815260040161063a90612308565b600c546040516331a9108f60e11b815260048101849052839133916001600160a01b0390911690636352211e90602401602060405180830381865afa158015610fcc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ff091906122eb565b6001600160a01b0316146110165760405162461bcd60e51b815260040161063a90612308565b600061102160085490565b9050600e5481106110745760405162461bcd60e51b815260206004820152601e60248201527f43616e6e6f7420627265656420616e79206d6f726520546f61646b6964730000604482015260640161063a565b838514156110c45760405162461bcd60e51b815260206004820152601e60248201527f4d7573742073656c6563742074776f20756e6971756520706172656e74730000604482015260640161063a565b60115460ff166111165760405162461bcd60e51b815260206004820152601860248201527f4272656564696e67206e6f742061637469766520796574210000000000000000604482015260640161063a565b600b54601054604051632770a7eb60e21b815233600482015260248101919091526001600160a01b0390911690639dc29fac90604401600060405180830381600087803b15801561116657600080fd5b505af115801561117a573d6000803e3d6000fd5b5050600f805460008181526012602052604081206002905582549194509092506111a383612256565b909155505060008181526013602052604090204290556111c33382611623565b3360009081526014602052604081208054916111de83612256565b909155505060408051828152602081018890529081018690527fea71fce1520dcfabf89a554edcfc0613a72a8e6470e61c5dabebdf2f54cde5a59060600160405180910390a1505050505050565b600a546001600160a01b031633146112565760405162461bcd60e51b815260040161063a90612271565b600b80546001600160a01b0319166001600160a01b0392909216919091179055565b600a546001600160a01b031633146112a25760405162461bcd60e51b815260040161063a90612271565b6001600160a01b0381166113075760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161063a565b600a546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600a80546001600160a01b0319166001600160a01b0392909216919091179055565b600a546001600160a01b0316331461138d5760405162461bcd60e51b815260040161063a90612271565b6011805460ff19811660ff90911615179055565b600a546001600160a01b031633146113cb5760405162461bcd60e51b815260040161063a90612271565b600c80546001600160a01b0319166001600160a01b0392909216919091179055565b60006001600160e01b031982166380ac58cd60e01b148061141e57506001600160e01b03198216635b5e139f60e01b145b8061052d57506301ffc9a760e01b6001600160e01b031983161461052d565b600081815260046020526040902080546001600160a01b0319166001600160a01b038416908117909155819061147282610ac3565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6114b5338261163d565b6114d15760405162461bcd60e51b815260040161063a90612356565b610770838383611730565b6114e6338361163d565b6115025760405162461bcd60e51b815260040161063a90612356565b610e07848484846118db565b6060600d8054610542906121ee565b6060816115415750506040805180820190915260018152600360fc1b602082015290565b8160005b811561156b578061155581612256565b91506115649050600a836123bd565b9150611545565b60008167ffffffffffffffff8111156115865761158661200b565b6040519080825280601f01601f1916602001820160405280156115b0576020820181803683370190505b5090505b841561161b576115c56001836123d1565b91506115d2600a866123e8565b6115dd9060306123fc565b60f81b8183815181106115f2576115f26122a6565b60200101906001600160f81b031916908160001a905350611614600a866123bd565b94506115b4565b949350505050565b61093282826040518060200160405280600081525061190e565b6000818152600260205260408120546001600160a01b03166116b65760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b606482015260840161063a565b60006116c183610ac3565b9050806001600160a01b0316846001600160a01b031614806116fc5750836001600160a01b03166116f1846105c5565b6001600160a01b0316145b8061161b57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff1661161b565b826001600160a01b031661174382610ac3565b6001600160a01b0316146117ab5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b606482015260840161063a565b6001600160a01b03821661180d5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b606482015260840161063a565b611818838383611941565b61182360008261143d565b6001600160a01b038316600090815260036020526040812080546001929061184c9084906123d1565b90915550506001600160a01b038216600090815260036020526040812080546001929061187a9084906123fc565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6118e6848484611730565b6118f2848484846119f9565b610e075760405162461bcd60e51b815260040161063a90612414565b6119188383611af7565b61192560008484846119f9565b6107705760405162461bcd60e51b815260040161063a90612414565b6001600160a01b03831661199c5761199781600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b6119bf565b816001600160a01b0316836001600160a01b0316146119bf576119bf8382611c45565b6001600160a01b0382166119d65761077081611ce2565b826001600160a01b0316826001600160a01b031614610770576107708282611d91565b60006001600160a01b0384163b15611aec57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290611a3d903390899088908890600401612466565b6020604051808303816000875af1925050508015611a78575060408051601f3d908101601f19168201909252611a75918101906124a3565b60015b611ad2573d808015611aa6576040519150601f19603f3d011682016040523d82523d6000602084013e611aab565b606091505b508051611aca5760405162461bcd60e51b815260040161063a90612414565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061161b565b506001949350505050565b6001600160a01b038216611b4d5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604482015260640161063a565b6000818152600260205260409020546001600160a01b031615611bb25760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604482015260640161063a565b611bbe60008383611941565b6001600160a01b0382166000908152600360205260408120805460019290611be79084906123fc565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001611c5284610b3a565b611c5c91906123d1565b600083815260076020526040902054909150808214611caf576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090611cf4906001906123d1565b60008381526009602052604081205460088054939450909284908110611d1c57611d1c6122a6565b906000526020600020015490508060088381548110611d3d57611d3d6122a6565b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480611d7557611d756124c0565b6001900381819060005260206000200160009055905550505050565b6000611d9c83610b3a565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054611de1906121ee565b90600052602060002090601f016020900481019282611e035760008555611e49565b82601f10611e1c57805160ff1916838001178555611e49565b82800160010185558215611e49579182015b82811115611e49578251825591602001919060010190611e2e565b50611e55929150611e59565b5090565b5b80821115611e555760008155600101611e5a565b6001600160e01b031981168114611e8457600080fd5b50565b600060208284031215611e9957600080fd5b8135610ee181611e6e565b60005b83811015611ebf578181015183820152602001611ea7565b83811115610e075750506000910152565b60008151808452611ee8816020860160208601611ea4565b601f01601f19169290920160200192915050565b602081526000610ee16020830184611ed0565b600060208284031215611f2157600080fd5b5035919050565b6001600160a01b0381168114611e8457600080fd5b60008060408385031215611f5057600080fd5b8235611f5b81611f28565b946020939093013593505050565b600080600060608486031215611f7e57600080fd5b8335611f8981611f28565b92506020840135611f9981611f28565b929592945050506040919091013590565b600060208284031215611fbc57600080fd5b8135610ee181611f28565b6020808252825182820181905260009190848201906040850190845b81811015611fff57835183529284019291840191600101611fe3565b50909695505050505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff8084111561203c5761203c61200b565b604051601f8501601f19908116603f011681019082821181831017156120645761206461200b565b8160405280935085815286868601111561207d57600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156120a957600080fd5b813567ffffffffffffffff8111156120c057600080fd5b8201601f810184136120d157600080fd5b61161b84823560208401612021565b600080604083850312156120f357600080fd5b82356120fe81611f28565b91506020830135801515811461211357600080fd5b809150509250929050565b6000806000806080858703121561213457600080fd5b843561213f81611f28565b9350602085013561214f81611f28565b925060408501359150606085013567ffffffffffffffff81111561217257600080fd5b8501601f8101871361218357600080fd5b61219287823560208401612021565b91505092959194509250565b600080604083850312156121b157600080fd5b50508035926020909101359150565b600080604083850312156121d357600080fd5b82356121de81611f28565b9150602083013561211381611f28565b600181811c9082168061220257607f821691505b6020821081141561222357634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008161224e5761224e612229565b506000190190565b600060001982141561226a5761226a612229565b5060010190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b600083516122ce818460208801611ea4565b8351908301906122e2818360208801611ea4565b01949350505050565b6000602082840312156122fd57600080fd5b8151610ee181611f28565b6020808252602e908201527f43616e6e6f7420696e7465726163742077697468206120546f61646b656e732060408201526d3cb7ba903237903737ba1037bbb760911b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b634e487b7160e01b600052601260045260246000fd5b6000826123cc576123cc6123a7565b500490565b6000828210156123e3576123e3612229565b500390565b6000826123f7576123f76123a7565b500690565b6000821982111561240f5761240f612229565b500190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061249990830184611ed0565b9695505050505050565b6000602082840312156124b557600080fd5b8151610ee181611e6e565b634e487b7160e01b600052603160045260246000fdfea264697066735822122004d640816a20f95b337af3721e583b36a6c7320658fc34c1a8b88e8890f3484164736f6c634300080a0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000008ae0000000000000000000000000000000000000000000000000000000000000008546f61646b6964730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000005544f41444b000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name (string): Toadkids
Arg [1] : symbol (string): TOADK
Arg [2] : supply (uint256): 2222
-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 00000000000000000000000000000000000000000000000000000000000008ae
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [4] : 546f61646b696473000000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [6] : 544f41444b000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
45270:3739:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39143:237;;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;39143:237:0;;;;;;;;27662:100;;;:::i;:::-;;;;;;;:::i;29122:221::-;;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1692:32:1;;;1674:51;;1662:2;1647:18;29122:221:0;1528:203:1;28659:397:0;;;;;;:::i;:::-;;:::i;:::-;;39796:113;39884:10;:17;39796:113;;;2338:25:1;;;2326:2;2311:18;39796:113:0;2192:177:1;45598:34:0;;;;;;;;;47179:302;;;;;;:::i;:::-;;:::i;45641:43::-;;;;;;:::i;:::-;;;;;;;;;;;;;;39464:256;;;;;;:::i;:::-;;:::i;48655:143::-;;;:::i;45741:46::-;;;;;;:::i;:::-;;;;;;;;;;;;;;45391:19;;;;;-1:-1:-1;;;;;45391:19:0;;;30388:151;;;;;;:::i;:::-;;:::i;48306:341::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;39986:233::-;;;;;;:::i;:::-;;:::i;48806:88::-;;;;;;:::i;:::-;;:::i;45417:25::-;;;;;-1:-1:-1;;;;;45417:25:0;;;27356:239;;;;;;:::i;:::-;;:::i;27086:208::-;;;;;;:::i;:::-;;:::i;10175:148::-;;;:::i;9524:87::-;9597:6;;-1:-1:-1;;;;;9597:6:0;9524:87;;47832:121;;;;;;:::i;:::-;;:::i;27831:104::-;;;:::i;29415:295::-;;;;;;:::i;:::-;;:::i;47489:335::-;;;;;;:::i;:::-;;:::i;28006:360::-;;;;;;:::i;:::-;;:::i;45482:24::-;;;;;;46378:793;;;;;;:::i;:::-;;:::i;45513:28::-;;;;;;45691:43;;;;;;:::i;:::-;;;;;;;;;;;;;;45550:41;;;;;;29781:164;;;;;;:::i;:::-;-1:-1:-1;;;;;29902:25:0;;;29878:4;29902:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;29781:164;47961:106;;;;;;:::i;:::-;;:::i;10478:244::-;;;;;;:::i;:::-;;:::i;48204:94::-;;;:::i;48075:121::-;;;;;;:::i;:::-;;:::i;39143:237::-;39245:4;-1:-1:-1;;;;;;39269:50:0;;-1:-1:-1;;;39269:50:0;;:103;;;39336:36;39360:11;39336:23;:36::i;:::-;39262:110;39143:237;-1:-1:-1;;39143:237:0:o;27662:100::-;27716:13;27749:5;27742:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27662:100;:::o;29122:221::-;29198:7;32451:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32451:16:0;29218:73;;;;-1:-1:-1;;;29218:73:0;;7852:2:1;29218:73:0;;;7834:21:1;7891:2;7871:18;;;7864:30;7930:34;7910:18;;;7903:62;-1:-1:-1;;;7981:18:1;;;7974:42;8033:19;;29218:73:0;;;;;;;;;-1:-1:-1;29311:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;29311:24:0;;29122:221::o;28659:397::-;28740:13;28756:23;28771:7;28756:14;:23::i;:::-;28740:39;;28804:5;-1:-1:-1;;;;;28798:11:0;:2;-1:-1:-1;;;;;28798:11:0;;;28790:57;;;;-1:-1:-1;;;28790:57:0;;8265:2:1;28790:57:0;;;8247:21:1;8304:2;8284:18;;;8277:30;8343:34;8323:18;;;8316:62;-1:-1:-1;;;8394:18:1;;;8387:31;8435:19;;28790:57:0;8063:397:1;28790:57:0;8755:10;-1:-1:-1;;;;;28868:21:0;;;;:62;;-1:-1:-1;28893:37:0;28910:5;8755:10;29781:164;:::i;28893:37::-;28860:154;;;;-1:-1:-1;;;28860:154:0;;8667:2:1;28860:154:0;;;8649:21:1;8706:2;8686:18;;;8679:30;8745:34;8725:18;;;8718:62;8816:26;8796:18;;;8789:54;8860:19;;28860:154:0;8465:420:1;28860:154:0;29027:21;29036:2;29040:7;29027:8;:21::i;:::-;28729:327;28659:397;;:::o;47179:302::-;47285:9;;47275:7;:19;47271:154;;;47311:5;;:36;;-1:-1:-1;;;47311:36:0;;-1:-1:-1;;;;;9120:15:1;;;47311:36:0;;;9102:34:1;9172:15;;;9152:18;;;9145:43;47311:5:0;;;;:26;;9037:18:1;;47311:36:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;47362:17:0;;;;;;:11;:17;;;;;:19;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;47396:15:0;;;;;;:11;:15;;;;;:17;;;;;;:::i;:::-;;;;;;47271:154;47435:38;47455:4;47461:2;47465:7;47435:19;:38::i;39464:256::-;39561:7;39597:23;39614:5;39597:16;:23::i;:::-;39589:5;:31;39581:87;;;;-1:-1:-1;;;39581:87:0;;9814:2:1;39581:87:0;;;9796:21:1;9853:2;9833:18;;;9826:30;9892:34;9872:18;;;9865:62;-1:-1:-1;;;9943:18:1;;;9936:41;9994:19;;39581:87:0;9612:407:1;39581:87:0;-1:-1:-1;;;;;;39686:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;39464:256::o;48655:143::-;9597:6;;-1:-1:-1;;;;;9597:6:0;8755:10;9744:23;9736:68;;;;-1:-1:-1;;;9736:68:0;;;;;;;:::i;:::-;48753:37:::1;::::0;48721:21:::1;::::0;48761:10:::1;::::0;48753:37;::::1;;;::::0;48721:21;;48703:15:::1;48753:37:::0;48703:15;48753:37;48721:21;48761:10;48753:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;48692:106;48655:143::o:0;30388:151::-;30492:39;30509:4;30515:2;30519:7;30492:39;;;;;;;;;;;;:16;:39::i;48306:341::-;48366:16;48395:18;48416:16;48426:5;48416:9;:16::i;:::-;48395:37;;48445:25;48487:10;48473:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48473:25:0;;48445:53;;48513:9;48509:105;48528:10;48524:1;:14;48509:105;;;48573:29;48593:5;48600:1;48573:19;:29::i;:::-;48559:8;48568:1;48559:11;;;;;;;;:::i;:::-;;;;;;;;;;:43;48540:3;;;;:::i;:::-;;;;48509:105;;;-1:-1:-1;48631:8:0;48306:341;-1:-1:-1;;;48306:341:0:o;39986:233::-;40061:7;40097:30;39884:10;:17;;39796:113;40097:30;40089:5;:38;40081:95;;;;-1:-1:-1;;;40081:95:0;;10719:2:1;40081:95:0;;;10701:21:1;10758:2;10738:18;;;10731:30;10797:34;10777:18;;;10770:62;-1:-1:-1;;;10848:18:1;;;10841:42;10900:19;;40081:95:0;10517:408:1;40081:95:0;40194:10;40205:5;40194:17;;;;;;;;:::i;:::-;;;;;;;;;40187:24;;39986:233;;;:::o;48806:88::-;9597:6;;-1:-1:-1;;;;;9597:6:0;8755:10;9744:23;9736:68;;;;-1:-1:-1;;;9736:68:0;;;;;;;:::i;:::-;48873:13;;::::1;::::0;:7:::1;::::0;:13:::1;::::0;::::1;::::0;::::1;:::i;27356:239::-:0;27428:7;27464:16;;;:7;:16;;;;;;-1:-1:-1;;;;;27464:16:0;27499:19;27491:73;;;;-1:-1:-1;;;27491:73:0;;11132:2:1;27491:73:0;;;11114:21:1;11171:2;11151:18;;;11144:30;11210:34;11190:18;;;11183:62;-1:-1:-1;;;11261:18:1;;;11254:39;11310:19;;27491:73:0;10930:405:1;27086:208:0;27158:7;-1:-1:-1;;;;;27186:19:0;;27178:74;;;;-1:-1:-1;;;27178:74:0;;11542:2:1;27178:74:0;;;11524:21:1;11581:2;11561:18;;;11554:30;11620:34;11600:18;;;11593:62;-1:-1:-1;;;11671:18:1;;;11664:40;11721:19;;27178:74:0;11340:406:1;27178:74:0;-1:-1:-1;;;;;;27270:16:0;;;;;:9;:16;;;;;;;27086:208::o;10175:148::-;9597:6;;-1:-1:-1;;;;;9597:6:0;8755:10;9744:23;9736:68;;;;-1:-1:-1;;;9736:68:0;;;;;;;:::i;:::-;10266:6:::1;::::0;10245:40:::1;::::0;10282:1:::1;::::0;-1:-1:-1;;;;;10266:6:0::1;::::0;10245:40:::1;::::0;10282:1;;10245:40:::1;10296:6;:19:::0;;-1:-1:-1;;;;;;10296:19:0::1;::::0;;10175:148::o;47832:121::-;9597:6;;-1:-1:-1;;;;;9597:6:0;8755:10;9744:23;9736:68;;;;-1:-1:-1;;;9736:68:0;;;;;;;:::i;:::-;47912:14:::1;:33:::0;47832:121::o;27831:104::-;27887:13;27920:7;27913:14;;;;;:::i;29415:295::-;-1:-1:-1;;;;;29518:24:0;;8755:10;29518:24;;29510:62;;;;-1:-1:-1;;;29510:62:0;;11953:2:1;29510:62:0;;;11935:21:1;11992:2;11972:18;;;11965:30;12031:27;12011:18;;;12004:55;12076:18;;29510:62:0;11751:349:1;29510:62:0;8755:10;29585:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;29585:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;29585:53:0;;;;;;;;;;29654:48;;540:41:1;;;29585:42:0;;8755:10;29654:48;;513:18:1;29654:48:0;;;;;;;29415:295;;:::o;47489:335::-;47618:9;;47608:7;:19;47604:154;;;47644:5;;:36;;-1:-1:-1;;;47644:36:0;;-1:-1:-1;;;;;9120:15:1;;;47644:36:0;;;9102:34:1;9172:15;;;9152:18;;;9145:43;47644:5:0;;;;:26;;9037:18:1;;47644:36:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;47695:17:0;;;;;;:11;:17;;;;;:19;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;47729:15:0;;;;;;:11;:15;;;;;:17;;;;;;:::i;:::-;;;;;;47604:154;47768:48;47792:4;47798:2;47802:7;47811:4;47768:23;:48::i;:::-;47489:335;;;;:::o;28006:360::-;32427:4;32451:16;;;:7;:16;;;;;;28079:13;;-1:-1:-1;;;;;32451:16:0;28105:76;;;;-1:-1:-1;;;28105:76:0;;12307:2:1;28105:76:0;;;12289:21:1;12346:2;12326:18;;;12319:30;12385:34;12365:18;;;12358:62;-1:-1:-1;;;12436:18:1;;;12429:45;12491:19;;28105:76:0;12105:411:1;28105:76:0;28194:21;28218:10;:8;:10::i;:::-;28194:34;;28270:1;28252:7;28246:21;:25;:112;;;;;;;;;;;;;;;;;28311:7;28320:18;:7;:16;:18::i;:::-;28294:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;28246:112;28239:119;28006:360;-1:-1:-1;;;28006:360:0:o;46378:793::-;46079:8;;:28;;-1:-1:-1;;;46079:28:0;;;;;2338:25:1;;;46450:7:0;;46111:10;;-1:-1:-1;;;;;46079:8:0;;;;:16;;2311:18:1;;46079:28:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;46079:42:0;;46071:101;;;;-1:-1:-1;;;46071:101:0;;;;;;;:::i;:::-;46079:8:::1;::::0;:28:::1;::::0;-1:-1:-1;;;46079:28:0;;::::1;::::0;::::1;2338:25:1::0;;;46473:7:0;;46111:10:::1;::::0;-1:-1:-1;;;;;46079:8:0;;::::1;::::0;:16:::1;::::0;2311:18:1;;46079:28:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;46079:42:0::1;;46071:101;;;;-1:-1:-1::0;;;46071:101:0::1;;;;;;;:::i;:::-;46493:14:::2;46510:13;39884:10:::0;:17;;39796:113;46510:13:::2;46493:30;;46551:9;;46542:6;:18;46534:91;;;::::0;-1:-1:-1;;;46534:91:0;;13869:2:1;46534:91:0::2;::::0;::::2;13851:21:1::0;13908:2;13888:18;;;13881:30;13947:32;13927:18;;;13920:60;13997:18;;46534:91:0::2;13667:354:1::0;46534:91:0::2;46655:7;46644;:18;;46636:91;;;::::0;-1:-1:-1;;;46636:91:0;;14228:2:1;46636:91:0::2;::::0;::::2;14210:21:1::0;14267:2;14247:18;;;14240:30;14306:32;14286:18;;;14279:60;14356:18;;46636:91:0::2;14026:354:1::0;46636:91:0::2;46746:14;::::0;::::2;;46738:85;;;::::0;-1:-1:-1;;;46738:85:0;;14587:2:1;46738:85:0::2;::::0;::::2;14569:21:1::0;14626:2;14606:18;;;14599:30;14665:26;14645:18;;;14638:54;14709:18;;46738:85:0::2;14385:348:1::0;46738:85:0::2;46836:5;::::0;46859:14:::2;::::0;46836:38:::2;::::0;-1:-1:-1;;;46836:38:0;;46847:10:::2;46836:38;::::0;::::2;14912:51:1::0;14979:18;;;14972:34;;;;-1:-1:-1;;;;;46836:5:0;;::::2;::::0;:10:::2;::::0;14885:18:1;;46836:38:0::2;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;::::0;::::2;;;;;-1:-1:-1::0;;46906:9:0::2;::::0;;46885:18:::2;46926:20:::0;;;:8:::2;:20;::::0;;;;46949:1:::2;46926:24:::0;;46961:11;;46906:9;;-1:-1:-1;46961:11:0;;-1:-1:-1;46961:11:0::2;::::0;::::2;:::i;:::-;::::0;;;-1:-1:-1;;46983:20:0::2;::::0;;;:8:::2;:20;::::0;;;;47006:15:::2;46983:38:::0;;47032:33:::2;47042:10;46992::::0;47032:9:::2;:33::i;:::-;47088:10;47076:23;::::0;;;:11:::2;:23;::::0;;;;:25;;;::::2;::::0;::::2;:::i;:::-;::::0;;;-1:-1:-1;;47117:46:0::2;::::0;;15219:25:1;;;15275:2;15260:18;;15253:34;;;15303:18;;;15296:34;;;47117:46:0::2;::::0;15207:2:1;15192:18;47117:46:0::2;;;;;;;46482:689;;46183:1:::1;46378:793:::0;;;:::o;47961:106::-;9597:6;;-1:-1:-1;;;;;9597:6:0;8755:10;9744:23;9736:68;;;;-1:-1:-1;;;9736:68:0;;;;;;;:::i;:::-;48031:5:::1;:28:::0;;-1:-1:-1;;;;;;48031:28:0::1;-1:-1:-1::0;;;;;48031:28:0;;;::::1;::::0;;;::::1;::::0;;47961:106::o;10478:244::-;9597:6;;-1:-1:-1;;;;;9597:6:0;8755:10;9744:23;9736:68;;;;-1:-1:-1;;;9736:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;10567:22:0;::::1;10559:73;;;::::0;-1:-1:-1;;;10559:73:0;;15543:2:1;10559:73:0::1;::::0;::::1;15525:21:1::0;15582:2;15562:18;;;15555:30;15621:34;15601:18;;;15594:62;-1:-1:-1;;;15672:18:1;;;15665:36;15718:19;;10559:73:0::1;15341:402:1::0;10559:73:0::1;10669:6;::::0;10648:38:::1;::::0;-1:-1:-1;;;;;10648:38:0;;::::1;::::0;10669:6:::1;::::0;10648:38:::1;::::0;10669:6:::1;::::0;10648:38:::1;10697:6;:17:::0;;-1:-1:-1;;;;;;10697:17:0::1;-1:-1:-1::0;;;;;10697:17:0;;;::::1;::::0;;;::::1;::::0;;10478:244::o;48204:94::-;9597:6;;-1:-1:-1;;;;;9597:6:0;8755:10;9744:23;9736:68;;;;-1:-1:-1;;;9736:68:0;;;;;;;:::i;:::-;48276:14:::1;::::0;;-1:-1:-1;;48258:32:0;::::1;48276:14;::::0;;::::1;48275:15;48258:32;::::0;;48204:94::o;48075:121::-;9597:6;;-1:-1:-1;;;;;9597:6:0;8755:10;9744:23;9736:68;;;;-1:-1:-1;;;9736:68:0;;;;;;;:::i;:::-;48151:8:::1;:37:::0;;-1:-1:-1;;;;;;48151:37:0::1;-1:-1:-1::0;;;;;48151:37:0;;;::::1;::::0;;;::::1;::::0;;48075:121::o;26730:292::-;26832:4;-1:-1:-1;;;;;;26856:40:0;;-1:-1:-1;;;26856:40:0;;:105;;-1:-1:-1;;;;;;;26913:48:0;;-1:-1:-1;;;26913:48:0;26856:105;:158;;;-1:-1:-1;;;;;;;;;;19936:40:0;;;26978:36;19827:157;36239:174;36314:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;36314:29:0;-1:-1:-1;;;;;36314:29:0;;;;;;;;:24;;36368:23;36314:24;36368:14;:23::i;:::-;-1:-1:-1;;;;;36359:46:0;;;;;;;;;;;36239:174;;:::o;30012:305::-;30173:41;8755:10;30206:7;30173:18;:41::i;:::-;30165:103;;;;-1:-1:-1;;;30165:103:0;;;;;;;:::i;:::-;30281:28;30291:4;30297:2;30301:7;30281:9;:28::i;30610:285::-;30742:41;8755:10;30775:7;30742:18;:41::i;:::-;30734:103;;;;-1:-1:-1;;;30734:103:0;;;;;;;:::i;:::-;30848:39;30862:4;30868:2;30872:7;30881:5;30848:13;:39::i;48906:100::-;48958:13;48991:7;48984:14;;;;;:::i;6885:723::-;6941:13;7162:10;7158:53;;-1:-1:-1;;7189:10:0;;;;;;;;;;;;-1:-1:-1;;;7189:10:0;;;;;6885:723::o;7158:53::-;7236:5;7221:12;7277:78;7284:9;;7277:78;;7310:8;;;;:::i;:::-;;-1:-1:-1;7333:10:0;;-1:-1:-1;7341:2:0;7333:10;;:::i;:::-;;;7277:78;;;7365:19;7397:6;7387:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;7387:17:0;;7365:39;;7415:154;7422:10;;7415:154;;7449:11;7459:1;7449:11;;:::i;:::-;;-1:-1:-1;7518:10:0;7526:2;7518:5;:10;:::i;:::-;7505:24;;:2;:24;:::i;:::-;7492:39;;7475:6;7482;7475:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;7475:56:0;;;;;;;;-1:-1:-1;7546:11:0;7555:2;7546:11;;:::i;:::-;;;7415:154;;;7593:6;6885:723;-1:-1:-1;;;;6885:723:0:o;33346:110::-;33422:26;33432:2;33436:7;33422:26;;;;;;;;;;;;:9;:26::i;32656:348::-;32749:4;32451:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32451:16:0;32766:73;;;;-1:-1:-1;;;32766:73:0;;17005:2:1;32766:73:0;;;16987:21:1;17044:2;17024:18;;;17017:30;17083:34;17063:18;;;17056:62;-1:-1:-1;;;17134:18:1;;;17127:42;17186:19;;32766:73:0;16803:408:1;32766:73:0;32850:13;32866:23;32881:7;32866:14;:23::i;:::-;32850:39;;32919:5;-1:-1:-1;;;;;32908:16:0;:7;-1:-1:-1;;;;;32908:16:0;;:51;;;;32952:7;-1:-1:-1;;;;;32928:31:0;:20;32940:7;32928:11;:20::i;:::-;-1:-1:-1;;;;;32928:31:0;;32908:51;:87;;;-1:-1:-1;;;;;;29902:25:0;;;29878:4;29902:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;32963:32;29781:164;35577:544;35702:4;-1:-1:-1;;;;;35675:31:0;:23;35690:7;35675:14;:23::i;:::-;-1:-1:-1;;;;;35675:31:0;;35667:85;;;;-1:-1:-1;;;35667:85:0;;17418:2:1;35667:85:0;;;17400:21:1;17457:2;17437:18;;;17430:30;17496:34;17476:18;;;17469:62;-1:-1:-1;;;17547:18:1;;;17540:39;17596:19;;35667:85:0;17216:405:1;35667:85:0;-1:-1:-1;;;;;35771:16:0;;35763:65;;;;-1:-1:-1;;;35763:65:0;;17828:2:1;35763:65:0;;;17810:21:1;17867:2;17847:18;;;17840:30;17906:34;17886:18;;;17879:62;-1:-1:-1;;;17957:18:1;;;17950:34;18001:19;;35763:65:0;17626:400:1;35763:65:0;35841:39;35862:4;35868:2;35872:7;35841:20;:39::i;:::-;35945:29;35962:1;35966:7;35945:8;:29::i;:::-;-1:-1:-1;;;;;35987:15:0;;;;;;:9;:15;;;;;:20;;36006:1;;35987:15;:20;;36006:1;;35987:20;:::i;:::-;;;;-1:-1:-1;;;;;;;36018:13:0;;;;;;:9;:13;;;;;:18;;36035:1;;36018:13;:18;;36035:1;;36018:18;:::i;:::-;;;;-1:-1:-1;;36047:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;36047:21:0;-1:-1:-1;;;;;36047:21:0;;;;;;;;;36086:27;;36047:16;;36086:27;;;;;;;35577:544;;;:::o;31777:272::-;31891:28;31901:4;31907:2;31911:7;31891:9;:28::i;:::-;31938:48;31961:4;31967:2;31971:7;31980:5;31938:22;:48::i;:::-;31930:111;;;;-1:-1:-1;;;31930:111:0;;;;;;;:::i;33683:250::-;33779:18;33785:2;33789:7;33779:5;:18::i;:::-;33816:54;33847:1;33851:2;33855:7;33864:5;33816:22;:54::i;:::-;33808:117;;;;-1:-1:-1;;;33808:117:0;;;;;;;:::i;40832:555::-;-1:-1:-1;;;;;41004:18:0;;41000:187;;41039:40;41071:7;42214:10;:17;;42187:24;;;;:15;:24;;;;;:44;;;42242:24;;;;;;;;;;;;42110:164;41039:40;41000:187;;;41109:2;-1:-1:-1;;;;;41101:10:0;:4;-1:-1:-1;;;;;41101:10:0;;41097:90;;41128:47;41161:4;41167:7;41128:32;:47::i;:::-;-1:-1:-1;;;;;41201:16:0;;41197:183;;41234:45;41271:7;41234:36;:45::i;41197:183::-;41307:4;-1:-1:-1;;;;;41301:10:0;:2;-1:-1:-1;;;;;41301:10:0;;41297:83;;41328:40;41356:2;41360:7;41328:27;:40::i;36978:843::-;37099:4;-1:-1:-1;;;;;37125:13:0;;11706:20;11745:8;37121:693;;37161:72;;-1:-1:-1;;;37161:72:0;;-1:-1:-1;;;;;37161:36:0;;;;;:72;;8755:10;;37212:4;;37218:7;;37227:5;;37161:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37161:72:0;;;;;;;;-1:-1:-1;;37161:72:0;;;;;;;;;;;;:::i;:::-;;;37157:602;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;37407:13:0;;37403:341;;37450:60;;-1:-1:-1;;;37450:60:0;;;;;;;:::i;37403:341::-;37694:6;37688:13;37679:6;37675:2;37671:15;37664:38;37157:602;-1:-1:-1;;;;;;37284:55:0;-1:-1:-1;;;37284:55:0;;-1:-1:-1;37277:62:0;;37121:693;-1:-1:-1;37798:4:0;36978:843;;;;;;:::o;34269:382::-;-1:-1:-1;;;;;34349:16:0;;34341:61;;;;-1:-1:-1;;;34341:61:0;;19400:2:1;34341:61:0;;;19382:21:1;;;19419:18;;;19412:30;19478:34;19458:18;;;19451:62;19530:18;;34341:61:0;19198:356:1;34341:61:0;32427:4;32451:16;;;:7;:16;;;;;;-1:-1:-1;;;;;32451:16:0;:30;34413:58;;;;-1:-1:-1;;;34413:58:0;;19761:2:1;34413:58:0;;;19743:21:1;19800:2;19780:18;;;19773:30;19839;19819:18;;;19812:58;19887:18;;34413:58:0;19559:352:1;34413:58:0;34484:45;34513:1;34517:2;34521:7;34484:20;:45::i;:::-;-1:-1:-1;;;;;34542:13:0;;;;;;:9;:13;;;;;:18;;34559:1;;34542:13;:18;;34559:1;;34542:18;:::i;:::-;;;;-1:-1:-1;;34571:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;34571:21:0;-1:-1:-1;;;;;34571:21:0;;;;;;;;34610:33;;34571:16;;;34610:33;;34571:16;;34610:33;34269:382;;:::o;42901:988::-;43167:22;43217:1;43192:22;43209:4;43192:16;:22::i;:::-;:26;;;;:::i;:::-;43229:18;43250:26;;;:17;:26;;;;;;43167:51;;-1:-1:-1;43383:28:0;;;43379:328;;-1:-1:-1;;;;;43450:18:0;;43428:19;43450:18;;;:12;:18;;;;;;;;:34;;;;;;;;;43501:30;;;;;;:44;;;43618:30;;:17;:30;;;;;:43;;;43379:328;-1:-1:-1;43803:26:0;;;;:17;:26;;;;;;;;43796:33;;;-1:-1:-1;;;;;43847:18:0;;;;;:12;:18;;;;;:34;;;;;;;43840:41;42901:988::o;44184:1079::-;44462:10;:17;44437:22;;44462:21;;44482:1;;44462:21;:::i;:::-;44494:18;44515:24;;;:15;:24;;;;;;44888:10;:26;;44437:46;;-1:-1:-1;44515:24:0;;44437:46;;44888:26;;;;;;:::i;:::-;;;;;;;;;44866:48;;44952:11;44927:10;44938;44927:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;45032:28;;;:15;:28;;;;;;;:41;;;45204:24;;;;;45197:31;45239:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;44255:1008;;;44184:1079;:::o;41688:221::-;41773:14;41790:20;41807:2;41790:16;:20::i;:::-;-1:-1:-1;;;;;41821:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;41866:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;41688:221:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;68:71;14:131;:::o;150:245::-;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:258::-;664:1;674:113;688:6;685:1;682:13;674:113;;;764:11;;;758:18;745:11;;;738:39;710:2;703:10;674:113;;;805:6;802:1;799:13;796:48;;;-1:-1:-1;;840:1:1;822:16;;815:27;592:258::o;855:::-;897:3;935:5;929:12;962:6;957:3;950:19;978:63;1034:6;1027:4;1022:3;1018:14;1011:4;1004:5;1000:16;978:63;:::i;:::-;1095:2;1074:15;-1:-1:-1;;1070:29:1;1061:39;;;;1102:4;1057:50;;855:258;-1:-1:-1;;855:258:1:o;1118:220::-;1267:2;1256:9;1249:21;1230:4;1287:45;1328:2;1317:9;1313:18;1305:6;1287:45;:::i;1343:180::-;1402:6;1455:2;1443:9;1434:7;1430:23;1426:32;1423:52;;;1471:1;1468;1461:12;1423:52;-1:-1:-1;1494:23:1;;1343:180;-1:-1:-1;1343:180:1:o;1736:131::-;-1:-1:-1;;;;;1811:31:1;;1801:42;;1791:70;;1857:1;1854;1847:12;1872:315;1940:6;1948;2001:2;1989:9;1980:7;1976:23;1972:32;1969:52;;;2017:1;2014;2007:12;1969:52;2056:9;2043:23;2075:31;2100:5;2075:31;:::i;:::-;2125:5;2177:2;2162:18;;;;2149:32;;-1:-1:-1;;;1872:315:1:o;2374:456::-;2451:6;2459;2467;2520:2;2508:9;2499:7;2495:23;2491:32;2488:52;;;2536:1;2533;2526:12;2488:52;2575:9;2562:23;2594:31;2619:5;2594:31;:::i;:::-;2644:5;-1:-1:-1;2701:2:1;2686:18;;2673:32;2714:33;2673:32;2714:33;:::i;:::-;2374:456;;2766:7;;-1:-1:-1;;;2820:2:1;2805:18;;;;2792:32;;2374:456::o;2835:247::-;2894:6;2947:2;2935:9;2926:7;2922:23;2918:32;2915:52;;;2963:1;2960;2953:12;2915:52;3002:9;2989:23;3021:31;3046:5;3021:31;:::i;3310:632::-;3481:2;3533:21;;;3603:13;;3506:18;;;3625:22;;;3452:4;;3481:2;3704:15;;;;3678:2;3663:18;;;3452:4;3747:169;3761:6;3758:1;3755:13;3747:169;;;3822:13;;3810:26;;3891:15;;;;3856:12;;;;3783:1;3776:9;3747:169;;;-1:-1:-1;3933:3:1;;3310:632;-1:-1:-1;;;;;;3310:632:1:o;3947:127::-;4008:10;4003:3;3999:20;3996:1;3989:31;4039:4;4036:1;4029:15;4063:4;4060:1;4053:15;4079:632;4144:5;4174:18;4215:2;4207:6;4204:14;4201:40;;;4221:18;;:::i;:::-;4296:2;4290:9;4264:2;4350:15;;-1:-1:-1;;4346:24:1;;;4372:2;4342:33;4338:42;4326:55;;;4396:18;;;4416:22;;;4393:46;4390:72;;;4442:18;;:::i;:::-;4482:10;4478:2;4471:22;4511:6;4502:15;;4541:6;4533;4526:22;4581:3;4572:6;4567:3;4563:16;4560:25;4557:45;;;4598:1;4595;4588:12;4557:45;4648:6;4643:3;4636:4;4628:6;4624:17;4611:44;4703:1;4696:4;4687:6;4679;4675:19;4671:30;4664:41;;;;4079:632;;;;;:::o;4716:451::-;4785:6;4838:2;4826:9;4817:7;4813:23;4809:32;4806:52;;;4854:1;4851;4844:12;4806:52;4894:9;4881:23;4927:18;4919:6;4916:30;4913:50;;;4959:1;4956;4949:12;4913:50;4982:22;;5035:4;5027:13;;5023:27;-1:-1:-1;5013:55:1;;5064:1;5061;5054:12;5013:55;5087:74;5153:7;5148:2;5135:16;5130:2;5126;5122:11;5087:74;:::i;5398:416::-;5463:6;5471;5524:2;5512:9;5503:7;5499:23;5495:32;5492:52;;;5540:1;5537;5530:12;5492:52;5579:9;5566:23;5598:31;5623:5;5598:31;:::i;:::-;5648:5;-1:-1:-1;5705:2:1;5690:18;;5677:32;5747:15;;5740:23;5728:36;;5718:64;;5778:1;5775;5768:12;5718:64;5801:7;5791:17;;;5398:416;;;;;:::o;5819:795::-;5914:6;5922;5930;5938;5991:3;5979:9;5970:7;5966:23;5962:33;5959:53;;;6008:1;6005;5998:12;5959:53;6047:9;6034:23;6066:31;6091:5;6066:31;:::i;:::-;6116:5;-1:-1:-1;6173:2:1;6158:18;;6145:32;6186:33;6145:32;6186:33;:::i;:::-;6238:7;-1:-1:-1;6292:2:1;6277:18;;6264:32;;-1:-1:-1;6347:2:1;6332:18;;6319:32;6374:18;6363:30;;6360:50;;;6406:1;6403;6396:12;6360:50;6429:22;;6482:4;6474:13;;6470:27;-1:-1:-1;6460:55:1;;6511:1;6508;6501:12;6460:55;6534:74;6600:7;6595:2;6582:16;6577:2;6573;6569:11;6534:74;:::i;:::-;6524:84;;;5819:795;;;;;;;:::o;6619:248::-;6687:6;6695;6748:2;6736:9;6727:7;6723:23;6719:32;6716:52;;;6764:1;6761;6754:12;6716:52;-1:-1:-1;;6787:23:1;;;6857:2;6842:18;;;6829:32;;-1:-1:-1;6619:248:1:o;6872:388::-;6940:6;6948;7001:2;6989:9;6980:7;6976:23;6972:32;6969:52;;;7017:1;7014;7007:12;6969:52;7056:9;7043:23;7075:31;7100:5;7075:31;:::i;:::-;7125:5;-1:-1:-1;7182:2:1;7167:18;;7154:32;7195:33;7154:32;7195:33;:::i;7265:380::-;7344:1;7340:12;;;;7387;;;7408:61;;7462:4;7454:6;7450:17;7440:27;;7408:61;7515:2;7507:6;7504:14;7484:18;7481:38;7478:161;;;7561:10;7556:3;7552:20;7549:1;7542:31;7596:4;7593:1;7586:15;7624:4;7621:1;7614:15;7478:161;;7265:380;;;:::o;9199:127::-;9260:10;9255:3;9251:20;9248:1;9241:31;9291:4;9288:1;9281:15;9315:4;9312:1;9305:15;9331:136;9370:3;9398:5;9388:39;;9407:18;;:::i;:::-;-1:-1:-1;;;9443:18:1;;9331:136::o;9472:135::-;9511:3;-1:-1:-1;;9532:17:1;;9529:43;;;9552:18;;:::i;:::-;-1:-1:-1;9599:1:1;9588:13;;9472:135::o;10024:356::-;10226:2;10208:21;;;10245:18;;;10238:30;10304:34;10299:2;10284:18;;10277:62;10371:2;10356:18;;10024:356::o;10385:127::-;10446:10;10441:3;10437:20;10434:1;10427:31;10477:4;10474:1;10467:15;10501:4;10498:1;10491:15;12521:470;12700:3;12738:6;12732:13;12754:53;12800:6;12795:3;12788:4;12780:6;12776:17;12754:53;:::i;:::-;12870:13;;12829:16;;;;12892:57;12870:13;12829:16;12926:4;12914:17;;12892:57;:::i;:::-;12965:20;;12521:470;-1:-1:-1;;;;12521:470:1:o;12996:251::-;13066:6;13119:2;13107:9;13098:7;13094:23;13090:32;13087:52;;;13135:1;13132;13125:12;13087:52;13167:9;13161:16;13186:31;13211:5;13186:31;:::i;13252:410::-;13454:2;13436:21;;;13493:2;13473:18;;;13466:30;13532:34;13527:2;13512:18;;13505:62;-1:-1:-1;;;13598:2:1;13583:18;;13576:44;13652:3;13637:19;;13252:410::o;15748:413::-;15950:2;15932:21;;;15989:2;15969:18;;;15962:30;16028:34;16023:2;16008:18;;16001:62;-1:-1:-1;;;16094:2:1;16079:18;;16072:47;16151:3;16136:19;;15748:413::o;16166:127::-;16227:10;16222:3;16218:20;16215:1;16208:31;16258:4;16255:1;16248:15;16282:4;16279:1;16272:15;16298:120;16338:1;16364;16354:35;;16369:18;;:::i;:::-;-1:-1:-1;16403:9:1;;16298:120::o;16423:125::-;16463:4;16491:1;16488;16485:8;16482:34;;;16496:18;;:::i;:::-;-1:-1:-1;16533:9:1;;16423:125::o;16553:112::-;16585:1;16611;16601:35;;16616:18;;:::i;:::-;-1:-1:-1;16650:9:1;;16553:112::o;16670:128::-;16710:3;16741:1;16737:6;16734:1;16731:13;16728:39;;;16747:18;;:::i;:::-;-1:-1:-1;16783:9:1;;16670:128::o;18031:414::-;18233:2;18215:21;;;18272:2;18252:18;;;18245:30;18311:34;18306:2;18291:18;;18284:62;-1:-1:-1;;;18377:2:1;18362:18;;18355:48;18435:3;18420:19;;18031:414::o;18450:489::-;-1:-1:-1;;;;;18719:15:1;;;18701:34;;18771:15;;18766:2;18751:18;;18744:43;18818:2;18803:18;;18796:34;;;18866:3;18861:2;18846:18;;18839:31;;;18644:4;;18887:46;;18913:19;;18905:6;18887:46;:::i;:::-;18879:54;18450:489;-1:-1:-1;;;;;;18450:489:1:o;18944:249::-;19013:6;19066:2;19054:9;19045:7;19041:23;19037:32;19034:52;;;19082:1;19079;19072:12;19034:52;19114:9;19108:16;19133:30;19157:5;19133:30;:::i;19916:127::-;19977:10;19972:3;19968:20;19965:1;19958:31;20008:4;20005:1;19998:15;20032:4;20029:1;20022:15
Swarm Source
ipfs://04d640816a20f95b337af3721e583b36a6c7320658fc34c1a8b88e8890f34841
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.