Source Code
Overview
ETH Balance
0.01472 ETH
Eth Value
$33.30 (@ $2,262.00/ETH)More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 24 from a total of 24 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Batch Cancel ERC... | 19104281 | 777 days ago | IN | 0 ETH | 0.00033713 | ||||
| Set Approval For... | 17761685 | 965 days ago | IN | 0 ETH | 0.00140897 | ||||
| Set Approval For... | 16688734 | 1117 days ago | IN | 0 ETH | 0.00106721 | ||||
| Set Approval For... | 16688608 | 1117 days ago | IN | 0 ETH | 0.00159286 | ||||
| Batch Mint | 16444875 | 1151 days ago | IN | 0 ETH | 0.2430236 | ||||
| Increment Hash N... | 16097697 | 1199 days ago | IN | 0 ETH | 0.00033051 | ||||
| Increment Hash N... | 16097677 | 1199 days ago | IN | 0 ETH | 0.00037557 | ||||
| Increment Hash N... | 16097625 | 1199 days ago | IN | 0 ETH | 0.00036075 | ||||
| Increment Hash N... | 16097610 | 1199 days ago | IN | 0 ETH | 0.00038834 | ||||
| Fill Batch Signe... | 16070430 | 1203 days ago | IN | 0.0047 ETH | 0.00050769 | ||||
| Cancel ERC721Ord... | 16032779 | 1208 days ago | IN | 0 ETH | 0.0002469 | ||||
| Fill Batch Signe... | 16032003 | 1208 days ago | IN | 0.0007 ETH | 0.00029933 | ||||
| Fill Batch Signe... | 16031990 | 1208 days ago | IN | 0.0003 ETH | 0.00031072 | ||||
| Fill Batch Signe... | 16031987 | 1208 days ago | IN | 0.0003 ETH | 0.00031377 | ||||
| Cancel ERC721Ord... | 16024334 | 1209 days ago | IN | 0 ETH | 0.00025667 | ||||
| Fill Batch Signe... | 16001453 | 1213 days ago | IN | 0.00022 ETH | 0.00029607 | ||||
| Increment Hash N... | 15975145 | 1216 days ago | IN | 0 ETH | 0.00028823 | ||||
| Buy ERC721 | 15886747 | 1229 days ago | IN | 0.003 ETH | 0.0003723 | ||||
| Cancel ERC721Ord... | 15857288 | 1233 days ago | IN | 0 ETH | 0.00020567 | ||||
| Cancel ERC721Ord... | 15837617 | 1235 days ago | IN | 0 ETH | 0.00016837 | ||||
| Increment Hash N... | 15832105 | 1236 days ago | IN | 0 ETH | 0.00022827 | ||||
| Buy ERC721 | 15716666 | 1252 days ago | IN | 0.0055 ETH | 0.00094233 | ||||
| Sell ERC721 | 15572390 | 1273 days ago | IN | 0 ETH | 0.00016581 | ||||
| Cancel ERC721Ord... | 15468241 | 1289 days ago | IN | 0 ETH | 0.00008855 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
PowerWeb3Hongkong
Compiler Version
v0.8.17+commit.8df45f5f
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.17;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "operator-filter-registry/src/DefaultOperatorFilterer.sol";
contract PowerWeb3Hongkong is ERC721("Power Web3 Hongkong", "PowerWeb3"), Ownable, DefaultOperatorFilterer {
using Strings for uint256;
uint256 public totalSupply;
string private baseURI_ = "ipfs://Qmc2aY3xVGLsPMfv6bvibP5tfw7xgAdEvkaqK9A1HFv8oQ/";
uint256 private constant MASK_160 = ((1 << 160) - 1);
function mint(address to, uint256 tokenId) external onlyOwner {
unchecked {
_mint(to, tokenId);
totalSupply++;
}
}
function batchMint(uint256[] calldata infos) external onlyOwner {
unchecked {
uint256 l = infos.length;
for (uint256 i; i < l; i++) {
_mint(address(uint160(infos[i] & MASK_160)), (infos[i] >> 160));
}
totalSupply += l;
}
}
function tokenURI(uint256 tokenId) public override view virtual returns (string memory) {
require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");
string memory uri = _baseURI();
if (bytes(uri).length > 0) {
if (tokenId > 99) {
return string(abi.encodePacked(uri, tokenId.toString(), ".json"));
}
if (tokenId > 9) {
return string(abi.encodePacked(uri, "0", tokenId.toString(), ".json"));
}
return string(abi.encodePacked(uri, "00", tokenId.toString(), ".json"));
} else {
return "";
}
}
function setBaseURI(string memory uri) external onlyOwner {
baseURI_ = uri;
}
function _baseURI() internal override view virtual returns (string memory) {
return baseURI_;
}
function setApprovalForAll(address operator, bool approved)
public
override
onlyAllowedOperatorApproval(operator)
{
super.setApprovalForAll(operator, approved);
}
function approve(address operator, uint256 tokenId)
public
override
onlyAllowedOperatorApproval(operator)
{
super.approve(operator, tokenId);
}
function transferFrom(address from, address to, uint256 tokenId)
public
override
onlyAllowedOperator(from)
{
super.transferFrom(from, to, tokenId);
}
function safeTransferFrom(address from, address to, uint256 tokenId)
public
override
onlyAllowedOperator(from)
{
super.safeTransferFrom(from, to, tokenId);
}
function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data)
public
override
onlyAllowedOperator(from)
{
super.safeTransferFrom(from, to, tokenId, data);
}
}// 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/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);
}
/**
* @dev Destroys `tokenId`.
* The approval is cleared when the token is burned.
*
* Requirements:
*
* - `tokenId` must exist.
*
* Emits a {Transfer} event.
*/
function _burn(uint256 tokenId) internal virtual {
address owner = ERC721.ownerOf(tokenId);
_beforeTokenTransfer(owner, address(0), tokenId);
// Clear approvals
_approve(address(0), tokenId);
_balances[owner] -= 1;
delete _owners[tokenId];
emit Transfer(owner, address(0), tokenId);
}
/**
* @dev Transfers `tokenId` from `from` to `to`.
* As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
*
* Emits a {Transfer} event.
*/
function _transfer(
address from,
address to,
uint256 tokenId
) internal virtual {
require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
require(to != address(0), "ERC721: transfer to the zero address");
_beforeTokenTransfer(from, to, tokenId);
// Clear approvals from the previous owner
_approve(address(0), tokenId);
_balances[from] -= 1;
_balances[to] += 1;
_owners[tokenId] = to;
emit Transfer(from, to, tokenId);
}
/**
* @dev Approve `to` to operate on `tokenId`
*
* Emits a {Approval} event.
*/
function _approve(address to, uint256 tokenId) internal virtual {
_tokenApprovals[tokenId] = to;
emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
}
/**
* @dev 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 {}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;
import {OperatorFilterer} from "./OperatorFilterer.sol";
/**
* @title DefaultOperatorFilterer
* @notice Inherits from OperatorFilterer and automatically subscribes to the default OpenSea subscription.
*/
abstract contract DefaultOperatorFilterer is OperatorFilterer {
address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6);
constructor() OperatorFilterer(DEFAULT_SUBSCRIPTION, true) {}
}// 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 (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 v4.4.1 (utils/Address.sol)
pragma solidity ^0.8.0;
/**
* @dev Collection of functions related to the address type
*/
library Address {
/**
* @dev Returns true if `account` is a contract.
*
* [IMPORTANT]
* ====
* It is unsafe to assume that an address for which this function returns
* false is an externally-owned account (EOA) and not a contract.
*
* Among others, `isContract` will return false for the following
* types of addresses:
*
* - an externally-owned account
* - a contract in construction
* - an address where a contract will be created
* - an address where a contract lived, but was destroyed
* ====
*/
function isContract(address account) internal view returns (bool) {
// This method relies on extcodesize, which returns 0 for contracts in
// construction, since the code is only stored at the end of the
// constructor execution.
uint256 size;
assembly {
size := extcodesize(account)
}
return size > 0;
}
/**
* @dev Replacement for Solidity's `transfer`: sends `amount` wei to
* `recipient`, forwarding all available gas and reverting on errors.
*
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
* of certain opcodes, possibly making contracts go over the 2300 gas limit
* imposed by `transfer`, making them unable to receive funds via
* `transfer`. {sendValue} removes this limitation.
*
* https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
*
* IMPORTANT: because control is transferred to `recipient`, care must be
* taken to not create reentrancy vulnerabilities. Consider using
* {ReentrancyGuard} or the
* https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/
function sendValue(address payable recipient, uint256 amount) internal {
require(address(this).balance >= amount, "Address: insufficient balance");
(bool success, ) = recipient.call{value: amount}("");
require(success, "Address: unable to send value, recipient may have reverted");
}
/**
* @dev Performs a Solidity function call using a low level `call`. A
* plain `call` is an unsafe replacement for a function call: use this
* function instead.
*
* If `target` reverts with a revert reason, it is bubbled up by this
* function (like regular Solidity function calls).
*
* Returns the raw returned data. To convert to the expected return value,
* use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
*
* Requirements:
*
* - `target` must be a contract.
* - calling `target` with `data` must not revert.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data) internal returns (bytes memory) {
return functionCall(target, data, "Address: low-level call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
* `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but also transferring `value` wei to `target`.
*
* Requirements:
*
* - the calling contract must have an ETH balance of at least `value`.
* - the called Solidity function must be `payable`.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value
) internal returns (bytes memory) {
return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
}
/**
* @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
* with `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value,
string memory errorMessage
) internal returns (bytes memory) {
require(address(this).balance >= value, "Address: insufficient balance for call");
require(isContract(target), "Address: call to non-contract");
(bool success, bytes memory returndata) = target.call{value: value}(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
return functionStaticCall(target, data, "Address: low-level static call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(
address target,
bytes memory data,
string memory errorMessage
) internal view returns (bytes memory) {
require(isContract(target), "Address: static call to non-contract");
(bool success, bytes memory returndata) = target.staticcall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
return functionDelegateCall(target, data, "Address: low-level delegate call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
require(isContract(target), "Address: delegate call to non-contract");
(bool success, bytes memory returndata) = target.delegatecall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
* revert reason using the provided one.
*
* _Available since v4.3._
*/
function verifyCallResult(
bool success,
bytes memory returndata,
string memory errorMessage
) internal pure returns (bytes memory) {
if (success) {
return returndata;
} else {
// Look for revert reason and bubble it up if present
if (returndata.length > 0) {
// The easiest way to bubble the revert reason is using memory via assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}
}// SPDX-License-Identifier: MIT
// 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);
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;
import {IOperatorFilterRegistry} from "./IOperatorFilterRegistry.sol";
/**
* @title OperatorFilterer
* @notice Abstract contract whose constructor automatically registers and optionally subscribes to or copies another
* registrant's entries in the OperatorFilterRegistry.
* @dev This smart contract is meant to be inherited by token contracts so they can use the following:
* - `onlyAllowedOperator` modifier for `transferFrom` and `safeTransferFrom` methods.
* - `onlyAllowedOperatorApproval` modifier for `approve` and `setApprovalForAll` methods.
*/
abstract contract OperatorFilterer {
error OperatorNotAllowed(address operator);
IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY =
IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E);
constructor(address subscriptionOrRegistrantToCopy, bool subscribe) {
// If an inheriting token contract is deployed to a network without the registry deployed, the modifier
// will not revert, but the contract will need to be registered with the registry once it is deployed in
// order for the modifier to filter addresses.
if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
if (subscribe) {
OPERATOR_FILTER_REGISTRY.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy);
} else {
if (subscriptionOrRegistrantToCopy != address(0)) {
OPERATOR_FILTER_REGISTRY.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy);
} else {
OPERATOR_FILTER_REGISTRY.register(address(this));
}
}
}
}
modifier onlyAllowedOperator(address from) virtual {
// Allow spending tokens from addresses with balance
// Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred
// from an EOA.
if (from != msg.sender) {
_checkFilterOperator(msg.sender);
}
_;
}
modifier onlyAllowedOperatorApproval(address operator) virtual {
_checkFilterOperator(operator);
_;
}
function _checkFilterOperator(address operator) internal view virtual {
// Check registry code length to facilitate testing in environments without a deployed registry.
if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), operator)) {
revert OperatorNotAllowed(operator);
}
}
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;
interface IOperatorFilterRegistry {
function isOperatorAllowed(address registrant, address operator) external view returns (bool);
function register(address registrant) external;
function registerAndSubscribe(address registrant, address subscription) external;
function registerAndCopyEntries(address registrant, address registrantToCopy) external;
function unregister(address addr) external;
function updateOperator(address registrant, address operator, bool filtered) external;
function updateOperators(address registrant, address[] calldata operators, bool filtered) external;
function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external;
function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external;
function subscribe(address registrant, address registrantToSubscribe) external;
function unsubscribe(address registrant, bool copyExistingEntries) external;
function subscriptionOf(address addr) external returns (address registrant);
function subscribers(address registrant) external returns (address[] memory);
function subscriberAt(address registrant, uint256 index) external returns (address);
function copyEntriesOf(address registrant, address registrantToCopy) external;
function isOperatorFiltered(address registrant, address operator) external returns (bool);
function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool);
function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool);
function filteredOperators(address addr) external returns (address[] memory);
function filteredCodeHashes(address addr) external returns (bytes32[] memory);
function filteredOperatorAt(address registrant, uint256 index) external returns (address);
function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32);
function isRegistered(address addr) external returns (bool);
function codeHashOf(address addr) external returns (bytes32);
}{
"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":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"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":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","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":"infos","type":"uint256[]"}],"name":"batchMint","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":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
608060405260405180606001604052806036815260200162003e5b60369139600890816200002e91906200064b565b503480156200003c57600080fd5b50733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280601381526020017f506f776572205765623320486f6e676b6f6e67000000000000000000000000008152506040518060400160405280600981526020017f506f7765725765623300000000000000000000000000000000000000000000008152508160009081620000d191906200064b565b508060019081620000e391906200064b565b50505062000106620000fa6200030360201b60201c565b6200030b60201b60201c565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115620002fb578015620001c1576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b81526004016200018792919062000777565b600060405180830381600087803b158015620001a257600080fd5b505af1158015620001b7573d6000803e3d6000fd5b50505050620002fa565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146200027b576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b81526004016200024192919062000777565b600060405180830381600087803b1580156200025c57600080fd5b505af115801562000271573d6000803e3d6000fd5b50505050620002f9565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b8152600401620002c49190620007a4565b600060405180830381600087803b158015620002df57600080fd5b505af1158015620002f4573d6000803e3d6000fd5b505050505b5b5b5050620007c1565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200045357607f821691505b6020821081036200046957620004686200040b565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620004d37fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000494565b620004df868362000494565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200052c620005266200052084620004f7565b62000501565b620004f7565b9050919050565b6000819050919050565b62000548836200050b565b62000560620005578262000533565b848454620004a1565b825550505050565b600090565b6200057762000568565b620005848184846200053d565b505050565b5b81811015620005ac57620005a06000826200056d565b6001810190506200058a565b5050565b601f821115620005fb57620005c5816200046f565b620005d08462000484565b81016020851015620005e0578190505b620005f8620005ef8562000484565b83018262000589565b50505b505050565b600082821c905092915050565b6000620006206000198460080262000600565b1980831691505092915050565b60006200063b83836200060d565b9150826002028217905092915050565b6200065682620003d1565b67ffffffffffffffff811115620006725762000671620003dc565b5b6200067e82546200043a565b6200068b828285620005b0565b600060209050601f831160018114620006c35760008415620006ae578287015190505b620006ba85826200062d565b8655506200072a565b601f198416620006d3866200046f565b60005b82811015620006fd57848901518255600182019150602085019450602081019050620006d6565b868310156200071d578489015162000719601f8916826200060d565b8355505b6001600288020188555050505b505050505050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006200075f8262000732565b9050919050565b620007718162000752565b82525050565b60006040820190506200078e600083018562000766565b6200079d602083018462000766565b9392505050565b6000602082019050620007bb600083018462000766565b92915050565b61368a80620007d16000396000f3fe608060405234801561001057600080fd5b50600436106101375760003560e01c80636352211e116100b857806395d89b411161007c57806395d89b4114610326578063a22cb46514610344578063b88d4fde14610360578063c87b56dd1461037c578063e985e9c5146103ac578063f2fde38b146103dc57610137565b80636352211e1461028257806370a08231146102b2578063715018a6146102e25780638da5cb5b146102ec5780638ffbe96b1461030a57610137565b806323b872dd116100ff57806323b872dd146101f457806340c10f191461021057806341f434341461022c57806342842e0e1461024a57806355f804b31461026657610137565b806301ffc9a71461013c57806306fdde031461016c578063081812fc1461018a578063095ea7b3146101ba57806318160ddd146101d6575b600080fd5b61015660048036038101906101519190611ee9565b6103f8565b6040516101639190611f31565b60405180910390f35b6101746104da565b6040516101819190611fdc565b60405180910390f35b6101a4600480360381019061019f9190612034565b61056c565b6040516101b191906120a2565b60405180910390f35b6101d460048036038101906101cf91906120e9565b6105f1565b005b6101de61060a565b6040516101eb9190612138565b60405180910390f35b61020e60048036038101906102099190612153565b610610565b005b61022a600480360381019061022591906120e9565b61065f565b005b6102346106fb565b6040516102419190612205565b60405180910390f35b610264600480360381019061025f9190612153565b61070d565b005b610280600480360381019061027b9190612355565b61075c565b005b61029c60048036038101906102979190612034565b6107eb565b6040516102a991906120a2565b60405180910390f35b6102cc60048036038101906102c7919061239e565b61089c565b6040516102d99190612138565b60405180910390f35b6102ea610953565b005b6102f46109db565b60405161030191906120a2565b60405180910390f35b610324600480360381019061031f919061242b565b610a05565b005b61032e610b0d565b60405161033b9190611fdc565b60405180910390f35b61035e600480360381019061035991906124a4565b610b9f565b005b61037a60048036038101906103759190612585565b610bb8565b005b61039660048036038101906103919190612034565b610c09565b6040516103a39190611fdc565b60405180910390f35b6103c660048036038101906103c19190612608565b610d2a565b6040516103d39190611f31565b60405180910390f35b6103f660048036038101906103f1919061239e565b610dbe565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806104c357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806104d357506104d282610eb5565b5b9050919050565b6060600080546104e990612677565b80601f016020809104026020016040519081016040528092919081815260200182805461051590612677565b80156105625780601f1061053757610100808354040283529160200191610562565b820191906000526020600020905b81548152906001019060200180831161054557829003601f168201915b5050505050905090565b600061057782610f1f565b6105b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105ad9061271a565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b816105fb81610f8b565b6106058383611088565b505050565b60075481565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461064e5761064d33610f8b565b5b61065984848461119f565b50505050565b6106676111ff565b73ffffffffffffffffffffffffffffffffffffffff166106856109db565b73ffffffffffffffffffffffffffffffffffffffff16146106db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106d290612786565b60405180910390fd5b6106e58282611207565b6007600081548092919060010191905055505050565b6daaeb6d7670e522a718067333cd4e81565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461074b5761074a33610f8b565b5b6107568484846113d4565b50505050565b6107646111ff565b73ffffffffffffffffffffffffffffffffffffffff166107826109db565b73ffffffffffffffffffffffffffffffffffffffff16146107d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107cf90612786565b60405180910390fd5b80600890816107e79190612948565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610893576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088a90612a8c565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361090c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090390612b1e565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61095b6111ff565b73ffffffffffffffffffffffffffffffffffffffff166109796109db565b73ffffffffffffffffffffffffffffffffffffffff16146109cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c690612786565b60405180910390fd5b6109d960006113f4565b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610a0d6111ff565b73ffffffffffffffffffffffffffffffffffffffff16610a2b6109db565b73ffffffffffffffffffffffffffffffffffffffff1614610a81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7890612786565b60405180910390fd5b600082829050905060005b81811015610af757610aea73ffffffffffffffffffffffffffffffffffffffff858584818110610abf57610abe612b3e565b5b905060200201351660a0868685818110610adc57610adb612b3e565b5b90506020020135901c611207565b8080600101915050610a8c565b5080600760008282540192505081905550505050565b606060018054610b1c90612677565b80601f0160208091040260200160405190810160405280929190818152602001828054610b4890612677565b8015610b955780601f10610b6a57610100808354040283529160200191610b95565b820191906000526020600020905b815481529060010190602001808311610b7857829003601f168201915b5050505050905090565b81610ba981610f8b565b610bb383836114ba565b505050565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610bf657610bf533610f8b565b5b610c02858585856114d0565b5050505050565b6060610c1482610f1f565b610c53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4a90612bdf565b60405180910390fd5b6000610c5d611532565b9050600081511115610d11576063831115610ca45780610c7c846115c4565b604051602001610c8d929190612c87565b604051602081830303815290604052915050610d25565b6009831115610cdf5780610cb7846115c4565b604051602001610cc8929190612d02565b604051602081830303815290604052915050610d25565b80610ce9846115c4565b604051602001610cfa929190612d88565b604051602081830303815290604052915050610d25565b604051806020016040528060008152509150505b919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610dc66111ff565b73ffffffffffffffffffffffffffffffffffffffff16610de46109db565b73ffffffffffffffffffffffffffffffffffffffff1614610e3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3190612786565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610ea9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea090612e34565b60405180910390fd5b610eb2816113f4565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611085576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401611002929190612e54565b602060405180830381865afa15801561101f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110439190612e92565b61108457806040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161107b91906120a2565b60405180910390fd5b5b50565b6000611093826107eb565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611103576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110fa90612f31565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166111226111ff565b73ffffffffffffffffffffffffffffffffffffffff16148061115157506111508161114b6111ff565b610d2a565b5b611190576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118790612fc3565b60405180910390fd5b61119a8383611724565b505050565b6111b06111aa6111ff565b826117dd565b6111ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e690613055565b60405180910390fd5b6111fa8383836118bb565b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611276576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126d906130c1565b60405180910390fd5b61127f81610f1f565b156112bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b69061312d565b60405180910390fd5b6112cb60008383611b16565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461131b919061317c565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6113ef83838360405180602001604052806000815250610bb8565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6114cc6114c56111ff565b8383611b1b565b5050565b6114e16114db6111ff565b836117dd565b611520576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151790613055565b60405180910390fd5b61152c84848484611c87565b50505050565b60606008805461154190612677565b80601f016020809104026020016040519081016040528092919081815260200182805461156d90612677565b80156115ba5780601f1061158f576101008083540402835291602001916115ba565b820191906000526020600020905b81548152906001019060200180831161159d57829003601f168201915b5050505050905090565b60606000820361160b576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061171f565b600082905060005b6000821461163d578080611626906131b0565b915050600a826116369190613227565b9150611613565b60008167ffffffffffffffff8111156116595761165861222a565b5b6040519080825280601f01601f19166020018201604052801561168b5781602001600182028036833780820191505090505b5090505b60008514611718576001826116a49190613258565b9150600a856116b3919061328c565b60306116bf919061317c565b60f81b8183815181106116d5576116d4612b3e565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856117119190613227565b945061168f565b8093505050505b919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611797836107eb565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006117e882610f1f565b611827576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181e9061332f565b60405180910390fd5b6000611832836107eb565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806118a157508373ffffffffffffffffffffffffffffffffffffffff166118898461056c565b73ffffffffffffffffffffffffffffffffffffffff16145b806118b257506118b18185610d2a565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166118db826107eb565b73ffffffffffffffffffffffffffffffffffffffff1614611931576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611928906133c1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036119a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199790613453565b60405180910390fd5b6119ab838383611b16565b6119b6600082611724565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a069190613258565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a5d919061317c565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611b89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b80906134bf565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611c7a9190611f31565b60405180910390a3505050565b611c928484846118bb565b611c9e84848484611ce3565b611cdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd490613551565b60405180910390fd5b50505050565b6000611d048473ffffffffffffffffffffffffffffffffffffffff16611e6a565b15611e5d578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611d2d6111ff565b8786866040518563ffffffff1660e01b8152600401611d4f94939291906135c6565b6020604051808303816000875af1925050508015611d8b57506040513d601f19601f82011682018060405250810190611d889190613627565b60015b611e0d573d8060008114611dbb576040519150601f19603f3d011682016040523d82523d6000602084013e611dc0565b606091505b506000815103611e05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dfc90613551565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611e62565b600190505b949350505050565b600080823b905060008111915050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611ec681611e91565b8114611ed157600080fd5b50565b600081359050611ee381611ebd565b92915050565b600060208284031215611eff57611efe611e87565b5b6000611f0d84828501611ed4565b91505092915050565b60008115159050919050565b611f2b81611f16565b82525050565b6000602082019050611f466000830184611f22565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611f86578082015181840152602081019050611f6b565b60008484015250505050565b6000601f19601f8301169050919050565b6000611fae82611f4c565b611fb88185611f57565b9350611fc8818560208601611f68565b611fd181611f92565b840191505092915050565b60006020820190508181036000830152611ff68184611fa3565b905092915050565b6000819050919050565b61201181611ffe565b811461201c57600080fd5b50565b60008135905061202e81612008565b92915050565b60006020828403121561204a57612049611e87565b5b60006120588482850161201f565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061208c82612061565b9050919050565b61209c81612081565b82525050565b60006020820190506120b76000830184612093565b92915050565b6120c681612081565b81146120d157600080fd5b50565b6000813590506120e3816120bd565b92915050565b60008060408385031215612100576120ff611e87565b5b600061210e858286016120d4565b925050602061211f8582860161201f565b9150509250929050565b61213281611ffe565b82525050565b600060208201905061214d6000830184612129565b92915050565b60008060006060848603121561216c5761216b611e87565b5b600061217a868287016120d4565b935050602061218b868287016120d4565b925050604061219c8682870161201f565b9150509250925092565b6000819050919050565b60006121cb6121c66121c184612061565b6121a6565b612061565b9050919050565b60006121dd826121b0565b9050919050565b60006121ef826121d2565b9050919050565b6121ff816121e4565b82525050565b600060208201905061221a60008301846121f6565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61226282611f92565b810181811067ffffffffffffffff821117156122815761228061222a565b5b80604052505050565b6000612294611e7d565b90506122a08282612259565b919050565b600067ffffffffffffffff8211156122c0576122bf61222a565b5b6122c982611f92565b9050602081019050919050565b82818337600083830152505050565b60006122f86122f3846122a5565b61228a565b90508281526020810184848401111561231457612313612225565b5b61231f8482856122d6565b509392505050565b600082601f83011261233c5761233b612220565b5b813561234c8482602086016122e5565b91505092915050565b60006020828403121561236b5761236a611e87565b5b600082013567ffffffffffffffff81111561238957612388611e8c565b5b61239584828501612327565b91505092915050565b6000602082840312156123b4576123b3611e87565b5b60006123c2848285016120d4565b91505092915050565b600080fd5b600080fd5b60008083601f8401126123eb576123ea612220565b5b8235905067ffffffffffffffff811115612408576124076123cb565b5b602083019150836020820283011115612424576124236123d0565b5b9250929050565b6000806020838503121561244257612441611e87565b5b600083013567ffffffffffffffff8111156124605761245f611e8c565b5b61246c858286016123d5565b92509250509250929050565b61248181611f16565b811461248c57600080fd5b50565b60008135905061249e81612478565b92915050565b600080604083850312156124bb576124ba611e87565b5b60006124c9858286016120d4565b92505060206124da8582860161248f565b9150509250929050565b600067ffffffffffffffff8211156124ff576124fe61222a565b5b61250882611f92565b9050602081019050919050565b6000612528612523846124e4565b61228a565b90508281526020810184848401111561254457612543612225565b5b61254f8482856122d6565b509392505050565b600082601f83011261256c5761256b612220565b5b813561257c848260208601612515565b91505092915050565b6000806000806080858703121561259f5761259e611e87565b5b60006125ad878288016120d4565b94505060206125be878288016120d4565b93505060406125cf8782880161201f565b925050606085013567ffffffffffffffff8111156125f0576125ef611e8c565b5b6125fc87828801612557565b91505092959194509250565b6000806040838503121561261f5761261e611e87565b5b600061262d858286016120d4565b925050602061263e858286016120d4565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061268f57607f821691505b6020821081036126a2576126a1612648565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000612704602c83611f57565b915061270f826126a8565b604082019050919050565b60006020820190508181036000830152612733816126f7565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612770602083611f57565b915061277b8261273a565b602082019050919050565b6000602082019050818103600083015261279f81612763565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026128087fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826127cb565b61281286836127cb565b95508019841693508086168417925050509392505050565b600061284561284061283b84611ffe565b6121a6565b611ffe565b9050919050565b6000819050919050565b61285f8361282a565b61287361286b8261284c565b8484546127d8565b825550505050565b600090565b61288861287b565b612893818484612856565b505050565b5b818110156128b7576128ac600082612880565b600181019050612899565b5050565b601f8211156128fc576128cd816127a6565b6128d6846127bb565b810160208510156128e5578190505b6128f96128f1856127bb565b830182612898565b50505b505050565b600082821c905092915050565b600061291f60001984600802612901565b1980831691505092915050565b6000612938838361290e565b9150826002028217905092915050565b61295182611f4c565b67ffffffffffffffff81111561296a5761296961222a565b5b6129748254612677565b61297f8282856128bb565b600060209050601f8311600181146129b257600084156129a0578287015190505b6129aa858261292c565b865550612a12565b601f1984166129c0866127a6565b60005b828110156129e8578489015182556001820191506020850194506020810190506129c3565b86831015612a055784890151612a01601f89168261290e565b8355505b6001600288020188555050505b505050505050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000612a76602983611f57565b9150612a8182612a1a565b604082019050919050565b60006020820190508181036000830152612aa581612a69565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000612b08602a83611f57565b9150612b1382612aac565b604082019050919050565b60006020820190508181036000830152612b3781612afb565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000612bc9602f83611f57565b9150612bd482612b6d565b604082019050919050565b60006020820190508181036000830152612bf881612bbc565b9050919050565b600081905092915050565b6000612c1582611f4c565b612c1f8185612bff565b9350612c2f818560208601611f68565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000612c71600583612bff565b9150612c7c82612c3b565b600582019050919050565b6000612c938285612c0a565b9150612c9f8284612c0a565b9150612caa82612c64565b91508190509392505050565b7f3000000000000000000000000000000000000000000000000000000000000000600082015250565b6000612cec600183612bff565b9150612cf782612cb6565b600182019050919050565b6000612d0e8285612c0a565b9150612d1982612cdf565b9150612d258284612c0a565b9150612d3082612c64565b91508190509392505050565b7f3030000000000000000000000000000000000000000000000000000000000000600082015250565b6000612d72600283612bff565b9150612d7d82612d3c565b600282019050919050565b6000612d948285612c0a565b9150612d9f82612d65565b9150612dab8284612c0a565b9150612db682612c64565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612e1e602683611f57565b9150612e2982612dc2565b604082019050919050565b60006020820190508181036000830152612e4d81612e11565b9050919050565b6000604082019050612e696000830185612093565b612e766020830184612093565b9392505050565b600081519050612e8c81612478565b92915050565b600060208284031215612ea857612ea7611e87565b5b6000612eb684828501612e7d565b91505092915050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000612f1b602183611f57565b9150612f2682612ebf565b604082019050919050565b60006020820190508181036000830152612f4a81612f0e565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000612fad603883611f57565b9150612fb882612f51565b604082019050919050565b60006020820190508181036000830152612fdc81612fa0565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b600061303f603183611f57565b915061304a82612fe3565b604082019050919050565b6000602082019050818103600083015261306e81613032565b9050919050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006130ab602083611f57565b91506130b682613075565b602082019050919050565b600060208201905081810360008301526130da8161309e565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000613117601c83611f57565b9150613122826130e1565b602082019050919050565b600060208201905081810360008301526131468161310a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061318782611ffe565b915061319283611ffe565b92508282019050808211156131aa576131a961314d565b5b92915050565b60006131bb82611ffe565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036131ed576131ec61314d565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061323282611ffe565b915061323d83611ffe565b92508261324d5761324c6131f8565b5b828204905092915050565b600061326382611ffe565b915061326e83611ffe565b92508282039050818111156132865761328561314d565b5b92915050565b600061329782611ffe565b91506132a283611ffe565b9250826132b2576132b16131f8565b5b828206905092915050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613319602c83611f57565b9150613324826132bd565b604082019050919050565b600060208201905081810360008301526133488161330c565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b60006133ab602983611f57565b91506133b68261334f565b604082019050919050565b600060208201905081810360008301526133da8161339e565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061343d602483611f57565b9150613448826133e1565b604082019050919050565b6000602082019050818103600083015261346c81613430565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006134a9601983611f57565b91506134b482613473565b602082019050919050565b600060208201905081810360008301526134d88161349c565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b600061353b603283611f57565b9150613546826134df565b604082019050919050565b6000602082019050818103600083015261356a8161352e565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061359882613571565b6135a2818561357c565b93506135b2818560208601611f68565b6135bb81611f92565b840191505092915050565b60006080820190506135db6000830187612093565b6135e86020830186612093565b6135f56040830185612129565b8181036060830152613607818461358d565b905095945050505050565b60008151905061362181611ebd565b92915050565b60006020828403121561363d5761363c611e87565b5b600061364b84828501613612565b9150509291505056fea264697066735822122041b6c7b2724013e14f59207bbc8aed36834efb9ba937c3dabe461339240960ee64736f6c63430008110033697066733a2f2f516d63326159337856474c73504d667636627669625035746677377867416445766b61714b394131484676386f512f
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101375760003560e01c80636352211e116100b857806395d89b411161007c57806395d89b4114610326578063a22cb46514610344578063b88d4fde14610360578063c87b56dd1461037c578063e985e9c5146103ac578063f2fde38b146103dc57610137565b80636352211e1461028257806370a08231146102b2578063715018a6146102e25780638da5cb5b146102ec5780638ffbe96b1461030a57610137565b806323b872dd116100ff57806323b872dd146101f457806340c10f191461021057806341f434341461022c57806342842e0e1461024a57806355f804b31461026657610137565b806301ffc9a71461013c57806306fdde031461016c578063081812fc1461018a578063095ea7b3146101ba57806318160ddd146101d6575b600080fd5b61015660048036038101906101519190611ee9565b6103f8565b6040516101639190611f31565b60405180910390f35b6101746104da565b6040516101819190611fdc565b60405180910390f35b6101a4600480360381019061019f9190612034565b61056c565b6040516101b191906120a2565b60405180910390f35b6101d460048036038101906101cf91906120e9565b6105f1565b005b6101de61060a565b6040516101eb9190612138565b60405180910390f35b61020e60048036038101906102099190612153565b610610565b005b61022a600480360381019061022591906120e9565b61065f565b005b6102346106fb565b6040516102419190612205565b60405180910390f35b610264600480360381019061025f9190612153565b61070d565b005b610280600480360381019061027b9190612355565b61075c565b005b61029c60048036038101906102979190612034565b6107eb565b6040516102a991906120a2565b60405180910390f35b6102cc60048036038101906102c7919061239e565b61089c565b6040516102d99190612138565b60405180910390f35b6102ea610953565b005b6102f46109db565b60405161030191906120a2565b60405180910390f35b610324600480360381019061031f919061242b565b610a05565b005b61032e610b0d565b60405161033b9190611fdc565b60405180910390f35b61035e600480360381019061035991906124a4565b610b9f565b005b61037a60048036038101906103759190612585565b610bb8565b005b61039660048036038101906103919190612034565b610c09565b6040516103a39190611fdc565b60405180910390f35b6103c660048036038101906103c19190612608565b610d2a565b6040516103d39190611f31565b60405180910390f35b6103f660048036038101906103f1919061239e565b610dbe565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806104c357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806104d357506104d282610eb5565b5b9050919050565b6060600080546104e990612677565b80601f016020809104026020016040519081016040528092919081815260200182805461051590612677565b80156105625780601f1061053757610100808354040283529160200191610562565b820191906000526020600020905b81548152906001019060200180831161054557829003601f168201915b5050505050905090565b600061057782610f1f565b6105b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105ad9061271a565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b816105fb81610f8b565b6106058383611088565b505050565b60075481565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461064e5761064d33610f8b565b5b61065984848461119f565b50505050565b6106676111ff565b73ffffffffffffffffffffffffffffffffffffffff166106856109db565b73ffffffffffffffffffffffffffffffffffffffff16146106db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106d290612786565b60405180910390fd5b6106e58282611207565b6007600081548092919060010191905055505050565b6daaeb6d7670e522a718067333cd4e81565b823373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461074b5761074a33610f8b565b5b6107568484846113d4565b50505050565b6107646111ff565b73ffffffffffffffffffffffffffffffffffffffff166107826109db565b73ffffffffffffffffffffffffffffffffffffffff16146107d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107cf90612786565b60405180910390fd5b80600890816107e79190612948565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610893576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088a90612a8c565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361090c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090390612b1e565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61095b6111ff565b73ffffffffffffffffffffffffffffffffffffffff166109796109db565b73ffffffffffffffffffffffffffffffffffffffff16146109cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c690612786565b60405180910390fd5b6109d960006113f4565b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610a0d6111ff565b73ffffffffffffffffffffffffffffffffffffffff16610a2b6109db565b73ffffffffffffffffffffffffffffffffffffffff1614610a81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7890612786565b60405180910390fd5b600082829050905060005b81811015610af757610aea73ffffffffffffffffffffffffffffffffffffffff858584818110610abf57610abe612b3e565b5b905060200201351660a0868685818110610adc57610adb612b3e565b5b90506020020135901c611207565b8080600101915050610a8c565b5080600760008282540192505081905550505050565b606060018054610b1c90612677565b80601f0160208091040260200160405190810160405280929190818152602001828054610b4890612677565b8015610b955780601f10610b6a57610100808354040283529160200191610b95565b820191906000526020600020905b815481529060010190602001808311610b7857829003601f168201915b5050505050905090565b81610ba981610f8b565b610bb383836114ba565b505050565b833373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610bf657610bf533610f8b565b5b610c02858585856114d0565b5050505050565b6060610c1482610f1f565b610c53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4a90612bdf565b60405180910390fd5b6000610c5d611532565b9050600081511115610d11576063831115610ca45780610c7c846115c4565b604051602001610c8d929190612c87565b604051602081830303815290604052915050610d25565b6009831115610cdf5780610cb7846115c4565b604051602001610cc8929190612d02565b604051602081830303815290604052915050610d25565b80610ce9846115c4565b604051602001610cfa929190612d88565b604051602081830303815290604052915050610d25565b604051806020016040528060008152509150505b919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b610dc66111ff565b73ffffffffffffffffffffffffffffffffffffffff16610de46109db565b73ffffffffffffffffffffffffffffffffffffffff1614610e3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3190612786565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610ea9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea090612e34565b60405180910390fd5b610eb2816113f4565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b60006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115611085576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401611002929190612e54565b602060405180830381865afa15801561101f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110439190612e92565b61108457806040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161107b91906120a2565b60405180910390fd5b5b50565b6000611093826107eb565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611103576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110fa90612f31565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166111226111ff565b73ffffffffffffffffffffffffffffffffffffffff16148061115157506111508161114b6111ff565b610d2a565b5b611190576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118790612fc3565b60405180910390fd5b61119a8383611724565b505050565b6111b06111aa6111ff565b826117dd565b6111ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e690613055565b60405180910390fd5b6111fa8383836118bb565b505050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611276576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126d906130c1565b60405180910390fd5b61127f81610f1f565b156112bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112b69061312d565b60405180910390fd5b6112cb60008383611b16565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461131b919061317c565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b6113ef83838360405180602001604052806000815250610bb8565b505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6114cc6114c56111ff565b8383611b1b565b5050565b6114e16114db6111ff565b836117dd565b611520576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161151790613055565b60405180910390fd5b61152c84848484611c87565b50505050565b60606008805461154190612677565b80601f016020809104026020016040519081016040528092919081815260200182805461156d90612677565b80156115ba5780601f1061158f576101008083540402835291602001916115ba565b820191906000526020600020905b81548152906001019060200180831161159d57829003601f168201915b5050505050905090565b60606000820361160b576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061171f565b600082905060005b6000821461163d578080611626906131b0565b915050600a826116369190613227565b9150611613565b60008167ffffffffffffffff8111156116595761165861222a565b5b6040519080825280601f01601f19166020018201604052801561168b5781602001600182028036833780820191505090505b5090505b60008514611718576001826116a49190613258565b9150600a856116b3919061328c565b60306116bf919061317c565b60f81b8183815181106116d5576116d4612b3e565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856117119190613227565b945061168f565b8093505050505b919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611797836107eb565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006117e882610f1f565b611827576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181e9061332f565b60405180910390fd5b6000611832836107eb565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806118a157508373ffffffffffffffffffffffffffffffffffffffff166118898461056c565b73ffffffffffffffffffffffffffffffffffffffff16145b806118b257506118b18185610d2a565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166118db826107eb565b73ffffffffffffffffffffffffffffffffffffffff1614611931576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611928906133c1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036119a0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199790613453565b60405180910390fd5b6119ab838383611b16565b6119b6600082611724565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a069190613258565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611a5d919061317c565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611b89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b80906134bf565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611c7a9190611f31565b60405180910390a3505050565b611c928484846118bb565b611c9e84848484611ce3565b611cdd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd490613551565b60405180910390fd5b50505050565b6000611d048473ffffffffffffffffffffffffffffffffffffffff16611e6a565b15611e5d578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611d2d6111ff565b8786866040518563ffffffff1660e01b8152600401611d4f94939291906135c6565b6020604051808303816000875af1925050508015611d8b57506040513d601f19601f82011682018060405250810190611d889190613627565b60015b611e0d573d8060008114611dbb576040519150601f19603f3d011682016040523d82523d6000602084013e611dc0565b606091505b506000815103611e05576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dfc90613551565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611e62565b600190505b949350505050565b600080823b905060008111915050919050565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b611ec681611e91565b8114611ed157600080fd5b50565b600081359050611ee381611ebd565b92915050565b600060208284031215611eff57611efe611e87565b5b6000611f0d84828501611ed4565b91505092915050565b60008115159050919050565b611f2b81611f16565b82525050565b6000602082019050611f466000830184611f22565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611f86578082015181840152602081019050611f6b565b60008484015250505050565b6000601f19601f8301169050919050565b6000611fae82611f4c565b611fb88185611f57565b9350611fc8818560208601611f68565b611fd181611f92565b840191505092915050565b60006020820190508181036000830152611ff68184611fa3565b905092915050565b6000819050919050565b61201181611ffe565b811461201c57600080fd5b50565b60008135905061202e81612008565b92915050565b60006020828403121561204a57612049611e87565b5b60006120588482850161201f565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061208c82612061565b9050919050565b61209c81612081565b82525050565b60006020820190506120b76000830184612093565b92915050565b6120c681612081565b81146120d157600080fd5b50565b6000813590506120e3816120bd565b92915050565b60008060408385031215612100576120ff611e87565b5b600061210e858286016120d4565b925050602061211f8582860161201f565b9150509250929050565b61213281611ffe565b82525050565b600060208201905061214d6000830184612129565b92915050565b60008060006060848603121561216c5761216b611e87565b5b600061217a868287016120d4565b935050602061218b868287016120d4565b925050604061219c8682870161201f565b9150509250925092565b6000819050919050565b60006121cb6121c66121c184612061565b6121a6565b612061565b9050919050565b60006121dd826121b0565b9050919050565b60006121ef826121d2565b9050919050565b6121ff816121e4565b82525050565b600060208201905061221a60008301846121f6565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61226282611f92565b810181811067ffffffffffffffff821117156122815761228061222a565b5b80604052505050565b6000612294611e7d565b90506122a08282612259565b919050565b600067ffffffffffffffff8211156122c0576122bf61222a565b5b6122c982611f92565b9050602081019050919050565b82818337600083830152505050565b60006122f86122f3846122a5565b61228a565b90508281526020810184848401111561231457612313612225565b5b61231f8482856122d6565b509392505050565b600082601f83011261233c5761233b612220565b5b813561234c8482602086016122e5565b91505092915050565b60006020828403121561236b5761236a611e87565b5b600082013567ffffffffffffffff81111561238957612388611e8c565b5b61239584828501612327565b91505092915050565b6000602082840312156123b4576123b3611e87565b5b60006123c2848285016120d4565b91505092915050565b600080fd5b600080fd5b60008083601f8401126123eb576123ea612220565b5b8235905067ffffffffffffffff811115612408576124076123cb565b5b602083019150836020820283011115612424576124236123d0565b5b9250929050565b6000806020838503121561244257612441611e87565b5b600083013567ffffffffffffffff8111156124605761245f611e8c565b5b61246c858286016123d5565b92509250509250929050565b61248181611f16565b811461248c57600080fd5b50565b60008135905061249e81612478565b92915050565b600080604083850312156124bb576124ba611e87565b5b60006124c9858286016120d4565b92505060206124da8582860161248f565b9150509250929050565b600067ffffffffffffffff8211156124ff576124fe61222a565b5b61250882611f92565b9050602081019050919050565b6000612528612523846124e4565b61228a565b90508281526020810184848401111561254457612543612225565b5b61254f8482856122d6565b509392505050565b600082601f83011261256c5761256b612220565b5b813561257c848260208601612515565b91505092915050565b6000806000806080858703121561259f5761259e611e87565b5b60006125ad878288016120d4565b94505060206125be878288016120d4565b93505060406125cf8782880161201f565b925050606085013567ffffffffffffffff8111156125f0576125ef611e8c565b5b6125fc87828801612557565b91505092959194509250565b6000806040838503121561261f5761261e611e87565b5b600061262d858286016120d4565b925050602061263e858286016120d4565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061268f57607f821691505b6020821081036126a2576126a1612648565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000612704602c83611f57565b915061270f826126a8565b604082019050919050565b60006020820190508181036000830152612733816126f7565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612770602083611f57565b915061277b8261273a565b602082019050919050565b6000602082019050818103600083015261279f81612763565b9050919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b6000600883026128087fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826127cb565b61281286836127cb565b95508019841693508086168417925050509392505050565b600061284561284061283b84611ffe565b6121a6565b611ffe565b9050919050565b6000819050919050565b61285f8361282a565b61287361286b8261284c565b8484546127d8565b825550505050565b600090565b61288861287b565b612893818484612856565b505050565b5b818110156128b7576128ac600082612880565b600181019050612899565b5050565b601f8211156128fc576128cd816127a6565b6128d6846127bb565b810160208510156128e5578190505b6128f96128f1856127bb565b830182612898565b50505b505050565b600082821c905092915050565b600061291f60001984600802612901565b1980831691505092915050565b6000612938838361290e565b9150826002028217905092915050565b61295182611f4c565b67ffffffffffffffff81111561296a5761296961222a565b5b6129748254612677565b61297f8282856128bb565b600060209050601f8311600181146129b257600084156129a0578287015190505b6129aa858261292c565b865550612a12565b601f1984166129c0866127a6565b60005b828110156129e8578489015182556001820191506020850194506020810190506129c3565b86831015612a055784890151612a01601f89168261290e565b8355505b6001600288020188555050505b505050505050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000612a76602983611f57565b9150612a8182612a1a565b604082019050919050565b60006020820190508181036000830152612aa581612a69565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000612b08602a83611f57565b9150612b1382612aac565b604082019050919050565b60006020820190508181036000830152612b3781612afb565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000612bc9602f83611f57565b9150612bd482612b6d565b604082019050919050565b60006020820190508181036000830152612bf881612bbc565b9050919050565b600081905092915050565b6000612c1582611f4c565b612c1f8185612bff565b9350612c2f818560208601611f68565b80840191505092915050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b6000612c71600583612bff565b9150612c7c82612c3b565b600582019050919050565b6000612c938285612c0a565b9150612c9f8284612c0a565b9150612caa82612c64565b91508190509392505050565b7f3000000000000000000000000000000000000000000000000000000000000000600082015250565b6000612cec600183612bff565b9150612cf782612cb6565b600182019050919050565b6000612d0e8285612c0a565b9150612d1982612cdf565b9150612d258284612c0a565b9150612d3082612c64565b91508190509392505050565b7f3030000000000000000000000000000000000000000000000000000000000000600082015250565b6000612d72600283612bff565b9150612d7d82612d3c565b600282019050919050565b6000612d948285612c0a565b9150612d9f82612d65565b9150612dab8284612c0a565b9150612db682612c64565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612e1e602683611f57565b9150612e2982612dc2565b604082019050919050565b60006020820190508181036000830152612e4d81612e11565b9050919050565b6000604082019050612e696000830185612093565b612e766020830184612093565b9392505050565b600081519050612e8c81612478565b92915050565b600060208284031215612ea857612ea7611e87565b5b6000612eb684828501612e7d565b91505092915050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000612f1b602183611f57565b9150612f2682612ebf565b604082019050919050565b60006020820190508181036000830152612f4a81612f0e565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000612fad603883611f57565b9150612fb882612f51565b604082019050919050565b60006020820190508181036000830152612fdc81612fa0565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b600061303f603183611f57565b915061304a82612fe3565b604082019050919050565b6000602082019050818103600083015261306e81613032565b9050919050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006130ab602083611f57565b91506130b682613075565b602082019050919050565b600060208201905081810360008301526130da8161309e565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000613117601c83611f57565b9150613122826130e1565b602082019050919050565b600060208201905081810360008301526131468161310a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061318782611ffe565b915061319283611ffe565b92508282019050808211156131aa576131a961314d565b5b92915050565b60006131bb82611ffe565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036131ed576131ec61314d565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061323282611ffe565b915061323d83611ffe565b92508261324d5761324c6131f8565b5b828204905092915050565b600061326382611ffe565b915061326e83611ffe565b92508282039050818111156132865761328561314d565b5b92915050565b600061329782611ffe565b91506132a283611ffe565b9250826132b2576132b16131f8565b5b828206905092915050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613319602c83611f57565b9150613324826132bd565b604082019050919050565b600060208201905081810360008301526133488161330c565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b60006133ab602983611f57565b91506133b68261334f565b604082019050919050565b600060208201905081810360008301526133da8161339e565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061343d602483611f57565b9150613448826133e1565b604082019050919050565b6000602082019050818103600083015261346c81613430565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b60006134a9601983611f57565b91506134b482613473565b602082019050919050565b600060208201905081810360008301526134d88161349c565b9050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b600061353b603283611f57565b9150613546826134df565b604082019050919050565b6000602082019050818103600083015261356a8161352e565b9050919050565b600081519050919050565b600082825260208201905092915050565b600061359882613571565b6135a2818561357c565b93506135b2818560208601611f68565b6135bb81611f92565b840191505092915050565b60006080820190506135db6000830187612093565b6135e86020830186612093565b6135f56040830185612129565b8181036060830152613607818461358d565b905095945050505050565b60008151905061362181611ebd565b92915050565b60006020828403121561363d5761363c611e87565b5b600061364b84828501613612565b9150509291505056fea264697066735822122041b6c7b2724013e14f59207bbc8aed36834efb9ba937c3dabe461339240960ee64736f6c63430008110033
Loading...
Loading
Loading...
Loading
Net Worth in USD
$90.31
Net Worth in ETH
0.039927
Token Allocations
BNB
63.09%
ETH
36.87%
POL
0.04%
Multichain Portfolio | 33 Chains
Loading...
Loading
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.