Feature Tip: Add private address tag to any address under My Name Tag !
Source Code
More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 1,781 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Approve | 24460448 | 8 days ago | IN | 0 ETH | 0.00000177 | ||||
| Set Approval For... | 24438840 | 11 days ago | IN | 0 ETH | 0.00009577 | ||||
| Set Approval For... | 24296545 | 31 days ago | IN | 0 ETH | 0.00000171 | ||||
| Set Approval For... | 24199784 | 45 days ago | IN | 0 ETH | 0.00000326 | ||||
| Set Approval For... | 23763592 | 106 days ago | IN | 0 ETH | 0.00000401 | ||||
| Set Approval For... | 23702908 | 114 days ago | IN | 0 ETH | 0.00000394 | ||||
| Set Approval For... | 23462303 | 148 days ago | IN | 0 ETH | 0.00000615 | ||||
| Set Approval For... | 23312849 | 169 days ago | IN | 0 ETH | 0.00000508 | ||||
| Set Approval For... | 23303571 | 170 days ago | IN | 0 ETH | 0.00000886 | ||||
| Set Approval For... | 23298338 | 171 days ago | IN | 0 ETH | 0.00007776 | ||||
| Claim | 21291509 | 451 days ago | IN | 0 ETH | 0.00054039 | ||||
| Set Approval For... | 20562989 | 553 days ago | IN | 0 ETH | 0.00011244 | ||||
| Claim | 19786849 | 662 days ago | IN | 0 ETH | 0.00054141 | ||||
| Set Approval For... | 19079085 | 761 days ago | IN | 0 ETH | 0.00024946 | ||||
| Set Approval For... | 18874547 | 790 days ago | IN | 0 ETH | 0.00061641 | ||||
| Set Approval For... | 18811900 | 798 days ago | IN | 0 ETH | 0.00081531 | ||||
| Set Approval For... | 18749304 | 807 days ago | IN | 0 ETH | 0.00221473 | ||||
| Set Approval For... | 18568250 | 833 days ago | IN | 0 ETH | 0.00115645 | ||||
| Set Approval For... | 18566488 | 833 days ago | IN | 0 ETH | 0.00178639 | ||||
| Set Approval For... | 18475831 | 845 days ago | IN | 0 ETH | 0.00058971 | ||||
| Set Approval For... | 18252875 | 877 days ago | IN | 0 ETH | 0.00035327 | ||||
| Claim | 18241654 | 878 days ago | IN | 0 ETH | 0.0006019 | ||||
| Claim | 17648088 | 961 days ago | IN | 0 ETH | 0.00104046 | ||||
| Set Approval For... | 17648062 | 961 days ago | IN | 0 ETH | 0.00086104 | ||||
| Set Approval For... | 17641395 | 962 days ago | IN | 0 ETH | 0.00050078 |
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
Draco
Compiler Version
v0.8.4+commit.c7e474f2
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.0;
import "./ERC721A.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol";
import "./IEssence.sol";
contract Draco is ERC721A, Ownable {
using Address for address;
using Strings for uint256;
string public baseURI;
bytes32 public merkleRoot;
address public essence;
uint256 public constant EMISSION_RATE = uint256(10 * 1e18) / 86400;
uint256 public maxDraco = 4444;
uint256 public price = 0.055 ether;
uint256 public constant TEAM_SUPPLY = 15;
uint256 public constant MAX_FREE = 2;
uint256 public constant MAX_WHITELIST = 3;
uint256 public constant MAX_PUBLIC = 5;
uint256 public freeMintCount = 18;
string public constant BASE_EXTENSION = ".json";
bool public presaleActive = false;
bool public saleActive = false;
bool public teamClaimed = false;
mapping (address => uint256) public freeWhitelist;
mapping (address => uint256) public presaleWhitelist;
mapping (uint256 => uint256) public claimTime;
constructor() ERC721A("Dracoverse", "DRACO", 20) {
}
function adminMint() public onlyOwner {
require(totalSupply() + TEAM_SUPPLY <= maxDraco, "");
require(!teamClaimed, "");
teamClaimed = true;
_safeMint(msg.sender, TEAM_SUPPLY);
}
function freeMint() public {
uint256 reserved = freeWhitelist[msg.sender];
require(presaleActive || saleActive, "");
freeMintCount -= reserved;
freeWhitelist[msg.sender] = 0;
_safeMint(msg.sender, reserved);
}
function presaleMint(uint256 _numberOfMints, bytes32[] calldata _merkleProof) public payable {
uint256 total = presaleWhitelist[msg.sender] + _numberOfMints;
bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
require(MerkleProof.verify(_merkleProof, merkleRoot, leaf), "");
require(presaleActive, "");
require(total <= MAX_WHITELIST, "");
require(totalSupply() + _numberOfMints + freeMintCount <= maxDraco, "");
require(price * _numberOfMints == msg.value, "");
presaleWhitelist[msg.sender] = total;
_safeMint(msg.sender, _numberOfMints);
}
function mint(uint256 _numberOfMints) public payable {
require(saleActive, "");
require(_numberOfMints > 0 && _numberOfMints <= MAX_PUBLIC, "");
require(totalSupply() + _numberOfMints + freeMintCount <= maxDraco, "");
require(price * _numberOfMints == msg.value, "");
_safeMint(msg.sender, _numberOfMints);
}
function setEssence(address _essence) public onlyOwner {
essence = _essence;
}
function togglePresale() public onlyOwner {
presaleActive = !presaleActive;
}
function toggleSale() public onlyOwner {
presaleActive = false;
saleActive = !saleActive;
}
function setFreeList(address[] calldata _addresses, uint256[] calldata _counts) public onlyOwner {
for(uint256 i = 0; i < _addresses.length; i++){
freeWhitelist[_addresses[i]] = _counts[i];
}
}
function setMerkleRoot(bytes32 _merkleRoot) public onlyOwner {
merkleRoot = _merkleRoot;
}
function setBaseURI(string memory uri) public onlyOwner {
baseURI = uri;
}
function _safeMint(address _to, uint256 _quantity) internal {
uint256 total = totalSupply();
for(uint256 i = 0; i < _quantity; i++){
claimTime[total + i] = block.timestamp;
}
_safeMint(_to, _quantity, "");
}
function _baseURI() internal view override returns (string memory) {
return baseURI;
}
function tokenURI(uint256 _id) public view virtual override returns (string memory) {
require(_exists(_id), "");
string memory currentBaseURI = _baseURI();
return bytes(currentBaseURI).length > 0
? string(abi.encodePacked(currentBaseURI, _id.toString(), BASE_EXTENSION))
: "";
}
function setMaxDraco(uint256 _count) public onlyOwner {
maxDraco = _count;
}
function setPrice(uint256 _price) public onlyOwner {
price = _price;
}
function setFreeMintCount(uint256 _count) public onlyOwner {
freeMintCount = _count;
}
function claim(uint256[] calldata tokenIds) public {
require(tx.origin == msg.sender, "?");
uint256 total = 0;
for(uint256 i; i < tokenIds.length; i++){
require(ownerOf(tokenIds[i]) == msg.sender, "");
total += (block.timestamp - claimTime[tokenIds[i]]) * EMISSION_RATE;
claimTime[tokenIds[i]] = block.timestamp;
}
IEssence(essence).mintToken(msg.sender, total);
}
function walletOfOwner(address _owner) external view returns (uint256[] memory tokenIds, uint256 rewards) {
uint256 tokenCount = balanceOf(_owner);
uint256 total = 0;
uint256[] memory tokensId = new uint256[](tokenCount);
for (uint256 i = 0; i < tokenCount; i++) {
tokensId[i] = tokenOfOwnerByIndex(_owner, i);
total += (block.timestamp - claimTime[tokensId[i]]) * EMISSION_RATE;
}
return (tokensId, total);
}
function withdraw(address _address) public onlyOwner {
uint256 balance = address(this).balance;
payable(_address).transfer(balance);
}
function whitelistCount(bytes32[] calldata _merkleProof, address _address) external view returns(uint256 count) {
bytes32 leaf = keccak256(abi.encodePacked(_address));
if(MerkleProof.verify(_merkleProof, merkleRoot, leaf)) {
return MAX_WHITELIST - presaleWhitelist[_address];
} else {
return 0;
}
}
}// SPDX-License-Identifier: MIT
// Creator: Chiru Labs
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/token/ERC721/IERC721.sol";
import "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol";
import "@openzeppelin/contracts/utils/Address.sol";
import "@openzeppelin/contracts/utils/Context.sol";
import "@openzeppelin/contracts/utils/Strings.sol";
import "@openzeppelin/contracts/utils/introspection/ERC165.sol";
/**
* @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
* the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
*
* Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
*
* Does not support burning tokens to address(0).
*/
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable {
using Address for address;
using Strings for uint256;
struct TokenOwnership {
address addr;
uint64 startTimestamp;
}
struct AddressData {
uint128 balance;
uint128 numberMinted;
}
uint256 private currentIndex = 0;
uint256 internal immutable maxBatchSize;
// Token name
string private _name;
// Token symbol
string private _symbol;
// Mapping from token ID to ownership details
// An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.
mapping(uint256 => TokenOwnership) private _ownerships;
// Mapping owner address to address data
mapping(address => AddressData) private _addressData;
// 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
* `maxBatchSize` refers to how much a minter can mint at a time.
*/
constructor(
string memory name_,
string memory symbol_,
uint256 maxBatchSize_
) {
require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero");
_name = name_;
_symbol = symbol_;
maxBatchSize = maxBatchSize_;
}
/**
* @dev See {IERC721Enumerable-totalSupply}.
*/
function totalSupply() public view override returns (uint256) {
return currentIndex;
}
/**
* @dev See {IERC721Enumerable-tokenByIndex}.
*/
function tokenByIndex(uint256 index) public view override returns (uint256) {
require(index < totalSupply(), "ERC721A: global index out of bounds");
return index;
}
/**
* @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
* This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
* It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
*/
function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) {
require(index < balanceOf(owner), "ERC721A: owner index out of bounds");
uint256 numMintedSoFar = totalSupply();
uint256 tokenIdsIdx = 0;
address currOwnershipAddr = address(0);
for (uint256 i = 0; i < numMintedSoFar; i++) {
TokenOwnership memory ownership = _ownerships[i];
if (ownership.addr != address(0)) {
currOwnershipAddr = ownership.addr;
}
if (currOwnershipAddr == owner) {
if (tokenIdsIdx == index) {
return i;
}
tokenIdsIdx++;
}
}
revert("ERC721A: unable to get token of owner by index");
}
/**
* @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 ||
interfaceId == type(IERC721Enumerable).interfaceId ||
super.supportsInterface(interfaceId);
}
/**
* @dev See {IERC721-balanceOf}.
*/
function balanceOf(address owner) public view override returns (uint256) {
require(owner != address(0), "ERC721A: balance query for the zero address");
return uint256(_addressData[owner].balance);
}
function _numberMinted(address owner) internal view returns (uint256) {
require(owner != address(0), "ERC721A: number minted query for the zero address");
return uint256(_addressData[owner].numberMinted);
}
function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) {
require(_exists(tokenId), "ERC721A: owner query for nonexistent token");
uint256 lowestTokenToCheck;
if (tokenId >= maxBatchSize) {
lowestTokenToCheck = tokenId - maxBatchSize + 1;
}
for (uint256 curr = tokenId; curr >= lowestTokenToCheck; curr--) {
TokenOwnership memory ownership = _ownerships[curr];
if (ownership.addr != address(0)) {
return ownership;
}
}
revert("ERC721A: unable to determine the owner of token");
}
/**
* @dev See {IERC721-ownerOf}.
*/
function ownerOf(uint256 tokenId) public view override returns (address) {
return ownershipOf(tokenId).addr;
}
/**
* @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 override {
address owner = ERC721A.ownerOf(tokenId);
require(to != owner, "ERC721A: approval to current owner");
require(
_msgSender() == owner || isApprovedForAll(owner, _msgSender()),
"ERC721A: approve caller is not owner nor approved for all"
);
_approve(to, tokenId, owner);
}
/**
* @dev See {IERC721-getApproved}.
*/
function getApproved(uint256 tokenId) public view override returns (address) {
require(_exists(tokenId), "ERC721A: approved query for nonexistent token");
return _tokenApprovals[tokenId];
}
/**
* @dev See {IERC721-setApprovalForAll}.
*/
function setApprovalForAll(address operator, bool approved) public override {
require(operator != _msgSender(), "ERC721A: approve to caller");
_operatorApprovals[_msgSender()][operator] = approved;
emit ApprovalForAll(_msgSender(), operator, approved);
}
/**
* @dev See {IERC721-isApprovedForAll}.
*/
function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
return _operatorApprovals[owner][operator];
}
/**
* @dev See {IERC721-transferFrom}.
*/
function transferFrom(
address from,
address to,
uint256 tokenId
) public override {
_transfer(from, to, tokenId);
}
/**
* @dev See {IERC721-safeTransferFrom}.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) public override {
safeTransferFrom(from, to, tokenId, "");
}
/**
* @dev See {IERC721-safeTransferFrom}.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId,
bytes memory _data
) public override {
_transfer(from, to, tokenId);
require(
_checkOnERC721Received(from, to, tokenId, _data),
"ERC721A: 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`),
*/
function _exists(uint256 tokenId) internal view returns (bool) {
return tokenId < currentIndex;
}
/**
* @dev Mints `quantity` tokens and transfers them to `to`.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - `quantity` cannot be larger than the max batch size.
*
* Emits a {Transfer} event.
*/
function _safeMint(
address to,
uint256 quantity,
bytes memory _data
) internal {
uint256 startTokenId = currentIndex;
require(to != address(0), "ERC721A: mint to the zero address");
// We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering.
require(!_exists(startTokenId), "ERC721A: token already minted");
require(quantity <= maxBatchSize, "ERC721A: quantity to mint too high");
_beforeTokenTransfers(address(0), to, startTokenId, quantity);
AddressData memory addressData = _addressData[to];
_addressData[to] = AddressData(
addressData.balance + uint128(quantity),
addressData.numberMinted + uint128(quantity)
);
_ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp));
uint256 updatedIndex = startTokenId;
for (uint256 i = 0; i < quantity; i++) {
emit Transfer(address(0), to, updatedIndex);
require(
_checkOnERC721Received(address(0), to, updatedIndex, _data),
"ERC721A: transfer to non ERC721Receiver implementer"
);
updatedIndex++;
}
currentIndex = updatedIndex;
_afterTokenTransfers(address(0), to, startTokenId, quantity);
}
/**
* @dev Transfers `tokenId` from `from` to `to`.
*
* 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
) private {
TokenOwnership memory prevOwnership = ownershipOf(tokenId);
bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
getApproved(tokenId) == _msgSender() ||
isApprovedForAll(prevOwnership.addr, _msgSender()));
require(isApprovedOrOwner, "ERC721A: transfer caller is not owner nor approved");
require(prevOwnership.addr == from, "ERC721A: transfer from incorrect owner");
require(to != address(0), "ERC721A: transfer to the zero address");
_beforeTokenTransfers(from, to, tokenId, 1);
// Clear approvals from the previous owner
_approve(address(0), tokenId, prevOwnership.addr);
_addressData[from].balance -= 1;
_addressData[to].balance += 1;
_ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp));
// If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
// Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
uint256 nextTokenId = tokenId + 1;
if (_ownerships[nextTokenId].addr == address(0)) {
if (_exists(nextTokenId)) {
_ownerships[nextTokenId] = TokenOwnership(prevOwnership.addr, prevOwnership.startTimestamp);
}
}
emit Transfer(from, to, tokenId);
_afterTokenTransfers(from, to, tokenId, 1);
}
/**
* @dev Approve `to` to operate on `tokenId`
*
* Emits a {Approval} event.
*/
function _approve(
address to,
uint256 tokenId,
address owner
) private {
_tokenApprovals[tokenId] = to;
emit Approval(owner, to, tokenId);
}
uint256 public nextOwnerToExplicitlySet = 0;
/**
* @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf().
*/
function _setOwnersExplicit(uint256 quantity) internal {
uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet;
require(quantity > 0, "quantity must be nonzero");
uint256 endIndex = oldNextOwnerToSet + quantity - 1;
if (endIndex > currentIndex - 1) {
endIndex = currentIndex - 1;
}
// We know if the last one in the group exists, all in the group exist, due to serial ordering.
require(_exists(endIndex), "not enough minted yet for this cleanup");
for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) {
if (_ownerships[i].addr == address(0)) {
TokenOwnership memory ownership = ownershipOf(i);
_ownerships[i] = TokenOwnership(ownership.addr, ownership.startTimestamp);
}
}
nextOwnerToExplicitlySet = endIndex + 1;
}
/**
* @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
* The call is not executed if the target address is not a contract.
*
* @param from address representing the previous owner of the given token ID
* @param to target address that will receive the tokens
* @param tokenId uint256 ID of the token to be transferred
* @param _data bytes optional data to send along with the call
* @return bool whether the call correctly returned the expected magic value
*/
function _checkOnERC721Received(
address from,
address to,
uint256 tokenId,
bytes memory _data
) private returns (bool) {
if (to.isContract()) {
try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
return retval == IERC721Receiver(to).onERC721Received.selector;
} catch (bytes memory reason) {
if (reason.length == 0) {
revert("ERC721A: transfer to non ERC721Receiver implementer");
} else {
assembly {
revert(add(32, reason), mload(reason))
}
}
}
} else {
return true;
}
}
/**
* @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
*
* startTokenId - the first token id to be transferred
* quantity - the amount to be transferred
*
* 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`.
*/
function _beforeTokenTransfers(
address from,
address to,
uint256 startTokenId,
uint256 quantity
) internal virtual {}
/**
* @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
* minting.
*
* startTokenId - the first token id to be transferred
* quantity - the amount to be transferred
*
* Calling conditions:
*
* - when `from` and `to` are both non-zero.
* - `from` and `to` are never both zero.
*/
function _afterTokenTransfers(
address from,
address to,
uint256 startTokenId,
uint256 quantity
) internal virtual {}
}// SPDX-License-Identifier: MIT
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() {
_setOwner(_msgSender());
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
_;
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_setOwner(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
_setOwner(newOwner);
}
function _setOwner(address newOwner) private {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @dev These functions deal with verification of Merkle Trees proofs.
*
* The proofs can be generated using the JavaScript library
* https://github.com/miguelmota/merkletreejs[merkletreejs].
* Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
*
* See `test/utils/cryptography/MerkleProof.test.js` for some examples.
*/
library MerkleProof {
/**
* @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
* defined by `root`. For this, a `proof` must be provided, containing
* sibling hashes on the branch from the leaf to the root of the tree. Each
* pair of leaves and each pair of pre-images are assumed to be sorted.
*/
function verify(
bytes32[] memory proof,
bytes32 root,
bytes32 leaf
) internal pure returns (bool) {
bytes32 computedHash = leaf;
for (uint256 i = 0; i < proof.length; i++) {
bytes32 proofElement = proof[i];
if (computedHash <= proofElement) {
// Hash(current computed hash + current element of the proof)
computedHash = keccak256(abi.encodePacked(computedHash, proofElement));
} else {
// Hash(current element of the proof + current computed hash)
computedHash = keccak256(abi.encodePacked(proofElement, computedHash));
}
}
// Check if the computed hash (root) is equal to the provided root
return computedHash == root;
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
interface IEssence {
function mintToken(address _claimer, uint256 _amount) external;
}// SPDX-License-Identifier: MIT
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
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
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
pragma solidity ^0.8.0;
import "../IERC721.sol";
/**
* @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
* @dev See https://eips.ethereum.org/EIPS/eip-721
*/
interface IERC721Enumerable is IERC721 {
/**
* @dev Returns the total amount of tokens stored by the contract.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns a token ID owned by `owner` at a given `index` of its token list.
* Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
*/
function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);
/**
* @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
* Use along with {totalSupply} to enumerate all tokens.
*/
function tokenByIndex(uint256 index) external view returns (uint256);
}// SPDX-License-Identifier: MIT
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
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
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
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
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC165 standard, as defined in the
* https://eips.ethereum.org/EIPS/eip-165[EIP].
*
* Implementers can declare support of contract interfaces, which can then be
* queried by others ({ERC165Checker}).
*
* For an implementation, see {ERC165}.
*/
interface IERC165 {
/**
* @dev Returns true if this contract implements the interface defined by
* `interfaceId`. See the corresponding
* https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
* to learn more about how these ids are created.
*
* This function call must use less than 30 000 gas.
*/
function supportsInterface(bytes4 interfaceId) external view returns (bool);
}{
"optimizer": {
"enabled": false,
"runs": 200
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
},
"libraries": {}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"BASE_EXTENSION","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"EMISSION_RATE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_FREE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PUBLIC","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_WHITELIST","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TEAM_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"adminMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"claimTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"essence","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freeMintCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"freeWhitelist","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxDraco","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numberOfMints","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"presaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numberOfMints","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"presaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"presaleWhitelist","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_essence","type":"address"}],"name":"setEssence","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"},{"internalType":"uint256[]","name":"_counts","type":"uint256[]"}],"name":"setFreeList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"setFreeMintCount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"setMaxDraco","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"togglePresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_id","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"},{"internalType":"uint256","name":"rewards","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"},{"internalType":"address","name":"_address","type":"address"}],"name":"whitelistCount","outputs":[{"internalType":"uint256","name":"count","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
60a060405260008055600060075561115c600c5566c3663566a58000600d556012600e556000600f60006101000a81548160ff0219169083151502179055506000600f60016101000a81548160ff0219169083151502179055506000600f60026101000a81548160ff0219169083151502179055503480156200008157600080fd5b506040518060400160405280600a81526020017f447261636f7665727365000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f445241434f00000000000000000000000000000000000000000000000000000081525060146000811162000136576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200012d906200033e565b60405180910390fd5b82600190805190602001906200014e92919062000267565b5081600290805190602001906200016792919062000267565b50806080818152505050505062000193620001876200019960201b60201c565b620001a160201b60201c565b62000425565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002759062000371565b90600052602060002090601f016020900481019282620002995760008555620002e5565b82601f10620002b457805160ff1916838001178555620002e5565b82800160010185558215620002e5579182015b82811115620002e4578251825591602001919060010190620002c7565b5b509050620002f49190620002f8565b5090565b5b8082111562000313576000816000905550600101620002f9565b5090565b60006200032660278362000360565b91506200033382620003d6565b604082019050919050565b60006020820190508181036000830152620003598162000317565b9050919050565b600082825260208201905092915050565b600060028204905060018216806200038a57607f821691505b60208210811415620003a157620003a0620003a7565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f455243373231413a206d61782062617463682073697a65206d7573742062652060008201527f6e6f6e7a65726f00000000000000000000000000000000000000000000000000602082015250565b608051615d126200044f600039600081816135750152818161359e0152613d690152615d126000f3fe6080604052600436106103505760003560e01c80636c0360eb116101c6578063a0712d68116100f7578063df3fdf0011610095578063e985e9c51161006f578063e985e9c514610c0f578063eb8835ab14610c4c578063ed6661c214610c89578063f2fde38b14610cb457610350565b8063df3fdf0014610b9d578063e3e1e8ef14610bc8578063e55f58bb14610be457610350565b8063b88d4fde116100d1578063b88d4fde14610ae1578063b9c3a81814610b0a578063c87b56dd14610b35578063d7224ba014610b7257610350565b8063a0712d6814610a73578063a22cb46514610a8f578063a3828b4b14610ab857610350565b80638da5cb5b1161016457806395d89b411161013e57806395d89b41146109c757806395f61c48146109f25780639753eac014610a1d578063a035b1fe14610a4857610350565b80638da5cb5b1461094a5780638f0ecae21461097557806391b7f5ed1461099e57610350565b806378ffc1a8116101a057806378ffc1a8146108b65780637cb64759146108f35780637d8966e41461091c578063895fc7881461093357610350565b80636c0360eb1461083757806370a0823114610862578063715018a61461089f57610350565b806334393743116102a057806355f804b31161023e5780635c7abcc2116102185780635c7abcc21461077b5780636352211e146107a657806368428a1b146107e35780636ba4c1381461080e57610350565b806355f804b3146106fe5780635b70ea9f146107275780635c1154b01461073e57610350565b80634f6ccce71161027a5780634f6ccce714610642578063508131b51461067f57806351cff8d9146106aa57806353135ca0146106d357610350565b806334393743146105c457806342842e0e146105db578063438b63001461060457610350565b80630f4ed54d1161030d578063253ca934116102e7578063253ca934146105085780632eb4a7ab146105315780632f3346521461055c5780632f745c591461058757610350565b80630f4ed54d1461047757806318160ddd146104b457806323b872dd146104df57610350565b806301b8199a1461035557806301ffc9a71461038057806306f21b9f146103bd57806306fdde03146103e6578063081812fc14610411578063095ea7b31461044e575b600080fd5b34801561036157600080fd5b5061036a610cdd565b604051610377919061513a565b60405180910390f35b34801561038c57600080fd5b506103a760048036038101906103a29190614785565b610cf7565b6040516103b49190614e42565b60405180910390f35b3480156103c957600080fd5b506103e460048036038101906103df919061464a565b610e41565b005b3480156103f257600080fd5b506103fb610fb5565b6040516104089190614e78565b60405180910390f35b34801561041d57600080fd5b5061043860048036038101906104339190614818565b611047565b6040516104459190614d82565b60405180910390f35b34801561045a57600080fd5b506104756004803603810190610470919061460e565b6110cc565b005b34801561048357600080fd5b5061049e600480360381019061049991906144a3565b6111e5565b6040516104ab919061513a565b60405180910390f35b3480156104c057600080fd5b506104c96111fd565b6040516104d6919061513a565b60405180910390f35b3480156104eb57600080fd5b5061050660048036038101906105019190614508565b611206565b005b34801561051457600080fd5b5061052f600480360381019061052a9190614818565b611216565b005b34801561053d57600080fd5b5061054661129c565b6040516105539190614e5d565b60405180910390f35b34801561056857600080fd5b506105716112a2565b60405161057e9190614e42565b60405180910390f35b34801561059357600080fd5b506105ae60048036038101906105a9919061460e565b6112b5565b6040516105bb919061513a565b60405180910390f35b3480156105d057600080fd5b506105d96114b3565b005b3480156105e757600080fd5b5061060260048036038101906105fd9190614508565b61155b565b005b34801561061057600080fd5b5061062b600480360381019061062691906144a3565b61157b565b604051610639929190614e12565b60405180910390f35b34801561064e57600080fd5b5061066960048036038101906106649190614818565b611708565b604051610676919061513a565b60405180910390f35b34801561068b57600080fd5b5061069461175b565b6040516106a1919061513a565b60405180910390f35b3480156106b657600080fd5b506106d160048036038101906106cc91906144a3565b611761565b005b3480156106df57600080fd5b506106e861182d565b6040516106f59190614e42565b60405180910390f35b34801561070a57600080fd5b50610725600480360381019061072091906147d7565b611840565b005b34801561073357600080fd5b5061073c6118d6565b005b34801561074a57600080fd5b5061076560048036038101906107609190614818565b6119eb565b604051610772919061513a565b60405180910390f35b34801561078757600080fd5b50610790611a03565b60405161079d9190614d82565b60405180910390f35b3480156107b257600080fd5b506107cd60048036038101906107c89190614818565b611a29565b6040516107da9190614d82565b60405180910390f35b3480156107ef57600080fd5b506107f8611a3f565b6040516108059190614e42565b60405180910390f35b34801561081a57600080fd5b5061083560048036038101906108309190614717565b611a52565b005b34801561084357600080fd5b5061084c611d0f565b6040516108599190614e78565b60405180910390f35b34801561086e57600080fd5b50610889600480360381019061088491906144a3565b611d9d565b604051610896919061513a565b60405180910390f35b3480156108ab57600080fd5b506108b4611e86565b005b3480156108c257600080fd5b506108dd60048036038101906108d891906146bf565b611f0e565b6040516108ea919061513a565b60405180910390f35b3480156108ff57600080fd5b5061091a6004803603810190610915919061475c565b611fee565b005b34801561092857600080fd5b50610931612074565b005b34801561093f57600080fd5b50610948612137565b005b34801561095657600080fd5b5061095f612283565b60405161096c9190614d82565b60405180910390f35b34801561098157600080fd5b5061099c600480360381019061099791906144a3565b6122ad565b005b3480156109aa57600080fd5b506109c560048036038101906109c09190614818565b61236d565b005b3480156109d357600080fd5b506109dc6123f3565b6040516109e99190614e78565b60405180910390f35b3480156109fe57600080fd5b50610a07612485565b604051610a14919061513a565b60405180910390f35b348015610a2957600080fd5b50610a3261248a565b604051610a3f919061513a565b60405180910390f35b348015610a5457600080fd5b50610a5d61248f565b604051610a6a919061513a565b60405180910390f35b610a8d6004803603810190610a889190614818565b612495565b005b348015610a9b57600080fd5b50610ab66004803603810190610ab191906145d2565b6125f4565b005b348015610ac457600080fd5b50610adf6004803603810190610ada9190614818565b612775565b005b348015610aed57600080fd5b50610b086004803603810190610b039190614557565b6127fb565b005b348015610b1657600080fd5b50610b1f612857565b604051610b2c919061513a565b60405180910390f35b348015610b4157600080fd5b50610b5c6004803603810190610b579190614818565b61285c565b604051610b699190614e78565b60405180910390f35b348015610b7e57600080fd5b50610b8761293a565b604051610b94919061513a565b60405180910390f35b348015610ba957600080fd5b50610bb2612940565b604051610bbf9190614e78565b60405180910390f35b610be26004803603810190610bdd9190614841565b612979565b005b348015610bf057600080fd5b50610bf9612c1b565b604051610c06919061513a565b60405180910390f35b348015610c1b57600080fd5b50610c366004803603810190610c3191906144cc565b612c21565b604051610c439190614e42565b60405180910390f35b348015610c5857600080fd5b50610c736004803603810190610c6e91906144a3565b612cb5565b604051610c80919061513a565b60405180910390f35b348015610c9557600080fd5b50610c9e612ccd565b604051610cab919061513a565b60405180910390f35b348015610cc057600080fd5b50610cdb6004803603810190610cd691906144a3565b612cd2565b005b62015180678ac7230489e80000610cf491906152f4565b81565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610dc257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610e2a57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610e3a5750610e3982612dca565b5b9050919050565b610e49612e34565b73ffffffffffffffffffffffffffffffffffffffff16610e67612283565b73ffffffffffffffffffffffffffffffffffffffff1614610ebd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb490614fba565b60405180910390fd5b60005b84849050811015610fae57828282818110610f04577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002013560106000878785818110610f48577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190610f5d91906144a3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508080610fa690615550565b915050610ec0565b5050505050565b606060018054610fc4906154ed565b80601f0160208091040260200160405190810160405280929190818152602001828054610ff0906154ed565b801561103d5780601f106110125761010080835404028352916020019161103d565b820191906000526020600020905b81548152906001019060200180831161102057829003601f168201915b5050505050905090565b600061105282612e3c565b611091576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611088906150fa565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006110d782611a29565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611148576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113f9061501a565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16611167612e34565b73ffffffffffffffffffffffffffffffffffffffff161480611196575061119581611190612e34565b612c21565b5b6111d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111cc90614f5a565b60405180910390fd5b6111e0838383612e49565b505050565b60106020528060005260406000206000915090505481565b60008054905090565b611211838383612efb565b505050565b61121e612e34565b73ffffffffffffffffffffffffffffffffffffffff1661123c612283565b73ffffffffffffffffffffffffffffffffffffffff1614611292576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128990614fba565b60405180910390fd5b80600e8190555050565b600a5481565b600f60029054906101000a900460ff1681565b60006112c083611d9d565b8210611301576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f890614e9a565b60405180910390fd5b600061130b6111fd565b905060008060005b83811015611471576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461140557806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561145d578684141561144e5781955050505050506114ad565b838061145990615550565b9450505b50808061146990615550565b915050611313565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a4906150ba565b60405180910390fd5b92915050565b6114bb612e34565b73ffffffffffffffffffffffffffffffffffffffff166114d9612283565b73ffffffffffffffffffffffffffffffffffffffff161461152f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152690614fba565b60405180910390fd5b600f60009054906101000a900460ff1615600f60006101000a81548160ff021916908315150217905550565b611576838383604051806020016040528060008152506127fb565b505050565b606060008061158984611d9d565b90506000808267ffffffffffffffff8111156115ce577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156115fc5781602001602082028036833780820191505090505b50905060005b838110156116f95761161487826112b5565b82828151811061164d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505062015180678ac7230489e8000061167091906152f4565b601260008484815181106116ad577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151815260200190815260200160002054426116cf91906153b3565b6116d99190615325565b836116e4919061529e565b925080806116f190615550565b915050611602565b50808294509450505050915091565b60006117126111fd565b8210611753576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174a90614efa565b60405180910390fd5b819050919050565b600c5481565b611769612e34565b73ffffffffffffffffffffffffffffffffffffffff16611787612283565b73ffffffffffffffffffffffffffffffffffffffff16146117dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d490614fba565b60405180910390fd5b60004790508173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611828573d6000803e3d6000fd5b505050565b600f60009054906101000a900460ff1681565b611848612e34565b73ffffffffffffffffffffffffffffffffffffffff16611866612283565b73ffffffffffffffffffffffffffffffffffffffff16146118bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b390614fba565b60405180910390fd5b80600990805190602001906118d292919061419a565b5050565b6000601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600f60009054906101000a900460ff16806119415750600f60019054906101000a900460ff165b611980576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119779061503a565b60405180910390fd5b80600e600082825461199291906153b3565b925050819055506000601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506119e833826134b4565b50565b60126020528060005260406000206000915090505481565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000611a3482613521565b600001519050919050565b600f60019054906101000a900460ff1681565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611ac0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab790614f3a565b60405180910390fd5b6000805b83839050811015611c7a573373ffffffffffffffffffffffffffffffffffffffff16611b2e858584818110611b22577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020135611a29565b73ffffffffffffffffffffffffffffffffffffffff1614611b84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7b9061503a565b60405180910390fd5b62015180678ac7230489e80000611b9b91906152f4565b60126000868685818110611bd8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002013581526020019081526020016000205442611bf991906153b3565b611c039190615325565b82611c0e919061529e565b91504260126000868685818110611c4e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b905060200201358152602001908152602001600020819055508080611c7290615550565b915050611ac4565b50600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166379c6506833836040518363ffffffff1660e01b8152600401611cd8929190614de9565b600060405180830381600087803b158015611cf257600080fd5b505af1158015611d06573d6000803e3d6000fd5b50505050505050565b60098054611d1c906154ed565b80601f0160208091040260200160405190810160405280929190818152602001828054611d48906154ed565b8015611d955780601f10611d6a57610100808354040283529160200191611d95565b820191906000526020600020905b815481529060010190602001808311611d7857829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0590614f7a565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b611e8e612e34565b73ffffffffffffffffffffffffffffffffffffffff16611eac612283565b73ffffffffffffffffffffffffffffffffffffffff1614611f02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef990614fba565b60405180910390fd5b611f0c6000613724565b565b60008082604051602001611f229190614d0a565b604051602081830303815290604052805190602001209050611f88858580806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600a54836137ea565b15611fe157601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546003611fd991906153b3565b915050611fe7565b60009150505b9392505050565b611ff6612e34565b73ffffffffffffffffffffffffffffffffffffffff16612014612283565b73ffffffffffffffffffffffffffffffffffffffff161461206a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206190614fba565b60405180910390fd5b80600a8190555050565b61207c612e34565b73ffffffffffffffffffffffffffffffffffffffff1661209a612283565b73ffffffffffffffffffffffffffffffffffffffff16146120f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e790614fba565b60405180910390fd5b6000600f60006101000a81548160ff021916908315150217905550600f60019054906101000a900460ff1615600f60016101000a81548160ff021916908315150217905550565b61213f612e34565b73ffffffffffffffffffffffffffffffffffffffff1661215d612283565b73ffffffffffffffffffffffffffffffffffffffff16146121b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121aa90614fba565b60405180910390fd5b600c54600f6121c06111fd565b6121ca919061529e565b111561220b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122029061503a565b60405180910390fd5b600f60029054906101000a900460ff161561225b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122529061503a565b60405180910390fd5b6001600f60026101000a81548160ff02191690831515021790555061228133600f6134b4565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6122b5612e34565b73ffffffffffffffffffffffffffffffffffffffff166122d3612283565b73ffffffffffffffffffffffffffffffffffffffff1614612329576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232090614fba565b60405180910390fd5b80600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b612375612e34565b73ffffffffffffffffffffffffffffffffffffffff16612393612283565b73ffffffffffffffffffffffffffffffffffffffff16146123e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123e090614fba565b60405180910390fd5b80600d8190555050565b606060028054612402906154ed565b80601f016020809104026020016040519081016040528092919081815260200182805461242e906154ed565b801561247b5780601f106124505761010080835404028352916020019161247b565b820191906000526020600020905b81548152906001019060200180831161245e57829003601f168201915b5050505050905090565b600381565b600581565b600d5481565b600f60019054906101000a900460ff166124e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124db9061503a565b60405180910390fd5b6000811180156124f5575060058111155b612534576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161252b9061503a565b60405180910390fd5b600c54600e54826125436111fd565b61254d919061529e565b612557919061529e565b1115612598576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161258f9061503a565b60405180910390fd5b3481600d546125a79190615325565b146125e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125de9061503a565b60405180910390fd5b6125f133826134b4565b50565b6125fc612e34565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561266a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161266190614fda565b60405180910390fd5b8060066000612677612e34565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612724612e34565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516127699190614e42565b60405180910390a35050565b61277d612e34565b73ffffffffffffffffffffffffffffffffffffffff1661279b612283565b73ffffffffffffffffffffffffffffffffffffffff16146127f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127e890614fba565b60405180910390fd5b80600c8190555050565b612806848484612efb565b612812848484846138c6565b612851576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128489061505a565b60405180910390fd5b50505050565b600f81565b606061286782612e3c565b6128a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161289d9061503a565b60405180910390fd5b60006128b0613a5d565b905060008151116128d05760405180602001604052806000815250612932565b806128da84613aef565b6040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525060405160200161292293929190614d51565b6040516020818303038152906040525b915050919050565b60075481565b6040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525081565b600083601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546129c6919061529e565b90506000336040516020016129db9190614d0a565b604051602081830303815290604052805190602001209050612a41848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600a54836137ea565b612a80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a779061503a565b60405180910390fd5b600f60009054906101000a900460ff16612acf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ac69061503a565b60405180910390fd5b6003821115612b13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b0a9061503a565b60405180910390fd5b600c54600e5486612b226111fd565b612b2c919061529e565b612b36919061529e565b1115612b77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b6e9061503a565b60405180910390fd5b3485600d54612b869190615325565b14612bc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bbd9061503a565b60405180910390fd5b81601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612c1433866134b4565b5050505050565b600e5481565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60116020528060005260406000206000915090505481565b600281565b612cda612e34565b73ffffffffffffffffffffffffffffffffffffffff16612cf8612283565b73ffffffffffffffffffffffffffffffffffffffff1614612d4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d4590614fba565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612dbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612db590614eba565b60405180910390fd5b612dc781613724565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b6000805482109050919050565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000612f0682613521565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16612f2d612e34565b73ffffffffffffffffffffffffffffffffffffffff161480612f895750612f52612e34565b73ffffffffffffffffffffffffffffffffffffffff16612f7184611047565b73ffffffffffffffffffffffffffffffffffffffff16145b80612fa55750612fa48260000151612f9f612e34565b612c21565b5b905080612fe7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fde90614ffa565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614613059576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161305090614f9a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156130c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130c090614f1a565b60405180910390fd5b6130d68585856001613c9c565b6130e66000848460000151612e49565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16613154919061537f565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166131f89190615258565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555090505060006001846132fe919061529e565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156134445761337481612e3c565b15613443576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46134ac8686866001613ca2565b505050505050565b60006134be6111fd565b905060005b8281101561350157426012600083856134dc919061529e565b81526020019081526020016000208190555080806134f990615550565b9150506134c3565b5061351c838360405180602001604052806000815250613ca8565b505050565b613529614220565b61353282612e3c565b613571576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161356890614eda565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000083106135d55760017f0000000000000000000000000000000000000000000000000000000000000000846135c891906153b3565b6135d2919061529e565b90505b60008390505b8181106136e3576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146136cf5780935050505061371f565b5080806136db906154c3565b9150506135db565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613716906150da565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008082905060005b85518110156138b8576000868281518110613837577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151905080831161387857828160405160200161385b929190614d25565b6040516020818303038152906040528051906020012092506138a4565b808360405160200161388b929190614d25565b6040516020818303038152906040528051906020012092505b5080806138b090615550565b9150506137f3565b508381149150509392505050565b60006138e78473ffffffffffffffffffffffffffffffffffffffff16614187565b15613a50578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613910612e34565b8786866040518563ffffffff1660e01b81526004016139329493929190614d9d565b602060405180830381600087803b15801561394c57600080fd5b505af192505050801561397d57506040513d601f19601f8201168201806040525081019061397a91906147ae565b60015b613a00573d80600081146139ad576040519150601f19603f3d011682016040523d82523d6000602084013e6139b2565b606091505b506000815114156139f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139ef9061505a565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613a55565b600190505b949350505050565b606060098054613a6c906154ed565b80601f0160208091040260200160405190810160405280929190818152602001828054613a98906154ed565b8015613ae55780601f10613aba57610100808354040283529160200191613ae5565b820191906000526020600020905b815481529060010190602001808311613ac857829003601f168201915b5050505050905090565b60606000821415613b37576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613c97565b600082905060005b60008214613b69578080613b5290615550565b915050600a82613b6291906152f4565b9150613b3f565b60008167ffffffffffffffff811115613bab577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015613bdd5781602001600182028036833780820191505090505b5090505b60008514613c9057600182613bf691906153b3565b9150600a85613c0591906155c7565b6030613c11919061529e565b60f81b818381518110613c4d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85613c8991906152f4565b9450613be1565b8093505050505b919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415613d1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613d159061509a565b60405180910390fd5b613d2781612e3c565b15613d67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613d5e9061507a565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000000831115613dca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613dc19061511a565b60405180910390fd5b613dd76000858386613c9c565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168152505090506040518060400160405280858360000151613ed49190615258565b6fffffffffffffffffffffffffffffffff168152602001858360200151613efb9190615258565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b8581101561416a57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461410a60008884886138c6565b614149576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016141409061505a565b60405180910390fd5b818061415490615550565b925050808061416290615550565b915050614099565b508060008190555061417f6000878588613ca2565b505050505050565b600080823b905060008111915050919050565b8280546141a6906154ed565b90600052602060002090601f0160209004810192826141c8576000855561420f565b82601f106141e157805160ff191683800117855561420f565b8280016001018555821561420f579182015b8281111561420e5782518255916020019190600101906141f3565b5b50905061421c919061425a565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b8082111561427357600081600090555060010161425b565b5090565b600061428a6142858461517a565b615155565b9050828152602081018484840111156142a257600080fd5b6142ad848285615481565b509392505050565b60006142c86142c3846151ab565b615155565b9050828152602081018484840111156142e057600080fd5b6142eb848285615481565b509392505050565b60008135905061430281615c69565b92915050565b60008083601f84011261431a57600080fd5b8235905067ffffffffffffffff81111561433357600080fd5b60208301915083602082028301111561434b57600080fd5b9250929050565b60008083601f84011261436457600080fd5b8235905067ffffffffffffffff81111561437d57600080fd5b60208301915083602082028301111561439557600080fd5b9250929050565b60008083601f8401126143ae57600080fd5b8235905067ffffffffffffffff8111156143c757600080fd5b6020830191508360208202830111156143df57600080fd5b9250929050565b6000813590506143f581615c80565b92915050565b60008135905061440a81615c97565b92915050565b60008135905061441f81615cae565b92915050565b60008151905061443481615cae565b92915050565b600082601f83011261444b57600080fd5b813561445b848260208601614277565b91505092915050565b600082601f83011261447557600080fd5b81356144858482602086016142b5565b91505092915050565b60008135905061449d81615cc5565b92915050565b6000602082840312156144b557600080fd5b60006144c3848285016142f3565b91505092915050565b600080604083850312156144df57600080fd5b60006144ed858286016142f3565b92505060206144fe858286016142f3565b9150509250929050565b60008060006060848603121561451d57600080fd5b600061452b868287016142f3565b935050602061453c868287016142f3565b925050604061454d8682870161448e565b9150509250925092565b6000806000806080858703121561456d57600080fd5b600061457b878288016142f3565b945050602061458c878288016142f3565b935050604061459d8782880161448e565b925050606085013567ffffffffffffffff8111156145ba57600080fd5b6145c68782880161443a565b91505092959194509250565b600080604083850312156145e557600080fd5b60006145f3858286016142f3565b9250506020614604858286016143e6565b9150509250929050565b6000806040838503121561462157600080fd5b600061462f858286016142f3565b92505060206146408582860161448e565b9150509250929050565b6000806000806040858703121561466057600080fd5b600085013567ffffffffffffffff81111561467a57600080fd5b61468687828801614308565b9450945050602085013567ffffffffffffffff8111156146a557600080fd5b6146b18782880161439c565b925092505092959194509250565b6000806000604084860312156146d457600080fd5b600084013567ffffffffffffffff8111156146ee57600080fd5b6146fa86828701614352565b9350935050602061470d868287016142f3565b9150509250925092565b6000806020838503121561472a57600080fd5b600083013567ffffffffffffffff81111561474457600080fd5b6147508582860161439c565b92509250509250929050565b60006020828403121561476e57600080fd5b600061477c848285016143fb565b91505092915050565b60006020828403121561479757600080fd5b60006147a584828501614410565b91505092915050565b6000602082840312156147c057600080fd5b60006147ce84828501614425565b91505092915050565b6000602082840312156147e957600080fd5b600082013567ffffffffffffffff81111561480357600080fd5b61480f84828501614464565b91505092915050565b60006020828403121561482a57600080fd5b60006148388482850161448e565b91505092915050565b60008060006040848603121561485657600080fd5b60006148648682870161448e565b935050602084013567ffffffffffffffff81111561488157600080fd5b61488d86828701614352565b92509250509250925092565b60006148a58383614cec565b60208301905092915050565b6148ba816153e7565b82525050565b6148d16148cc826153e7565b615599565b82525050565b60006148e2826151ec565b6148ec818561521a565b93506148f7836151dc565b8060005b8381101561492857815161490f8882614899565b975061491a8361520d565b9250506001810190506148fb565b5085935050505092915050565b61493e816153f9565b82525050565b61494d81615405565b82525050565b61496461495f82615405565b6155ab565b82525050565b6000614975826151f7565b61497f818561522b565b935061498f818560208601615490565b614998816156b4565b840191505092915050565b60006149ae82615202565b6149b8818561523c565b93506149c8818560208601615490565b6149d1816156b4565b840191505092915050565b60006149e782615202565b6149f1818561524d565b9350614a01818560208601615490565b80840191505092915050565b6000614a1a60228361523c565b9150614a25826156d2565b604082019050919050565b6000614a3d60268361523c565b9150614a4882615721565b604082019050919050565b6000614a60602a8361523c565b9150614a6b82615770565b604082019050919050565b6000614a8360238361523c565b9150614a8e826157bf565b604082019050919050565b6000614aa660258361523c565b9150614ab18261580e565b604082019050919050565b6000614ac960018361523c565b9150614ad48261585d565b602082019050919050565b6000614aec60398361523c565b9150614af782615886565b604082019050919050565b6000614b0f602b8361523c565b9150614b1a826158d5565b604082019050919050565b6000614b3260268361523c565b9150614b3d82615924565b604082019050919050565b6000614b5560208361523c565b9150614b6082615973565b602082019050919050565b6000614b78601a8361523c565b9150614b838261599c565b602082019050919050565b6000614b9b60328361523c565b9150614ba6826159c5565b604082019050919050565b6000614bbe60228361523c565b9150614bc982615a14565b604082019050919050565b6000614be160008361523c565b9150614bec82615a63565b600082019050919050565b6000614c0460338361523c565b9150614c0f82615a66565b604082019050919050565b6000614c27601d8361523c565b9150614c3282615ab5565b602082019050919050565b6000614c4a60218361523c565b9150614c5582615ade565b604082019050919050565b6000614c6d602e8361523c565b9150614c7882615b2d565b604082019050919050565b6000614c90602f8361523c565b9150614c9b82615b7c565b604082019050919050565b6000614cb3602d8361523c565b9150614cbe82615bcb565b604082019050919050565b6000614cd660228361523c565b9150614ce182615c1a565b604082019050919050565b614cf581615477565b82525050565b614d0481615477565b82525050565b6000614d1682846148c0565b60148201915081905092915050565b6000614d318285614953565b602082019150614d418284614953565b6020820191508190509392505050565b6000614d5d82866149dc565b9150614d6982856149dc565b9150614d7582846149dc565b9150819050949350505050565b6000602082019050614d9760008301846148b1565b92915050565b6000608082019050614db260008301876148b1565b614dbf60208301866148b1565b614dcc6040830185614cfb565b8181036060830152614dde818461496a565b905095945050505050565b6000604082019050614dfe60008301856148b1565b614e0b6020830184614cfb565b9392505050565b60006040820190508181036000830152614e2c81856148d7565b9050614e3b6020830184614cfb565b9392505050565b6000602082019050614e576000830184614935565b92915050565b6000602082019050614e726000830184614944565b92915050565b60006020820190508181036000830152614e9281846149a3565b905092915050565b60006020820190508181036000830152614eb381614a0d565b9050919050565b60006020820190508181036000830152614ed381614a30565b9050919050565b60006020820190508181036000830152614ef381614a53565b9050919050565b60006020820190508181036000830152614f1381614a76565b9050919050565b60006020820190508181036000830152614f3381614a99565b9050919050565b60006020820190508181036000830152614f5381614abc565b9050919050565b60006020820190508181036000830152614f7381614adf565b9050919050565b60006020820190508181036000830152614f9381614b02565b9050919050565b60006020820190508181036000830152614fb381614b25565b9050919050565b60006020820190508181036000830152614fd381614b48565b9050919050565b60006020820190508181036000830152614ff381614b6b565b9050919050565b6000602082019050818103600083015261501381614b8e565b9050919050565b6000602082019050818103600083015261503381614bb1565b9050919050565b6000602082019050818103600083015261505381614bd4565b9050919050565b6000602082019050818103600083015261507381614bf7565b9050919050565b6000602082019050818103600083015261509381614c1a565b9050919050565b600060208201905081810360008301526150b381614c3d565b9050919050565b600060208201905081810360008301526150d381614c60565b9050919050565b600060208201905081810360008301526150f381614c83565b9050919050565b6000602082019050818103600083015261511381614ca6565b9050919050565b6000602082019050818103600083015261513381614cc9565b9050919050565b600060208201905061514f6000830184614cfb565b92915050565b600061515f615170565b905061516b828261551f565b919050565b6000604051905090565b600067ffffffffffffffff82111561519557615194615685565b5b61519e826156b4565b9050602081019050919050565b600067ffffffffffffffff8211156151c6576151c5615685565b5b6151cf826156b4565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006152638261543b565b915061526e8361543b565b9250826fffffffffffffffffffffffffffffffff03821115615293576152926155f8565b5b828201905092915050565b60006152a982615477565b91506152b483615477565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156152e9576152e86155f8565b5b828201905092915050565b60006152ff82615477565b915061530a83615477565b92508261531a57615319615627565b5b828204905092915050565b600061533082615477565b915061533b83615477565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615615374576153736155f8565b5b828202905092915050565b600061538a8261543b565b91506153958361543b565b9250828210156153a8576153a76155f8565b5b828203905092915050565b60006153be82615477565b91506153c983615477565b9250828210156153dc576153db6155f8565b5b828203905092915050565b60006153f282615457565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156154ae578082015181840152602081019050615493565b838111156154bd576000848401525b50505050565b60006154ce82615477565b915060008214156154e2576154e16155f8565b5b600182039050919050565b6000600282049050600182168061550557607f821691505b6020821081141561551957615518615656565b5b50919050565b615528826156b4565b810181811067ffffffffffffffff8211171561554757615546615685565b5b80604052505050565b600061555b82615477565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561558e5761558d6155f8565b5b600182019050919050565b60006155a4826155b5565b9050919050565b6000819050919050565b60006155c0826156c5565b9050919050565b60006155d282615477565b91506155dd83615477565b9250826155ed576155ec615627565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f3f00000000000000000000000000000000000000000000000000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b615c72816153e7565b8114615c7d57600080fd5b50565b615c89816153f9565b8114615c9457600080fd5b50565b615ca081615405565b8114615cab57600080fd5b50565b615cb78161540f565b8114615cc257600080fd5b50565b615cce81615477565b8114615cd957600080fd5b5056fea264697066735822122021d5fa060d9b4f5262d99db8a5a8788af3a96c3bc622815b2c5fc0f910ef4ff564736f6c63430008040033
Deployed Bytecode
0x6080604052600436106103505760003560e01c80636c0360eb116101c6578063a0712d68116100f7578063df3fdf0011610095578063e985e9c51161006f578063e985e9c514610c0f578063eb8835ab14610c4c578063ed6661c214610c89578063f2fde38b14610cb457610350565b8063df3fdf0014610b9d578063e3e1e8ef14610bc8578063e55f58bb14610be457610350565b8063b88d4fde116100d1578063b88d4fde14610ae1578063b9c3a81814610b0a578063c87b56dd14610b35578063d7224ba014610b7257610350565b8063a0712d6814610a73578063a22cb46514610a8f578063a3828b4b14610ab857610350565b80638da5cb5b1161016457806395d89b411161013e57806395d89b41146109c757806395f61c48146109f25780639753eac014610a1d578063a035b1fe14610a4857610350565b80638da5cb5b1461094a5780638f0ecae21461097557806391b7f5ed1461099e57610350565b806378ffc1a8116101a057806378ffc1a8146108b65780637cb64759146108f35780637d8966e41461091c578063895fc7881461093357610350565b80636c0360eb1461083757806370a0823114610862578063715018a61461089f57610350565b806334393743116102a057806355f804b31161023e5780635c7abcc2116102185780635c7abcc21461077b5780636352211e146107a657806368428a1b146107e35780636ba4c1381461080e57610350565b806355f804b3146106fe5780635b70ea9f146107275780635c1154b01461073e57610350565b80634f6ccce71161027a5780634f6ccce714610642578063508131b51461067f57806351cff8d9146106aa57806353135ca0146106d357610350565b806334393743146105c457806342842e0e146105db578063438b63001461060457610350565b80630f4ed54d1161030d578063253ca934116102e7578063253ca934146105085780632eb4a7ab146105315780632f3346521461055c5780632f745c591461058757610350565b80630f4ed54d1461047757806318160ddd146104b457806323b872dd146104df57610350565b806301b8199a1461035557806301ffc9a71461038057806306f21b9f146103bd57806306fdde03146103e6578063081812fc14610411578063095ea7b31461044e575b600080fd5b34801561036157600080fd5b5061036a610cdd565b604051610377919061513a565b60405180910390f35b34801561038c57600080fd5b506103a760048036038101906103a29190614785565b610cf7565b6040516103b49190614e42565b60405180910390f35b3480156103c957600080fd5b506103e460048036038101906103df919061464a565b610e41565b005b3480156103f257600080fd5b506103fb610fb5565b6040516104089190614e78565b60405180910390f35b34801561041d57600080fd5b5061043860048036038101906104339190614818565b611047565b6040516104459190614d82565b60405180910390f35b34801561045a57600080fd5b506104756004803603810190610470919061460e565b6110cc565b005b34801561048357600080fd5b5061049e600480360381019061049991906144a3565b6111e5565b6040516104ab919061513a565b60405180910390f35b3480156104c057600080fd5b506104c96111fd565b6040516104d6919061513a565b60405180910390f35b3480156104eb57600080fd5b5061050660048036038101906105019190614508565b611206565b005b34801561051457600080fd5b5061052f600480360381019061052a9190614818565b611216565b005b34801561053d57600080fd5b5061054661129c565b6040516105539190614e5d565b60405180910390f35b34801561056857600080fd5b506105716112a2565b60405161057e9190614e42565b60405180910390f35b34801561059357600080fd5b506105ae60048036038101906105a9919061460e565b6112b5565b6040516105bb919061513a565b60405180910390f35b3480156105d057600080fd5b506105d96114b3565b005b3480156105e757600080fd5b5061060260048036038101906105fd9190614508565b61155b565b005b34801561061057600080fd5b5061062b600480360381019061062691906144a3565b61157b565b604051610639929190614e12565b60405180910390f35b34801561064e57600080fd5b5061066960048036038101906106649190614818565b611708565b604051610676919061513a565b60405180910390f35b34801561068b57600080fd5b5061069461175b565b6040516106a1919061513a565b60405180910390f35b3480156106b657600080fd5b506106d160048036038101906106cc91906144a3565b611761565b005b3480156106df57600080fd5b506106e861182d565b6040516106f59190614e42565b60405180910390f35b34801561070a57600080fd5b50610725600480360381019061072091906147d7565b611840565b005b34801561073357600080fd5b5061073c6118d6565b005b34801561074a57600080fd5b5061076560048036038101906107609190614818565b6119eb565b604051610772919061513a565b60405180910390f35b34801561078757600080fd5b50610790611a03565b60405161079d9190614d82565b60405180910390f35b3480156107b257600080fd5b506107cd60048036038101906107c89190614818565b611a29565b6040516107da9190614d82565b60405180910390f35b3480156107ef57600080fd5b506107f8611a3f565b6040516108059190614e42565b60405180910390f35b34801561081a57600080fd5b5061083560048036038101906108309190614717565b611a52565b005b34801561084357600080fd5b5061084c611d0f565b6040516108599190614e78565b60405180910390f35b34801561086e57600080fd5b50610889600480360381019061088491906144a3565b611d9d565b604051610896919061513a565b60405180910390f35b3480156108ab57600080fd5b506108b4611e86565b005b3480156108c257600080fd5b506108dd60048036038101906108d891906146bf565b611f0e565b6040516108ea919061513a565b60405180910390f35b3480156108ff57600080fd5b5061091a6004803603810190610915919061475c565b611fee565b005b34801561092857600080fd5b50610931612074565b005b34801561093f57600080fd5b50610948612137565b005b34801561095657600080fd5b5061095f612283565b60405161096c9190614d82565b60405180910390f35b34801561098157600080fd5b5061099c600480360381019061099791906144a3565b6122ad565b005b3480156109aa57600080fd5b506109c560048036038101906109c09190614818565b61236d565b005b3480156109d357600080fd5b506109dc6123f3565b6040516109e99190614e78565b60405180910390f35b3480156109fe57600080fd5b50610a07612485565b604051610a14919061513a565b60405180910390f35b348015610a2957600080fd5b50610a3261248a565b604051610a3f919061513a565b60405180910390f35b348015610a5457600080fd5b50610a5d61248f565b604051610a6a919061513a565b60405180910390f35b610a8d6004803603810190610a889190614818565b612495565b005b348015610a9b57600080fd5b50610ab66004803603810190610ab191906145d2565b6125f4565b005b348015610ac457600080fd5b50610adf6004803603810190610ada9190614818565b612775565b005b348015610aed57600080fd5b50610b086004803603810190610b039190614557565b6127fb565b005b348015610b1657600080fd5b50610b1f612857565b604051610b2c919061513a565b60405180910390f35b348015610b4157600080fd5b50610b5c6004803603810190610b579190614818565b61285c565b604051610b699190614e78565b60405180910390f35b348015610b7e57600080fd5b50610b8761293a565b604051610b94919061513a565b60405180910390f35b348015610ba957600080fd5b50610bb2612940565b604051610bbf9190614e78565b60405180910390f35b610be26004803603810190610bdd9190614841565b612979565b005b348015610bf057600080fd5b50610bf9612c1b565b604051610c06919061513a565b60405180910390f35b348015610c1b57600080fd5b50610c366004803603810190610c3191906144cc565b612c21565b604051610c439190614e42565b60405180910390f35b348015610c5857600080fd5b50610c736004803603810190610c6e91906144a3565b612cb5565b604051610c80919061513a565b60405180910390f35b348015610c9557600080fd5b50610c9e612ccd565b604051610cab919061513a565b60405180910390f35b348015610cc057600080fd5b50610cdb6004803603810190610cd691906144a3565b612cd2565b005b62015180678ac7230489e80000610cf491906152f4565b81565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610dc257507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610e2a57507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610e3a5750610e3982612dca565b5b9050919050565b610e49612e34565b73ffffffffffffffffffffffffffffffffffffffff16610e67612283565b73ffffffffffffffffffffffffffffffffffffffff1614610ebd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb490614fba565b60405180910390fd5b60005b84849050811015610fae57828282818110610f04577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002013560106000878785818110610f48577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190610f5d91906144a3565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508080610fa690615550565b915050610ec0565b5050505050565b606060018054610fc4906154ed565b80601f0160208091040260200160405190810160405280929190818152602001828054610ff0906154ed565b801561103d5780601f106110125761010080835404028352916020019161103d565b820191906000526020600020905b81548152906001019060200180831161102057829003601f168201915b5050505050905090565b600061105282612e3c565b611091576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611088906150fa565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60006110d782611a29565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611148576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113f9061501a565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16611167612e34565b73ffffffffffffffffffffffffffffffffffffffff161480611196575061119581611190612e34565b612c21565b5b6111d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111cc90614f5a565b60405180910390fd5b6111e0838383612e49565b505050565b60106020528060005260406000206000915090505481565b60008054905090565b611211838383612efb565b505050565b61121e612e34565b73ffffffffffffffffffffffffffffffffffffffff1661123c612283565b73ffffffffffffffffffffffffffffffffffffffff1614611292576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128990614fba565b60405180910390fd5b80600e8190555050565b600a5481565b600f60029054906101000a900460ff1681565b60006112c083611d9d565b8210611301576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f890614e9a565b60405180910390fd5b600061130b6111fd565b905060008060005b83811015611471576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461140557806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561145d578684141561144e5781955050505050506114ad565b838061145990615550565b9450505b50808061146990615550565b915050611313565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114a4906150ba565b60405180910390fd5b92915050565b6114bb612e34565b73ffffffffffffffffffffffffffffffffffffffff166114d9612283565b73ffffffffffffffffffffffffffffffffffffffff161461152f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152690614fba565b60405180910390fd5b600f60009054906101000a900460ff1615600f60006101000a81548160ff021916908315150217905550565b611576838383604051806020016040528060008152506127fb565b505050565b606060008061158984611d9d565b90506000808267ffffffffffffffff8111156115ce577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156115fc5781602001602082028036833780820191505090505b50905060005b838110156116f95761161487826112b5565b82828151811061164d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505062015180678ac7230489e8000061167091906152f4565b601260008484815181106116ad577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151815260200190815260200160002054426116cf91906153b3565b6116d99190615325565b836116e4919061529e565b925080806116f190615550565b915050611602565b50808294509450505050915091565b60006117126111fd565b8210611753576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174a90614efa565b60405180910390fd5b819050919050565b600c5481565b611769612e34565b73ffffffffffffffffffffffffffffffffffffffff16611787612283565b73ffffffffffffffffffffffffffffffffffffffff16146117dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d490614fba565b60405180910390fd5b60004790508173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015611828573d6000803e3d6000fd5b505050565b600f60009054906101000a900460ff1681565b611848612e34565b73ffffffffffffffffffffffffffffffffffffffff16611866612283565b73ffffffffffffffffffffffffffffffffffffffff16146118bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b390614fba565b60405180910390fd5b80600990805190602001906118d292919061419a565b5050565b6000601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050600f60009054906101000a900460ff16806119415750600f60019054906101000a900460ff165b611980576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119779061503a565b60405180910390fd5b80600e600082825461199291906153b3565b925050819055506000601060003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506119e833826134b4565b50565b60126020528060005260406000206000915090505481565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000611a3482613521565b600001519050919050565b600f60019054906101000a900460ff1681565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611ac0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ab790614f3a565b60405180910390fd5b6000805b83839050811015611c7a573373ffffffffffffffffffffffffffffffffffffffff16611b2e858584818110611b22577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020135611a29565b73ffffffffffffffffffffffffffffffffffffffff1614611b84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7b9061503a565b60405180910390fd5b62015180678ac7230489e80000611b9b91906152f4565b60126000868685818110611bd8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002013581526020019081526020016000205442611bf991906153b3565b611c039190615325565b82611c0e919061529e565b91504260126000868685818110611c4e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b905060200201358152602001908152602001600020819055508080611c7290615550565b915050611ac4565b50600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166379c6506833836040518363ffffffff1660e01b8152600401611cd8929190614de9565b600060405180830381600087803b158015611cf257600080fd5b505af1158015611d06573d6000803e3d6000fd5b50505050505050565b60098054611d1c906154ed565b80601f0160208091040260200160405190810160405280929190818152602001828054611d48906154ed565b8015611d955780601f10611d6a57610100808354040283529160200191611d95565b820191906000526020600020905b815481529060010190602001808311611d7857829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e0e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0590614f7a565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b611e8e612e34565b73ffffffffffffffffffffffffffffffffffffffff16611eac612283565b73ffffffffffffffffffffffffffffffffffffffff1614611f02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ef990614fba565b60405180910390fd5b611f0c6000613724565b565b60008082604051602001611f229190614d0a565b604051602081830303815290604052805190602001209050611f88858580806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600a54836137ea565b15611fe157601160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546003611fd991906153b3565b915050611fe7565b60009150505b9392505050565b611ff6612e34565b73ffffffffffffffffffffffffffffffffffffffff16612014612283565b73ffffffffffffffffffffffffffffffffffffffff161461206a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161206190614fba565b60405180910390fd5b80600a8190555050565b61207c612e34565b73ffffffffffffffffffffffffffffffffffffffff1661209a612283565b73ffffffffffffffffffffffffffffffffffffffff16146120f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e790614fba565b60405180910390fd5b6000600f60006101000a81548160ff021916908315150217905550600f60019054906101000a900460ff1615600f60016101000a81548160ff021916908315150217905550565b61213f612e34565b73ffffffffffffffffffffffffffffffffffffffff1661215d612283565b73ffffffffffffffffffffffffffffffffffffffff16146121b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121aa90614fba565b60405180910390fd5b600c54600f6121c06111fd565b6121ca919061529e565b111561220b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122029061503a565b60405180910390fd5b600f60029054906101000a900460ff161561225b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122529061503a565b60405180910390fd5b6001600f60026101000a81548160ff02191690831515021790555061228133600f6134b4565b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6122b5612e34565b73ffffffffffffffffffffffffffffffffffffffff166122d3612283565b73ffffffffffffffffffffffffffffffffffffffff1614612329576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161232090614fba565b60405180910390fd5b80600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b612375612e34565b73ffffffffffffffffffffffffffffffffffffffff16612393612283565b73ffffffffffffffffffffffffffffffffffffffff16146123e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123e090614fba565b60405180910390fd5b80600d8190555050565b606060028054612402906154ed565b80601f016020809104026020016040519081016040528092919081815260200182805461242e906154ed565b801561247b5780601f106124505761010080835404028352916020019161247b565b820191906000526020600020905b81548152906001019060200180831161245e57829003601f168201915b5050505050905090565b600381565b600581565b600d5481565b600f60019054906101000a900460ff166124e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124db9061503a565b60405180910390fd5b6000811180156124f5575060058111155b612534576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161252b9061503a565b60405180910390fd5b600c54600e54826125436111fd565b61254d919061529e565b612557919061529e565b1115612598576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161258f9061503a565b60405180910390fd5b3481600d546125a79190615325565b146125e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125de9061503a565b60405180910390fd5b6125f133826134b4565b50565b6125fc612e34565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561266a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161266190614fda565b60405180910390fd5b8060066000612677612e34565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16612724612e34565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516127699190614e42565b60405180910390a35050565b61277d612e34565b73ffffffffffffffffffffffffffffffffffffffff1661279b612283565b73ffffffffffffffffffffffffffffffffffffffff16146127f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127e890614fba565b60405180910390fd5b80600c8190555050565b612806848484612efb565b612812848484846138c6565b612851576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128489061505a565b60405180910390fd5b50505050565b600f81565b606061286782612e3c565b6128a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161289d9061503a565b60405180910390fd5b60006128b0613a5d565b905060008151116128d05760405180602001604052806000815250612932565b806128da84613aef565b6040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525060405160200161292293929190614d51565b6040516020818303038152906040525b915050919050565b60075481565b6040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525081565b600083601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546129c6919061529e565b90506000336040516020016129db9190614d0a565b604051602081830303815290604052805190602001209050612a41848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600a54836137ea565b612a80576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a779061503a565b60405180910390fd5b600f60009054906101000a900460ff16612acf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ac69061503a565b60405180910390fd5b6003821115612b13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b0a9061503a565b60405180910390fd5b600c54600e5486612b226111fd565b612b2c919061529e565b612b36919061529e565b1115612b77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b6e9061503a565b60405180910390fd5b3485600d54612b869190615325565b14612bc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bbd9061503a565b60405180910390fd5b81601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612c1433866134b4565b5050505050565b600e5481565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60116020528060005260406000206000915090505481565b600281565b612cda612e34565b73ffffffffffffffffffffffffffffffffffffffff16612cf8612283565b73ffffffffffffffffffffffffffffffffffffffff1614612d4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d4590614fba565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612dbe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612db590614eba565b60405180910390fd5b612dc781613724565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b6000805482109050919050565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b6000612f0682613521565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16612f2d612e34565b73ffffffffffffffffffffffffffffffffffffffff161480612f895750612f52612e34565b73ffffffffffffffffffffffffffffffffffffffff16612f7184611047565b73ffffffffffffffffffffffffffffffffffffffff16145b80612fa55750612fa48260000151612f9f612e34565b612c21565b5b905080612fe7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fde90614ffa565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614613059576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161305090614f9a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156130c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130c090614f1a565b60405180910390fd5b6130d68585856001613c9c565b6130e66000848460000151612e49565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff16613154919061537f565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff166131f89190615258565b92506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060405180604001604052808573ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600085815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555090505060006001846132fe919061529e565b9050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156134445761337481612e3c565b15613443576040518060400160405280846000015173ffffffffffffffffffffffffffffffffffffffff168152602001846020015167ffffffffffffffff168152506003600083815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055509050505b5b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46134ac8686866001613ca2565b505050505050565b60006134be6111fd565b905060005b8281101561350157426012600083856134dc919061529e565b81526020019081526020016000208190555080806134f990615550565b9150506134c3565b5061351c838360405180602001604052806000815250613ca8565b505050565b613529614220565b61353282612e3c565b613571576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161356890614eda565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000001483106135d55760017f0000000000000000000000000000000000000000000000000000000000000014846135c891906153b3565b6135d2919061529e565b90505b60008390505b8181106136e3576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146136cf5780935050505061371f565b5080806136db906154c3565b9150506135db565b506040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613716906150da565b60405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008082905060005b85518110156138b8576000868281518110613837577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151905080831161387857828160405160200161385b929190614d25565b6040516020818303038152906040528051906020012092506138a4565b808360405160200161388b929190614d25565b6040516020818303038152906040528051906020012092505b5080806138b090615550565b9150506137f3565b508381149150509392505050565b60006138e78473ffffffffffffffffffffffffffffffffffffffff16614187565b15613a50578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613910612e34565b8786866040518563ffffffff1660e01b81526004016139329493929190614d9d565b602060405180830381600087803b15801561394c57600080fd5b505af192505050801561397d57506040513d601f19601f8201168201806040525081019061397a91906147ae565b60015b613a00573d80600081146139ad576040519150601f19603f3d011682016040523d82523d6000602084013e6139b2565b606091505b506000815114156139f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139ef9061505a565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613a55565b600190505b949350505050565b606060098054613a6c906154ed565b80601f0160208091040260200160405190810160405280929190818152602001828054613a98906154ed565b8015613ae55780601f10613aba57610100808354040283529160200191613ae5565b820191906000526020600020905b815481529060010190602001808311613ac857829003601f168201915b5050505050905090565b60606000821415613b37576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613c97565b600082905060005b60008214613b69578080613b5290615550565b915050600a82613b6291906152f4565b9150613b3f565b60008167ffffffffffffffff811115613bab577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015613bdd5781602001600182028036833780820191505090505b5090505b60008514613c9057600182613bf691906153b3565b9150600a85613c0591906155c7565b6030613c11919061529e565b60f81b818381518110613c4d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85613c8991906152f4565b9450613be1565b8093505050505b919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415613d1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613d159061509a565b60405180910390fd5b613d2781612e3c565b15613d67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613d5e9061507a565b60405180910390fd5b7f0000000000000000000000000000000000000000000000000000000000000014831115613dca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613dc19061511a565b60405180910390fd5b613dd76000858386613c9c565b6000600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff1681526020016000820160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff168152505090506040518060400160405280858360000151613ed49190615258565b6fffffffffffffffffffffffffffffffff168152602001858360200151613efb9190615258565b6fffffffffffffffffffffffffffffffff16815250600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008201518160000160006101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555060208201518160000160106101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555090505060405180604001604052808673ffffffffffffffffffffffffffffffffffffffff1681526020014267ffffffffffffffff168152506003600084815260200190815260200160002060008201518160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060208201518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550905050600082905060005b8581101561416a57818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461410a60008884886138c6565b614149576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016141409061505a565b60405180910390fd5b818061415490615550565b925050808061416290615550565b915050614099565b508060008190555061417f6000878588613ca2565b505050505050565b600080823b905060008111915050919050565b8280546141a6906154ed565b90600052602060002090601f0160209004810192826141c8576000855561420f565b82601f106141e157805160ff191683800117855561420f565b8280016001018555821561420f579182015b8281111561420e5782518255916020019190600101906141f3565b5b50905061421c919061425a565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b8082111561427357600081600090555060010161425b565b5090565b600061428a6142858461517a565b615155565b9050828152602081018484840111156142a257600080fd5b6142ad848285615481565b509392505050565b60006142c86142c3846151ab565b615155565b9050828152602081018484840111156142e057600080fd5b6142eb848285615481565b509392505050565b60008135905061430281615c69565b92915050565b60008083601f84011261431a57600080fd5b8235905067ffffffffffffffff81111561433357600080fd5b60208301915083602082028301111561434b57600080fd5b9250929050565b60008083601f84011261436457600080fd5b8235905067ffffffffffffffff81111561437d57600080fd5b60208301915083602082028301111561439557600080fd5b9250929050565b60008083601f8401126143ae57600080fd5b8235905067ffffffffffffffff8111156143c757600080fd5b6020830191508360208202830111156143df57600080fd5b9250929050565b6000813590506143f581615c80565b92915050565b60008135905061440a81615c97565b92915050565b60008135905061441f81615cae565b92915050565b60008151905061443481615cae565b92915050565b600082601f83011261444b57600080fd5b813561445b848260208601614277565b91505092915050565b600082601f83011261447557600080fd5b81356144858482602086016142b5565b91505092915050565b60008135905061449d81615cc5565b92915050565b6000602082840312156144b557600080fd5b60006144c3848285016142f3565b91505092915050565b600080604083850312156144df57600080fd5b60006144ed858286016142f3565b92505060206144fe858286016142f3565b9150509250929050565b60008060006060848603121561451d57600080fd5b600061452b868287016142f3565b935050602061453c868287016142f3565b925050604061454d8682870161448e565b9150509250925092565b6000806000806080858703121561456d57600080fd5b600061457b878288016142f3565b945050602061458c878288016142f3565b935050604061459d8782880161448e565b925050606085013567ffffffffffffffff8111156145ba57600080fd5b6145c68782880161443a565b91505092959194509250565b600080604083850312156145e557600080fd5b60006145f3858286016142f3565b9250506020614604858286016143e6565b9150509250929050565b6000806040838503121561462157600080fd5b600061462f858286016142f3565b92505060206146408582860161448e565b9150509250929050565b6000806000806040858703121561466057600080fd5b600085013567ffffffffffffffff81111561467a57600080fd5b61468687828801614308565b9450945050602085013567ffffffffffffffff8111156146a557600080fd5b6146b18782880161439c565b925092505092959194509250565b6000806000604084860312156146d457600080fd5b600084013567ffffffffffffffff8111156146ee57600080fd5b6146fa86828701614352565b9350935050602061470d868287016142f3565b9150509250925092565b6000806020838503121561472a57600080fd5b600083013567ffffffffffffffff81111561474457600080fd5b6147508582860161439c565b92509250509250929050565b60006020828403121561476e57600080fd5b600061477c848285016143fb565b91505092915050565b60006020828403121561479757600080fd5b60006147a584828501614410565b91505092915050565b6000602082840312156147c057600080fd5b60006147ce84828501614425565b91505092915050565b6000602082840312156147e957600080fd5b600082013567ffffffffffffffff81111561480357600080fd5b61480f84828501614464565b91505092915050565b60006020828403121561482a57600080fd5b60006148388482850161448e565b91505092915050565b60008060006040848603121561485657600080fd5b60006148648682870161448e565b935050602084013567ffffffffffffffff81111561488157600080fd5b61488d86828701614352565b92509250509250925092565b60006148a58383614cec565b60208301905092915050565b6148ba816153e7565b82525050565b6148d16148cc826153e7565b615599565b82525050565b60006148e2826151ec565b6148ec818561521a565b93506148f7836151dc565b8060005b8381101561492857815161490f8882614899565b975061491a8361520d565b9250506001810190506148fb565b5085935050505092915050565b61493e816153f9565b82525050565b61494d81615405565b82525050565b61496461495f82615405565b6155ab565b82525050565b6000614975826151f7565b61497f818561522b565b935061498f818560208601615490565b614998816156b4565b840191505092915050565b60006149ae82615202565b6149b8818561523c565b93506149c8818560208601615490565b6149d1816156b4565b840191505092915050565b60006149e782615202565b6149f1818561524d565b9350614a01818560208601615490565b80840191505092915050565b6000614a1a60228361523c565b9150614a25826156d2565b604082019050919050565b6000614a3d60268361523c565b9150614a4882615721565b604082019050919050565b6000614a60602a8361523c565b9150614a6b82615770565b604082019050919050565b6000614a8360238361523c565b9150614a8e826157bf565b604082019050919050565b6000614aa660258361523c565b9150614ab18261580e565b604082019050919050565b6000614ac960018361523c565b9150614ad48261585d565b602082019050919050565b6000614aec60398361523c565b9150614af782615886565b604082019050919050565b6000614b0f602b8361523c565b9150614b1a826158d5565b604082019050919050565b6000614b3260268361523c565b9150614b3d82615924565b604082019050919050565b6000614b5560208361523c565b9150614b6082615973565b602082019050919050565b6000614b78601a8361523c565b9150614b838261599c565b602082019050919050565b6000614b9b60328361523c565b9150614ba6826159c5565b604082019050919050565b6000614bbe60228361523c565b9150614bc982615a14565b604082019050919050565b6000614be160008361523c565b9150614bec82615a63565b600082019050919050565b6000614c0460338361523c565b9150614c0f82615a66565b604082019050919050565b6000614c27601d8361523c565b9150614c3282615ab5565b602082019050919050565b6000614c4a60218361523c565b9150614c5582615ade565b604082019050919050565b6000614c6d602e8361523c565b9150614c7882615b2d565b604082019050919050565b6000614c90602f8361523c565b9150614c9b82615b7c565b604082019050919050565b6000614cb3602d8361523c565b9150614cbe82615bcb565b604082019050919050565b6000614cd660228361523c565b9150614ce182615c1a565b604082019050919050565b614cf581615477565b82525050565b614d0481615477565b82525050565b6000614d1682846148c0565b60148201915081905092915050565b6000614d318285614953565b602082019150614d418284614953565b6020820191508190509392505050565b6000614d5d82866149dc565b9150614d6982856149dc565b9150614d7582846149dc565b9150819050949350505050565b6000602082019050614d9760008301846148b1565b92915050565b6000608082019050614db260008301876148b1565b614dbf60208301866148b1565b614dcc6040830185614cfb565b8181036060830152614dde818461496a565b905095945050505050565b6000604082019050614dfe60008301856148b1565b614e0b6020830184614cfb565b9392505050565b60006040820190508181036000830152614e2c81856148d7565b9050614e3b6020830184614cfb565b9392505050565b6000602082019050614e576000830184614935565b92915050565b6000602082019050614e726000830184614944565b92915050565b60006020820190508181036000830152614e9281846149a3565b905092915050565b60006020820190508181036000830152614eb381614a0d565b9050919050565b60006020820190508181036000830152614ed381614a30565b9050919050565b60006020820190508181036000830152614ef381614a53565b9050919050565b60006020820190508181036000830152614f1381614a76565b9050919050565b60006020820190508181036000830152614f3381614a99565b9050919050565b60006020820190508181036000830152614f5381614abc565b9050919050565b60006020820190508181036000830152614f7381614adf565b9050919050565b60006020820190508181036000830152614f9381614b02565b9050919050565b60006020820190508181036000830152614fb381614b25565b9050919050565b60006020820190508181036000830152614fd381614b48565b9050919050565b60006020820190508181036000830152614ff381614b6b565b9050919050565b6000602082019050818103600083015261501381614b8e565b9050919050565b6000602082019050818103600083015261503381614bb1565b9050919050565b6000602082019050818103600083015261505381614bd4565b9050919050565b6000602082019050818103600083015261507381614bf7565b9050919050565b6000602082019050818103600083015261509381614c1a565b9050919050565b600060208201905081810360008301526150b381614c3d565b9050919050565b600060208201905081810360008301526150d381614c60565b9050919050565b600060208201905081810360008301526150f381614c83565b9050919050565b6000602082019050818103600083015261511381614ca6565b9050919050565b6000602082019050818103600083015261513381614cc9565b9050919050565b600060208201905061514f6000830184614cfb565b92915050565b600061515f615170565b905061516b828261551f565b919050565b6000604051905090565b600067ffffffffffffffff82111561519557615194615685565b5b61519e826156b4565b9050602081019050919050565b600067ffffffffffffffff8211156151c6576151c5615685565b5b6151cf826156b4565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006152638261543b565b915061526e8361543b565b9250826fffffffffffffffffffffffffffffffff03821115615293576152926155f8565b5b828201905092915050565b60006152a982615477565b91506152b483615477565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156152e9576152e86155f8565b5b828201905092915050565b60006152ff82615477565b915061530a83615477565b92508261531a57615319615627565b5b828204905092915050565b600061533082615477565b915061533b83615477565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615615374576153736155f8565b5b828202905092915050565b600061538a8261543b565b91506153958361543b565b9250828210156153a8576153a76155f8565b5b828203905092915050565b60006153be82615477565b91506153c983615477565b9250828210156153dc576153db6155f8565b5b828203905092915050565b60006153f282615457565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b60006fffffffffffffffffffffffffffffffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156154ae578082015181840152602081019050615493565b838111156154bd576000848401525b50505050565b60006154ce82615477565b915060008214156154e2576154e16155f8565b5b600182039050919050565b6000600282049050600182168061550557607f821691505b6020821081141561551957615518615656565b5b50919050565b615528826156b4565b810181811067ffffffffffffffff8211171561554757615546615685565b5b80604052505050565b600061555b82615477565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561558e5761558d6155f8565b5b600182019050919050565b60006155a4826155b5565b9050919050565b6000819050919050565b60006155c0826156c5565b9050919050565b60006155d282615477565b91506155dd83615477565b9250826155ed576155ec615627565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f3f00000000000000000000000000000000000000000000000000000000000000600082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a20746f6b656e20616c7265616479206d696e746564000000600082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f455243373231413a207175616e7469747920746f206d696e7420746f6f20686960008201527f6768000000000000000000000000000000000000000000000000000000000000602082015250565b615c72816153e7565b8114615c7d57600080fd5b50565b615c89816153f9565b8114615c9457600080fd5b50565b615ca081615405565b8114615cab57600080fd5b50565b615cb78161540f565b8114615cc257600080fd5b50565b615cce81615477565b8114615cd957600080fd5b5056fea264697066735822122021d5fa060d9b4f5262d99db8a5a8788af3a96c3bc622815b2c5fc0f910ef4ff564736f6c63430008040033
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 34 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ 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.