Overview
AVAX Balance
AVAX Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 9,130 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Burn | 51520697 | 196 days ago | IN | 0 AVAX | 0.00060952 | ||||
Burn | 51520610 | 196 days ago | IN | 0 AVAX | 0.00060952 | ||||
Burn | 51520599 | 196 days ago | IN | 0 AVAX | 0.00060952 | ||||
Burn | 50182357 | 229 days ago | IN | 0 AVAX | 0.00060952 | ||||
Burn | 50182312 | 229 days ago | IN | 0 AVAX | 0.00060952 | ||||
Burn | 50182285 | 229 days ago | IN | 0 AVAX | 0.00060952 | ||||
Burn | 49458207 | 246 days ago | IN | 0 AVAX | 0.00060952 | ||||
Burn | 49458184 | 246 days ago | IN | 0 AVAX | 0.00060952 | ||||
Burn | 49225762 | 252 days ago | IN | 0 AVAX | 0.00060952 | ||||
Burn | 49222241 | 252 days ago | IN | 0 AVAX | 0.00060952 | ||||
Burn | 49222185 | 252 days ago | IN | 0 AVAX | 0.00097892 | ||||
Set Approval For... | 49221790 | 252 days ago | IN | 0 AVAX | 0.00128244 | ||||
Set Approval For... | 40909243 | 451 days ago | IN | 0 AVAX | 0.00084057 | ||||
Set Approval For... | 32266069 | 656 days ago | IN | 0 AVAX | 0.00080055 | ||||
Set Approval For... | 27095360 | 778 days ago | IN | 0 AVAX | 0.00078183 | ||||
Burn | 22370949 | 890 days ago | IN | 0 AVAX | 0.00106046 | ||||
Burn | 22370948 | 890 days ago | IN | 0 AVAX | 0.00106298 | ||||
Burn | 22370946 | 890 days ago | IN | 0 AVAX | 0.00107388 | ||||
Burn | 21737688 | 905 days ago | IN | 0 AVAX | 0.00106385 | ||||
Burn | 21737653 | 905 days ago | IN | 0 AVAX | 0.00104997 | ||||
Burn | 21737628 | 905 days ago | IN | 0 AVAX | 0.00107388 | ||||
Burn | 21737574 | 905 days ago | IN | 0 AVAX | 0.00103766 | ||||
Burn | 20931239 | 924 days ago | IN | 0 AVAX | 0.00103766 | ||||
Burn | 20578265 | 933 days ago | IN | 0 AVAX | 0.00103766 | ||||
Burn | 20233264 | 941 days ago | IN | 0 AVAX | 0.00103766 |
Loading...
Loading
Contract Name:
MetaderbyHorse
Compiler Version
v0.8.7+commit.e28d00a7
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity =0.8.7; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; contract MetaderbyHorse is ERC721, Ownable { address private adminAddr = 0x80d176B249448C6183117063b50fdC6AB22B6B6c; address private backendSignAddr = 0x204612c1aCf9208013A3699d11dab538a1ca8e19; string public _baseUrl; constructor() ERC721("Metaderby", "Derby") { // initial base url _baseUrl = "https://d2vvute2v3y7pn.cloudfront.net/NFT/json/"; } modifier adminUser { require(msg.sender == adminAddr, "msg.sender is not admin user"); _; } modifier backendUser { require(msg.sender == backendSignAddr, "msg.sender is not backend user"); _; } function _baseURI() internal view virtual override returns (string memory) { return _baseUrl; } function setBaseUrl(string memory baseUrl) external backendUser { _baseUrl = baseUrl; } function setBackendAddress(address addr) external adminUser returns (bool) { require(addr != address(0), "address invalid"); backendSignAddr = addr; return true; } function recover(bytes32 hash, bytes memory sig) internal pure returns (address) { bytes32 r; bytes32 s; uint8 v; //Check the signature length if (sig.length != 65) { return (address(0)); } // Divide the signature in r, s and v variables assembly { r := mload(add(sig, 32)) s := mload(add(sig, 64)) v := byte(0, mload(add(sig, 96))) } // Version of signature should be 27 or 28, but 0 and 1 are also possible versions if (v < 27) { v += 27; } // If the version is correct return the signer address if (v != 27 && v != 28) { return (address(0)); } else { return ecrecover(hash, v, r, s); } } function validUser(uint256 num, uint256 timestamp, uint256 amount, bytes memory sign) public view returns (bool) { require(timestamp + 120 > block.timestamp, "timestamp <= block.timestamp"); require(timestamp < block.timestamp, "timestamp > block.timestamp"); address to = msg.sender; bytes memory s = abi.encodePacked(num, timestamp, amount, to); bytes32 hash = keccak256(s); address addr = recover(hash, sign); return addr == backendSignAddr; } function _doMint(uint256 num, address to) internal { require(!_exists(num), "tokenId is existent"); _safeMint(to, num); } function mint( uint256 num, uint256 timestamp, uint256 amount, bytes memory sign ) external payable { bool valid = validUser(num, timestamp, amount, sign); require(valid, "user invalid"); require(amount <= msg.value, "value < amount"); payable(backendSignAddr).transfer(msg.value); _doMint(num, msg.sender); } function mintForUser(uint256 num, address to) external backendUser { _doMint(num, to); } function burn(uint256 tokenId) external { _burn(tokenId); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./extensions/IERC721Metadata.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/Strings.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _afterTokenTransfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); _afterTokenTransfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); _afterTokenTransfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // 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; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // 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); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_baseUrl","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"num","type":"uint256"},{"internalType":"uint256","name":"timestamp","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"sign","type":"bytes"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"num","type":"uint256"},{"internalType":"address","name":"to","type":"address"}],"name":"mintForUser","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":"address","name":"addr","type":"address"}],"name":"setBackendAddress","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseUrl","type":"string"}],"name":"setBaseUrl","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":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"num","type":"uint256"},{"internalType":"uint256","name":"timestamp","type":"uint256"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"sign","type":"bytes"}],"name":"validUser","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60806040527380d176b249448c6183117063b50fdc6ab22b6b6c600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073204612c1acf9208013a3699d11dab538a1ca8e19600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550348015620000bb57600080fd5b506040518060400160405280600981526020017f4d657461646572627900000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f446572627900000000000000000000000000000000000000000000000000000081525081600090805190602001906200014092919062000282565b5080600190805190602001906200015992919062000282565b5050506200017c62000170620001b460201b60201c565b620001bc60201b60201c565b6040518060600160405280602f81526020016200403e602f913960099080519060200190620001ad92919062000282565b5062000397565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002909062000332565b90600052602060002090601f016020900481019282620002b4576000855562000300565b82601f10620002cf57805160ff191683800117855562000300565b8280016001018555821562000300579182015b82811115620002ff578251825591602001919060010190620002e2565b5b5090506200030f919062000313565b5090565b5b808211156200032e57600081600090555060010162000314565b5090565b600060028204905060018216806200034b57607f821691505b6020821081141562000362576200036162000368565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b613c9780620003a76000396000f3fe6080604052600436106101405760003560e01c80636352211e116100b6578063b88d4fde1161006f578063b88d4fde1461045d578063c7c3268b14610486578063c87b56dd146104af578063e985e9c5146104ec578063f2fde38b14610529578063f34a39d41461055257610140565b80636352211e1461034d57806370a082311461038a578063715018a6146103c75780638da5cb5b146103de57806395d89b4114610409578063a22cb4651461043457610140565b80631815ce7d116101085780631815ce7d1461023c57806323b872dd1461027957806342842e0e146102a257806342966c68146102cb5780634a9eee69146102f4578063588707701461031057610140565b806301ffc9a71461014557806306fdde0314610182578063081812fc146101ad578063095ea7b3146101ea5780631746b22014610213575b600080fd5b34801561015157600080fd5b5061016c60048036038101906101679190612747565b61057d565b6040516101799190612e17565b60405180910390f35b34801561018e57600080fd5b5061019761065f565b6040516101a49190612e77565b60405180910390f35b3480156101b957600080fd5b506101d460048036038101906101cf91906127ea565b6106f1565b6040516101e19190612db0565b60405180910390f35b3480156101f657600080fd5b50610211600480360381019061020c9190612707565b610776565b005b34801561021f57600080fd5b5061023a60048036038101906102359190612817565b61088e565b005b34801561024857600080fd5b50610263600480360381019061025e9190612584565b61092c565b6040516102709190612e17565b60405180910390f35b34801561028557600080fd5b506102a0600480360381019061029b91906125f1565b610a78565b005b3480156102ae57600080fd5b506102c960048036038101906102c491906125f1565b610ad8565b005b3480156102d757600080fd5b506102f260048036038101906102ed91906127ea565b610af8565b005b61030e60048036038101906103099190612857565b610b04565b005b34801561031c57600080fd5b5061033760048036038101906103329190612857565b610c11565b6040516103449190612e17565b60405180910390f35b34801561035957600080fd5b50610374600480360381019061036f91906127ea565b610d4b565b6040516103819190612db0565b60405180910390f35b34801561039657600080fd5b506103b160048036038101906103ac9190612584565b610dfd565b6040516103be9190613199565b60405180910390f35b3480156103d357600080fd5b506103dc610eb5565b005b3480156103ea57600080fd5b506103f3610f3d565b6040516104009190612db0565b60405180910390f35b34801561041557600080fd5b5061041e610f67565b60405161042b9190612e77565b60405180910390f35b34801561044057600080fd5b5061045b600480360381019061045691906126c7565b610ff9565b005b34801561046957600080fd5b50610484600480360381019061047f9190612644565b61100f565b005b34801561049257600080fd5b506104ad60048036038101906104a891906127a1565b611071565b005b3480156104bb57600080fd5b506104d660048036038101906104d191906127ea565b61111b565b6040516104e39190612e77565b60405180910390f35b3480156104f857600080fd5b50610513600480360381019061050e91906125b1565b6111c2565b6040516105209190612e17565b60405180910390f35b34801561053557600080fd5b50610550600480360381019061054b9190612584565b611256565b005b34801561055e57600080fd5b5061056761134e565b6040516105749190612e77565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061064857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106585750610657826113dc565b5b9050919050565b60606000805461066e9061343d565b80601f016020809104026020016040519081016040528092919081815260200182805461069a9061343d565b80156106e75780601f106106bc576101008083540402835291602001916106e7565b820191906000526020600020905b8154815290600101906020018083116106ca57829003601f168201915b5050505050905090565b60006106fc82611446565b61073b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161073290613039565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061078182610d4b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156107f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107e9906130b9565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108116114b2565b73ffffffffffffffffffffffffffffffffffffffff161480610840575061083f8161083a6114b2565b6111c2565b5b61087f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087690612fb9565b60405180910390fd5b61088983836114ba565b505050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461091e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091590613159565b60405180910390fd5b6109288282611573565b5050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146109be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b590613099565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610a2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2590613139565b60405180910390fd5b81600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060019050919050565b610a89610a836114b2565b826115ca565b610ac8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610abf906130f9565b60405180910390fd5b610ad38383836116a8565b505050565b610af38383836040518060200160405280600081525061100f565b505050565b610b018161190f565b50565b6000610b1285858585610c11565b905080610b54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4b90612f39565b60405180910390fd5b34831115610b97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8e90612e99565b60405180910390fd5b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc349081150290604051600060405180830381858888f19350505050158015610bff573d6000803e3d6000fd5b50610c0a8533611573565b5050505050565b600042607885610c21919061327e565b11610c61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c58906130d9565b60405180910390fd5b428410610ca3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9a90613119565b60405180910390fd5b6000339050600086868684604051602001610cc19493929190612d62565b60405160208183030381529060405290506000818051906020012090506000610cea8287611a2c565b9050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614945050505050949350505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610df4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610deb90612ff9565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6590612fd9565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610ebd6114b2565b73ffffffffffffffffffffffffffffffffffffffff16610edb610f3d565b73ffffffffffffffffffffffffffffffffffffffff1614610f31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2890613059565b60405180910390fd5b610f3b6000611aff565b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610f769061343d565b80601f0160208091040260200160405190810160405280929190818152602001828054610fa29061343d565b8015610fef5780601f10610fc457610100808354040283529160200191610fef565b820191906000526020600020905b815481529060010190602001808311610fd257829003601f168201915b5050505050905090565b61100b6110046114b2565b8383611bc5565b5050565b61102061101a6114b2565b836115ca565b61105f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611056906130f9565b60405180910390fd5b61106b84848484611d32565b50505050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611101576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f890613159565b60405180910390fd5b8060099080519060200190611117929190612398565b5050565b606061112682611446565b611165576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115c90613079565b60405180910390fd5b600061116f611d8e565b9050600081511161118f57604051806020016040528060008152506111ba565b8061119984611e20565b6040516020016111aa929190612d3e565b6040516020818303038152906040525b915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61125e6114b2565b73ffffffffffffffffffffffffffffffffffffffff1661127c610f3d565b73ffffffffffffffffffffffffffffffffffffffff16146112d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c990613059565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611342576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133990612ed9565b60405180910390fd5b61134b81611aff565b50565b6009805461135b9061343d565b80601f01602080910402602001604051908101604052809291908181526020018280546113879061343d565b80156113d45780601f106113a9576101008083540402835291602001916113d4565b820191906000526020600020905b8154815290600101906020018083116113b757829003601f168201915b505050505081565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661152d83610d4b565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b61157c82611446565b156115bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b390613179565b60405180910390fd5b6115c68183611f81565b5050565b60006115d582611446565b611614576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160b90612f99565b60405180910390fd5b600061161f83610d4b565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061168e57508373ffffffffffffffffffffffffffffffffffffffff16611676846106f1565b73ffffffffffffffffffffffffffffffffffffffff16145b8061169f575061169e81856111c2565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166116c882610d4b565b73ffffffffffffffffffffffffffffffffffffffff161461171e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171590612ef9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561178e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178590612f59565b60405180910390fd5b611799838383611f9f565b6117a46000826114ba565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117f4919061333c565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461184b919061327e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461190a838383611fa4565b505050565b600061191a82610d4b565b905061192881600084611f9f565b6119336000836114ba565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611983919061333c565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611a2881600084611fa4565b5050565b6000806000806041855114611a475760009350505050611af9565b6020850151925060408501519150606085015160001a9050601b8160ff161015611a7b57601b81611a7891906132d4565b90505b601b8160ff1614158015611a935750601c8160ff1614155b15611aa45760009350505050611af9565b60018682858560405160008152602001604052604051611ac79493929190612e32565b6020604051602081039080840390855afa158015611ae9573d6000803e3d6000fd5b5050506020604051035193505050505b92915050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611c34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2b90612f79565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611d259190612e17565b60405180910390a3505050565b611d3d8484846116a8565b611d4984848484611fa9565b611d88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7f90612eb9565b60405180910390fd5b50505050565b606060098054611d9d9061343d565b80601f0160208091040260200160405190810160405280929190818152602001828054611dc99061343d565b8015611e165780601f10611deb57610100808354040283529160200191611e16565b820191906000526020600020905b815481529060010190602001808311611df957829003601f168201915b5050505050905090565b60606000821415611e68576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611f7c565b600082905060005b60008214611e9a578080611e83906134a0565b915050600a82611e93919061330b565b9150611e70565b60008167ffffffffffffffff811115611eb657611eb5613604565b5b6040519080825280601f01601f191660200182016040528015611ee85781602001600182028036833780820191505090505b5090505b60008514611f7557600182611f01919061333c565b9150600a85611f109190613517565b6030611f1c919061327e565b60f81b818381518110611f3257611f316135d5565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611f6e919061330b565b9450611eec565b8093505050505b919050565b611f9b828260405180602001604052806000815250612140565b5050565b505050565b505050565b6000611fca8473ffffffffffffffffffffffffffffffffffffffff1661219b565b15612133578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611ff36114b2565b8786866040518563ffffffff1660e01b81526004016120159493929190612dcb565b602060405180830381600087803b15801561202f57600080fd5b505af192505050801561206057506040513d601f19601f8201168201806040525081019061205d9190612774565b60015b6120e3573d8060008114612090576040519150601f19603f3d011682016040523d82523d6000602084013e612095565b606091505b506000815114156120db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120d290612eb9565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612138565b600190505b949350505050565b61214a83836121be565b6121576000848484611fa9565b612196576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218d90612eb9565b60405180910390fd5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561222e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222590613019565b60405180910390fd5b61223781611446565b15612277576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226e90612f19565b60405180910390fd5b61228360008383611f9f565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122d3919061327e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461239460008383611fa4565b5050565b8280546123a49061343d565b90600052602060002090601f0160209004810192826123c6576000855561240d565b82601f106123df57805160ff191683800117855561240d565b8280016001018555821561240d579182015b8281111561240c5782518255916020019190600101906123f1565b5b50905061241a919061241e565b5090565b5b8082111561243757600081600090555060010161241f565b5090565b600061244e612449846131d9565b6131b4565b90508281526020810184848401111561246a57612469613638565b5b6124758482856133fb565b509392505050565b600061249061248b8461320a565b6131b4565b9050828152602081018484840111156124ac576124ab613638565b5b6124b78482856133fb565b509392505050565b6000813590506124ce81613c05565b92915050565b6000813590506124e381613c1c565b92915050565b6000813590506124f881613c33565b92915050565b60008151905061250d81613c33565b92915050565b600082601f83011261252857612527613633565b5b813561253884826020860161243b565b91505092915050565b600082601f83011261255657612555613633565b5b813561256684826020860161247d565b91505092915050565b60008135905061257e81613c4a565b92915050565b60006020828403121561259a57612599613642565b5b60006125a8848285016124bf565b91505092915050565b600080604083850312156125c8576125c7613642565b5b60006125d6858286016124bf565b92505060206125e7858286016124bf565b9150509250929050565b60008060006060848603121561260a57612609613642565b5b6000612618868287016124bf565b9350506020612629868287016124bf565b925050604061263a8682870161256f565b9150509250925092565b6000806000806080858703121561265e5761265d613642565b5b600061266c878288016124bf565b945050602061267d878288016124bf565b935050604061268e8782880161256f565b925050606085013567ffffffffffffffff8111156126af576126ae61363d565b5b6126bb87828801612513565b91505092959194509250565b600080604083850312156126de576126dd613642565b5b60006126ec858286016124bf565b92505060206126fd858286016124d4565b9150509250929050565b6000806040838503121561271e5761271d613642565b5b600061272c858286016124bf565b925050602061273d8582860161256f565b9150509250929050565b60006020828403121561275d5761275c613642565b5b600061276b848285016124e9565b91505092915050565b60006020828403121561278a57612789613642565b5b6000612798848285016124fe565b91505092915050565b6000602082840312156127b7576127b6613642565b5b600082013567ffffffffffffffff8111156127d5576127d461363d565b5b6127e184828501612541565b91505092915050565b600060208284031215612800576127ff613642565b5b600061280e8482850161256f565b91505092915050565b6000806040838503121561282e5761282d613642565b5b600061283c8582860161256f565b925050602061284d858286016124bf565b9150509250929050565b6000806000806080858703121561287157612870613642565b5b600061287f8782880161256f565b94505060206128908782880161256f565b93505060406128a18782880161256f565b925050606085013567ffffffffffffffff8111156128c2576128c161363d565b5b6128ce87828801612513565b91505092959194509250565b6128e381613370565b82525050565b6128fa6128f582613370565b6134e9565b82525050565b61290981613382565b82525050565b6129188161338e565b82525050565b60006129298261323b565b6129338185613251565b935061294381856020860161340a565b61294c81613647565b840191505092915050565b600061296282613246565b61296c8185613262565b935061297c81856020860161340a565b61298581613647565b840191505092915050565b600061299b82613246565b6129a58185613273565b93506129b581856020860161340a565b80840191505092915050565b60006129ce600e83613262565b91506129d982613665565b602082019050919050565b60006129f1603283613262565b91506129fc8261368e565b604082019050919050565b6000612a14602683613262565b9150612a1f826136dd565b604082019050919050565b6000612a37602583613262565b9150612a428261372c565b604082019050919050565b6000612a5a601c83613262565b9150612a658261377b565b602082019050919050565b6000612a7d600c83613262565b9150612a88826137a4565b602082019050919050565b6000612aa0602483613262565b9150612aab826137cd565b604082019050919050565b6000612ac3601983613262565b9150612ace8261381c565b602082019050919050565b6000612ae6602c83613262565b9150612af182613845565b604082019050919050565b6000612b09603883613262565b9150612b1482613894565b604082019050919050565b6000612b2c602a83613262565b9150612b37826138e3565b604082019050919050565b6000612b4f602983613262565b9150612b5a82613932565b604082019050919050565b6000612b72602083613262565b9150612b7d82613981565b602082019050919050565b6000612b95602c83613262565b9150612ba0826139aa565b604082019050919050565b6000612bb8602083613262565b9150612bc3826139f9565b602082019050919050565b6000612bdb602f83613262565b9150612be682613a22565b604082019050919050565b6000612bfe601c83613262565b9150612c0982613a71565b602082019050919050565b6000612c21602183613262565b9150612c2c82613a9a565b604082019050919050565b6000612c44601c83613262565b9150612c4f82613ae9565b602082019050919050565b6000612c67603183613262565b9150612c7282613b12565b604082019050919050565b6000612c8a601b83613262565b9150612c9582613b61565b602082019050919050565b6000612cad600f83613262565b9150612cb882613b8a565b602082019050919050565b6000612cd0601e83613262565b9150612cdb82613bb3565b602082019050919050565b6000612cf3601383613262565b9150612cfe82613bdc565b602082019050919050565b612d12816133e4565b82525050565b612d29612d24826133e4565b61350d565b82525050565b612d38816133ee565b82525050565b6000612d4a8285612990565b9150612d568284612990565b91508190509392505050565b6000612d6e8287612d18565b602082019150612d7e8286612d18565b602082019150612d8e8285612d18565b602082019150612d9e82846128e9565b60148201915081905095945050505050565b6000602082019050612dc560008301846128da565b92915050565b6000608082019050612de060008301876128da565b612ded60208301866128da565b612dfa6040830185612d09565b8181036060830152612e0c818461291e565b905095945050505050565b6000602082019050612e2c6000830184612900565b92915050565b6000608082019050612e47600083018761290f565b612e546020830186612d2f565b612e61604083018561290f565b612e6e606083018461290f565b95945050505050565b60006020820190508181036000830152612e918184612957565b905092915050565b60006020820190508181036000830152612eb2816129c1565b9050919050565b60006020820190508181036000830152612ed2816129e4565b9050919050565b60006020820190508181036000830152612ef281612a07565b9050919050565b60006020820190508181036000830152612f1281612a2a565b9050919050565b60006020820190508181036000830152612f3281612a4d565b9050919050565b60006020820190508181036000830152612f5281612a70565b9050919050565b60006020820190508181036000830152612f7281612a93565b9050919050565b60006020820190508181036000830152612f9281612ab6565b9050919050565b60006020820190508181036000830152612fb281612ad9565b9050919050565b60006020820190508181036000830152612fd281612afc565b9050919050565b60006020820190508181036000830152612ff281612b1f565b9050919050565b6000602082019050818103600083015261301281612b42565b9050919050565b6000602082019050818103600083015261303281612b65565b9050919050565b6000602082019050818103600083015261305281612b88565b9050919050565b6000602082019050818103600083015261307281612bab565b9050919050565b6000602082019050818103600083015261309281612bce565b9050919050565b600060208201905081810360008301526130b281612bf1565b9050919050565b600060208201905081810360008301526130d281612c14565b9050919050565b600060208201905081810360008301526130f281612c37565b9050919050565b6000602082019050818103600083015261311281612c5a565b9050919050565b6000602082019050818103600083015261313281612c7d565b9050919050565b6000602082019050818103600083015261315281612ca0565b9050919050565b6000602082019050818103600083015261317281612cc3565b9050919050565b6000602082019050818103600083015261319281612ce6565b9050919050565b60006020820190506131ae6000830184612d09565b92915050565b60006131be6131cf565b90506131ca828261346f565b919050565b6000604051905090565b600067ffffffffffffffff8211156131f4576131f3613604565b5b6131fd82613647565b9050602081019050919050565b600067ffffffffffffffff82111561322557613224613604565b5b61322e82613647565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613289826133e4565b9150613294836133e4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156132c9576132c8613548565b5b828201905092915050565b60006132df826133ee565b91506132ea836133ee565b92508260ff03821115613300576132ff613548565b5b828201905092915050565b6000613316826133e4565b9150613321836133e4565b92508261333157613330613577565b5b828204905092915050565b6000613347826133e4565b9150613352836133e4565b92508282101561336557613364613548565b5b828203905092915050565b600061337b826133c4565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b8381101561342857808201518184015260208101905061340d565b83811115613437576000848401525b50505050565b6000600282049050600182168061345557607f821691505b60208210811415613469576134686135a6565b5b50919050565b61347882613647565b810181811067ffffffffffffffff8211171561349757613496613604565b5b80604052505050565b60006134ab826133e4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156134de576134dd613548565b5b600182019050919050565b60006134f4826134fb565b9050919050565b600061350682613658565b9050919050565b6000819050919050565b6000613522826133e4565b915061352d836133e4565b92508261353d5761353c613577565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f76616c7565203c20616d6f756e74000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f7573657220696e76616c69640000000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f6d73672e73656e646572206973206e6f742061646d696e207573657200000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f74696d657374616d70203c3d20626c6f636b2e74696d657374616d7000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f74696d657374616d70203e20626c6f636b2e74696d657374616d700000000000600082015250565b7f6164647265737320696e76616c69640000000000000000000000000000000000600082015250565b7f6d73672e73656e646572206973206e6f74206261636b656e6420757365720000600082015250565b7f746f6b656e4964206973206578697374656e7400000000000000000000000000600082015250565b613c0e81613370565b8114613c1957600080fd5b50565b613c2581613382565b8114613c3057600080fd5b50565b613c3c81613398565b8114613c4757600080fd5b50565b613c53816133e4565b8114613c5e57600080fd5b5056fea264697066735822122084772090d987ed93df1937105d465ee4a53fc004bd47f577d11effbc78290ffd64736f6c6343000807003368747470733a2f2f643276767574653276337937706e2e636c6f756466726f6e742e6e65742f4e46542f6a736f6e2f
Deployed Bytecode
0x6080604052600436106101405760003560e01c80636352211e116100b6578063b88d4fde1161006f578063b88d4fde1461045d578063c7c3268b14610486578063c87b56dd146104af578063e985e9c5146104ec578063f2fde38b14610529578063f34a39d41461055257610140565b80636352211e1461034d57806370a082311461038a578063715018a6146103c75780638da5cb5b146103de57806395d89b4114610409578063a22cb4651461043457610140565b80631815ce7d116101085780631815ce7d1461023c57806323b872dd1461027957806342842e0e146102a257806342966c68146102cb5780634a9eee69146102f4578063588707701461031057610140565b806301ffc9a71461014557806306fdde0314610182578063081812fc146101ad578063095ea7b3146101ea5780631746b22014610213575b600080fd5b34801561015157600080fd5b5061016c60048036038101906101679190612747565b61057d565b6040516101799190612e17565b60405180910390f35b34801561018e57600080fd5b5061019761065f565b6040516101a49190612e77565b60405180910390f35b3480156101b957600080fd5b506101d460048036038101906101cf91906127ea565b6106f1565b6040516101e19190612db0565b60405180910390f35b3480156101f657600080fd5b50610211600480360381019061020c9190612707565b610776565b005b34801561021f57600080fd5b5061023a60048036038101906102359190612817565b61088e565b005b34801561024857600080fd5b50610263600480360381019061025e9190612584565b61092c565b6040516102709190612e17565b60405180910390f35b34801561028557600080fd5b506102a0600480360381019061029b91906125f1565b610a78565b005b3480156102ae57600080fd5b506102c960048036038101906102c491906125f1565b610ad8565b005b3480156102d757600080fd5b506102f260048036038101906102ed91906127ea565b610af8565b005b61030e60048036038101906103099190612857565b610b04565b005b34801561031c57600080fd5b5061033760048036038101906103329190612857565b610c11565b6040516103449190612e17565b60405180910390f35b34801561035957600080fd5b50610374600480360381019061036f91906127ea565b610d4b565b6040516103819190612db0565b60405180910390f35b34801561039657600080fd5b506103b160048036038101906103ac9190612584565b610dfd565b6040516103be9190613199565b60405180910390f35b3480156103d357600080fd5b506103dc610eb5565b005b3480156103ea57600080fd5b506103f3610f3d565b6040516104009190612db0565b60405180910390f35b34801561041557600080fd5b5061041e610f67565b60405161042b9190612e77565b60405180910390f35b34801561044057600080fd5b5061045b600480360381019061045691906126c7565b610ff9565b005b34801561046957600080fd5b50610484600480360381019061047f9190612644565b61100f565b005b34801561049257600080fd5b506104ad60048036038101906104a891906127a1565b611071565b005b3480156104bb57600080fd5b506104d660048036038101906104d191906127ea565b61111b565b6040516104e39190612e77565b60405180910390f35b3480156104f857600080fd5b50610513600480360381019061050e91906125b1565b6111c2565b6040516105209190612e17565b60405180910390f35b34801561053557600080fd5b50610550600480360381019061054b9190612584565b611256565b005b34801561055e57600080fd5b5061056761134e565b6040516105749190612e77565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061064857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806106585750610657826113dc565b5b9050919050565b60606000805461066e9061343d565b80601f016020809104026020016040519081016040528092919081815260200182805461069a9061343d565b80156106e75780601f106106bc576101008083540402835291602001916106e7565b820191906000526020600020905b8154815290600101906020018083116106ca57829003601f168201915b5050505050905090565b60006106fc82611446565b61073b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161073290613039565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061078182610d4b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156107f2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107e9906130b9565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166108116114b2565b73ffffffffffffffffffffffffffffffffffffffff161480610840575061083f8161083a6114b2565b6111c2565b5b61087f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087690612fb9565b60405180910390fd5b61088983836114ba565b505050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461091e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161091590613159565b60405180910390fd5b6109288282611573565b5050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146109be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b590613099565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610a2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2590613139565b60405180910390fd5b81600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060019050919050565b610a89610a836114b2565b826115ca565b610ac8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610abf906130f9565b60405180910390fd5b610ad38383836116a8565b505050565b610af38383836040518060200160405280600081525061100f565b505050565b610b018161190f565b50565b6000610b1285858585610c11565b905080610b54576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4b90612f39565b60405180910390fd5b34831115610b97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8e90612e99565b60405180910390fd5b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc349081150290604051600060405180830381858888f19350505050158015610bff573d6000803e3d6000fd5b50610c0a8533611573565b5050505050565b600042607885610c21919061327e565b11610c61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c58906130d9565b60405180910390fd5b428410610ca3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9a90613119565b60405180910390fd5b6000339050600086868684604051602001610cc19493929190612d62565b60405160208183030381529060405290506000818051906020012090506000610cea8287611a2c565b9050600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614945050505050949350505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610df4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610deb90612ff9565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6590612fd9565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610ebd6114b2565b73ffffffffffffffffffffffffffffffffffffffff16610edb610f3d565b73ffffffffffffffffffffffffffffffffffffffff1614610f31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2890613059565b60405180910390fd5b610f3b6000611aff565b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610f769061343d565b80601f0160208091040260200160405190810160405280929190818152602001828054610fa29061343d565b8015610fef5780601f10610fc457610100808354040283529160200191610fef565b820191906000526020600020905b815481529060010190602001808311610fd257829003601f168201915b5050505050905090565b61100b6110046114b2565b8383611bc5565b5050565b61102061101a6114b2565b836115ca565b61105f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611056906130f9565b60405180910390fd5b61106b84848484611d32565b50505050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611101576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f890613159565b60405180910390fd5b8060099080519060200190611117929190612398565b5050565b606061112682611446565b611165576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115c90613079565b60405180910390fd5b600061116f611d8e565b9050600081511161118f57604051806020016040528060008152506111ba565b8061119984611e20565b6040516020016111aa929190612d3e565b6040516020818303038152906040525b915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61125e6114b2565b73ffffffffffffffffffffffffffffffffffffffff1661127c610f3d565b73ffffffffffffffffffffffffffffffffffffffff16146112d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c990613059565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611342576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133990612ed9565b60405180910390fd5b61134b81611aff565b50565b6009805461135b9061343d565b80601f01602080910402602001604051908101604052809291908181526020018280546113879061343d565b80156113d45780601f106113a9576101008083540402835291602001916113d4565b820191906000526020600020905b8154815290600101906020018083116113b757829003601f168201915b505050505081565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661152d83610d4b565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b61157c82611446565b156115bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b390613179565b60405180910390fd5b6115c68183611f81565b5050565b60006115d582611446565b611614576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160b90612f99565b60405180910390fd5b600061161f83610d4b565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061168e57508373ffffffffffffffffffffffffffffffffffffffff16611676846106f1565b73ffffffffffffffffffffffffffffffffffffffff16145b8061169f575061169e81856111c2565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166116c882610d4b565b73ffffffffffffffffffffffffffffffffffffffff161461171e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171590612ef9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561178e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161178590612f59565b60405180910390fd5b611799838383611f9f565b6117a46000826114ba565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546117f4919061333c565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461184b919061327e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461190a838383611fa4565b505050565b600061191a82610d4b565b905061192881600084611f9f565b6119336000836114ba565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611983919061333c565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611a2881600084611fa4565b5050565b6000806000806041855114611a475760009350505050611af9565b6020850151925060408501519150606085015160001a9050601b8160ff161015611a7b57601b81611a7891906132d4565b90505b601b8160ff1614158015611a935750601c8160ff1614155b15611aa45760009350505050611af9565b60018682858560405160008152602001604052604051611ac79493929190612e32565b6020604051602081039080840390855afa158015611ae9573d6000803e3d6000fd5b5050506020604051035193505050505b92915050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611c34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2b90612f79565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611d259190612e17565b60405180910390a3505050565b611d3d8484846116a8565b611d4984848484611fa9565b611d88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7f90612eb9565b60405180910390fd5b50505050565b606060098054611d9d9061343d565b80601f0160208091040260200160405190810160405280929190818152602001828054611dc99061343d565b8015611e165780601f10611deb57610100808354040283529160200191611e16565b820191906000526020600020905b815481529060010190602001808311611df957829003601f168201915b5050505050905090565b60606000821415611e68576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611f7c565b600082905060005b60008214611e9a578080611e83906134a0565b915050600a82611e93919061330b565b9150611e70565b60008167ffffffffffffffff811115611eb657611eb5613604565b5b6040519080825280601f01601f191660200182016040528015611ee85781602001600182028036833780820191505090505b5090505b60008514611f7557600182611f01919061333c565b9150600a85611f109190613517565b6030611f1c919061327e565b60f81b818381518110611f3257611f316135d5565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611f6e919061330b565b9450611eec565b8093505050505b919050565b611f9b828260405180602001604052806000815250612140565b5050565b505050565b505050565b6000611fca8473ffffffffffffffffffffffffffffffffffffffff1661219b565b15612133578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611ff36114b2565b8786866040518563ffffffff1660e01b81526004016120159493929190612dcb565b602060405180830381600087803b15801561202f57600080fd5b505af192505050801561206057506040513d601f19601f8201168201806040525081019061205d9190612774565b60015b6120e3573d8060008114612090576040519150601f19603f3d011682016040523d82523d6000602084013e612095565b606091505b506000815114156120db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120d290612eb9565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612138565b600190505b949350505050565b61214a83836121be565b6121576000848484611fa9565b612196576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218d90612eb9565b60405180910390fd5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561222e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161222590613019565b60405180910390fd5b61223781611446565b15612277576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226e90612f19565b60405180910390fd5b61228360008383611f9f565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546122d3919061327e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461239460008383611fa4565b5050565b8280546123a49061343d565b90600052602060002090601f0160209004810192826123c6576000855561240d565b82601f106123df57805160ff191683800117855561240d565b8280016001018555821561240d579182015b8281111561240c5782518255916020019190600101906123f1565b5b50905061241a919061241e565b5090565b5b8082111561243757600081600090555060010161241f565b5090565b600061244e612449846131d9565b6131b4565b90508281526020810184848401111561246a57612469613638565b5b6124758482856133fb565b509392505050565b600061249061248b8461320a565b6131b4565b9050828152602081018484840111156124ac576124ab613638565b5b6124b78482856133fb565b509392505050565b6000813590506124ce81613c05565b92915050565b6000813590506124e381613c1c565b92915050565b6000813590506124f881613c33565b92915050565b60008151905061250d81613c33565b92915050565b600082601f83011261252857612527613633565b5b813561253884826020860161243b565b91505092915050565b600082601f83011261255657612555613633565b5b813561256684826020860161247d565b91505092915050565b60008135905061257e81613c4a565b92915050565b60006020828403121561259a57612599613642565b5b60006125a8848285016124bf565b91505092915050565b600080604083850312156125c8576125c7613642565b5b60006125d6858286016124bf565b92505060206125e7858286016124bf565b9150509250929050565b60008060006060848603121561260a57612609613642565b5b6000612618868287016124bf565b9350506020612629868287016124bf565b925050604061263a8682870161256f565b9150509250925092565b6000806000806080858703121561265e5761265d613642565b5b600061266c878288016124bf565b945050602061267d878288016124bf565b935050604061268e8782880161256f565b925050606085013567ffffffffffffffff8111156126af576126ae61363d565b5b6126bb87828801612513565b91505092959194509250565b600080604083850312156126de576126dd613642565b5b60006126ec858286016124bf565b92505060206126fd858286016124d4565b9150509250929050565b6000806040838503121561271e5761271d613642565b5b600061272c858286016124bf565b925050602061273d8582860161256f565b9150509250929050565b60006020828403121561275d5761275c613642565b5b600061276b848285016124e9565b91505092915050565b60006020828403121561278a57612789613642565b5b6000612798848285016124fe565b91505092915050565b6000602082840312156127b7576127b6613642565b5b600082013567ffffffffffffffff8111156127d5576127d461363d565b5b6127e184828501612541565b91505092915050565b600060208284031215612800576127ff613642565b5b600061280e8482850161256f565b91505092915050565b6000806040838503121561282e5761282d613642565b5b600061283c8582860161256f565b925050602061284d858286016124bf565b9150509250929050565b6000806000806080858703121561287157612870613642565b5b600061287f8782880161256f565b94505060206128908782880161256f565b93505060406128a18782880161256f565b925050606085013567ffffffffffffffff8111156128c2576128c161363d565b5b6128ce87828801612513565b91505092959194509250565b6128e381613370565b82525050565b6128fa6128f582613370565b6134e9565b82525050565b61290981613382565b82525050565b6129188161338e565b82525050565b60006129298261323b565b6129338185613251565b935061294381856020860161340a565b61294c81613647565b840191505092915050565b600061296282613246565b61296c8185613262565b935061297c81856020860161340a565b61298581613647565b840191505092915050565b600061299b82613246565b6129a58185613273565b93506129b581856020860161340a565b80840191505092915050565b60006129ce600e83613262565b91506129d982613665565b602082019050919050565b60006129f1603283613262565b91506129fc8261368e565b604082019050919050565b6000612a14602683613262565b9150612a1f826136dd565b604082019050919050565b6000612a37602583613262565b9150612a428261372c565b604082019050919050565b6000612a5a601c83613262565b9150612a658261377b565b602082019050919050565b6000612a7d600c83613262565b9150612a88826137a4565b602082019050919050565b6000612aa0602483613262565b9150612aab826137cd565b604082019050919050565b6000612ac3601983613262565b9150612ace8261381c565b602082019050919050565b6000612ae6602c83613262565b9150612af182613845565b604082019050919050565b6000612b09603883613262565b9150612b1482613894565b604082019050919050565b6000612b2c602a83613262565b9150612b37826138e3565b604082019050919050565b6000612b4f602983613262565b9150612b5a82613932565b604082019050919050565b6000612b72602083613262565b9150612b7d82613981565b602082019050919050565b6000612b95602c83613262565b9150612ba0826139aa565b604082019050919050565b6000612bb8602083613262565b9150612bc3826139f9565b602082019050919050565b6000612bdb602f83613262565b9150612be682613a22565b604082019050919050565b6000612bfe601c83613262565b9150612c0982613a71565b602082019050919050565b6000612c21602183613262565b9150612c2c82613a9a565b604082019050919050565b6000612c44601c83613262565b9150612c4f82613ae9565b602082019050919050565b6000612c67603183613262565b9150612c7282613b12565b604082019050919050565b6000612c8a601b83613262565b9150612c9582613b61565b602082019050919050565b6000612cad600f83613262565b9150612cb882613b8a565b602082019050919050565b6000612cd0601e83613262565b9150612cdb82613bb3565b602082019050919050565b6000612cf3601383613262565b9150612cfe82613bdc565b602082019050919050565b612d12816133e4565b82525050565b612d29612d24826133e4565b61350d565b82525050565b612d38816133ee565b82525050565b6000612d4a8285612990565b9150612d568284612990565b91508190509392505050565b6000612d6e8287612d18565b602082019150612d7e8286612d18565b602082019150612d8e8285612d18565b602082019150612d9e82846128e9565b60148201915081905095945050505050565b6000602082019050612dc560008301846128da565b92915050565b6000608082019050612de060008301876128da565b612ded60208301866128da565b612dfa6040830185612d09565b8181036060830152612e0c818461291e565b905095945050505050565b6000602082019050612e2c6000830184612900565b92915050565b6000608082019050612e47600083018761290f565b612e546020830186612d2f565b612e61604083018561290f565b612e6e606083018461290f565b95945050505050565b60006020820190508181036000830152612e918184612957565b905092915050565b60006020820190508181036000830152612eb2816129c1565b9050919050565b60006020820190508181036000830152612ed2816129e4565b9050919050565b60006020820190508181036000830152612ef281612a07565b9050919050565b60006020820190508181036000830152612f1281612a2a565b9050919050565b60006020820190508181036000830152612f3281612a4d565b9050919050565b60006020820190508181036000830152612f5281612a70565b9050919050565b60006020820190508181036000830152612f7281612a93565b9050919050565b60006020820190508181036000830152612f9281612ab6565b9050919050565b60006020820190508181036000830152612fb281612ad9565b9050919050565b60006020820190508181036000830152612fd281612afc565b9050919050565b60006020820190508181036000830152612ff281612b1f565b9050919050565b6000602082019050818103600083015261301281612b42565b9050919050565b6000602082019050818103600083015261303281612b65565b9050919050565b6000602082019050818103600083015261305281612b88565b9050919050565b6000602082019050818103600083015261307281612bab565b9050919050565b6000602082019050818103600083015261309281612bce565b9050919050565b600060208201905081810360008301526130b281612bf1565b9050919050565b600060208201905081810360008301526130d281612c14565b9050919050565b600060208201905081810360008301526130f281612c37565b9050919050565b6000602082019050818103600083015261311281612c5a565b9050919050565b6000602082019050818103600083015261313281612c7d565b9050919050565b6000602082019050818103600083015261315281612ca0565b9050919050565b6000602082019050818103600083015261317281612cc3565b9050919050565b6000602082019050818103600083015261319281612ce6565b9050919050565b60006020820190506131ae6000830184612d09565b92915050565b60006131be6131cf565b90506131ca828261346f565b919050565b6000604051905090565b600067ffffffffffffffff8211156131f4576131f3613604565b5b6131fd82613647565b9050602081019050919050565b600067ffffffffffffffff82111561322557613224613604565b5b61322e82613647565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613289826133e4565b9150613294836133e4565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156132c9576132c8613548565b5b828201905092915050565b60006132df826133ee565b91506132ea836133ee565b92508260ff03821115613300576132ff613548565b5b828201905092915050565b6000613316826133e4565b9150613321836133e4565b92508261333157613330613577565b5b828204905092915050565b6000613347826133e4565b9150613352836133e4565b92508282101561336557613364613548565b5b828203905092915050565b600061337b826133c4565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b8381101561342857808201518184015260208101905061340d565b83811115613437576000848401525b50505050565b6000600282049050600182168061345557607f821691505b60208210811415613469576134686135a6565b5b50919050565b61347882613647565b810181811067ffffffffffffffff8211171561349757613496613604565b5b80604052505050565b60006134ab826133e4565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156134de576134dd613548565b5b600182019050919050565b60006134f4826134fb565b9050919050565b600061350682613658565b9050919050565b6000819050919050565b6000613522826133e4565b915061352d836133e4565b92508261353d5761353c613577565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f76616c7565203c20616d6f756e74000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f7573657220696e76616c69640000000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f6d73672e73656e646572206973206e6f742061646d696e207573657200000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f74696d657374616d70203c3d20626c6f636b2e74696d657374616d7000000000600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f74696d657374616d70203e20626c6f636b2e74696d657374616d700000000000600082015250565b7f6164647265737320696e76616c69640000000000000000000000000000000000600082015250565b7f6d73672e73656e646572206973206e6f74206261636b656e6420757365720000600082015250565b7f746f6b656e4964206973206578697374656e7400000000000000000000000000600082015250565b613c0e81613370565b8114613c1957600080fd5b50565b613c2581613382565b8114613c3057600080fd5b50565b613c3c81613398565b8114613c4757600080fd5b50565b613c53816133e4565b8114613c5e57600080fd5b5056fea264697066735822122084772090d987ed93df1937105d465ee4a53fc004bd47f577d11effbc78290ffd64736f6c63430008070033
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 34 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.