ERC-721
Overview
Max Total Supply
69 Blob
Holders
37
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 BlobLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
SundayClubBlobs
Compiler Version
v0.8.7+commit.e28d00a7
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.2; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Burnable.sol"; import "@openzeppelin/contracts/access/AccessControl.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; import "./SundayClubWhitelist.sol"; contract SundayClubBlobs is SundayClubWhitelist, ERC721, ERC721Enumerable, ERC721Burnable, AccessControl { using Counters for Counters.Counter; using Strings for uint256; uint256 public constant MAX_SUPPLY = 5000; uint256 public constant MINTING_COST = 0.06 ether; uint256 public constant MINTING_LIMIT = 35; uint256 public constant TR_1 = 75; uint256 public constant TR_2 = 75; bytes32 public constant ADMIN_ROLE = keccak256("ADMIN_ROLE"); address payable public ma = payable(0xEbf35a32b76F11211F4ccD5e7E2dAA7DB8e5b86F); // marketing team address payable public de; // development team string public baseURI; bool public whitelistIsLive = true; bool public saleIsLive = false; Counters.Counter private _tokenIdCounter; Counters.Counter private _TRCounter; bool internal locked; modifier noReentrancy() { require(!locked, "No reentrancy"); locked = true; _; locked = false; } constructor(address payable _owner2, bytes32 whitelistRoot_) SundayClubWhitelist(whitelistRoot_) ERC721("Blobs", "Blob") { _setupRole(DEFAULT_ADMIN_ROLE, msg.sender); _setupRole(ADMIN_ROLE, msg.sender); de = payable(msg.sender); grantRole(DEFAULT_ADMIN_ROLE, _owner2); grantRole(ADMIN_ROLE, _owner2); } function whitelistMint(uint256 qty, bytes32[] calldata proof) public payable noReentrancy { require(whitelistIsLive, "Minting not yet started"); require(isWhitelisted(msg.sender, proof), "You are not white listed"); require(msg.value >= MINTING_COST * qty, "Send more ether"); (qty > 1) ? _mintBatch(msg.sender, qty) : safeMint(msg.sender); } function mintGiveaway(address to, uint256 qty) public onlyRole(ADMIN_ROLE) { require(qty <= 10, "chill"); for (uint256 i = 0; i < qty; i++) { reservedMint(to); } } function mintGiveawayBatch(address[] memory to, uint256[] memory qty) public onlyRole(ADMIN_ROLE) { require(to.length == qty.length); for (uint256 i = 0; i < to.length; i++) { require(qty[i] <= 10, "chill"); reservedMint(to[i]); } } function mint() public payable noReentrancy { require(saleIsLive, "Sale not started"); require(msg.value >= MINTING_COST, "Send more ether"); safeMint(msg.sender); } function mintBatch(address to, uint256 qty) public payable noReentrancy { require(saleIsLive, "Sale not started"); _mintBatch(to, qty); } function burnBlob(uint256 tokenId) public { require( _isApprovedOrOwner(msg.sender, tokenId), "You don't have permission" ); _burn(tokenId); } function updateRoot(bytes32 newRoot_) public onlyRole(ADMIN_ROLE) { whitelistRoot = newRoot_; } function setBaseURI(string memory _newBaseURI) public onlyRole(ADMIN_ROLE) { baseURI = _newBaseURI; } function startWhitelist() public onlyRole(ADMIN_ROLE) { whitelistIsLive = true; } function startSale() public onlyRole(ADMIN_ROLE) { saleIsLive = true; } function endSale() public onlyRole(ADMIN_ROLE) { saleIsLive = false; } function endWhitelist() public onlyRole(ADMIN_ROLE) { whitelistIsLive = false; } function withdraw() public onlyRole(ADMIN_ROLE) noReentrancy { _withdraw(); } function _withdraw() internal { uint256 balance = address(this).balance; require(balance > 0, "Nothing to withdraw"); uint256 marketing = (balance * 7) / 10; uint256 development = balance - marketing; require(de.send(development)); require(ma.send(marketing)); } function _mintBatch(address to, uint256 qty) internal { require(msg.value >= MINTING_COST * qty, "Send more ether"); require(qty <= MINTING_LIMIT, "chill"); for (uint256 i = 0; i < qty; i++) { safeMint(to); } } function reservedMint(address to) internal { require(_TRCounter.current() < TR_1 + TR_2); while (_exists(_TRCounter.current() + (MAX_SUPPLY - TR_1 - TR_2))) { _TRCounter.increment(); } _safeMint(to, _TRCounter.current() + (MAX_SUPPLY - TR_1 - TR_2)); _TRCounter.increment(); } function safeMint(address to) internal { require(_tokenIdCounter.current() < (MAX_SUPPLY - TR_1 - TR_2)); while (_exists(_tokenIdCounter.current())) { _tokenIdCounter.increment(); } _safeMint(to, _tokenIdCounter.current()); _tokenIdCounter.increment(); } function tokenURI(uint256 tokenId) public view override(ERC721) returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString(), ".json")) : tokenId.toString(); } function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal override(ERC721, ERC721Enumerable) { super._beforeTokenTransfer(from, to, tokenId); } function supportsInterface(bytes4 interfaceId) public view override(ERC721, ERC721Enumerable, AccessControl) returns (bool) { return super.supportsInterface(interfaceId); } }
//SPDX-License-Identifier: Unlicense pragma solidity ^0.8.0; import "@openzeppelin/contracts/utils/cryptography/MerkleProof.sol"; /** @author based upon https://github.com/Uniswap/merkle-distributor **/ contract SundayClubWhitelist { bytes32 public whitelistRoot; constructor(bytes32 whitelistRoot_) { whitelistRoot = whitelistRoot_; } function isWhitelisted(address toCheck, bytes32[] calldata proof) public view returns (bool _isWhitelisted) { bytes32 node = keccak256(abi.encodePacked(toCheck, uint256(1))); MerkleProof.verify(proof, whitelistRoot, node) ? (_isWhitelisted = true) : (_isWhitelisted = false); return _isWhitelisted; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IAccessControl.sol"; import "../utils/Context.sol"; import "../utils/Strings.sol"; import "../utils/introspection/ERC165.sol"; /** * @dev Contract module that allows children to implement role-based access * control mechanisms. This is a lightweight version that doesn't allow enumerating role * members except through off-chain means by accessing the contract event logs. Some * applications may benefit from on-chain enumerability, for those cases see * {AccessControlEnumerable}. * * Roles are referred to by their `bytes32` identifier. These should be exposed * in the external API and be unique. The best way to achieve this is by * using `public constant` hash digests: * * ``` * bytes32 public constant MY_ROLE = keccak256("MY_ROLE"); * ``` * * Roles can be used to represent a set of permissions. To restrict access to a * function call, use {hasRole}: * * ``` * function foo() public { * require(hasRole(MY_ROLE, msg.sender)); * ... * } * ``` * * Roles can be granted and revoked dynamically via the {grantRole} and * {revokeRole} functions. Each role has an associated admin role, and only * accounts that have a role's admin role can call {grantRole} and {revokeRole}. * * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means * that only accounts with this role will be able to grant or revoke other * roles. More complex role relationships can be created by using * {_setRoleAdmin}. * * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to * grant and revoke this role. Extra precautions should be taken to secure * accounts that have been granted it. */ abstract contract AccessControl is Context, IAccessControl, ERC165 { struct RoleData { mapping(address => bool) members; bytes32 adminRole; } mapping(bytes32 => RoleData) private _roles; bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00; /** * @dev Modifier that checks that an account has a specific role. Reverts * with a standardized message including the required role. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ * * _Available since v4.1._ */ modifier onlyRole(bytes32 role) { _checkRole(role, _msgSender()); _; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IAccessControl).interfaceId || super.supportsInterface(interfaceId); } /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) public view override returns (bool) { return _roles[role].members[account]; } /** * @dev Revert with a standard message if `account` is missing `role`. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ */ function _checkRole(bytes32 role, address account) internal view { if (!hasRole(role, account)) { revert( string( abi.encodePacked( "AccessControl: account ", Strings.toHexString(uint160(account), 20), " is missing role ", Strings.toHexString(uint256(role), 32) ) ) ); } } /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) public view override returns (bytes32) { return _roles[role].adminRole; } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _grantRole(role, account); } /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _revokeRole(role, account); } /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been granted `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) public virtual override { require(account == _msgSender(), "AccessControl: can only renounce roles for self"); _revokeRole(role, account); } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. Note that unlike {grantRole}, this function doesn't perform any * checks on the calling account. * * [WARNING] * ==== * This function should only be called from the constructor when setting * up the initial roles for the system. * * Using this function in any other way is effectively circumventing the admin * system imposed by {AccessControl}. * ==== */ function _setupRole(bytes32 role, address account) internal virtual { _grantRole(role, account); } /** * @dev Sets `adminRole` as ``role``'s admin role. * * Emits a {RoleAdminChanged} event. */ function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual { bytes32 previousAdminRole = getRoleAdmin(role); _roles[role].adminRole = adminRole; emit RoleAdminChanged(role, previousAdminRole, adminRole); } function _grantRole(bytes32 role, address account) private { if (!hasRole(role, account)) { _roles[role].members[account] = true; emit RoleGranted(role, account, _msgSender()); } } function _revokeRole(bytes32 role, address account) private { if (hasRole(role, account)) { _roles[role].members[account] = false; emit RoleRevoked(role, account, _msgSender()); } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../ERC721.sol"; import "../../../utils/Context.sol"; /** * @title ERC721 Burnable Token * @dev ERC721 Token that can be irreversibly burned (destroyed). */ abstract contract ERC721Burnable is Context, ERC721 { /** * @dev Burns `tokenId`. See {ERC721-_burn}. * * Requirements: * * - The caller must own `tokenId` or be an approved operator. */ function burn(uint256 tokenId) public virtual { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721Burnable: caller is not owner nor approved"); _burn(tokenId); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "../ERC721.sol"; import "./IERC721Enumerable.sol"; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./extensions/IERC721Metadata.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/Strings.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.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; 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 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; 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 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; /** * @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; 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; /** * @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 "../../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; /** * @dev External interface of AccessControl declared to support ERC165 detection. */ interface IAccessControl { /** * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole` * * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite * {RoleAdminChanged} not being emitted signaling this. * * _Available since v3.1._ */ event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole); /** * @dev Emitted when `account` is granted `role`. * * `sender` is the account that originated the contract call, an admin role * bearer except when using {AccessControl-_setupRole}. */ event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Emitted when `account` is revoked `role`. * * `sender` is the account that originated the contract call: * - if using `revokeRole`, it is the admin role bearer * - if using `renounceRole`, it is the role bearer (i.e. `account`) */ event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) external view returns (bool); /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {AccessControl-_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) external view returns (bytes32); /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) external; /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) external; /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been granted `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) external; }
// 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" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address payable","name":"_owner2","type":"address"},{"internalType":"bytes32","name":"whitelistRoot_","type":"bytes32"}],"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":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","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":"ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTING_COST","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTING_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TR_1","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TR_2","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burnBlob","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"de","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"endSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"endWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"toCheck","type":"address"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"isWhitelisted","outputs":[{"internalType":"bool","name":"_isWhitelisted","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ma","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"mintBatch","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"qty","type":"uint256"}],"name":"mintGiveaway","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"to","type":"address[]"},{"internalType":"uint256[]","name":"qty","type":"uint256[]"}],"name":"mintGiveawayBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","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":"saleIsLive","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":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"newRoot_","type":"bytes32"}],"name":"updateRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"whitelistIsLive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"qty","type":"uint256"},{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"whitelistRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405273ebf35a32b76f11211f4ccd5e7e2daa7db8e5b86f600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600f60006101000a81548160ff0219169083151502179055506000600f60016101000a81548160ff0219169083151502179055503480156200009c57600080fd5b506040516200671e3803806200671e8339818101604052810190620000c2919062000823565b6040518060400160405280600581526020017f426c6f62730000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f426c6f620000000000000000000000000000000000000000000000000000000081525082806000819055505081600190805190602001906200014f92919062000745565b5080600290805190602001906200016892919062000745565b505050620001806000801b336200024260201b60201c565b620001b27fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c21775336200024260201b60201c565b33600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620002086000801b836200025860201b60201c565b6200023a7fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c21775836200025860201b60201c565b505062000d28565b620002548282620002a160201b60201c565b5050565b62000269826200039360201b60201c565b6200028a816200027e620003b360201b60201c565b620003bb60201b60201c565b6200029c8383620002a160201b60201c565b505050565b620002b382826200047f60201b60201c565b6200038f576001600b600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555062000334620003b360201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6000600b6000838152602001908152602001600020600101549050919050565b600033905090565b620003cd82826200047f60201b60201c565b6200047b57620004008173ffffffffffffffffffffffffffffffffffffffff166014620004ea60201b62001fa61760201c565b6200041b8360001c6020620004ea60201b62001fa61760201c565b6040516020016200042e92919062000957565b6040516020818303038152906040526040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000472919062000999565b60405180910390fd5b5050565b6000600b600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b606060006002836002620004ff919062000a63565b6200050b919062000a06565b67ffffffffffffffff81111562000527576200052662000c34565b5b6040519080825280601f01601f1916602001820160405280156200055a5781602001600182028036833780820191505090505b5090507f30000000000000000000000000000000000000000000000000000000000000008160008151811062000595576200059462000c05565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110620005fc57620005fb62000c05565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600060018460026200063e919062000a63565b6200064a919062000a06565b90505b6001811115620006f4577f3031323334353637383961626364656600000000000000000000000000000000600f86166010811062000690576200068f62000c05565b5b1a60f81b828281518110620006aa57620006a962000c05565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c945080620006ec9062000b42565b90506200064d565b50600084146200073b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200073290620009bd565b60405180910390fd5b8091505092915050565b828054620007539062000b71565b90600052602060002090601f016020900481019282620007775760008555620007c3565b82601f106200079257805160ff1916838001178555620007c3565b82800160010185558215620007c3579182015b82811115620007c2578251825591602001919060010190620007a5565b5b509050620007d29190620007d6565b5090565b5b80821115620007f1576000816000905550600101620007d7565b5090565b600081519050620008068162000cf4565b92915050565b6000815190506200081d8162000d0e565b92915050565b600080604083850312156200083d576200083c62000c63565b5b60006200084d85828601620007f5565b925050602062000860858286016200080c565b9150509250929050565b60006200087782620009df565b620008838185620009ea565b93506200089581856020860162000b0c565b620008a08162000c68565b840191505092915050565b6000620008b882620009df565b620008c48185620009fb565b9350620008d681856020860162000b0c565b80840191505092915050565b6000620008f1602083620009ea565b9150620008fe8262000c79565b602082019050919050565b600062000918601783620009fb565b9150620009258262000ca2565b601782019050919050565b60006200093f601183620009fb565b91506200094c8262000ccb565b601182019050919050565b6000620009648262000909565b9150620009728285620008ab565b91506200097f8262000930565b91506200098d8284620008ab565b91508190509392505050565b60006020820190508181036000830152620009b581846200086a565b905092915050565b60006020820190508181036000830152620009d881620008e2565b9050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600062000a138262000b02565b915062000a208362000b02565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000a585762000a5762000ba7565b5b828201905092915050565b600062000a708262000b02565b915062000a7d8362000b02565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000ab95762000ab862000ba7565b5b828202905092915050565b600062000ad18262000ae2565b9050919050565b6000819050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b8381101562000b2c57808201518184015260208101905062000b0f565b8381111562000b3c576000848401525b50505050565b600062000b4f8262000b02565b9150600082141562000b665762000b6562000ba7565b5b600182039050919050565b6000600282049050600182168062000b8a57607f821691505b6020821081141562000ba15762000ba062000bd6565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b62000cff8162000ac4565b811462000d0b57600080fd5b50565b62000d198162000ad8565b811462000d2557600080fd5b50565b6159e68062000d386000396000f3fe6080604052600436106102ae5760003560e01c806355f804b311610175578063a217fddf116100dc578063c87b56dd11610095578063d547741f1161006f578063d547741f14610a3b578063d663907814610a64578063e985e9c514610a8d578063f412f5b614610aca576102ae565b8063c87b56dd146109b7578063d1a109e3146109f4578063d2cab05614610a1f576102ae565b8063a217fddf146108cf578063a22cb465146108fa578063b2a422a014610923578063b53c99c11461094e578063b66a0e5d14610977578063b88d4fde1461098e576102ae565b80637f19c4121161012e5780637f19c412146107cf578063801e6646146107e657806391d148541461081157806395d89b411461084e57806399d5a3e6146108795780639c393847146108a4576102ae565b806355f804b3146106995780635a23dd99146106c25780636352211e146106ff5780636c0360eb1461073c57806370a082311461076757806375b238fc146107a4576102ae565b8063248a9ca311610219578063380d831b116101d2578063380d831b146105b1578063386bfc98146105c85780633ccfd60b146105f357806342842e0e1461060a57806342966c68146106335780634f6ccce71461065c576102ae565b8063248a9ca31461049e578063248b71fc146104db5780632f2ff15d146104f75780632f745c591461052057806332cb6b0c1461055d57806336568abe14610588576102ae565b806314c7763b1161026b57806314c7763b146103a257806314dbe380146103cd57806318160ddd146103f85780631b60efb01461042357806321ff99701461044c57806323b872dd14610475576102ae565b806301ffc9a7146102b357806306fdde03146102f0578063081812fc1461031b578063095ea7b3146103585780630d4f9418146103815780631249c58b14610398575b600080fd5b3480156102bf57600080fd5b506102da60048036038101906102d59190614070565b610af5565b6040516102e791906148af565b60405180910390f35b3480156102fc57600080fd5b50610305610b07565b60405161031291906148e5565b60405180910390f35b34801561032757600080fd5b50610342600480360381019061033d9190614113565b610b99565b60405161034f919061482d565b60405180910390f35b34801561036457600080fd5b5061037f600480360381019061037a9190613f4b565b610c1e565b005b34801561038d57600080fd5b50610396610d36565b005b6103a0610d86565b005b3480156103ae57600080fd5b506103b7610eb0565b6040516103c49190614c67565b60405180910390f35b3480156103d957600080fd5b506103e2610eb5565b6040516103ef91906148af565b60405180910390f35b34801561040457600080fd5b5061040d610ec8565b60405161041a9190614c67565b60405180910390f35b34801561042f57600080fd5b5061044a60048036038101906104459190613f4b565b610ed5565b005b34801561045857600080fd5b50610473600480360381019061046e9190614003565b610f78565b005b34801561048157600080fd5b5061049c60048036038101906104979190613dd5565b610fb5565b005b3480156104aa57600080fd5b506104c560048036038101906104c09190614003565b611015565b6040516104d291906148ca565b60405180910390f35b6104f560048036038101906104f09190613f4b565b611035565b005b34801561050357600080fd5b5061051e60048036038101906105199190614030565b611118565b005b34801561052c57600080fd5b5061054760048036038101906105429190613f4b565b611141565b6040516105549190614c67565b60405180910390f35b34801561056957600080fd5b506105726111e6565b60405161057f9190614c67565b60405180910390f35b34801561059457600080fd5b506105af60048036038101906105aa9190614030565b6111ec565b005b3480156105bd57600080fd5b506105c661126f565b005b3480156105d457600080fd5b506105dd6112bf565b6040516105ea91906148ca565b60405180910390f35b3480156105ff57600080fd5b506106086112c5565b005b34801561061657600080fd5b50610631600480360381019061062c9190613dd5565b611388565b005b34801561063f57600080fd5b5061065a60048036038101906106559190614113565b6113a8565b005b34801561066857600080fd5b50610683600480360381019061067e9190614113565b611404565b6040516106909190614c67565b60405180910390f35b3480156106a557600080fd5b506106c060048036038101906106bb91906140ca565b611475565b005b3480156106ce57600080fd5b506106e960048036038101906106e49190613eab565b6114c2565b6040516106f691906148af565b60405180910390f35b34801561070b57600080fd5b5061072660048036038101906107219190614113565b61155c565b604051610733919061482d565b60405180910390f35b34801561074857600080fd5b5061075161160e565b60405161075e91906148e5565b60405180910390f35b34801561077357600080fd5b5061078e60048036038101906107899190613d68565b61169c565b60405161079b9190614c67565b60405180910390f35b3480156107b057600080fd5b506107b9611754565b6040516107c691906148ca565b60405180910390f35b3480156107db57600080fd5b506107e4611778565b005b3480156107f257600080fd5b506107fb6117c8565b6040516108089190614848565b60405180910390f35b34801561081d57600080fd5b5061083860048036038101906108339190614030565b6117ee565b60405161084591906148af565b60405180910390f35b34801561085a57600080fd5b50610863611859565b60405161087091906148e5565b60405180910390f35b34801561088557600080fd5b5061088e6118eb565b60405161089b9190614848565b60405180910390f35b3480156108b057600080fd5b506108b9611911565b6040516108c69190614c67565b60405180910390f35b3480156108db57600080fd5b506108e461191c565b6040516108f191906148ca565b60405180910390f35b34801561090657600080fd5b50610921600480360381019061091c9190613f0b565b611923565b005b34801561092f57600080fd5b50610938611aa4565b6040516109459190614c67565b60405180910390f35b34801561095a57600080fd5b5061097560048036038101906109709190614113565b611aa9565b005b34801561098357600080fd5b5061098c611afe565b005b34801561099a57600080fd5b506109b560048036038101906109b09190613e28565b611b4e565b005b3480156109c357600080fd5b506109de60048036038101906109d99190614113565b611bb0565b6040516109eb91906148e5565b60405180910390f35b348015610a0057600080fd5b50610a09611c51565b604051610a169190614c67565b60405180910390f35b610a396004803603810190610a349190614140565b611c56565b005b348015610a4757600080fd5b50610a626004803603810190610a5d9190614030565b611df0565b005b348015610a7057600080fd5b50610a8b6004803603810190610a869190613f8b565b611e19565b005b348015610a9957600080fd5b50610ab46004803603810190610aaf9190613d95565b611eff565b604051610ac191906148af565b60405180910390f35b348015610ad657600080fd5b50610adf611f93565b604051610aec91906148af565b60405180910390f35b6000610b00826121e2565b9050919050565b606060018054610b1690614fca565b80601f0160208091040260200160405190810160405280929190818152602001828054610b4290614fca565b8015610b8f5780601f10610b6457610100808354040283529160200191610b8f565b820191906000526020600020905b815481529060010190602001808311610b7257829003601f168201915b5050505050905090565b6000610ba48261225c565b610be3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bda90614b27565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c298261155c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9190614bc7565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610cb96122c8565b73ffffffffffffffffffffffffffffffffffffffff161480610ce85750610ce781610ce26122c8565b611eff565b5b610d27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1e90614a87565b60405180910390fd5b610d3183836122d0565b505050565b7fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c21775610d6881610d636122c8565b612389565b6000600f60006101000a81548160ff02191690831515021790555050565b601260009054906101000a900460ff1615610dd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dcd906149c7565b60405180910390fd5b6001601260006101000a81548160ff021916908315150217905550600f60019054906101000a900460ff16610e40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3790614a67565b60405180910390fd5b66d529ae9e860000341015610e8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8190614ba7565b60405180910390fd5b610e9333612426565b6000601260006101000a81548160ff021916908315150217905550565b602381565b600f60009054906101000a900460ff1681565b6000600980549050905090565b7fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c21775610f0781610f026122c8565b612389565b600a821115610f4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f42906149e7565b60405180910390fd5b60005b82811015610f7257610f5f8461249b565b8080610f6a9061502d565b915050610f4e565b50505050565b7fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c21775610faa81610fa56122c8565b612389565b816000819055505050565b610fc6610fc06122c8565b8261254b565b611005576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffc90614be7565b60405180910390fd5b611010838383612629565b505050565b6000600b6000838152602001908152602001600020600101549050919050565b601260009054906101000a900460ff1615611085576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107c906149c7565b60405180910390fd5b6001601260006101000a81548160ff021916908315150217905550600f60019054906101000a900460ff166110ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e690614a67565b60405180910390fd5b6110f98282612885565b6000601260006101000a81548160ff0219169083151502179055505050565b61112182611015565b6111328161112d6122c8565b612389565b61113c838361294a565b505050565b600061114c8361169c565b821061118d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118490614967565b60405180910390fd5b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b61138881565b6111f46122c8565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611261576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125890614c47565b60405180910390fd5b61126b8282612a2b565b5050565b7fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c217756112a18161129c6122c8565b612389565b6000600f60016101000a81548160ff02191690831515021790555050565b60005481565b7fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c217756112f7816112f26122c8565b612389565b601260009054906101000a900460ff1615611347576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133e906149c7565b60405180910390fd5b6001601260006101000a81548160ff02191690831515021790555061136a612b0d565b6000601260006101000a81548160ff02191690831515021790555050565b6113a383838360405180602001604052806000815250611b4e565b505050565b6113b96113b36122c8565b8261254b565b6113f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ef90614c27565b60405180910390fd5b61140181612c47565b50565b600061140e610ec8565b821061144f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144690614c07565b60405180910390fd5b600982815481106114635761146261519b565b5b90600052602060002001549050919050565b7fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c217756114a7816114a26122c8565b612389565b81600e90805190602001906114bd9291906139d5565b505050565b6000808460016040516020016114d992919061476c565b60405160208183030381529060405280519060200120905061153f848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505060005483612d58565b61154d576000915081611553565b60019150815b50509392505050565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611605576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fc90614ac7565b60405180910390fd5b80915050919050565b600e805461161b90614fca565b80601f016020809104026020016040519081016040528092919081815260200182805461164790614fca565b80156116945780601f1061166957610100808354040283529160200191611694565b820191906000526020600020905b81548152906001019060200180831161167757829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561170d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170490614aa7565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b7fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c2177581565b7fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c217756117aa816117a56122c8565b612389565b6001600f60006101000a81548160ff02191690831515021790555050565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600b600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60606002805461186890614fca565b80601f016020809104026020016040519081016040528092919081815260200182805461189490614fca565b80156118e15780601f106118b6576101008083540402835291602001916118e1565b820191906000526020600020905b8154815290600101906020018083116118c457829003601f168201915b5050505050905090565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b66d529ae9e86000081565b6000801b81565b61192b6122c8565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611999576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199090614a27565b60405180910390fd5b80600660006119a66122c8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a536122c8565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a9891906148af565b60405180910390a35050565b604b81565b611ab3338261254b565b611af2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae990614b47565b60405180910390fd5b611afb81612c47565b50565b7fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c21775611b3081611b2b6122c8565b612389565b6001600f60016101000a81548160ff02191690831515021790555050565b611b5f611b596122c8565b8361254b565b611b9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9590614be7565b60405180910390fd5b611baa84848484612e0e565b50505050565b6060611bbb8261225c565b611bfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf190614b87565b60405180910390fd5b6000600e8054611c0990614fca565b905011611c1e57611c1982612e6a565b611c4a565b600e611c2983612e6a565b604051602001611c3a9291906147c4565b6040516020818303038152906040525b9050919050565b604b81565b601260009054906101000a900460ff1615611ca6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9d906149c7565b60405180910390fd5b6001601260006101000a81548160ff021916908315150217905550600f60009054906101000a900460ff16611d10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0790614907565b60405180910390fd5b611d1b3383836114c2565b611d5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5190614ae7565b60405180910390fd5b8266d529ae9e860000611d6d9190614e40565b341015611daf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da690614ba7565b60405180910390fd5b60018311611dc557611dc033612426565b611dd0565b611dcf3384612885565b5b6000601260006101000a81548160ff021916908315150217905550505050565b611df982611015565b611e0a81611e056122c8565b612389565b611e148383612a2b565b505050565b7fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c21775611e4b81611e466122c8565b612389565b8151835114611e5957600080fd5b60005b8351811015611ef957600a838281518110611e7a57611e7961519b565b5b60200260200101511115611ec3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eba906149e7565b60405180910390fd5b611ee6848281518110611ed957611ed861519b565b5b602002602001015161249b565b8080611ef19061502d565b915050611e5c565b50505050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600f60019054906101000a900460ff1681565b606060006002836002611fb99190614e40565b611fc39190614db9565b67ffffffffffffffff811115611fdc57611fdb6151ca565b5b6040519080825280601f01601f19166020018201604052801561200e5781602001600182028036833780820191505090505b5090507f3000000000000000000000000000000000000000000000000000000000000000816000815181106120465761204561519b565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f7800000000000000000000000000000000000000000000000000000000000000816001815181106120aa576120a961519b565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600060018460026120ea9190614e40565b6120f49190614db9565b90505b6001811115612194577f3031323334353637383961626364656600000000000000000000000000000000600f8616601081106121365761213561519b565b5b1a60f81b82828151811061214d5761214c61519b565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c94508061218d90614fa0565b90506120f7565b50600084146121d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121cf90614927565b60405180910390fd5b8091505092915050565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612255575061225482612fcb565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166123438361155c565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b61239382826117ee565b612422576123b88173ffffffffffffffffffffffffffffffffffffffff166014611fa6565b6123c68360001c6020611fa6565b6040516020016123d79291906147f3565b6040516020818303038152906040526040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241991906148e5565b60405180910390fd5b5050565b604b806113886124369190614e9a565b6124409190614e9a565b61244a6010613045565b1061245457600080fd5b5b6124676124626010613045565b61225c565b1561247b576124766010613053565b612455565b61248e816124896010613045565b613069565b6124986010613053565b50565b604b806124a89190614db9565b6124b26011613045565b106124bc57600080fd5b5b6124f3604b806113886124d09190614e9a565b6124da9190614e9a565b6124e46011613045565b6124ee9190614db9565b61225c565b15612507576125026011613053565b6124bd565b61253e81604b8061138861251b9190614e9a565b6125259190614e9a565b61252f6011613045565b6125399190614db9565b613069565b6125486011613053565b50565b60006125568261225c565b612595576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161258c90614a47565b60405180910390fd5b60006125a08361155c565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061260f57508373ffffffffffffffffffffffffffffffffffffffff166125f784610b99565b73ffffffffffffffffffffffffffffffffffffffff16145b80612620575061261f8185611eff565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166126498261155c565b73ffffffffffffffffffffffffffffffffffffffff161461269f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161269690614b67565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561270f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161270690614a07565b60405180910390fd5b61271a838383613087565b6127256000826122d0565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546127759190614e9a565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546127cc9190614db9565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b8066d529ae9e8600006128989190614e40565b3410156128da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128d190614ba7565b60405180910390fd5b602381111561291e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612915906149e7565b60405180910390fd5b60005b818110156129455761293283612426565b808061293d9061502d565b915050612921565b505050565b61295482826117ee565b612a27576001600b600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506129cc6122c8565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b612a3582826117ee565b15612b09576000600b600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550612aae6122c8565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b600047905060008111612b55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b4c90614947565b60405180910390fd5b6000600a600783612b669190614e40565b612b709190614e0f565b905060008183612b809190614e9a565b9050600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050612be257600080fd5b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f19350505050612c4257600080fd5b505050565b6000612c528261155c565b9050612c6081600084613087565b612c6b6000836122d0565b6001600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612cbb9190614e9a565b925050819055506003600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b60008082905060005b8551811015612e00576000868281518110612d7f57612d7e61519b565b5b60200260200101519050808311612dc0578281604051602001612da3929190614798565b604051602081830303815290604052805190602001209250612dec565b8083604051602001612dd3929190614798565b6040516020818303038152906040528051906020012092505b508080612df89061502d565b915050612d61565b508381149150509392505050565b612e19848484612629565b612e2584848484613097565b612e64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e5b90614987565b60405180910390fd5b50505050565b60606000821415612eb2576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612fc6565b600082905060005b60008214612ee4578080612ecd9061502d565b915050600a82612edd9190614e0f565b9150612eba565b60008167ffffffffffffffff811115612f0057612eff6151ca565b5b6040519080825280601f01601f191660200182016040528015612f325781602001600182028036833780820191505090505b5090505b60008514612fbf57600182612f4b9190614e9a565b9150600a85612f5a91906150ae565b6030612f669190614db9565b60f81b818381518110612f7c57612f7b61519b565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612fb89190614e0f565b9450612f36565b8093505050505b919050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061303e575061303d8261322e565b5b9050919050565b600081600001549050919050565b6001816000016000828254019250508190555050565b613083828260405180602001604052806000815250613310565b5050565b61309283838361336b565b505050565b60006130b88473ffffffffffffffffffffffffffffffffffffffff1661347f565b15613221578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026130e16122c8565b8786866040518563ffffffff1660e01b81526004016131039493929190614863565b602060405180830381600087803b15801561311d57600080fd5b505af192505050801561314e57506040513d601f19601f8201168201806040525081019061314b919061409d565b60015b6131d1573d806000811461317e576040519150601f19603f3d011682016040523d82523d6000602084013e613183565b606091505b506000815114156131c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131c090614987565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613226565b600190505b949350505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806132f957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80613309575061330882613492565b5b9050919050565b61331a83836134fc565b6133276000848484613097565b613366576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161335d90614987565b60405180910390fd5b505050565b6133768383836136ca565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156133b9576133b4816136cf565b6133f8565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146133f7576133f68382613718565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561343b5761343681613885565b61347a565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614613479576134788282613956565b5b5b505050565b600080823b905060008111915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561356c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161356390614b07565b60405180910390fd5b6135758161225c565b156135b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135ac906149a7565b60405180910390fd5b6135c160008383613087565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546136119190614db9565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b505050565b600980549050600a600083815260200190815260200160002081905550600981908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016137258461169c565b61372f9190614e9a565b9050600060086000848152602001908152602001600020549050818114613814576000600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816008600083815260200190815260200160002081905550505b6008600084815260200190815260200160002060009055600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016009805490506138999190614e9a565b90506000600a60008481526020019081526020016000205490506000600983815481106138c9576138c861519b565b5b9060005260206000200154905080600983815481106138eb576138ea61519b565b5b906000526020600020018190555081600a600083815260200190815260200160002081905550600a600085815260200190815260200160002060009055600980548061393a5761393961516c565b5b6001900381819060005260206000200160009055905550505050565b60006139618361169c565b905081600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806008600084815260200190815260200160002081905550505050565b8280546139e190614fca565b90600052602060002090601f016020900481019282613a035760008555613a4a565b82601f10613a1c57805160ff1916838001178555613a4a565b82800160010185558215613a4a579182015b82811115613a49578251825591602001919060010190613a2e565b5b509050613a579190613a5b565b5090565b5b80821115613a74576000816000905550600101613a5c565b5090565b6000613a8b613a8684614ca7565b614c82565b90508083825260208201905082856020860282011115613aae57613aad615203565b5b60005b85811015613ade5781613ac48882613bdc565b845260208401935060208301925050600181019050613ab1565b5050509392505050565b6000613afb613af684614cd3565b614c82565b90508083825260208201905082856020860282011115613b1e57613b1d615203565b5b60005b85811015613b4e5781613b348882613d53565b845260208401935060208301925050600181019050613b21565b5050509392505050565b6000613b6b613b6684614cff565b614c82565b905082815260208101848484011115613b8757613b86615208565b5b613b92848285614f5e565b509392505050565b6000613bad613ba884614d30565b614c82565b905082815260208101848484011115613bc957613bc8615208565b5b613bd4848285614f5e565b509392505050565b600081359050613beb8161593d565b92915050565b600082601f830112613c0657613c056151fe565b5b8135613c16848260208601613a78565b91505092915050565b60008083601f840112613c3557613c346151fe565b5b8235905067ffffffffffffffff811115613c5257613c516151f9565b5b602083019150836020820283011115613c6e57613c6d615203565b5b9250929050565b600082601f830112613c8a57613c896151fe565b5b8135613c9a848260208601613ae8565b91505092915050565b600081359050613cb281615954565b92915050565b600081359050613cc78161596b565b92915050565b600081359050613cdc81615982565b92915050565b600081519050613cf181615982565b92915050565b600082601f830112613d0c57613d0b6151fe565b5b8135613d1c848260208601613b58565b91505092915050565b600082601f830112613d3a57613d396151fe565b5b8135613d4a848260208601613b9a565b91505092915050565b600081359050613d6281615999565b92915050565b600060208284031215613d7e57613d7d615212565b5b6000613d8c84828501613bdc565b91505092915050565b60008060408385031215613dac57613dab615212565b5b6000613dba85828601613bdc565b9250506020613dcb85828601613bdc565b9150509250929050565b600080600060608486031215613dee57613ded615212565b5b6000613dfc86828701613bdc565b9350506020613e0d86828701613bdc565b9250506040613e1e86828701613d53565b9150509250925092565b60008060008060808587031215613e4257613e41615212565b5b6000613e5087828801613bdc565b9450506020613e6187828801613bdc565b9350506040613e7287828801613d53565b925050606085013567ffffffffffffffff811115613e9357613e9261520d565b5b613e9f87828801613cf7565b91505092959194509250565b600080600060408486031215613ec457613ec3615212565b5b6000613ed286828701613bdc565b935050602084013567ffffffffffffffff811115613ef357613ef261520d565b5b613eff86828701613c1f565b92509250509250925092565b60008060408385031215613f2257613f21615212565b5b6000613f3085828601613bdc565b9250506020613f4185828601613ca3565b9150509250929050565b60008060408385031215613f6257613f61615212565b5b6000613f7085828601613bdc565b9250506020613f8185828601613d53565b9150509250929050565b60008060408385031215613fa257613fa1615212565b5b600083013567ffffffffffffffff811115613fc057613fbf61520d565b5b613fcc85828601613bf1565b925050602083013567ffffffffffffffff811115613fed57613fec61520d565b5b613ff985828601613c75565b9150509250929050565b60006020828403121561401957614018615212565b5b600061402784828501613cb8565b91505092915050565b6000806040838503121561404757614046615212565b5b600061405585828601613cb8565b925050602061406685828601613bdc565b9150509250929050565b60006020828403121561408657614085615212565b5b600061409484828501613ccd565b91505092915050565b6000602082840312156140b3576140b2615212565b5b60006140c184828501613ce2565b91505092915050565b6000602082840312156140e0576140df615212565b5b600082013567ffffffffffffffff8111156140fe576140fd61520d565b5b61410a84828501613d25565b91505092915050565b60006020828403121561412957614128615212565b5b600061413784828501613d53565b91505092915050565b60008060006040848603121561415957614158615212565b5b600061416786828701613d53565b935050602084013567ffffffffffffffff8111156141885761418761520d565b5b61419486828701613c1f565b92509250509250925092565b6141a981614ee0565b82525050565b6141b881614ece565b82525050565b6141cf6141ca82614ece565b615076565b82525050565b6141de81614ef2565b82525050565b6141ed81614efe565b82525050565b6142046141ff82614efe565b615088565b82525050565b600061421582614d76565b61421f8185614d8c565b935061422f818560208601614f6d565b61423881615217565b840191505092915050565b600061424e82614d81565b6142588185614d9d565b9350614268818560208601614f6d565b61427181615217565b840191505092915050565b600061428782614d81565b6142918185614dae565b93506142a1818560208601614f6d565b80840191505092915050565b600081546142ba81614fca565b6142c48186614dae565b945060018216600081146142df57600181146142f057614323565b60ff19831686528186019350614323565b6142f985614d61565b60005b8381101561431b578154818901526001820191506020810190506142fc565b838801955050505b50505092915050565b6000614339601783614d9d565b915061434482615235565b602082019050919050565b600061435c602083614d9d565b91506143678261525e565b602082019050919050565b600061437f601383614d9d565b915061438a82615287565b602082019050919050565b60006143a2602b83614d9d565b91506143ad826152b0565b604082019050919050565b60006143c5603283614d9d565b91506143d0826152ff565b604082019050919050565b60006143e8601c83614d9d565b91506143f38261534e565b602082019050919050565b600061440b600d83614d9d565b915061441682615377565b602082019050919050565b600061442e600583614d9d565b9150614439826153a0565b602082019050919050565b6000614451602483614d9d565b915061445c826153c9565b604082019050919050565b6000614474601983614d9d565b915061447f82615418565b602082019050919050565b6000614497602c83614d9d565b91506144a282615441565b604082019050919050565b60006144ba601083614d9d565b91506144c582615490565b602082019050919050565b60006144dd603883614d9d565b91506144e8826154b9565b604082019050919050565b6000614500602a83614d9d565b915061450b82615508565b604082019050919050565b6000614523602983614d9d565b915061452e82615557565b604082019050919050565b6000614546601883614d9d565b9150614551826155a6565b602082019050919050565b6000614569602083614d9d565b9150614574826155cf565b602082019050919050565b600061458c602c83614d9d565b9150614597826155f8565b604082019050919050565b60006145af600583614dae565b91506145ba82615647565b600582019050919050565b60006145d2601983614d9d565b91506145dd82615670565b602082019050919050565b60006145f5602983614d9d565b915061460082615699565b604082019050919050565b6000614618602f83614d9d565b9150614623826156e8565b604082019050919050565b600061463b600f83614d9d565b915061464682615737565b602082019050919050565b600061465e602183614d9d565b915061466982615760565b604082019050919050565b6000614681603183614d9d565b915061468c826157af565b604082019050919050565b60006146a4602c83614d9d565b91506146af826157fe565b604082019050919050565b60006146c7601783614dae565b91506146d28261584d565b601782019050919050565b60006146ea603083614d9d565b91506146f582615876565b604082019050919050565b600061470d601183614dae565b9150614718826158c5565b601182019050919050565b6000614730602f83614d9d565b915061473b826158ee565b604082019050919050565b61474f81614f54565b82525050565b61476661476182614f54565b6150a4565b82525050565b600061477882856141be565b6014820191506147888284614755565b6020820191508190509392505050565b60006147a482856141f3565b6020820191506147b482846141f3565b6020820191508190509392505050565b60006147d082856142ad565b91506147dc828461427c565b91506147e7826145a2565b91508190509392505050565b60006147fe826146ba565b915061480a828561427c565b915061481582614700565b9150614821828461427c565b91508190509392505050565b600060208201905061484260008301846141af565b92915050565b600060208201905061485d60008301846141a0565b92915050565b600060808201905061487860008301876141af565b61488560208301866141af565b6148926040830185614746565b81810360608301526148a4818461420a565b905095945050505050565b60006020820190506148c460008301846141d5565b92915050565b60006020820190506148df60008301846141e4565b92915050565b600060208201905081810360008301526148ff8184614243565b905092915050565b600060208201905081810360008301526149208161432c565b9050919050565b600060208201905081810360008301526149408161434f565b9050919050565b6000602082019050818103600083015261496081614372565b9050919050565b6000602082019050818103600083015261498081614395565b9050919050565b600060208201905081810360008301526149a0816143b8565b9050919050565b600060208201905081810360008301526149c0816143db565b9050919050565b600060208201905081810360008301526149e0816143fe565b9050919050565b60006020820190508181036000830152614a0081614421565b9050919050565b60006020820190508181036000830152614a2081614444565b9050919050565b60006020820190508181036000830152614a4081614467565b9050919050565b60006020820190508181036000830152614a608161448a565b9050919050565b60006020820190508181036000830152614a80816144ad565b9050919050565b60006020820190508181036000830152614aa0816144d0565b9050919050565b60006020820190508181036000830152614ac0816144f3565b9050919050565b60006020820190508181036000830152614ae081614516565b9050919050565b60006020820190508181036000830152614b0081614539565b9050919050565b60006020820190508181036000830152614b208161455c565b9050919050565b60006020820190508181036000830152614b408161457f565b9050919050565b60006020820190508181036000830152614b60816145c5565b9050919050565b60006020820190508181036000830152614b80816145e8565b9050919050565b60006020820190508181036000830152614ba08161460b565b9050919050565b60006020820190508181036000830152614bc08161462e565b9050919050565b60006020820190508181036000830152614be081614651565b9050919050565b60006020820190508181036000830152614c0081614674565b9050919050565b60006020820190508181036000830152614c2081614697565b9050919050565b60006020820190508181036000830152614c40816146dd565b9050919050565b60006020820190508181036000830152614c6081614723565b9050919050565b6000602082019050614c7c6000830184614746565b92915050565b6000614c8c614c9d565b9050614c988282614ffc565b919050565b6000604051905090565b600067ffffffffffffffff821115614cc257614cc16151ca565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614cee57614ced6151ca565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614d1a57614d196151ca565b5b614d2382615217565b9050602081019050919050565b600067ffffffffffffffff821115614d4b57614d4a6151ca565b5b614d5482615217565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614dc482614f54565b9150614dcf83614f54565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614e0457614e036150df565b5b828201905092915050565b6000614e1a82614f54565b9150614e2583614f54565b925082614e3557614e3461510e565b5b828204905092915050565b6000614e4b82614f54565b9150614e5683614f54565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614e8f57614e8e6150df565b5b828202905092915050565b6000614ea582614f54565b9150614eb083614f54565b925082821015614ec357614ec26150df565b5b828203905092915050565b6000614ed982614f34565b9050919050565b6000614eeb82614f34565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614f8b578082015181840152602081019050614f70565b83811115614f9a576000848401525b50505050565b6000614fab82614f54565b91506000821415614fbf57614fbe6150df565b5b600182039050919050565b60006002820490506001821680614fe257607f821691505b60208210811415614ff657614ff561513d565b5b50919050565b61500582615217565b810181811067ffffffffffffffff82111715615024576150236151ca565b5b80604052505050565b600061503882614f54565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561506b5761506a6150df565b5b600182019050919050565b600061508182615092565b9050919050565b6000819050919050565b600061509d82615228565b9050919050565b6000819050919050565b60006150b982614f54565b91506150c483614f54565b9250826150d4576150d361510e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4d696e74696e67206e6f74207965742073746172746564000000000000000000600082015250565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f4e6f7468696e6720746f20776974686472617700000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4e6f207265656e7472616e637900000000000000000000000000000000000000600082015250565b7f6368696c6c000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f53616c65206e6f74207374617274656400000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f596f7520617265206e6f74207768697465206c69737465640000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f596f7520646f6e27742068617665207065726d697373696f6e00000000000000600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f53656e64206d6f72652065746865720000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b7f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656400000000000000000000000000000000602082015250565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b61594681614ece565b811461595157600080fd5b50565b61595d81614ef2565b811461596857600080fd5b50565b61597481614efe565b811461597f57600080fd5b50565b61598b81614f08565b811461599657600080fd5b50565b6159a281614f54565b81146159ad57600080fd5b5056fea2646970667358221220e069ee6ba12cd0527261abe37aa61b3eb51c419a295d046269d6abf2a2eafee164736f6c634300080700330000000000000000000000008a56942dacbc88a09401e800d8e3bc5bdaf8e22f72c45e420aedc471bdc7fcd01aa230e03e2467a80df0b75a4df4c6bf543d2c18
Deployed Bytecode
0x6080604052600436106102ae5760003560e01c806355f804b311610175578063a217fddf116100dc578063c87b56dd11610095578063d547741f1161006f578063d547741f14610a3b578063d663907814610a64578063e985e9c514610a8d578063f412f5b614610aca576102ae565b8063c87b56dd146109b7578063d1a109e3146109f4578063d2cab05614610a1f576102ae565b8063a217fddf146108cf578063a22cb465146108fa578063b2a422a014610923578063b53c99c11461094e578063b66a0e5d14610977578063b88d4fde1461098e576102ae565b80637f19c4121161012e5780637f19c412146107cf578063801e6646146107e657806391d148541461081157806395d89b411461084e57806399d5a3e6146108795780639c393847146108a4576102ae565b806355f804b3146106995780635a23dd99146106c25780636352211e146106ff5780636c0360eb1461073c57806370a082311461076757806375b238fc146107a4576102ae565b8063248a9ca311610219578063380d831b116101d2578063380d831b146105b1578063386bfc98146105c85780633ccfd60b146105f357806342842e0e1461060a57806342966c68146106335780634f6ccce71461065c576102ae565b8063248a9ca31461049e578063248b71fc146104db5780632f2ff15d146104f75780632f745c591461052057806332cb6b0c1461055d57806336568abe14610588576102ae565b806314c7763b1161026b57806314c7763b146103a257806314dbe380146103cd57806318160ddd146103f85780631b60efb01461042357806321ff99701461044c57806323b872dd14610475576102ae565b806301ffc9a7146102b357806306fdde03146102f0578063081812fc1461031b578063095ea7b3146103585780630d4f9418146103815780631249c58b14610398575b600080fd5b3480156102bf57600080fd5b506102da60048036038101906102d59190614070565b610af5565b6040516102e791906148af565b60405180910390f35b3480156102fc57600080fd5b50610305610b07565b60405161031291906148e5565b60405180910390f35b34801561032757600080fd5b50610342600480360381019061033d9190614113565b610b99565b60405161034f919061482d565b60405180910390f35b34801561036457600080fd5b5061037f600480360381019061037a9190613f4b565b610c1e565b005b34801561038d57600080fd5b50610396610d36565b005b6103a0610d86565b005b3480156103ae57600080fd5b506103b7610eb0565b6040516103c49190614c67565b60405180910390f35b3480156103d957600080fd5b506103e2610eb5565b6040516103ef91906148af565b60405180910390f35b34801561040457600080fd5b5061040d610ec8565b60405161041a9190614c67565b60405180910390f35b34801561042f57600080fd5b5061044a60048036038101906104459190613f4b565b610ed5565b005b34801561045857600080fd5b50610473600480360381019061046e9190614003565b610f78565b005b34801561048157600080fd5b5061049c60048036038101906104979190613dd5565b610fb5565b005b3480156104aa57600080fd5b506104c560048036038101906104c09190614003565b611015565b6040516104d291906148ca565b60405180910390f35b6104f560048036038101906104f09190613f4b565b611035565b005b34801561050357600080fd5b5061051e60048036038101906105199190614030565b611118565b005b34801561052c57600080fd5b5061054760048036038101906105429190613f4b565b611141565b6040516105549190614c67565b60405180910390f35b34801561056957600080fd5b506105726111e6565b60405161057f9190614c67565b60405180910390f35b34801561059457600080fd5b506105af60048036038101906105aa9190614030565b6111ec565b005b3480156105bd57600080fd5b506105c661126f565b005b3480156105d457600080fd5b506105dd6112bf565b6040516105ea91906148ca565b60405180910390f35b3480156105ff57600080fd5b506106086112c5565b005b34801561061657600080fd5b50610631600480360381019061062c9190613dd5565b611388565b005b34801561063f57600080fd5b5061065a60048036038101906106559190614113565b6113a8565b005b34801561066857600080fd5b50610683600480360381019061067e9190614113565b611404565b6040516106909190614c67565b60405180910390f35b3480156106a557600080fd5b506106c060048036038101906106bb91906140ca565b611475565b005b3480156106ce57600080fd5b506106e960048036038101906106e49190613eab565b6114c2565b6040516106f691906148af565b60405180910390f35b34801561070b57600080fd5b5061072660048036038101906107219190614113565b61155c565b604051610733919061482d565b60405180910390f35b34801561074857600080fd5b5061075161160e565b60405161075e91906148e5565b60405180910390f35b34801561077357600080fd5b5061078e60048036038101906107899190613d68565b61169c565b60405161079b9190614c67565b60405180910390f35b3480156107b057600080fd5b506107b9611754565b6040516107c691906148ca565b60405180910390f35b3480156107db57600080fd5b506107e4611778565b005b3480156107f257600080fd5b506107fb6117c8565b6040516108089190614848565b60405180910390f35b34801561081d57600080fd5b5061083860048036038101906108339190614030565b6117ee565b60405161084591906148af565b60405180910390f35b34801561085a57600080fd5b50610863611859565b60405161087091906148e5565b60405180910390f35b34801561088557600080fd5b5061088e6118eb565b60405161089b9190614848565b60405180910390f35b3480156108b057600080fd5b506108b9611911565b6040516108c69190614c67565b60405180910390f35b3480156108db57600080fd5b506108e461191c565b6040516108f191906148ca565b60405180910390f35b34801561090657600080fd5b50610921600480360381019061091c9190613f0b565b611923565b005b34801561092f57600080fd5b50610938611aa4565b6040516109459190614c67565b60405180910390f35b34801561095a57600080fd5b5061097560048036038101906109709190614113565b611aa9565b005b34801561098357600080fd5b5061098c611afe565b005b34801561099a57600080fd5b506109b560048036038101906109b09190613e28565b611b4e565b005b3480156109c357600080fd5b506109de60048036038101906109d99190614113565b611bb0565b6040516109eb91906148e5565b60405180910390f35b348015610a0057600080fd5b50610a09611c51565b604051610a169190614c67565b60405180910390f35b610a396004803603810190610a349190614140565b611c56565b005b348015610a4757600080fd5b50610a626004803603810190610a5d9190614030565b611df0565b005b348015610a7057600080fd5b50610a8b6004803603810190610a869190613f8b565b611e19565b005b348015610a9957600080fd5b50610ab46004803603810190610aaf9190613d95565b611eff565b604051610ac191906148af565b60405180910390f35b348015610ad657600080fd5b50610adf611f93565b604051610aec91906148af565b60405180910390f35b6000610b00826121e2565b9050919050565b606060018054610b1690614fca565b80601f0160208091040260200160405190810160405280929190818152602001828054610b4290614fca565b8015610b8f5780601f10610b6457610100808354040283529160200191610b8f565b820191906000526020600020905b815481529060010190602001808311610b7257829003601f168201915b5050505050905090565b6000610ba48261225c565b610be3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bda90614b27565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c298261155c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9190614bc7565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610cb96122c8565b73ffffffffffffffffffffffffffffffffffffffff161480610ce85750610ce781610ce26122c8565b611eff565b5b610d27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1e90614a87565b60405180910390fd5b610d3183836122d0565b505050565b7fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c21775610d6881610d636122c8565b612389565b6000600f60006101000a81548160ff02191690831515021790555050565b601260009054906101000a900460ff1615610dd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dcd906149c7565b60405180910390fd5b6001601260006101000a81548160ff021916908315150217905550600f60019054906101000a900460ff16610e40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3790614a67565b60405180910390fd5b66d529ae9e860000341015610e8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8190614ba7565b60405180910390fd5b610e9333612426565b6000601260006101000a81548160ff021916908315150217905550565b602381565b600f60009054906101000a900460ff1681565b6000600980549050905090565b7fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c21775610f0781610f026122c8565b612389565b600a821115610f4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f42906149e7565b60405180910390fd5b60005b82811015610f7257610f5f8461249b565b8080610f6a9061502d565b915050610f4e565b50505050565b7fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c21775610faa81610fa56122c8565b612389565b816000819055505050565b610fc6610fc06122c8565b8261254b565b611005576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffc90614be7565b60405180910390fd5b611010838383612629565b505050565b6000600b6000838152602001908152602001600020600101549050919050565b601260009054906101000a900460ff1615611085576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107c906149c7565b60405180910390fd5b6001601260006101000a81548160ff021916908315150217905550600f60019054906101000a900460ff166110ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e690614a67565b60405180910390fd5b6110f98282612885565b6000601260006101000a81548160ff0219169083151502179055505050565b61112182611015565b6111328161112d6122c8565b612389565b61113c838361294a565b505050565b600061114c8361169c565b821061118d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118490614967565b60405180910390fd5b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b61138881565b6111f46122c8565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614611261576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161125890614c47565b60405180910390fd5b61126b8282612a2b565b5050565b7fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c217756112a18161129c6122c8565b612389565b6000600f60016101000a81548160ff02191690831515021790555050565b60005481565b7fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c217756112f7816112f26122c8565b612389565b601260009054906101000a900460ff1615611347576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133e906149c7565b60405180910390fd5b6001601260006101000a81548160ff02191690831515021790555061136a612b0d565b6000601260006101000a81548160ff02191690831515021790555050565b6113a383838360405180602001604052806000815250611b4e565b505050565b6113b96113b36122c8565b8261254b565b6113f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ef90614c27565b60405180910390fd5b61140181612c47565b50565b600061140e610ec8565b821061144f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144690614c07565b60405180910390fd5b600982815481106114635761146261519b565b5b90600052602060002001549050919050565b7fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c217756114a7816114a26122c8565b612389565b81600e90805190602001906114bd9291906139d5565b505050565b6000808460016040516020016114d992919061476c565b60405160208183030381529060405280519060200120905061153f848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f8201169050808301925050505050505060005483612d58565b61154d576000915081611553565b60019150815b50509392505050565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611605576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115fc90614ac7565b60405180910390fd5b80915050919050565b600e805461161b90614fca565b80601f016020809104026020016040519081016040528092919081815260200182805461164790614fca565b80156116945780601f1061166957610100808354040283529160200191611694565b820191906000526020600020905b81548152906001019060200180831161167757829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561170d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170490614aa7565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b7fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c2177581565b7fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c217756117aa816117a56122c8565b612389565b6001600f60006101000a81548160ff02191690831515021790555050565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600b600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60606002805461186890614fca565b80601f016020809104026020016040519081016040528092919081815260200182805461189490614fca565b80156118e15780601f106118b6576101008083540402835291602001916118e1565b820191906000526020600020905b8154815290600101906020018083116118c457829003601f168201915b5050505050905090565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b66d529ae9e86000081565b6000801b81565b61192b6122c8565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611999576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199090614a27565b60405180910390fd5b80600660006119a66122c8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a536122c8565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a9891906148af565b60405180910390a35050565b604b81565b611ab3338261254b565b611af2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae990614b47565b60405180910390fd5b611afb81612c47565b50565b7fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c21775611b3081611b2b6122c8565b612389565b6001600f60016101000a81548160ff02191690831515021790555050565b611b5f611b596122c8565b8361254b565b611b9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9590614be7565b60405180910390fd5b611baa84848484612e0e565b50505050565b6060611bbb8261225c565b611bfa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf190614b87565b60405180910390fd5b6000600e8054611c0990614fca565b905011611c1e57611c1982612e6a565b611c4a565b600e611c2983612e6a565b604051602001611c3a9291906147c4565b6040516020818303038152906040525b9050919050565b604b81565b601260009054906101000a900460ff1615611ca6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9d906149c7565b60405180910390fd5b6001601260006101000a81548160ff021916908315150217905550600f60009054906101000a900460ff16611d10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d0790614907565b60405180910390fd5b611d1b3383836114c2565b611d5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5190614ae7565b60405180910390fd5b8266d529ae9e860000611d6d9190614e40565b341015611daf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da690614ba7565b60405180910390fd5b60018311611dc557611dc033612426565b611dd0565b611dcf3384612885565b5b6000601260006101000a81548160ff021916908315150217905550505050565b611df982611015565b611e0a81611e056122c8565b612389565b611e148383612a2b565b505050565b7fa49807205ce4d355092ef5a8a18f56e8913cf4a201fbe287825b095693c21775611e4b81611e466122c8565b612389565b8151835114611e5957600080fd5b60005b8351811015611ef957600a838281518110611e7a57611e7961519b565b5b60200260200101511115611ec3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eba906149e7565b60405180910390fd5b611ee6848281518110611ed957611ed861519b565b5b602002602001015161249b565b8080611ef19061502d565b915050611e5c565b50505050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600f60019054906101000a900460ff1681565b606060006002836002611fb99190614e40565b611fc39190614db9565b67ffffffffffffffff811115611fdc57611fdb6151ca565b5b6040519080825280601f01601f19166020018201604052801561200e5781602001600182028036833780820191505090505b5090507f3000000000000000000000000000000000000000000000000000000000000000816000815181106120465761204561519b565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f7800000000000000000000000000000000000000000000000000000000000000816001815181106120aa576120a961519b565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600060018460026120ea9190614e40565b6120f49190614db9565b90505b6001811115612194577f3031323334353637383961626364656600000000000000000000000000000000600f8616601081106121365761213561519b565b5b1a60f81b82828151811061214d5761214c61519b565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c94508061218d90614fa0565b90506120f7565b50600084146121d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121cf90614927565b60405180910390fd5b8091505092915050565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612255575061225482612fcb565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166123438361155c565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b61239382826117ee565b612422576123b88173ffffffffffffffffffffffffffffffffffffffff166014611fa6565b6123c68360001c6020611fa6565b6040516020016123d79291906147f3565b6040516020818303038152906040526040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241991906148e5565b60405180910390fd5b5050565b604b806113886124369190614e9a565b6124409190614e9a565b61244a6010613045565b1061245457600080fd5b5b6124676124626010613045565b61225c565b1561247b576124766010613053565b612455565b61248e816124896010613045565b613069565b6124986010613053565b50565b604b806124a89190614db9565b6124b26011613045565b106124bc57600080fd5b5b6124f3604b806113886124d09190614e9a565b6124da9190614e9a565b6124e46011613045565b6124ee9190614db9565b61225c565b15612507576125026011613053565b6124bd565b61253e81604b8061138861251b9190614e9a565b6125259190614e9a565b61252f6011613045565b6125399190614db9565b613069565b6125486011613053565b50565b60006125568261225c565b612595576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161258c90614a47565b60405180910390fd5b60006125a08361155c565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061260f57508373ffffffffffffffffffffffffffffffffffffffff166125f784610b99565b73ffffffffffffffffffffffffffffffffffffffff16145b80612620575061261f8185611eff565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166126498261155c565b73ffffffffffffffffffffffffffffffffffffffff161461269f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161269690614b67565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561270f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161270690614a07565b60405180910390fd5b61271a838383613087565b6127256000826122d0565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546127759190614e9a565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546127cc9190614db9565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b8066d529ae9e8600006128989190614e40565b3410156128da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128d190614ba7565b60405180910390fd5b602381111561291e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612915906149e7565b60405180910390fd5b60005b818110156129455761293283612426565b808061293d9061502d565b915050612921565b505050565b61295482826117ee565b612a27576001600b600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506129cc6122c8565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b612a3582826117ee565b15612b09576000600b600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550612aae6122c8565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b600047905060008111612b55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b4c90614947565b60405180910390fd5b6000600a600783612b669190614e40565b612b709190614e0f565b905060008183612b809190614e9a565b9050600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050612be257600080fd5b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f19350505050612c4257600080fd5b505050565b6000612c528261155c565b9050612c6081600084613087565b612c6b6000836122d0565b6001600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612cbb9190614e9a565b925050819055506003600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b60008082905060005b8551811015612e00576000868281518110612d7f57612d7e61519b565b5b60200260200101519050808311612dc0578281604051602001612da3929190614798565b604051602081830303815290604052805190602001209250612dec565b8083604051602001612dd3929190614798565b6040516020818303038152906040528051906020012092505b508080612df89061502d565b915050612d61565b508381149150509392505050565b612e19848484612629565b612e2584848484613097565b612e64576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e5b90614987565b60405180910390fd5b50505050565b60606000821415612eb2576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612fc6565b600082905060005b60008214612ee4578080612ecd9061502d565b915050600a82612edd9190614e0f565b9150612eba565b60008167ffffffffffffffff811115612f0057612eff6151ca565b5b6040519080825280601f01601f191660200182016040528015612f325781602001600182028036833780820191505090505b5090505b60008514612fbf57600182612f4b9190614e9a565b9150600a85612f5a91906150ae565b6030612f669190614db9565b60f81b818381518110612f7c57612f7b61519b565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612fb89190614e0f565b9450612f36565b8093505050505b919050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061303e575061303d8261322e565b5b9050919050565b600081600001549050919050565b6001816000016000828254019250508190555050565b613083828260405180602001604052806000815250613310565b5050565b61309283838361336b565b505050565b60006130b88473ffffffffffffffffffffffffffffffffffffffff1661347f565b15613221578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026130e16122c8565b8786866040518563ffffffff1660e01b81526004016131039493929190614863565b602060405180830381600087803b15801561311d57600080fd5b505af192505050801561314e57506040513d601f19601f8201168201806040525081019061314b919061409d565b60015b6131d1573d806000811461317e576040519150601f19603f3d011682016040523d82523d6000602084013e613183565b606091505b506000815114156131c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131c090614987565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613226565b600190505b949350505050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806132f957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80613309575061330882613492565b5b9050919050565b61331a83836134fc565b6133276000848484613097565b613366576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161335d90614987565b60405180910390fd5b505050565b6133768383836136ca565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156133b9576133b4816136cf565b6133f8565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146133f7576133f68382613718565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561343b5761343681613885565b61347a565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614613479576134788282613956565b5b5b505050565b600080823b905060008111915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561356c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161356390614b07565b60405180910390fd5b6135758161225c565b156135b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135ac906149a7565b60405180910390fd5b6135c160008383613087565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546136119190614db9565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b505050565b600980549050600a600083815260200190815260200160002081905550600981908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016137258461169c565b61372f9190614e9a565b9050600060086000848152602001908152602001600020549050818114613814576000600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816008600083815260200190815260200160002081905550505b6008600084815260200190815260200160002060009055600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016009805490506138999190614e9a565b90506000600a60008481526020019081526020016000205490506000600983815481106138c9576138c861519b565b5b9060005260206000200154905080600983815481106138eb576138ea61519b565b5b906000526020600020018190555081600a600083815260200190815260200160002081905550600a600085815260200190815260200160002060009055600980548061393a5761393961516c565b5b6001900381819060005260206000200160009055905550505050565b60006139618361169c565b905081600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806008600084815260200190815260200160002081905550505050565b8280546139e190614fca565b90600052602060002090601f016020900481019282613a035760008555613a4a565b82601f10613a1c57805160ff1916838001178555613a4a565b82800160010185558215613a4a579182015b82811115613a49578251825591602001919060010190613a2e565b5b509050613a579190613a5b565b5090565b5b80821115613a74576000816000905550600101613a5c565b5090565b6000613a8b613a8684614ca7565b614c82565b90508083825260208201905082856020860282011115613aae57613aad615203565b5b60005b85811015613ade5781613ac48882613bdc565b845260208401935060208301925050600181019050613ab1565b5050509392505050565b6000613afb613af684614cd3565b614c82565b90508083825260208201905082856020860282011115613b1e57613b1d615203565b5b60005b85811015613b4e5781613b348882613d53565b845260208401935060208301925050600181019050613b21565b5050509392505050565b6000613b6b613b6684614cff565b614c82565b905082815260208101848484011115613b8757613b86615208565b5b613b92848285614f5e565b509392505050565b6000613bad613ba884614d30565b614c82565b905082815260208101848484011115613bc957613bc8615208565b5b613bd4848285614f5e565b509392505050565b600081359050613beb8161593d565b92915050565b600082601f830112613c0657613c056151fe565b5b8135613c16848260208601613a78565b91505092915050565b60008083601f840112613c3557613c346151fe565b5b8235905067ffffffffffffffff811115613c5257613c516151f9565b5b602083019150836020820283011115613c6e57613c6d615203565b5b9250929050565b600082601f830112613c8a57613c896151fe565b5b8135613c9a848260208601613ae8565b91505092915050565b600081359050613cb281615954565b92915050565b600081359050613cc78161596b565b92915050565b600081359050613cdc81615982565b92915050565b600081519050613cf181615982565b92915050565b600082601f830112613d0c57613d0b6151fe565b5b8135613d1c848260208601613b58565b91505092915050565b600082601f830112613d3a57613d396151fe565b5b8135613d4a848260208601613b9a565b91505092915050565b600081359050613d6281615999565b92915050565b600060208284031215613d7e57613d7d615212565b5b6000613d8c84828501613bdc565b91505092915050565b60008060408385031215613dac57613dab615212565b5b6000613dba85828601613bdc565b9250506020613dcb85828601613bdc565b9150509250929050565b600080600060608486031215613dee57613ded615212565b5b6000613dfc86828701613bdc565b9350506020613e0d86828701613bdc565b9250506040613e1e86828701613d53565b9150509250925092565b60008060008060808587031215613e4257613e41615212565b5b6000613e5087828801613bdc565b9450506020613e6187828801613bdc565b9350506040613e7287828801613d53565b925050606085013567ffffffffffffffff811115613e9357613e9261520d565b5b613e9f87828801613cf7565b91505092959194509250565b600080600060408486031215613ec457613ec3615212565b5b6000613ed286828701613bdc565b935050602084013567ffffffffffffffff811115613ef357613ef261520d565b5b613eff86828701613c1f565b92509250509250925092565b60008060408385031215613f2257613f21615212565b5b6000613f3085828601613bdc565b9250506020613f4185828601613ca3565b9150509250929050565b60008060408385031215613f6257613f61615212565b5b6000613f7085828601613bdc565b9250506020613f8185828601613d53565b9150509250929050565b60008060408385031215613fa257613fa1615212565b5b600083013567ffffffffffffffff811115613fc057613fbf61520d565b5b613fcc85828601613bf1565b925050602083013567ffffffffffffffff811115613fed57613fec61520d565b5b613ff985828601613c75565b9150509250929050565b60006020828403121561401957614018615212565b5b600061402784828501613cb8565b91505092915050565b6000806040838503121561404757614046615212565b5b600061405585828601613cb8565b925050602061406685828601613bdc565b9150509250929050565b60006020828403121561408657614085615212565b5b600061409484828501613ccd565b91505092915050565b6000602082840312156140b3576140b2615212565b5b60006140c184828501613ce2565b91505092915050565b6000602082840312156140e0576140df615212565b5b600082013567ffffffffffffffff8111156140fe576140fd61520d565b5b61410a84828501613d25565b91505092915050565b60006020828403121561412957614128615212565b5b600061413784828501613d53565b91505092915050565b60008060006040848603121561415957614158615212565b5b600061416786828701613d53565b935050602084013567ffffffffffffffff8111156141885761418761520d565b5b61419486828701613c1f565b92509250509250925092565b6141a981614ee0565b82525050565b6141b881614ece565b82525050565b6141cf6141ca82614ece565b615076565b82525050565b6141de81614ef2565b82525050565b6141ed81614efe565b82525050565b6142046141ff82614efe565b615088565b82525050565b600061421582614d76565b61421f8185614d8c565b935061422f818560208601614f6d565b61423881615217565b840191505092915050565b600061424e82614d81565b6142588185614d9d565b9350614268818560208601614f6d565b61427181615217565b840191505092915050565b600061428782614d81565b6142918185614dae565b93506142a1818560208601614f6d565b80840191505092915050565b600081546142ba81614fca565b6142c48186614dae565b945060018216600081146142df57600181146142f057614323565b60ff19831686528186019350614323565b6142f985614d61565b60005b8381101561431b578154818901526001820191506020810190506142fc565b838801955050505b50505092915050565b6000614339601783614d9d565b915061434482615235565b602082019050919050565b600061435c602083614d9d565b91506143678261525e565b602082019050919050565b600061437f601383614d9d565b915061438a82615287565b602082019050919050565b60006143a2602b83614d9d565b91506143ad826152b0565b604082019050919050565b60006143c5603283614d9d565b91506143d0826152ff565b604082019050919050565b60006143e8601c83614d9d565b91506143f38261534e565b602082019050919050565b600061440b600d83614d9d565b915061441682615377565b602082019050919050565b600061442e600583614d9d565b9150614439826153a0565b602082019050919050565b6000614451602483614d9d565b915061445c826153c9565b604082019050919050565b6000614474601983614d9d565b915061447f82615418565b602082019050919050565b6000614497602c83614d9d565b91506144a282615441565b604082019050919050565b60006144ba601083614d9d565b91506144c582615490565b602082019050919050565b60006144dd603883614d9d565b91506144e8826154b9565b604082019050919050565b6000614500602a83614d9d565b915061450b82615508565b604082019050919050565b6000614523602983614d9d565b915061452e82615557565b604082019050919050565b6000614546601883614d9d565b9150614551826155a6565b602082019050919050565b6000614569602083614d9d565b9150614574826155cf565b602082019050919050565b600061458c602c83614d9d565b9150614597826155f8565b604082019050919050565b60006145af600583614dae565b91506145ba82615647565b600582019050919050565b60006145d2601983614d9d565b91506145dd82615670565b602082019050919050565b60006145f5602983614d9d565b915061460082615699565b604082019050919050565b6000614618602f83614d9d565b9150614623826156e8565b604082019050919050565b600061463b600f83614d9d565b915061464682615737565b602082019050919050565b600061465e602183614d9d565b915061466982615760565b604082019050919050565b6000614681603183614d9d565b915061468c826157af565b604082019050919050565b60006146a4602c83614d9d565b91506146af826157fe565b604082019050919050565b60006146c7601783614dae565b91506146d28261584d565b601782019050919050565b60006146ea603083614d9d565b91506146f582615876565b604082019050919050565b600061470d601183614dae565b9150614718826158c5565b601182019050919050565b6000614730602f83614d9d565b915061473b826158ee565b604082019050919050565b61474f81614f54565b82525050565b61476661476182614f54565b6150a4565b82525050565b600061477882856141be565b6014820191506147888284614755565b6020820191508190509392505050565b60006147a482856141f3565b6020820191506147b482846141f3565b6020820191508190509392505050565b60006147d082856142ad565b91506147dc828461427c565b91506147e7826145a2565b91508190509392505050565b60006147fe826146ba565b915061480a828561427c565b915061481582614700565b9150614821828461427c565b91508190509392505050565b600060208201905061484260008301846141af565b92915050565b600060208201905061485d60008301846141a0565b92915050565b600060808201905061487860008301876141af565b61488560208301866141af565b6148926040830185614746565b81810360608301526148a4818461420a565b905095945050505050565b60006020820190506148c460008301846141d5565b92915050565b60006020820190506148df60008301846141e4565b92915050565b600060208201905081810360008301526148ff8184614243565b905092915050565b600060208201905081810360008301526149208161432c565b9050919050565b600060208201905081810360008301526149408161434f565b9050919050565b6000602082019050818103600083015261496081614372565b9050919050565b6000602082019050818103600083015261498081614395565b9050919050565b600060208201905081810360008301526149a0816143b8565b9050919050565b600060208201905081810360008301526149c0816143db565b9050919050565b600060208201905081810360008301526149e0816143fe565b9050919050565b60006020820190508181036000830152614a0081614421565b9050919050565b60006020820190508181036000830152614a2081614444565b9050919050565b60006020820190508181036000830152614a4081614467565b9050919050565b60006020820190508181036000830152614a608161448a565b9050919050565b60006020820190508181036000830152614a80816144ad565b9050919050565b60006020820190508181036000830152614aa0816144d0565b9050919050565b60006020820190508181036000830152614ac0816144f3565b9050919050565b60006020820190508181036000830152614ae081614516565b9050919050565b60006020820190508181036000830152614b0081614539565b9050919050565b60006020820190508181036000830152614b208161455c565b9050919050565b60006020820190508181036000830152614b408161457f565b9050919050565b60006020820190508181036000830152614b60816145c5565b9050919050565b60006020820190508181036000830152614b80816145e8565b9050919050565b60006020820190508181036000830152614ba08161460b565b9050919050565b60006020820190508181036000830152614bc08161462e565b9050919050565b60006020820190508181036000830152614be081614651565b9050919050565b60006020820190508181036000830152614c0081614674565b9050919050565b60006020820190508181036000830152614c2081614697565b9050919050565b60006020820190508181036000830152614c40816146dd565b9050919050565b60006020820190508181036000830152614c6081614723565b9050919050565b6000602082019050614c7c6000830184614746565b92915050565b6000614c8c614c9d565b9050614c988282614ffc565b919050565b6000604051905090565b600067ffffffffffffffff821115614cc257614cc16151ca565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614cee57614ced6151ca565b5b602082029050602081019050919050565b600067ffffffffffffffff821115614d1a57614d196151ca565b5b614d2382615217565b9050602081019050919050565b600067ffffffffffffffff821115614d4b57614d4a6151ca565b5b614d5482615217565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614dc482614f54565b9150614dcf83614f54565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614e0457614e036150df565b5b828201905092915050565b6000614e1a82614f54565b9150614e2583614f54565b925082614e3557614e3461510e565b5b828204905092915050565b6000614e4b82614f54565b9150614e5683614f54565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614e8f57614e8e6150df565b5b828202905092915050565b6000614ea582614f54565b9150614eb083614f54565b925082821015614ec357614ec26150df565b5b828203905092915050565b6000614ed982614f34565b9050919050565b6000614eeb82614f34565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614f8b578082015181840152602081019050614f70565b83811115614f9a576000848401525b50505050565b6000614fab82614f54565b91506000821415614fbf57614fbe6150df565b5b600182039050919050565b60006002820490506001821680614fe257607f821691505b60208210811415614ff657614ff561513d565b5b50919050565b61500582615217565b810181811067ffffffffffffffff82111715615024576150236151ca565b5b80604052505050565b600061503882614f54565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561506b5761506a6150df565b5b600182019050919050565b600061508182615092565b9050919050565b6000819050919050565b600061509d82615228565b9050919050565b6000819050919050565b60006150b982614f54565b91506150c483614f54565b9250826150d4576150d361510e565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4d696e74696e67206e6f74207965742073746172746564000000000000000000600082015250565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f4e6f7468696e6720746f20776974686472617700000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4e6f207265656e7472616e637900000000000000000000000000000000000000600082015250565b7f6368696c6c000000000000000000000000000000000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f53616c65206e6f74207374617274656400000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f596f7520617265206e6f74207768697465206c69737465640000000000000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f596f7520646f6e27742068617665207065726d697373696f6e00000000000000600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f53656e64206d6f72652065746865720000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b7f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656400000000000000000000000000000000602082015250565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b61594681614ece565b811461595157600080fd5b50565b61595d81614ef2565b811461596857600080fd5b50565b61597481614efe565b811461597f57600080fd5b50565b61598b81614f08565b811461599657600080fd5b50565b6159a281614f54565b81146159ad57600080fd5b5056fea2646970667358221220e069ee6ba12cd0527261abe37aa61b3eb51c419a295d046269d6abf2a2eafee164736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000008a56942dacbc88a09401e800d8e3bc5bdaf8e22f72c45e420aedc471bdc7fcd01aa230e03e2467a80df0b75a4df4c6bf543d2c18
-----Decoded View---------------
Arg [0] : _owner2 (address): 0x8a56942Dacbc88a09401E800d8E3bc5bdAf8e22f
Arg [1] : whitelistRoot_ (bytes32): 0x72c45e420aedc471bdc7fcd01aa230e03e2467a80df0b75a4df4c6bf543d2c18
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000008a56942dacbc88a09401e800d8e3bc5bdaf8e22f
Arg [1] : 72c45e420aedc471bdc7fcd01aa230e03e2467a80df0b75a4df4c6bf543d2c18
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.