Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
1,000 TAMA
Holders
224
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 TAMALoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Tamadoge
Compiler Version
v0.8.4+commit.c7e474f2
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-10-17 */ // SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Counters.sol) pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } } // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * 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; /** * @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 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 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 the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @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); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: @openzeppelin/contracts/token/ERC721/ERC721.sol // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: address zero is not a valid owner"); 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: invalid token ID"); 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) { _requireMinted(tokenId); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overridden 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 token owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { _requireMinted(tokenId); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token 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: caller is not token 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) { address owner = ERC721.ownerOf(tokenId); return (spender == owner || isApprovedForAll(owner, spender) || getApproved(tokenId) == spender); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _afterTokenTransfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); _afterTokenTransfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); _afterTokenTransfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits an {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits an {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Reverts if the `tokenId` has not been minted yet. */ function _requireMinted(uint256 tokenId) internal view virtual { require(_exists(tokenId), "ERC721: invalid token ID"); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { /// @solidity memory-safe-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` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } // File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Burnable.sol // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC721/extensions/ERC721Burnable.sol) pragma solidity ^0.8.0; /** * @title ERC721 Burnable Token * @dev ERC721 Token that can be burned (destroyed). */ abstract contract ERC721Burnable is Context, ERC721 { /** * @dev Burns `tokenId`. See {ERC721-_burn}. * * Requirements: * * - The caller must own `tokenId` or be an approved operator. */ function burn(uint256 tokenId) public virtual { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: caller is not token owner nor approved"); _burn(tokenId); } } // File: Tamadoge.sol pragma solidity 0.8.4; contract Tamadoge is ERC721, Ownable, ERC721Burnable { // State Variables using Counters for Counters.Counter; Counters.Counter private tokenIdCounter; string public currentBaseURI; string public dummyURI; string public currentContractURI; using Strings for uint256; // Constructor constructor(string memory _name, string memory _symbol, address _owner, string memory _currentBaseURI, string memory _dummyURI) ERC721(_name, _symbol) { // Set Dummy URI dummyURI = _dummyURI; // Set Base URI currentBaseURI = _currentBaseURI; // Transfer Ownership transferOwnership(_owner); // nextTokenId is initialized to 1 tokenIdCounter.increment(); } // Base URI function _baseURI() internal view override returns (string memory) { return currentBaseURI; } // Contract URI function contractURI() public view returns (string memory) { return currentContractURI; } /** @dev Set Base URI - onlyOwner */ function setBaseURI(string memory _newBaseURI) public onlyOwner { currentBaseURI = _newBaseURI; } /** @dev Set Dummy URI - onlyOwner */ function setDummyURI(string memory _dummyURI) public onlyOwner { dummyURI = _dummyURI; } /** @dev Set Contract URI - onlyOwner */ function setContractURI(string memory _newContractURI) public onlyOwner { currentContractURI = _newContractURI; } /** @dev Mint - onlyOwner */ function mint(address to) public onlyOwner { uint256 tokenId = tokenIdCounter.current(); tokenIdCounter.increment(); _safeMint(to, tokenId); } /** @dev Batch Mint - onlyOwner */ function batchMint(address to , uint256 amount) public onlyOwner { for(uint i=1; i<=amount;i++){ mint(to); } } /** @dev Returns the total tokens minted so far. 1 is always subtracted from the Counter since it tracks the next available tokenId. */ function totalSupply() public view returns (uint256) { return tokenIdCounter.current() - 1; } /** @param tokenId : The token id Fetches the token URI of token id = tokenId. It will return dummy URI if the base URI has not been set. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { _requireMinted(tokenId); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : dummyURI; } }
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":"address","name":"_owner","type":"address"},{"internalType":"string","name":"_currentBaseURI","type":"string"},{"internalType":"string","name":"_dummyURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"batchMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentBaseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentContractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dummyURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":[{"internalType":"address","name":"to","type":"address"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","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":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newContractURI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_dummyURI","type":"string"}],"name":"setDummyURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040516200395e3803806200395e833981810160405281019062000037919062000461565b848481600090805190602001906200005192919062000328565b5080600190805190602001906200006a92919062000328565b5050506200008d62000081620000f260201b60201c565b620000fa60201b60201c565b8060099080519060200190620000a592919062000328565b508160089080519060200190620000be92919062000328565b50620000d083620001c060201b60201c565b620000e760076200025760201b620010971760201c565b505050505062000820565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620001d06200026d60201b60201c565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141562000243576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200023a9062000595565b60405180910390fd5b6200025481620000fa60201b60201c565b50565b6001816000016000828254019250508190555050565b6200027d620000f260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002a3620002fe60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620002fc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002f390620005b7565b60405180910390fd5b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8280546200033690620006b3565b90600052602060002090601f0160209004810192826200035a5760008555620003a6565b82601f106200037557805160ff1916838001178555620003a6565b82800160010185558215620003a6579182015b82811115620003a557825182559160200191906001019062000388565b5b509050620003b59190620003b9565b5090565b5b80821115620003d4576000816000905550600101620003ba565b5090565b6000620003ef620003e98462000602565b620005d9565b9050828152602081018484840111156200040857600080fd5b620004158482856200067d565b509392505050565b6000815190506200042e8162000806565b92915050565b600082601f8301126200044657600080fd5b815162000458848260208601620003d8565b91505092915050565b600080600080600060a086880312156200047a57600080fd5b600086015167ffffffffffffffff8111156200049557600080fd5b620004a38882890162000434565b955050602086015167ffffffffffffffff811115620004c157600080fd5b620004cf8882890162000434565b9450506040620004e2888289016200041d565b935050606086015167ffffffffffffffff8111156200050057600080fd5b6200050e8882890162000434565b925050608086015167ffffffffffffffff8111156200052c57600080fd5b6200053a8882890162000434565b9150509295509295909350565b60006200055660268362000638565b915062000563826200078e565b604082019050919050565b60006200057d60208362000638565b91506200058a82620007dd565b602082019050919050565b60006020820190508181036000830152620005b08162000547565b9050919050565b60006020820190508181036000830152620005d2816200056e565b9050919050565b6000620005e5620005f8565b9050620005f38282620006e9565b919050565b6000604051905090565b600067ffffffffffffffff82111562000620576200061f6200074e565b5b6200062b826200077d565b9050602081019050919050565b600082825260208201905092915050565b600062000656826200065d565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60005b838110156200069d57808201518184015260208101905062000680565b83811115620006ad576000848401525b50505050565b60006002820490506001821680620006cc57607f821691505b60208210811415620006e357620006e26200071f565b5b50919050565b620006f4826200077d565b810181811067ffffffffffffffff821117156200071657620007156200074e565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b620008118162000649565b81146200081d57600080fd5b50565b61312e80620008306000396000f3fe608060405234801561001057600080fd5b50600436106101a95760003560e01c806370a08231116100f9578063a22cb46511610097578063c87b56dd11610071578063c87b56dd1461047e578063e8a3d485146104ae578063e985e9c5146104cc578063f2fde38b146104fc576101a9565b8063a22cb4651461042a578063b88d4fde14610446578063bd5f3d3814610462576101a9565b8063938e3d7b116100d3578063938e3d7b146103b457806395d89b41146103d057806397d4ccd2146103ee578063a06d8db11461040c576101a9565b806370a082311461035c578063715018a61461038c5780638da5cb5b14610396576101a9565b806342842e0e116101665780634bf9b689116101405780634bf9b689146102d657806355f804b3146102f45780636352211e146103105780636a62784214610340576101a9565b806342842e0e1461028257806342966c681461029e57806343508b05146102ba576101a9565b806301ffc9a7146101ae57806306fdde03146101de578063081812fc146101fc578063095ea7b31461022c57806318160ddd1461024857806323b872dd14610266575b600080fd5b6101c860048036038101906101c3919061239c565b610518565b6040516101d5919061277a565b60405180910390f35b6101e66105fa565b6040516101f39190612795565b60405180910390f35b6102166004803603810190610211919061242f565b61068c565b6040516102239190612713565b60405180910390f35b61024660048036038101906102419190612360565b6106d2565b005b6102506107ea565b60405161025d9190612957565b60405180910390f35b610280600480360381019061027b919061225a565b610807565b005b61029c6004803603810190610297919061225a565b610867565b005b6102b860048036038101906102b3919061242f565b610887565b005b6102d460048036038101906102cf9190612360565b6108e3565b005b6102de61091a565b6040516102eb9190612795565b60405180910390f35b61030e600480360381019061030991906123ee565b6109a8565b005b61032a6004803603810190610325919061242f565b6109ca565b6040516103379190612713565b60405180910390f35b61035a600480360381019061035591906121f5565b610a7c565b005b610376600480360381019061037191906121f5565b610aaa565b6040516103839190612957565b60405180910390f35b610394610b62565b005b61039e610b76565b6040516103ab9190612713565b60405180910390f35b6103ce60048036038101906103c991906123ee565b610ba0565b005b6103d8610bc2565b6040516103e59190612795565b60405180910390f35b6103f6610c54565b6040516104039190612795565b60405180910390f35b610414610ce2565b6040516104219190612795565b60405180910390f35b610444600480360381019061043f9190612324565b610d70565b005b610460600480360381019061045b91906122a9565b610d86565b005b61047c600480360381019061047791906123ee565b610de8565b005b6104986004803603810190610493919061242f565b610e0a565b6040516104a59190612795565b60405180910390f35b6104b6610eed565b6040516104c39190612795565b60405180910390f35b6104e660048036038101906104e1919061221e565b610f7f565b6040516104f3919061277a565b60405180910390f35b610516600480360381019061051191906121f5565b611013565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806105e357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806105f357506105f2826110ad565b5b9050919050565b60606000805461060990612bad565b80601f016020809104026020016040519081016040528092919081815260200182805461063590612bad565b80156106825780601f1061065757610100808354040283529160200191610682565b820191906000526020600020905b81548152906001019060200180831161066557829003601f168201915b5050505050905090565b600061069782611117565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006106dd826109ca565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561074e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161074590612917565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661076d611162565b73ffffffffffffffffffffffffffffffffffffffff16148061079c575061079b81610796611162565b610f7f565b5b6107db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107d290612897565b60405180910390fd5b6107e5838361116a565b505050565b600060016107f86007611223565b6108029190612ac3565b905090565b610818610812611162565b82611231565b610857576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084e90612937565b60405180910390fd5b6108628383836112c6565b505050565b61088283838360405180602001604052806000815250610d86565b505050565b610898610892611162565b82611231565b6108d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ce90612937565b60405180910390fd5b6108e08161152d565b50565b6108eb61164a565b6000600190505b8181116109155761090283610a7c565b808061090d90612c10565b9150506108f2565b505050565b600a805461092790612bad565b80601f016020809104026020016040519081016040528092919081815260200182805461095390612bad565b80156109a05780601f10610975576101008083540402835291602001916109a0565b820191906000526020600020905b81548152906001019060200180831161098357829003601f168201915b505050505081565b6109b061164a565b80600890805190602001906109c6929190612019565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610a73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6a906128f7565b60405180910390fd5b80915050919050565b610a8461164a565b6000610a906007611223565b9050610a9c6007611097565b610aa682826116c8565b5050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1290612877565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610b6a61164a565b610b7460006116e6565b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610ba861164a565b80600a9080519060200190610bbe929190612019565b5050565b606060018054610bd190612bad565b80601f0160208091040260200160405190810160405280929190818152602001828054610bfd90612bad565b8015610c4a5780601f10610c1f57610100808354040283529160200191610c4a565b820191906000526020600020905b815481529060010190602001808311610c2d57829003601f168201915b5050505050905090565b60088054610c6190612bad565b80601f0160208091040260200160405190810160405280929190818152602001828054610c8d90612bad565b8015610cda5780601f10610caf57610100808354040283529160200191610cda565b820191906000526020600020905b815481529060010190602001808311610cbd57829003601f168201915b505050505081565b60098054610cef90612bad565b80601f0160208091040260200160405190810160405280929190818152602001828054610d1b90612bad565b8015610d685780601f10610d3d57610100808354040283529160200191610d68565b820191906000526020600020905b815481529060010190602001808311610d4b57829003601f168201915b505050505081565b610d82610d7b611162565b83836117ac565b5050565b610d97610d91611162565b83611231565b610dd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dcd90612937565b60405180910390fd5b610de284848484611919565b50505050565b610df061164a565b8060099080519060200190610e06929190612019565b5050565b6060610e1582611117565b6000610e1f611975565b90506000815111610eba5760098054610e3790612bad565b80601f0160208091040260200160405190810160405280929190818152602001828054610e6390612bad565b8015610eb05780601f10610e8557610100808354040283529160200191610eb0565b820191906000526020600020905b815481529060010190602001808311610e9357829003601f168201915b5050505050610ee5565b80610ec484611a07565b604051602001610ed59291906126ef565b6040516020818303038152906040525b915050919050565b6060600a8054610efc90612bad565b80601f0160208091040260200160405190810160405280929190818152602001828054610f2890612bad565b8015610f755780601f10610f4a57610100808354040283529160200191610f75565b820191906000526020600020905b815481529060010190602001808311610f5857829003601f168201915b5050505050905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61101b61164a565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561108b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611082906127d7565b60405180910390fd5b611094816116e6565b50565b6001816000016000828254019250508190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61112081611bb4565b61115f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611156906128f7565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166111dd836109ca565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b60008061123d836109ca565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061127f575061127e8185610f7f565b5b806112bd57508373ffffffffffffffffffffffffffffffffffffffff166112a58461068c565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166112e6826109ca565b73ffffffffffffffffffffffffffffffffffffffff161461133c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611333906127f7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a390612837565b60405180910390fd5b6113b7838383611c20565b6113c260008261116a565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546114129190612ac3565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546114699190612a3c565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611528838383611c25565b505050565b6000611538826109ca565b905061154681600084611c20565b61155160008361116a565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546115a19190612ac3565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461164681600084611c25565b5050565b611652611162565b73ffffffffffffffffffffffffffffffffffffffff16611670610b76565b73ffffffffffffffffffffffffffffffffffffffff16146116c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116bd906128d7565b60405180910390fd5b565b6116e2828260405180602001604052806000815250611c2a565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561181b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181290612857565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161190c919061277a565b60405180910390a3505050565b6119248484846112c6565b61193084848484611c85565b61196f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611966906127b7565b60405180910390fd5b50505050565b60606008805461198490612bad565b80601f01602080910402602001604051908101604052809291908181526020018280546119b090612bad565b80156119fd5780601f106119d2576101008083540402835291602001916119fd565b820191906000526020600020905b8154815290600101906020018083116119e057829003601f168201915b5050505050905090565b60606000821415611a4f576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611baf565b600082905060005b60008214611a81578080611a6a90612c10565b915050600a82611a7a9190612a92565b9150611a57565b60008167ffffffffffffffff811115611ac3577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611af55781602001600182028036833780820191505090505b5090505b60008514611ba857600182611b0e9190612ac3565b9150600a85611b1d9190612c59565b6030611b299190612a3c565b60f81b818381518110611b65577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611ba19190612a92565b9450611af9565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b505050565b505050565b611c348383611e1c565b611c416000848484611c85565b611c80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c77906127b7565b60405180910390fd5b505050565b6000611ca68473ffffffffffffffffffffffffffffffffffffffff16611ff6565b15611e0f578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611ccf611162565b8786866040518563ffffffff1660e01b8152600401611cf1949392919061272e565b602060405180830381600087803b158015611d0b57600080fd5b505af1925050508015611d3c57506040513d601f19601f82011682018060405250810190611d3991906123c5565b60015b611dbf573d8060008114611d6c576040519150601f19603f3d011682016040523d82523d6000602084013e611d71565b606091505b50600081511415611db7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dae906127b7565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611e14565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e83906128b7565b60405180910390fd5b611e9581611bb4565b15611ed5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ecc90612817565b60405180910390fd5b611ee160008383611c20565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f319190612a3c565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611ff260008383611c25565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b82805461202590612bad565b90600052602060002090601f016020900481019282612047576000855561208e565b82601f1061206057805160ff191683800117855561208e565b8280016001018555821561208e579182015b8281111561208d578251825591602001919060010190612072565b5b50905061209b919061209f565b5090565b5b808211156120b85760008160009055506001016120a0565b5090565b60006120cf6120ca84612997565b612972565b9050828152602081018484840111156120e757600080fd5b6120f2848285612b6b565b509392505050565b600061210d612108846129c8565b612972565b90508281526020810184848401111561212557600080fd5b612130848285612b6b565b509392505050565b6000813590506121478161309c565b92915050565b60008135905061215c816130b3565b92915050565b600081359050612171816130ca565b92915050565b600081519050612186816130ca565b92915050565b600082601f83011261219d57600080fd5b81356121ad8482602086016120bc565b91505092915050565b600082601f8301126121c757600080fd5b81356121d78482602086016120fa565b91505092915050565b6000813590506121ef816130e1565b92915050565b60006020828403121561220757600080fd5b600061221584828501612138565b91505092915050565b6000806040838503121561223157600080fd5b600061223f85828601612138565b925050602061225085828601612138565b9150509250929050565b60008060006060848603121561226f57600080fd5b600061227d86828701612138565b935050602061228e86828701612138565b925050604061229f868287016121e0565b9150509250925092565b600080600080608085870312156122bf57600080fd5b60006122cd87828801612138565b94505060206122de87828801612138565b93505060406122ef878288016121e0565b925050606085013567ffffffffffffffff81111561230c57600080fd5b6123188782880161218c565b91505092959194509250565b6000806040838503121561233757600080fd5b600061234585828601612138565b92505060206123568582860161214d565b9150509250929050565b6000806040838503121561237357600080fd5b600061238185828601612138565b9250506020612392858286016121e0565b9150509250929050565b6000602082840312156123ae57600080fd5b60006123bc84828501612162565b91505092915050565b6000602082840312156123d757600080fd5b60006123e584828501612177565b91505092915050565b60006020828403121561240057600080fd5b600082013567ffffffffffffffff81111561241a57600080fd5b612426848285016121b6565b91505092915050565b60006020828403121561244157600080fd5b600061244f848285016121e0565b91505092915050565b61246181612af7565b82525050565b61247081612b09565b82525050565b6000612481826129f9565b61248b8185612a0f565b935061249b818560208601612b7a565b6124a481612d46565b840191505092915050565b60006124ba82612a04565b6124c48185612a20565b93506124d4818560208601612b7a565b6124dd81612d46565b840191505092915050565b60006124f382612a04565b6124fd8185612a31565b935061250d818560208601612b7a565b80840191505092915050565b6000612526603283612a20565b915061253182612d57565b604082019050919050565b6000612549602683612a20565b915061255482612da6565b604082019050919050565b600061256c602583612a20565b915061257782612df5565b604082019050919050565b600061258f601c83612a20565b915061259a82612e44565b602082019050919050565b60006125b2602483612a20565b91506125bd82612e6d565b604082019050919050565b60006125d5601983612a20565b91506125e082612ebc565b602082019050919050565b60006125f8602983612a20565b915061260382612ee5565b604082019050919050565b600061261b603e83612a20565b915061262682612f34565b604082019050919050565b600061263e602083612a20565b915061264982612f83565b602082019050919050565b6000612661602083612a20565b915061266c82612fac565b602082019050919050565b6000612684601883612a20565b915061268f82612fd5565b602082019050919050565b60006126a7602183612a20565b91506126b282612ffe565b604082019050919050565b60006126ca602e83612a20565b91506126d58261304d565b604082019050919050565b6126e981612b61565b82525050565b60006126fb82856124e8565b915061270782846124e8565b91508190509392505050565b60006020820190506127286000830184612458565b92915050565b60006080820190506127436000830187612458565b6127506020830186612458565b61275d60408301856126e0565b818103606083015261276f8184612476565b905095945050505050565b600060208201905061278f6000830184612467565b92915050565b600060208201905081810360008301526127af81846124af565b905092915050565b600060208201905081810360008301526127d081612519565b9050919050565b600060208201905081810360008301526127f08161253c565b9050919050565b600060208201905081810360008301526128108161255f565b9050919050565b6000602082019050818103600083015261283081612582565b9050919050565b60006020820190508181036000830152612850816125a5565b9050919050565b60006020820190508181036000830152612870816125c8565b9050919050565b60006020820190508181036000830152612890816125eb565b9050919050565b600060208201905081810360008301526128b08161260e565b9050919050565b600060208201905081810360008301526128d081612631565b9050919050565b600060208201905081810360008301526128f081612654565b9050919050565b6000602082019050818103600083015261291081612677565b9050919050565b600060208201905081810360008301526129308161269a565b9050919050565b60006020820190508181036000830152612950816126bd565b9050919050565b600060208201905061296c60008301846126e0565b92915050565b600061297c61298d565b90506129888282612bdf565b919050565b6000604051905090565b600067ffffffffffffffff8211156129b2576129b1612d17565b5b6129bb82612d46565b9050602081019050919050565b600067ffffffffffffffff8211156129e3576129e2612d17565b5b6129ec82612d46565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612a4782612b61565b9150612a5283612b61565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612a8757612a86612c8a565b5b828201905092915050565b6000612a9d82612b61565b9150612aa883612b61565b925082612ab857612ab7612cb9565b5b828204905092915050565b6000612ace82612b61565b9150612ad983612b61565b925082821015612aec57612aeb612c8a565b5b828203905092915050565b6000612b0282612b41565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612b98578082015181840152602081019050612b7d565b83811115612ba7576000848401525b50505050565b60006002820490506001821680612bc557607f821691505b60208210811415612bd957612bd8612ce8565b5b50919050565b612be882612d46565b810181811067ffffffffffffffff82111715612c0757612c06612d17565b5b80604052505050565b6000612c1b82612b61565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612c4e57612c4d612c8a565b5b600182019050919050565b6000612c6482612b61565b9150612c6f83612b61565b925082612c7f57612c7e612cb9565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b6130a581612af7565b81146130b057600080fd5b50565b6130bc81612b09565b81146130c757600080fd5b50565b6130d381612b15565b81146130de57600080fd5b50565b6130ea81612b61565b81146130f557600080fd5b5056fea2646970667358221220219d301c69408c9f38688c47818d04f78e304768928ce4dc6b3521aba4f986c164736f6c6343000804003300000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000cee20ac88b6c66d2ea4a9f6f4f33d0f186bdce0600000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000000001254616d61646f67652052617265204e4654730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000454414d4100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003068747470733a2f2f6d657461646174612e74616d61646f67652e696f2f726172652f6d657461646174612f6a736f6e2f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101a95760003560e01c806370a08231116100f9578063a22cb46511610097578063c87b56dd11610071578063c87b56dd1461047e578063e8a3d485146104ae578063e985e9c5146104cc578063f2fde38b146104fc576101a9565b8063a22cb4651461042a578063b88d4fde14610446578063bd5f3d3814610462576101a9565b8063938e3d7b116100d3578063938e3d7b146103b457806395d89b41146103d057806397d4ccd2146103ee578063a06d8db11461040c576101a9565b806370a082311461035c578063715018a61461038c5780638da5cb5b14610396576101a9565b806342842e0e116101665780634bf9b689116101405780634bf9b689146102d657806355f804b3146102f45780636352211e146103105780636a62784214610340576101a9565b806342842e0e1461028257806342966c681461029e57806343508b05146102ba576101a9565b806301ffc9a7146101ae57806306fdde03146101de578063081812fc146101fc578063095ea7b31461022c57806318160ddd1461024857806323b872dd14610266575b600080fd5b6101c860048036038101906101c3919061239c565b610518565b6040516101d5919061277a565b60405180910390f35b6101e66105fa565b6040516101f39190612795565b60405180910390f35b6102166004803603810190610211919061242f565b61068c565b6040516102239190612713565b60405180910390f35b61024660048036038101906102419190612360565b6106d2565b005b6102506107ea565b60405161025d9190612957565b60405180910390f35b610280600480360381019061027b919061225a565b610807565b005b61029c6004803603810190610297919061225a565b610867565b005b6102b860048036038101906102b3919061242f565b610887565b005b6102d460048036038101906102cf9190612360565b6108e3565b005b6102de61091a565b6040516102eb9190612795565b60405180910390f35b61030e600480360381019061030991906123ee565b6109a8565b005b61032a6004803603810190610325919061242f565b6109ca565b6040516103379190612713565b60405180910390f35b61035a600480360381019061035591906121f5565b610a7c565b005b610376600480360381019061037191906121f5565b610aaa565b6040516103839190612957565b60405180910390f35b610394610b62565b005b61039e610b76565b6040516103ab9190612713565b60405180910390f35b6103ce60048036038101906103c991906123ee565b610ba0565b005b6103d8610bc2565b6040516103e59190612795565b60405180910390f35b6103f6610c54565b6040516104039190612795565b60405180910390f35b610414610ce2565b6040516104219190612795565b60405180910390f35b610444600480360381019061043f9190612324565b610d70565b005b610460600480360381019061045b91906122a9565b610d86565b005b61047c600480360381019061047791906123ee565b610de8565b005b6104986004803603810190610493919061242f565b610e0a565b6040516104a59190612795565b60405180910390f35b6104b6610eed565b6040516104c39190612795565b60405180910390f35b6104e660048036038101906104e1919061221e565b610f7f565b6040516104f3919061277a565b60405180910390f35b610516600480360381019061051191906121f5565b611013565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806105e357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806105f357506105f2826110ad565b5b9050919050565b60606000805461060990612bad565b80601f016020809104026020016040519081016040528092919081815260200182805461063590612bad565b80156106825780601f1061065757610100808354040283529160200191610682565b820191906000526020600020905b81548152906001019060200180831161066557829003601f168201915b5050505050905090565b600061069782611117565b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006106dd826109ca565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561074e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161074590612917565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1661076d611162565b73ffffffffffffffffffffffffffffffffffffffff16148061079c575061079b81610796611162565b610f7f565b5b6107db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107d290612897565b60405180910390fd5b6107e5838361116a565b505050565b600060016107f86007611223565b6108029190612ac3565b905090565b610818610812611162565b82611231565b610857576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084e90612937565b60405180910390fd5b6108628383836112c6565b505050565b61088283838360405180602001604052806000815250610d86565b505050565b610898610892611162565b82611231565b6108d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ce90612937565b60405180910390fd5b6108e08161152d565b50565b6108eb61164a565b6000600190505b8181116109155761090283610a7c565b808061090d90612c10565b9150506108f2565b505050565b600a805461092790612bad565b80601f016020809104026020016040519081016040528092919081815260200182805461095390612bad565b80156109a05780601f10610975576101008083540402835291602001916109a0565b820191906000526020600020905b81548152906001019060200180831161098357829003601f168201915b505050505081565b6109b061164a565b80600890805190602001906109c6929190612019565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610a73576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6a906128f7565b60405180910390fd5b80915050919050565b610a8461164a565b6000610a906007611223565b9050610a9c6007611097565b610aa682826116c8565b5050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b1b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1290612877565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610b6a61164a565b610b7460006116e6565b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610ba861164a565b80600a9080519060200190610bbe929190612019565b5050565b606060018054610bd190612bad565b80601f0160208091040260200160405190810160405280929190818152602001828054610bfd90612bad565b8015610c4a5780601f10610c1f57610100808354040283529160200191610c4a565b820191906000526020600020905b815481529060010190602001808311610c2d57829003601f168201915b5050505050905090565b60088054610c6190612bad565b80601f0160208091040260200160405190810160405280929190818152602001828054610c8d90612bad565b8015610cda5780601f10610caf57610100808354040283529160200191610cda565b820191906000526020600020905b815481529060010190602001808311610cbd57829003601f168201915b505050505081565b60098054610cef90612bad565b80601f0160208091040260200160405190810160405280929190818152602001828054610d1b90612bad565b8015610d685780601f10610d3d57610100808354040283529160200191610d68565b820191906000526020600020905b815481529060010190602001808311610d4b57829003601f168201915b505050505081565b610d82610d7b611162565b83836117ac565b5050565b610d97610d91611162565b83611231565b610dd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dcd90612937565b60405180910390fd5b610de284848484611919565b50505050565b610df061164a565b8060099080519060200190610e06929190612019565b5050565b6060610e1582611117565b6000610e1f611975565b90506000815111610eba5760098054610e3790612bad565b80601f0160208091040260200160405190810160405280929190818152602001828054610e6390612bad565b8015610eb05780601f10610e8557610100808354040283529160200191610eb0565b820191906000526020600020905b815481529060010190602001808311610e9357829003601f168201915b5050505050610ee5565b80610ec484611a07565b604051602001610ed59291906126ef565b6040516020818303038152906040525b915050919050565b6060600a8054610efc90612bad565b80601f0160208091040260200160405190810160405280929190818152602001828054610f2890612bad565b8015610f755780601f10610f4a57610100808354040283529160200191610f75565b820191906000526020600020905b815481529060010190602001808311610f5857829003601f168201915b5050505050905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61101b61164a565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561108b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611082906127d7565b60405180910390fd5b611094816116e6565b50565b6001816000016000828254019250508190555050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61112081611bb4565b61115f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611156906128f7565b60405180910390fd5b50565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166111dd836109ca565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600081600001549050919050565b60008061123d836109ca565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061127f575061127e8185610f7f565b5b806112bd57508373ffffffffffffffffffffffffffffffffffffffff166112a58461068c565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166112e6826109ca565b73ffffffffffffffffffffffffffffffffffffffff161461133c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611333906127f7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156113ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113a390612837565b60405180910390fd5b6113b7838383611c20565b6113c260008261116a565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546114129190612ac3565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546114699190612a3c565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611528838383611c25565b505050565b6000611538826109ca565b905061154681600084611c20565b61155160008361116a565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546115a19190612ac3565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461164681600084611c25565b5050565b611652611162565b73ffffffffffffffffffffffffffffffffffffffff16611670610b76565b73ffffffffffffffffffffffffffffffffffffffff16146116c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116bd906128d7565b60405180910390fd5b565b6116e2828260405180602001604052806000815250611c2a565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561181b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181290612857565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161190c919061277a565b60405180910390a3505050565b6119248484846112c6565b61193084848484611c85565b61196f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611966906127b7565b60405180910390fd5b50505050565b60606008805461198490612bad565b80601f01602080910402602001604051908101604052809291908181526020018280546119b090612bad565b80156119fd5780601f106119d2576101008083540402835291602001916119fd565b820191906000526020600020905b8154815290600101906020018083116119e057829003601f168201915b5050505050905090565b60606000821415611a4f576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611baf565b600082905060005b60008214611a81578080611a6a90612c10565b915050600a82611a7a9190612a92565b9150611a57565b60008167ffffffffffffffff811115611ac3577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611af55781602001600182028036833780820191505090505b5090505b60008514611ba857600182611b0e9190612ac3565b9150600a85611b1d9190612c59565b6030611b299190612a3c565b60f81b818381518110611b65577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611ba19190612a92565b9450611af9565b8093505050505b919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b505050565b505050565b611c348383611e1c565b611c416000848484611c85565b611c80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c77906127b7565b60405180910390fd5b505050565b6000611ca68473ffffffffffffffffffffffffffffffffffffffff16611ff6565b15611e0f578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611ccf611162565b8786866040518563ffffffff1660e01b8152600401611cf1949392919061272e565b602060405180830381600087803b158015611d0b57600080fd5b505af1925050508015611d3c57506040513d601f19601f82011682018060405250810190611d3991906123c5565b60015b611dbf573d8060008114611d6c576040519150601f19603f3d011682016040523d82523d6000602084013e611d71565b606091505b50600081511415611db7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dae906127b7565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611e14565b600190505b949350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e8c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e83906128b7565b60405180910390fd5b611e9581611bb4565b15611ed5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ecc90612817565b60405180910390fd5b611ee160008383611c20565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611f319190612a3c565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611ff260008383611c25565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b82805461202590612bad565b90600052602060002090601f016020900481019282612047576000855561208e565b82601f1061206057805160ff191683800117855561208e565b8280016001018555821561208e579182015b8281111561208d578251825591602001919060010190612072565b5b50905061209b919061209f565b5090565b5b808211156120b85760008160009055506001016120a0565b5090565b60006120cf6120ca84612997565b612972565b9050828152602081018484840111156120e757600080fd5b6120f2848285612b6b565b509392505050565b600061210d612108846129c8565b612972565b90508281526020810184848401111561212557600080fd5b612130848285612b6b565b509392505050565b6000813590506121478161309c565b92915050565b60008135905061215c816130b3565b92915050565b600081359050612171816130ca565b92915050565b600081519050612186816130ca565b92915050565b600082601f83011261219d57600080fd5b81356121ad8482602086016120bc565b91505092915050565b600082601f8301126121c757600080fd5b81356121d78482602086016120fa565b91505092915050565b6000813590506121ef816130e1565b92915050565b60006020828403121561220757600080fd5b600061221584828501612138565b91505092915050565b6000806040838503121561223157600080fd5b600061223f85828601612138565b925050602061225085828601612138565b9150509250929050565b60008060006060848603121561226f57600080fd5b600061227d86828701612138565b935050602061228e86828701612138565b925050604061229f868287016121e0565b9150509250925092565b600080600080608085870312156122bf57600080fd5b60006122cd87828801612138565b94505060206122de87828801612138565b93505060406122ef878288016121e0565b925050606085013567ffffffffffffffff81111561230c57600080fd5b6123188782880161218c565b91505092959194509250565b6000806040838503121561233757600080fd5b600061234585828601612138565b92505060206123568582860161214d565b9150509250929050565b6000806040838503121561237357600080fd5b600061238185828601612138565b9250506020612392858286016121e0565b9150509250929050565b6000602082840312156123ae57600080fd5b60006123bc84828501612162565b91505092915050565b6000602082840312156123d757600080fd5b60006123e584828501612177565b91505092915050565b60006020828403121561240057600080fd5b600082013567ffffffffffffffff81111561241a57600080fd5b612426848285016121b6565b91505092915050565b60006020828403121561244157600080fd5b600061244f848285016121e0565b91505092915050565b61246181612af7565b82525050565b61247081612b09565b82525050565b6000612481826129f9565b61248b8185612a0f565b935061249b818560208601612b7a565b6124a481612d46565b840191505092915050565b60006124ba82612a04565b6124c48185612a20565b93506124d4818560208601612b7a565b6124dd81612d46565b840191505092915050565b60006124f382612a04565b6124fd8185612a31565b935061250d818560208601612b7a565b80840191505092915050565b6000612526603283612a20565b915061253182612d57565b604082019050919050565b6000612549602683612a20565b915061255482612da6565b604082019050919050565b600061256c602583612a20565b915061257782612df5565b604082019050919050565b600061258f601c83612a20565b915061259a82612e44565b602082019050919050565b60006125b2602483612a20565b91506125bd82612e6d565b604082019050919050565b60006125d5601983612a20565b91506125e082612ebc565b602082019050919050565b60006125f8602983612a20565b915061260382612ee5565b604082019050919050565b600061261b603e83612a20565b915061262682612f34565b604082019050919050565b600061263e602083612a20565b915061264982612f83565b602082019050919050565b6000612661602083612a20565b915061266c82612fac565b602082019050919050565b6000612684601883612a20565b915061268f82612fd5565b602082019050919050565b60006126a7602183612a20565b91506126b282612ffe565b604082019050919050565b60006126ca602e83612a20565b91506126d58261304d565b604082019050919050565b6126e981612b61565b82525050565b60006126fb82856124e8565b915061270782846124e8565b91508190509392505050565b60006020820190506127286000830184612458565b92915050565b60006080820190506127436000830187612458565b6127506020830186612458565b61275d60408301856126e0565b818103606083015261276f8184612476565b905095945050505050565b600060208201905061278f6000830184612467565b92915050565b600060208201905081810360008301526127af81846124af565b905092915050565b600060208201905081810360008301526127d081612519565b9050919050565b600060208201905081810360008301526127f08161253c565b9050919050565b600060208201905081810360008301526128108161255f565b9050919050565b6000602082019050818103600083015261283081612582565b9050919050565b60006020820190508181036000830152612850816125a5565b9050919050565b60006020820190508181036000830152612870816125c8565b9050919050565b60006020820190508181036000830152612890816125eb565b9050919050565b600060208201905081810360008301526128b08161260e565b9050919050565b600060208201905081810360008301526128d081612631565b9050919050565b600060208201905081810360008301526128f081612654565b9050919050565b6000602082019050818103600083015261291081612677565b9050919050565b600060208201905081810360008301526129308161269a565b9050919050565b60006020820190508181036000830152612950816126bd565b9050919050565b600060208201905061296c60008301846126e0565b92915050565b600061297c61298d565b90506129888282612bdf565b919050565b6000604051905090565b600067ffffffffffffffff8211156129b2576129b1612d17565b5b6129bb82612d46565b9050602081019050919050565b600067ffffffffffffffff8211156129e3576129e2612d17565b5b6129ec82612d46565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000612a4782612b61565b9150612a5283612b61565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612a8757612a86612c8a565b5b828201905092915050565b6000612a9d82612b61565b9150612aa883612b61565b925082612ab857612ab7612cb9565b5b828204905092915050565b6000612ace82612b61565b9150612ad983612b61565b925082821015612aec57612aeb612c8a565b5b828203905092915050565b6000612b0282612b41565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015612b98578082015181840152602081019050612b7d565b83811115612ba7576000848401525b50505050565b60006002820490506001821680612bc557607f821691505b60208210811415612bd957612bd8612ce8565b5b50919050565b612be882612d46565b810181811067ffffffffffffffff82111715612c0757612c06612d17565b5b80604052505050565b6000612c1b82612b61565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415612c4e57612c4d612c8a565b5b600182019050919050565b6000612c6482612b61565b9150612c6f83612b61565b925082612c7f57612c7e612cb9565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a2061646472657373207a65726f206973206e6f74206120766160008201527f6c6964206f776e65720000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f7420746f60008201527f6b656e206f776e6572206e6f7220617070726f76656420666f7220616c6c0000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a20696e76616c696420746f6b656e2049440000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a2063616c6c6572206973206e6f7420746f6b656e206f776e6560008201527f72206e6f7220617070726f766564000000000000000000000000000000000000602082015250565b6130a581612af7565b81146130b057600080fd5b50565b6130bc81612b09565b81146130c757600080fd5b50565b6130d381612b15565b81146130de57600080fd5b50565b6130ea81612b61565b81146130f557600080fd5b5056fea2646970667358221220219d301c69408c9f38688c47818d04f78e304768928ce4dc6b3521aba4f986c164736f6c63430008040033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000cee20ac88b6c66d2ea4a9f6f4f33d0f186bdce0600000000000000000000000000000000000000000000000000000000000001200000000000000000000000000000000000000000000000000000000000000180000000000000000000000000000000000000000000000000000000000000001254616d61646f67652052617265204e4654730000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000454414d4100000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003068747470733a2f2f6d657461646174612e74616d61646f67652e696f2f726172652f6d657461646174612f6a736f6e2f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _name (string): Tamadoge Rare NFTs
Arg [1] : _symbol (string): TAMA
Arg [2] : _owner (address): 0xcee20Ac88b6c66d2ea4a9f6F4f33d0F186BDcE06
Arg [3] : _currentBaseURI (string): https://metadata.tamadoge.io/rare/metadata/json/
Arg [4] : _dummyURI (string):
-----Encoded View---------------
13 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 000000000000000000000000cee20ac88b6c66d2ea4a9f6f4f33d0f186bdce06
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000180
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000012
Arg [6] : 54616d61646f67652052617265204e4654730000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [8] : 54414d4100000000000000000000000000000000000000000000000000000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000030
Arg [10] : 68747470733a2f2f6d657461646174612e74616d61646f67652e696f2f726172
Arg [11] : 652f6d657461646174612f6a736f6e2f00000000000000000000000000000000
Arg [12] : 0000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
40211:2769:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26180:305;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27107:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28620:171;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28137:417;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42414:107;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29320:336;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29727:185;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39900:243;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42096:146;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40453:32;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41331:111;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26818:222;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41860:174;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26549:207;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6716:103;;;:::i;:::-;;6068:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41677:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27276:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40389:28;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40424:22;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28863:155;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29983:323;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41507:102;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42690:285;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41164:103;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29089:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6974:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26180:305;26282:4;26334:25;26319:40;;;:11;:40;;;;:105;;;;26391:33;26376:48;;;:11;:48;;;;26319:105;:158;;;;26441:36;26465:11;26441:23;:36::i;:::-;26319:158;26299:178;;26180:305;;;:::o;27107:100::-;27161:13;27194:5;27187:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27107:100;:::o;28620:171::-;28696:7;28716:23;28731:7;28716:14;:23::i;:::-;28759:15;:24;28775:7;28759:24;;;;;;;;;;;;;;;;;;;;;28752:31;;28620:171;;;:::o;28137:417::-;28218:13;28234:23;28249:7;28234:14;:23::i;:::-;28218:39;;28282:5;28276:11;;:2;:11;;;;28268:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;28376:5;28360:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;28385:37;28402:5;28409:12;:10;:12::i;:::-;28385:16;:37::i;:::-;28360:62;28338:174;;;;;;;;;;;;:::i;:::-;;;;;;;;;28525:21;28534:2;28538:7;28525:8;:21::i;:::-;28137:417;;;:::o;42414:107::-;42458:7;42512:1;42485:24;:14;:22;:24::i;:::-;:28;;;;:::i;:::-;42478:35;;42414:107;:::o;29320:336::-;29515:41;29534:12;:10;:12::i;:::-;29548:7;29515:18;:41::i;:::-;29507:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;29620:28;29630:4;29636:2;29640:7;29620:9;:28::i;:::-;29320:336;;;:::o;29727:185::-;29865:39;29882:4;29888:2;29892:7;29865:39;;;;;;;;;;;;:16;:39::i;:::-;29727:185;;;:::o;39900:243::-;40018:41;40037:12;:10;:12::i;:::-;40051:7;40018:18;:41::i;:::-;40010:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;40121:14;40127:7;40121:5;:14::i;:::-;39900:243;:::o;42096:146::-;5954:13;:11;:13::i;:::-;42176:6:::1;42183:1;42176:8;;42172:63;42189:6;42186:1;:9;42172:63;;42215:8;42220:2;42215:4;:8::i;:::-;42196:3;;;;;:::i;:::-;;;;42172:63;;;;42096:146:::0;;:::o;40453:32::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;41331:111::-;5954:13;:11;:13::i;:::-;41423:11:::1;41406:14;:28;;;;;;;;;;;;:::i;:::-;;41331:111:::0;:::o;26818:222::-;26890:7;26910:13;26926:7;:16;26934:7;26926:16;;;;;;;;;;;;;;;;;;;;;26910:32;;26978:1;26961:19;;:5;:19;;;;26953:56;;;;;;;;;;;;:::i;:::-;;;;;;;;;27027:5;27020:12;;;26818:222;;;:::o;41860:174::-;5954:13;:11;:13::i;:::-;41914:15:::1;41932:24;:14;:22;:24::i;:::-;41914:42;;41967:26;:14;:24;:26::i;:::-;42004:22;42014:2;42018:7;42004:9;:22::i;:::-;5978:1;41860:174:::0;:::o;26549:207::-;26621:7;26666:1;26649:19;;:5;:19;;;;26641:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;26732:9;:16;26742:5;26732:16;;;;;;;;;;;;;;;;26725:23;;26549:207;;;:::o;6716:103::-;5954:13;:11;:13::i;:::-;6781:30:::1;6808:1;6781:18;:30::i;:::-;6716:103::o:0;6068:87::-;6114:7;6141:6;;;;;;;;;;;6134:13;;6068:87;:::o;41677:127::-;5954:13;:11;:13::i;:::-;41781:15:::1;41760:18;:36;;;;;;;;;;;;:::i;:::-;;41677:127:::0;:::o;27276:104::-;27332:13;27365:7;27358:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27276:104;:::o;40389:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;40424:22::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;28863:155::-;28958:52;28977:12;:10;:12::i;:::-;28991:8;29001;28958:18;:52::i;:::-;28863:155;;:::o;29983:323::-;30157:41;30176:12;:10;:12::i;:::-;30190:7;30157:18;:41::i;:::-;30149:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;30260:38;30274:4;30280:2;30284:7;30293:4;30260:13;:38::i;:::-;29983:323;;;;:::o;41507:102::-;5954:13;:11;:13::i;:::-;41592:9:::1;41581:8;:20;;;;;;;;;;;;:::i;:::-;;41507:102:::0;:::o;42690:285::-;42763:13;42789:23;42804:7;42789:14;:23::i;:::-;42823:21;42847:10;:8;:10::i;:::-;42823:34;;42899:1;42881:7;42875:21;:25;:92;;42959:8;42875:92;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42927:7;42936:18;:7;:16;:18::i;:::-;42910:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;42875:92;42868:99;;;42690:285;;;:::o;41164:103::-;41208:13;41241:18;41234:25;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41164:103;:::o;29089:164::-;29186:4;29210:18;:25;29229:5;29210:25;;;;;;;;;;;;;;;:35;29236:8;29210:35;;;;;;;;;;;;;;;;;;;;;;;;;29203:42;;29089:164;;;;:::o;6974:201::-;5954:13;:11;:13::i;:::-;7083:1:::1;7063:22;;:8;:22;;;;7055:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;7139:28;7158:8;7139:18;:28::i;:::-;6974:201:::0;:::o;972:127::-;1079:1;1061:7;:14;;;:19;;;;;;;;;;;972:127;:::o;18922:157::-;19007:4;19046:25;19031:40;;;:11;:40;;;;19024:47;;18922:157;;;:::o;36595:135::-;36677:16;36685:7;36677;:16::i;:::-;36669:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;36595:135;:::o;4619:98::-;4672:7;4699:10;4692:17;;4619:98;:::o;35874:174::-;35976:2;35949:15;:24;35965:7;35949:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;36032:7;36028:2;35994:46;;36003:23;36018:7;36003:14;:23::i;:::-;35994:46;;;;;;;;;;;;35874:174;;:::o;850:114::-;915:7;942;:14;;;935:21;;850:114;;;:::o;32107:264::-;32200:4;32217:13;32233:23;32248:7;32233:14;:23::i;:::-;32217:39;;32286:5;32275:16;;:7;:16;;;:52;;;;32295:32;32312:5;32319:7;32295:16;:32::i;:::-;32275:52;:87;;;;32355:7;32331:31;;:20;32343:7;32331:11;:20::i;:::-;:31;;;32275:87;32267:96;;;32107:264;;;;:::o;35130:625::-;35289:4;35262:31;;:23;35277:7;35262:14;:23::i;:::-;:31;;;35254:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;35368:1;35354:16;;:2;:16;;;;35346:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;35424:39;35445:4;35451:2;35455:7;35424:20;:39::i;:::-;35528:29;35545:1;35549:7;35528:8;:29::i;:::-;35589:1;35570:9;:15;35580:4;35570:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;35618:1;35601:9;:13;35611:2;35601:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;35649:2;35630:7;:16;35638:7;35630:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;35688:7;35684:2;35669:27;;35678:4;35669:27;;;;;;;;;;;;35709:38;35729:4;35735:2;35739:7;35709:19;:38::i;:::-;35130:625;;;:::o;34373:420::-;34433:13;34449:23;34464:7;34449:14;:23::i;:::-;34433:39;;34485:48;34506:5;34521:1;34525:7;34485:20;:48::i;:::-;34574:29;34591:1;34595:7;34574:8;:29::i;:::-;34636:1;34616:9;:16;34626:5;34616:16;;;;;;;;;;;;;;;;:21;;;;;;;:::i;:::-;;;;;;;;34655:7;:16;34663:7;34655:16;;;;;;;;;;;;34648:23;;;;;;;;;;;34717:7;34713:1;34689:36;;34698:5;34689:36;;;;;;;;;;;;34738:47;34758:5;34773:1;34777:7;34738:19;:47::i;:::-;34373:420;;:::o;6233:132::-;6308:12;:10;:12::i;:::-;6297:23;;:7;:5;:7::i;:::-;:23;;;6289:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;6233:132::o;32713:110::-;32789:26;32799:2;32803:7;32789:26;;;;;;;;;;;;:9;:26::i;:::-;32713:110;;:::o;7335:191::-;7409:16;7428:6;;;;;;;;;;;7409:25;;7454:8;7445:6;;:17;;;;;;;;;;;;;;;;;;7509:8;7478:40;;7499:8;7478:40;;;;;;;;;;;;7335:191;;:::o;36191:315::-;36346:8;36337:17;;:5;:17;;;;36329:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;36433:8;36395:18;:25;36414:5;36395:25;;;;;;;;;;;;;;;:35;36421:8;36395:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;36479:8;36457:41;;36472:5;36457:41;;;36489:8;36457:41;;;;;;:::i;:::-;;;;;;;;36191:315;;;:::o;31187:313::-;31343:28;31353:4;31359:2;31363:7;31343:9;:28::i;:::-;31390:47;31413:4;31419:2;31423:7;31432:4;31390:22;:47::i;:::-;31382:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;31187:313;;;;:::o;41028:107::-;41080:13;41113:14;41106:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41028:107;:::o;1873:723::-;1929:13;2159:1;2150:5;:10;2146:53;;;2177:10;;;;;;;;;;;;;;;;;;;;;2146:53;2209:12;2224:5;2209:20;;2240:14;2265:78;2280:1;2272:4;:9;2265:78;;2298:8;;;;;:::i;:::-;;;;2329:2;2321:10;;;;;:::i;:::-;;;2265:78;;;2353:19;2385:6;2375:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2353:39;;2403:154;2419:1;2410:5;:10;2403:154;;2447:1;2437:11;;;;;:::i;:::-;;;2514:2;2506:5;:10;;;;:::i;:::-;2493:2;:24;;;;:::i;:::-;2480:39;;2463:6;2470;2463:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;2543:2;2534:11;;;;;:::i;:::-;;;2403:154;;;2581:6;2567:21;;;;;1873:723;;;;:::o;31813:127::-;31878:4;31930:1;31902:30;;:7;:16;31910:7;31902:16;;;;;;;;;;;;;;;;;;;;;:30;;;;31895:37;;31813:127;;;:::o;38719:126::-;;;;:::o;39230:125::-;;;;:::o;33050:319::-;33179:18;33185:2;33189:7;33179:5;:18::i;:::-;33230:53;33261:1;33265:2;33269:7;33278:4;33230:22;:53::i;:::-;33208:153;;;;;;;;;;;;:::i;:::-;;;;;;;;;33050:319;;;:::o;37294:853::-;37448:4;37469:15;:2;:13;;;:15::i;:::-;37465:675;;;37521:2;37505:36;;;37542:12;:10;:12::i;:::-;37556:4;37562:7;37571:4;37505:71;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;37501:584;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37763:1;37746:6;:13;:18;37742:328;;;37789:60;;;;;;;;;;:::i;:::-;;;;;;;;37742:328;38020:6;38014:13;38005:6;38001:2;37997:15;37990:38;37501:584;37637:41;;;37627:51;;;:6;:51;;;;37620:58;;;;;37465:675;38124:4;38117:11;;37294:853;;;;;;;:::o;33705:439::-;33799:1;33785:16;;:2;:16;;;;33777:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;33858:16;33866:7;33858;:16::i;:::-;33857:17;33849:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;33920:45;33949:1;33953:2;33957:7;33920:20;:45::i;:::-;33995:1;33978:9;:13;33988:2;33978:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;34026:2;34007:7;:16;34015:7;34007:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;34071:7;34067:2;34046:33;;34063:1;34046:33;;;;;;;;;;;;34092:44;34120:1;34124:2;34128:7;34092:19;:44::i;:::-;33705:439;;:::o;8766:326::-;8826:4;9083:1;9061:7;:19;;;:23;9054:30;;8766:326;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:343:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:2;;;290:1;287;280:12;249:2;303:41;337:6;332:3;327;303:41;:::i;:::-;90:260;;;;;;:::o;356:345::-;434:5;459:66;475:49;517:6;475:49;:::i;:::-;459:66;:::i;:::-;450:75;;548:6;541:5;534:21;586:4;579:5;575:16;624:3;615:6;610:3;606:16;603:25;600:2;;;641:1;638;631:12;600:2;654:41;688:6;683:3;678;654:41;:::i;:::-;440:261;;;;;;:::o;707:139::-;753:5;791:6;778:20;769:29;;807:33;834:5;807:33;:::i;:::-;759:87;;;;:::o;852:133::-;895:5;933:6;920:20;911:29;;949:30;973:5;949:30;:::i;:::-;901:84;;;;:::o;991:137::-;1036:5;1074:6;1061:20;1052:29;;1090:32;1116:5;1090:32;:::i;:::-;1042:86;;;;:::o;1134:141::-;1190:5;1221:6;1215:13;1206:22;;1237:32;1263:5;1237:32;:::i;:::-;1196:79;;;;:::o;1294:271::-;1349:5;1398:3;1391:4;1383:6;1379:17;1375:27;1365:2;;1416:1;1413;1406:12;1365:2;1456:6;1443:20;1481:78;1555:3;1547:6;1540:4;1532:6;1528:17;1481:78;:::i;:::-;1472:87;;1355:210;;;;;:::o;1585:273::-;1641:5;1690:3;1683:4;1675:6;1671:17;1667:27;1657:2;;1708:1;1705;1698:12;1657:2;1748:6;1735:20;1773:79;1848:3;1840:6;1833:4;1825:6;1821:17;1773:79;:::i;:::-;1764:88;;1647:211;;;;;:::o;1864:139::-;1910:5;1948:6;1935:20;1926:29;;1964:33;1991:5;1964:33;:::i;:::-;1916:87;;;;:::o;2009:262::-;2068:6;2117:2;2105:9;2096:7;2092:23;2088:32;2085:2;;;2133:1;2130;2123:12;2085:2;2176:1;2201:53;2246:7;2237:6;2226:9;2222:22;2201:53;:::i;:::-;2191:63;;2147:117;2075:196;;;;:::o;2277:407::-;2345:6;2353;2402:2;2390:9;2381:7;2377:23;2373:32;2370:2;;;2418:1;2415;2408:12;2370:2;2461:1;2486:53;2531:7;2522:6;2511:9;2507:22;2486:53;:::i;:::-;2476:63;;2432:117;2588:2;2614:53;2659:7;2650:6;2639:9;2635:22;2614:53;:::i;:::-;2604:63;;2559:118;2360:324;;;;;:::o;2690:552::-;2767:6;2775;2783;2832:2;2820:9;2811:7;2807:23;2803:32;2800:2;;;2848:1;2845;2838:12;2800:2;2891:1;2916:53;2961:7;2952:6;2941:9;2937:22;2916:53;:::i;:::-;2906:63;;2862:117;3018:2;3044:53;3089:7;3080:6;3069:9;3065:22;3044:53;:::i;:::-;3034:63;;2989:118;3146:2;3172:53;3217:7;3208:6;3197:9;3193:22;3172:53;:::i;:::-;3162:63;;3117:118;2790:452;;;;;:::o;3248:809::-;3343:6;3351;3359;3367;3416:3;3404:9;3395:7;3391:23;3387:33;3384:2;;;3433:1;3430;3423:12;3384:2;3476:1;3501:53;3546:7;3537:6;3526:9;3522:22;3501:53;:::i;:::-;3491:63;;3447:117;3603:2;3629:53;3674:7;3665:6;3654:9;3650:22;3629:53;:::i;:::-;3619:63;;3574:118;3731:2;3757:53;3802:7;3793:6;3782:9;3778:22;3757:53;:::i;:::-;3747:63;;3702:118;3887:2;3876:9;3872:18;3859:32;3918:18;3910:6;3907:30;3904:2;;;3950:1;3947;3940:12;3904:2;3978:62;4032:7;4023:6;4012:9;4008:22;3978:62;:::i;:::-;3968:72;;3830:220;3374:683;;;;;;;:::o;4063:401::-;4128:6;4136;4185:2;4173:9;4164:7;4160:23;4156:32;4153:2;;;4201:1;4198;4191:12;4153:2;4244:1;4269:53;4314:7;4305:6;4294:9;4290:22;4269:53;:::i;:::-;4259:63;;4215:117;4371:2;4397:50;4439:7;4430:6;4419:9;4415:22;4397:50;:::i;:::-;4387:60;;4342:115;4143:321;;;;;:::o;4470:407::-;4538:6;4546;4595:2;4583:9;4574:7;4570:23;4566:32;4563:2;;;4611:1;4608;4601:12;4563:2;4654:1;4679:53;4724:7;4715:6;4704:9;4700:22;4679:53;:::i;:::-;4669:63;;4625:117;4781:2;4807:53;4852:7;4843:6;4832:9;4828:22;4807:53;:::i;:::-;4797:63;;4752:118;4553:324;;;;;:::o;4883:260::-;4941:6;4990:2;4978:9;4969:7;4965:23;4961:32;4958:2;;;5006:1;5003;4996:12;4958:2;5049:1;5074:52;5118:7;5109:6;5098:9;5094:22;5074:52;:::i;:::-;5064:62;;5020:116;4948:195;;;;:::o;5149:282::-;5218:6;5267:2;5255:9;5246:7;5242:23;5238:32;5235:2;;;5283:1;5280;5273:12;5235:2;5326:1;5351:63;5406:7;5397:6;5386:9;5382:22;5351:63;:::i;:::-;5341:73;;5297:127;5225:206;;;;:::o;5437:375::-;5506:6;5555:2;5543:9;5534:7;5530:23;5526:32;5523:2;;;5571:1;5568;5561:12;5523:2;5642:1;5631:9;5627:17;5614:31;5672:18;5664:6;5661:30;5658:2;;;5704:1;5701;5694:12;5658:2;5732:63;5787:7;5778:6;5767:9;5763:22;5732:63;:::i;:::-;5722:73;;5585:220;5513:299;;;;:::o;5818:262::-;5877:6;5926:2;5914:9;5905:7;5901:23;5897:32;5894:2;;;5942:1;5939;5932:12;5894:2;5985:1;6010:53;6055:7;6046:6;6035:9;6031:22;6010:53;:::i;:::-;6000:63;;5956:117;5884:196;;;;:::o;6086:118::-;6173:24;6191:5;6173:24;:::i;:::-;6168:3;6161:37;6151:53;;:::o;6210:109::-;6291:21;6306:5;6291:21;:::i;:::-;6286:3;6279:34;6269:50;;:::o;6325:360::-;6411:3;6439:38;6471:5;6439:38;:::i;:::-;6493:70;6556:6;6551:3;6493:70;:::i;:::-;6486:77;;6572:52;6617:6;6612:3;6605:4;6598:5;6594:16;6572:52;:::i;:::-;6649:29;6671:6;6649:29;:::i;:::-;6644:3;6640:39;6633:46;;6415:270;;;;;:::o;6691:364::-;6779:3;6807:39;6840:5;6807:39;:::i;:::-;6862:71;6926:6;6921:3;6862:71;:::i;:::-;6855:78;;6942:52;6987:6;6982:3;6975:4;6968:5;6964:16;6942:52;:::i;:::-;7019:29;7041:6;7019:29;:::i;:::-;7014:3;7010:39;7003:46;;6783:272;;;;;:::o;7061:377::-;7167:3;7195:39;7228:5;7195:39;:::i;:::-;7250:89;7332:6;7327:3;7250:89;:::i;:::-;7243:96;;7348:52;7393:6;7388:3;7381:4;7374:5;7370:16;7348:52;:::i;:::-;7425:6;7420:3;7416:16;7409:23;;7171:267;;;;;:::o;7444:366::-;7586:3;7607:67;7671:2;7666:3;7607:67;:::i;:::-;7600:74;;7683:93;7772:3;7683:93;:::i;:::-;7801:2;7796:3;7792:12;7785:19;;7590:220;;;:::o;7816:366::-;7958:3;7979:67;8043:2;8038:3;7979:67;:::i;:::-;7972:74;;8055:93;8144:3;8055:93;:::i;:::-;8173:2;8168:3;8164:12;8157:19;;7962:220;;;:::o;8188:366::-;8330:3;8351:67;8415:2;8410:3;8351:67;:::i;:::-;8344:74;;8427:93;8516:3;8427:93;:::i;:::-;8545:2;8540:3;8536:12;8529:19;;8334:220;;;:::o;8560:366::-;8702:3;8723:67;8787:2;8782:3;8723:67;:::i;:::-;8716:74;;8799:93;8888:3;8799:93;:::i;:::-;8917:2;8912:3;8908:12;8901:19;;8706:220;;;:::o;8932:366::-;9074:3;9095:67;9159:2;9154:3;9095:67;:::i;:::-;9088:74;;9171:93;9260:3;9171:93;:::i;:::-;9289:2;9284:3;9280:12;9273:19;;9078:220;;;:::o;9304:366::-;9446:3;9467:67;9531:2;9526:3;9467:67;:::i;:::-;9460:74;;9543:93;9632:3;9543:93;:::i;:::-;9661:2;9656:3;9652:12;9645:19;;9450:220;;;:::o;9676:366::-;9818:3;9839:67;9903:2;9898:3;9839:67;:::i;:::-;9832:74;;9915:93;10004:3;9915:93;:::i;:::-;10033:2;10028:3;10024:12;10017:19;;9822:220;;;:::o;10048:366::-;10190:3;10211:67;10275:2;10270:3;10211:67;:::i;:::-;10204:74;;10287:93;10376:3;10287:93;:::i;:::-;10405:2;10400:3;10396:12;10389:19;;10194:220;;;:::o;10420:366::-;10562:3;10583:67;10647:2;10642:3;10583:67;:::i;:::-;10576:74;;10659:93;10748:3;10659:93;:::i;:::-;10777:2;10772:3;10768:12;10761:19;;10566:220;;;:::o;10792:366::-;10934:3;10955:67;11019:2;11014:3;10955:67;:::i;:::-;10948:74;;11031:93;11120:3;11031:93;:::i;:::-;11149:2;11144:3;11140:12;11133:19;;10938:220;;;:::o;11164:366::-;11306:3;11327:67;11391:2;11386:3;11327:67;:::i;:::-;11320:74;;11403:93;11492:3;11403:93;:::i;:::-;11521:2;11516:3;11512:12;11505:19;;11310:220;;;:::o;11536:366::-;11678:3;11699:67;11763:2;11758:3;11699:67;:::i;:::-;11692:74;;11775:93;11864:3;11775:93;:::i;:::-;11893:2;11888:3;11884:12;11877:19;;11682:220;;;:::o;11908:366::-;12050:3;12071:67;12135:2;12130:3;12071:67;:::i;:::-;12064:74;;12147:93;12236:3;12147:93;:::i;:::-;12265:2;12260:3;12256:12;12249:19;;12054:220;;;:::o;12280:118::-;12367:24;12385:5;12367:24;:::i;:::-;12362:3;12355:37;12345:53;;:::o;12404:435::-;12584:3;12606:95;12697:3;12688:6;12606:95;:::i;:::-;12599:102;;12718:95;12809:3;12800:6;12718:95;:::i;:::-;12711:102;;12830:3;12823:10;;12588:251;;;;;:::o;12845:222::-;12938:4;12976:2;12965:9;12961:18;12953:26;;12989:71;13057:1;13046:9;13042:17;13033:6;12989:71;:::i;:::-;12943:124;;;;:::o;13073:640::-;13268:4;13306:3;13295:9;13291:19;13283:27;;13320:71;13388:1;13377:9;13373:17;13364:6;13320:71;:::i;:::-;13401:72;13469:2;13458:9;13454:18;13445:6;13401:72;:::i;:::-;13483;13551:2;13540:9;13536:18;13527:6;13483:72;:::i;:::-;13602:9;13596:4;13592:20;13587:2;13576:9;13572:18;13565:48;13630:76;13701:4;13692:6;13630:76;:::i;:::-;13622:84;;13273:440;;;;;;;:::o;13719:210::-;13806:4;13844:2;13833:9;13829:18;13821:26;;13857:65;13919:1;13908:9;13904:17;13895:6;13857:65;:::i;:::-;13811:118;;;;:::o;13935:313::-;14048:4;14086:2;14075:9;14071:18;14063:26;;14135:9;14129:4;14125:20;14121:1;14110:9;14106:17;14099:47;14163:78;14236:4;14227:6;14163:78;:::i;:::-;14155:86;;14053:195;;;;:::o;14254:419::-;14420:4;14458:2;14447:9;14443:18;14435:26;;14507:9;14501:4;14497:20;14493:1;14482:9;14478:17;14471:47;14535:131;14661:4;14535:131;:::i;:::-;14527:139;;14425:248;;;:::o;14679:419::-;14845:4;14883:2;14872:9;14868:18;14860:26;;14932:9;14926:4;14922:20;14918:1;14907:9;14903:17;14896:47;14960:131;15086:4;14960:131;:::i;:::-;14952:139;;14850:248;;;:::o;15104:419::-;15270:4;15308:2;15297:9;15293:18;15285:26;;15357:9;15351:4;15347:20;15343:1;15332:9;15328:17;15321:47;15385:131;15511:4;15385:131;:::i;:::-;15377:139;;15275:248;;;:::o;15529:419::-;15695:4;15733:2;15722:9;15718:18;15710:26;;15782:9;15776:4;15772:20;15768:1;15757:9;15753:17;15746:47;15810:131;15936:4;15810:131;:::i;:::-;15802:139;;15700:248;;;:::o;15954:419::-;16120:4;16158:2;16147:9;16143:18;16135:26;;16207:9;16201:4;16197:20;16193:1;16182:9;16178:17;16171:47;16235:131;16361:4;16235:131;:::i;:::-;16227:139;;16125:248;;;:::o;16379:419::-;16545:4;16583:2;16572:9;16568:18;16560:26;;16632:9;16626:4;16622:20;16618:1;16607:9;16603:17;16596:47;16660:131;16786:4;16660:131;:::i;:::-;16652:139;;16550:248;;;:::o;16804:419::-;16970:4;17008:2;16997:9;16993:18;16985:26;;17057:9;17051:4;17047:20;17043:1;17032:9;17028:17;17021:47;17085:131;17211:4;17085:131;:::i;:::-;17077:139;;16975:248;;;:::o;17229:419::-;17395:4;17433:2;17422:9;17418:18;17410:26;;17482:9;17476:4;17472:20;17468:1;17457:9;17453:17;17446:47;17510:131;17636:4;17510:131;:::i;:::-;17502:139;;17400:248;;;:::o;17654:419::-;17820:4;17858:2;17847:9;17843:18;17835:26;;17907:9;17901:4;17897:20;17893:1;17882:9;17878:17;17871:47;17935:131;18061:4;17935:131;:::i;:::-;17927:139;;17825:248;;;:::o;18079:419::-;18245:4;18283:2;18272:9;18268:18;18260:26;;18332:9;18326:4;18322:20;18318:1;18307:9;18303:17;18296:47;18360:131;18486:4;18360:131;:::i;:::-;18352:139;;18250:248;;;:::o;18504:419::-;18670:4;18708:2;18697:9;18693:18;18685:26;;18757:9;18751:4;18747:20;18743:1;18732:9;18728:17;18721:47;18785:131;18911:4;18785:131;:::i;:::-;18777:139;;18675:248;;;:::o;18929:419::-;19095:4;19133:2;19122:9;19118:18;19110:26;;19182:9;19176:4;19172:20;19168:1;19157:9;19153:17;19146:47;19210:131;19336:4;19210:131;:::i;:::-;19202:139;;19100:248;;;:::o;19354:419::-;19520:4;19558:2;19547:9;19543:18;19535:26;;19607:9;19601:4;19597:20;19593:1;19582:9;19578:17;19571:47;19635:131;19761:4;19635:131;:::i;:::-;19627:139;;19525:248;;;:::o;19779:222::-;19872:4;19910:2;19899:9;19895:18;19887:26;;19923:71;19991:1;19980:9;19976:17;19967:6;19923:71;:::i;:::-;19877:124;;;;:::o;20007:129::-;20041:6;20068:20;;:::i;:::-;20058:30;;20097:33;20125:4;20117:6;20097:33;:::i;:::-;20048:88;;;:::o;20142:75::-;20175:6;20208:2;20202:9;20192:19;;20182:35;:::o;20223:307::-;20284:4;20374:18;20366:6;20363:30;20360:2;;;20396:18;;:::i;:::-;20360:2;20434:29;20456:6;20434:29;:::i;:::-;20426:37;;20518:4;20512;20508:15;20500:23;;20289:241;;;:::o;20536:308::-;20598:4;20688:18;20680:6;20677:30;20674:2;;;20710:18;;:::i;:::-;20674:2;20748:29;20770:6;20748:29;:::i;:::-;20740:37;;20832:4;20826;20822:15;20814:23;;20603:241;;;:::o;20850:98::-;20901:6;20935:5;20929:12;20919:22;;20908:40;;;:::o;20954:99::-;21006:6;21040:5;21034:12;21024:22;;21013:40;;;:::o;21059:168::-;21142:11;21176:6;21171:3;21164:19;21216:4;21211:3;21207:14;21192:29;;21154:73;;;;:::o;21233:169::-;21317:11;21351:6;21346:3;21339:19;21391:4;21386:3;21382:14;21367:29;;21329:73;;;;:::o;21408:148::-;21510:11;21547:3;21532:18;;21522:34;;;;:::o;21562:305::-;21602:3;21621:20;21639:1;21621:20;:::i;:::-;21616:25;;21655:20;21673:1;21655:20;:::i;:::-;21650:25;;21809:1;21741:66;21737:74;21734:1;21731:81;21728:2;;;21815:18;;:::i;:::-;21728:2;21859:1;21856;21852:9;21845:16;;21606:261;;;;:::o;21873:185::-;21913:1;21930:20;21948:1;21930:20;:::i;:::-;21925:25;;21964:20;21982:1;21964:20;:::i;:::-;21959:25;;22003:1;21993:2;;22008:18;;:::i;:::-;21993:2;22050:1;22047;22043:9;22038:14;;21915:143;;;;:::o;22064:191::-;22104:4;22124:20;22142:1;22124:20;:::i;:::-;22119:25;;22158:20;22176:1;22158:20;:::i;:::-;22153:25;;22197:1;22194;22191:8;22188:2;;;22202:18;;:::i;:::-;22188:2;22247:1;22244;22240:9;22232:17;;22109:146;;;;:::o;22261:96::-;22298:7;22327:24;22345:5;22327:24;:::i;:::-;22316:35;;22306:51;;;:::o;22363:90::-;22397:7;22440:5;22433:13;22426:21;22415:32;;22405:48;;;:::o;22459:149::-;22495:7;22535:66;22528:5;22524:78;22513:89;;22503:105;;;:::o;22614:126::-;22651:7;22691:42;22684:5;22680:54;22669:65;;22659:81;;;:::o;22746:77::-;22783:7;22812:5;22801:16;;22791:32;;;:::o;22829:154::-;22913:6;22908:3;22903;22890:30;22975:1;22966:6;22961:3;22957:16;22950:27;22880:103;;;:::o;22989:307::-;23057:1;23067:113;23081:6;23078:1;23075:13;23067:113;;;23166:1;23161:3;23157:11;23151:18;23147:1;23142:3;23138:11;23131:39;23103:2;23100:1;23096:10;23091:15;;23067:113;;;23198:6;23195:1;23192:13;23189:2;;;23278:1;23269:6;23264:3;23260:16;23253:27;23189:2;23038:258;;;;:::o;23302:320::-;23346:6;23383:1;23377:4;23373:12;23363:22;;23430:1;23424:4;23420:12;23451:18;23441:2;;23507:4;23499:6;23495:17;23485:27;;23441:2;23569;23561:6;23558:14;23538:18;23535:38;23532:2;;;23588:18;;:::i;:::-;23532:2;23353:269;;;;:::o;23628:281::-;23711:27;23733:4;23711:27;:::i;:::-;23703:6;23699:40;23841:6;23829:10;23826:22;23805:18;23793:10;23790:34;23787:62;23784:2;;;23852:18;;:::i;:::-;23784:2;23892:10;23888:2;23881:22;23671:238;;;:::o;23915:233::-;23954:3;23977:24;23995:5;23977:24;:::i;:::-;23968:33;;24023:66;24016:5;24013:77;24010:2;;;24093:18;;:::i;:::-;24010:2;24140:1;24133:5;24129:13;24122:20;;23958:190;;;:::o;24154:176::-;24186:1;24203:20;24221:1;24203:20;:::i;:::-;24198:25;;24237:20;24255:1;24237:20;:::i;:::-;24232:25;;24276:1;24266:2;;24281:18;;:::i;:::-;24266:2;24322:1;24319;24315:9;24310:14;;24188:142;;;;:::o;24336:180::-;24384:77;24381:1;24374:88;24481:4;24478:1;24471:15;24505:4;24502:1;24495:15;24522:180;24570:77;24567:1;24560:88;24667:4;24664:1;24657:15;24691:4;24688:1;24681:15;24708:180;24756:77;24753:1;24746:88;24853:4;24850:1;24843:15;24877:4;24874:1;24867:15;24894:180;24942:77;24939:1;24932:88;25039:4;25036:1;25029:15;25063:4;25060:1;25053:15;25080:102;25121:6;25172:2;25168:7;25163:2;25156:5;25152:14;25148:28;25138:38;;25128:54;;;:::o;25188:237::-;25328:34;25324:1;25316:6;25312:14;25305:58;25397:20;25392:2;25384:6;25380:15;25373:45;25294:131;:::o;25431:225::-;25571:34;25567:1;25559:6;25555:14;25548:58;25640:8;25635:2;25627:6;25623:15;25616:33;25537:119;:::o;25662:224::-;25802:34;25798:1;25790:6;25786:14;25779:58;25871:7;25866:2;25858:6;25854:15;25847:32;25768:118;:::o;25892:178::-;26032:30;26028:1;26020:6;26016:14;26009:54;25998:72;:::o;26076:223::-;26216:34;26212:1;26204:6;26200:14;26193:58;26285:6;26280:2;26272:6;26268:15;26261:31;26182:117;:::o;26305:175::-;26445:27;26441:1;26433:6;26429:14;26422:51;26411:69;:::o;26486:228::-;26626:34;26622:1;26614:6;26610:14;26603:58;26695:11;26690:2;26682:6;26678:15;26671:36;26592:122;:::o;26720:249::-;26860:34;26856:1;26848:6;26844:14;26837:58;26929:32;26924:2;26916:6;26912:15;26905:57;26826:143;:::o;26975:182::-;27115:34;27111:1;27103:6;27099:14;27092:58;27081:76;:::o;27163:182::-;27303:34;27299:1;27291:6;27287:14;27280:58;27269:76;:::o;27351:174::-;27491:26;27487:1;27479:6;27475:14;27468:50;27457:68;:::o;27531:220::-;27671:34;27667:1;27659:6;27655:14;27648:58;27740:3;27735:2;27727:6;27723:15;27716:28;27637:114;:::o;27757:233::-;27897:34;27893:1;27885:6;27881:14;27874:58;27966:16;27961:2;27953:6;27949:15;27942:41;27863:127;:::o;27996:122::-;28069:24;28087:5;28069:24;:::i;:::-;28062:5;28059:35;28049:2;;28108:1;28105;28098:12;28049:2;28039:79;:::o;28124:116::-;28194:21;28209:5;28194:21;:::i;:::-;28187:5;28184:32;28174:2;;28230:1;28227;28220:12;28174:2;28164:76;:::o;28246:120::-;28318:23;28335:5;28318:23;:::i;:::-;28311:5;28308:34;28298:2;;28356:1;28353;28346:12;28298:2;28288:78;:::o;28372:122::-;28445:24;28463:5;28445:24;:::i;:::-;28438:5;28435:35;28425:2;;28484:1;28481;28474:12;28425:2;28415:79;:::o
Swarm Source
ipfs://219d301c69408c9f38688c47818d04f78e304768928ce4dc6b3521aba4f986c1
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.