ERC-721
Overview
Max Total Supply
5,000 WOLF
Holders
33
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
2 WOLFLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
MidniteWolfPack
Compiler Version
v0.8.4+commit.c7e474f2
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.2; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/security/Pausable.sol"; import "@openzeppelin/contracts/access/AccessControl.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Burnable.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; /** * @author The Midnite Team * @title Handles Midnite Wolf minting */ contract MidniteWolfPack is ERC721, Pausable, AccessControl, ERC721Burnable { using Counters for Counters.Counter; // Set up our user roles to be required against logic bytes32 public constant PAUSER_ROLE = keccak256("PAUSER_ROLE"); bytes32 public constant WHITELIST_ROLE = keccak256("WHITELIST_ROLE"); // Keep a track of our token count Counters.Counter private _tokenIdCounter; // Set up events to be fired event WolfMinted(address to, uint tokenId); // Map our whitelist mints mapping (address => uint) private whitelistMints; // Set our mint price to 0.075eth in wei uint MINT_PRICE = 75000000000000000; // Set our token supply limit uint TOTAL_SUPPLY = 5000; // Set our limit for per-tx tokens in public sale uint MAX_TOKENS_PER_TX = 10; // Set the total number of tokens available for WL mint uint whitelistMintCount = 1; // Parameters of the minting availability. Times are passing in the // contract constructor as absolute unix timestamps. uint public preSaleStart; uint public preSaleEnd; uint public publicSaleStart; // Set our base URI for metadata referencing string baseURI; /** * @dev Initialises our MidniteWolfPack contract. * * @param _preSaleStart Unix timestamp of when the presale starts * @param _preSaleEnd Unix timestamp of when the presale ends * @param _publicSaleStart Unix timestamp of when the public sale starts * @param _initialBaseURI Set the base URI for metadata */ constructor( uint _preSaleStart, uint _preSaleEnd, uint _publicSaleStart, string memory _initialBaseURI ) ERC721("MidniteWolfPack", "WOLF") { // Set up our user roles against our message sender _grantRole(DEFAULT_ADMIN_ROLE, msg.sender); _grantRole(PAUSER_ROLE, msg.sender); // Register our presale and public sale times preSaleStart = _preSaleStart; preSaleEnd = _preSaleEnd; publicSaleStart = _publicSaleStart; // Set initial base URI baseURI = _initialBaseURI; } /** * @dev Used in calculation of our token metadata URI * * @return string Base URI of our token metadata */ function _baseURI() internal view override returns (string memory) { return baseURI; } /** * @dev Allows our PAUSER role to prevent minting process */ function pause() public onlyRole(PAUSER_ROLE) { _pause(); } /** * @dev Allows our PAUSER role to reactivate minting process */ function unpause() public onlyRole(PAUSER_ROLE) { _unpause(); } /** * @dev Allows an address on our whitelist to mint a single token. * * @param to Address of minter. Will be recipient of token. * * Emits a {WolfMinted} event. */ function whitelistSafeMint(address to) public payable { uint tokenId = _tokenIdCounter.current(); // Check that we are within pre-sale window require(block.timestamp >= preSaleStart, "Pre-sale has not started."); require(block.timestamp <= preSaleEnd, "Pre-sale has finished."); // We only want 5000 tokens to be minted in total require(tokenId <= TOTAL_SUPPLY, "Mint has ended."); // Confirm that the user's address is a whitelisted address require(hasRole(WHITELIST_ROLE, to), "Address not found in whitelist."); // We only want to allow a set number of mints per address in the pre-sale require(whitelistMints[to] < whitelistMintCount, "Maximum pre-sale tokens reached."); // Validate that our minting price is correct require(msg.value >= MINT_PRICE, "Incorrect amount sent."); // Increment our tokenId counter _tokenIdCounter.increment(); // Mint our token and transfer it _mint(to, tokenId); // Increment our WL address mint count ++whitelistMints[to]; // Emit our minting event emit WolfMinted(to, tokenId); } /** * @dev Allows an address to mint a token. * * @param to Address of minter. Will be recipient of token. * @param amount Number of tokens requested to be minted. * * Emits a {WolfMinted} event. */ function safeMint(address to, uint amount) public payable { uint tokenId = _tokenIdCounter.current(); // Check that our public minting has started require(block.timestamp >= publicSaleStart, "Public sale has not started."); // We only want 5000 tokens to be minted in total require(tokenId < TOTAL_SUPPLY, "Mint has ended."); // Validate the supply available for request require(amount <= MAX_TOKENS_PER_TX, "Too many tokens requested."); require((tokenId + amount) <= TOTAL_SUPPLY, "Too many tokens requested."); // Validate that our minting price is correct require(msg.value >= (MINT_PRICE * amount), "Incorrect amount sent."); // Iterate through our requested amount to mint tokens for (uint i; i < amount;) { // Increment our counter to preserve tokenId _tokenIdCounter.increment(); // Get our current token position and mint uint mintTokenId = _tokenIdCounter.current() - 1; _mint(to, mintTokenId); emit WolfMinted(to, mintTokenId); unchecked { ++i; } } } /** * @dev Allow admin to mint tokens to be held internally by the team. * * @param to Address of minter. Will be recipient of token. * @param amount Number of tokens requested to be minted. * * Emits a {WolfMinted} event. */ function internalMint(address to, uint amount) public onlyRole(DEFAULT_ADMIN_ROLE) { // Iterate through our requested amount to mint tokens for (uint i; i < amount;) { // Increment our counter to preserve tokenId _tokenIdCounter.increment(); // Get our current token position and mint uint mintTokenId = _tokenIdCounter.current() - 1; _mint(to, mintTokenId); emit WolfMinted(to, mintTokenId); unchecked { ++i; } } } /** * @dev Adds addresses to the whitelist. * * @param _whitelistedAddresses Array of addresses that can mint in the whitelist */ function addWhitelistedAddresses(address[] memory _whitelistedAddresses) public onlyRole(DEFAULT_ADMIN_ROLE) { // Iterate through our whitelisted addresses and register them with // a whitelist role. uint addressCount = _whitelistedAddresses.length; for (uint i; i < addressCount;) { _grantRole(WHITELIST_ROLE, _whitelistedAddresses[i]); unchecked { ++i; } } } /** * @dev Allow check to see if user has the whitelist role. * * @param _owner Address of user to check whitelist role. */ function checkWhitelist(address _owner) public view returns(bool) { return hasRole(WHITELIST_ROLE, _owner); } /** * @dev Allow admin to update the base URI allowing for reveal. * * @param _newBaseURI New base URI to be updated to. */ function setBaseURI(string memory _newBaseURI) public onlyRole(DEFAULT_ADMIN_ROLE) { baseURI = _newBaseURI; } /** * @dev Allow admin to update the number of tokens a whitelist member can mint. * * @param _newWhitelistMintCount New whitelist mint count to be updated to. */ function setWhitelistMintCount(uint _newWhitelistMintCount) public onlyRole(DEFAULT_ADMIN_ROLE) { whitelistMintCount = _newWhitelistMintCount; } /** * @dev Hook that is called before any token transfer. This includes minting and burning. * * @param from Address token is being transferred from. * @param to Address token is being transferred to. * @param tokenId Unique ID of the token being transferred. */ function _beforeTokenTransfer(address from, address to, uint tokenId) internal whenNotPaused override(ERC721) { super._beforeTokenTransfer(from, to, tokenId); } /** * @dev Allows that the beneficiary can receive deposited ETH. * * @param _withdrawal WEI amount to be withdrawn. * * @return bool Returns true if withdrawal was successful. */ function withdraw(uint _withdrawal) external returns (bool) { require(hasRole(DEFAULT_ADMIN_ROLE, msg.sender)); (bool success, ) = msg.sender.call{value: _withdrawal}(""); require(success, "Unable to process withdrawal."); return true; } /** * @dev Fallback function executed on a call if no other functions matches. */ fallback() external payable { revert(); } /** * @dev Fallback function executed on a payable call if no other functions matches. */ receive() external payable { revert(); } /** * @dev Calculates the number of tokens minted on contract. * * @return uint The current number of tokens minted. */ function totalMinted() public view returns (uint) { return _tokenIdCounter.current(); } /** * @dev Exposes the total number of tokens available for supply. * * @return uint The total token supply. */ function totalSupply() public view returns (uint) { return TOTAL_SUPPLY; } // The following functions are overrides required by Solidity. function supportsInterface(bytes4 interfaceId) public view override(ERC721, AccessControl) returns (bool) { return super.supportsInterface(interfaceId); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./extensions/IERC721Metadata.sol"; import "../../utils/Address.sol"; import "../../utils/Context.sol"; import "../../utils/Strings.sol"; import "../../utils/introspection/ERC165.sol"; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _afterTokenTransfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); _afterTokenTransfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); _afterTokenTransfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (security/Pausable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!paused(), "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { require(paused(), "Pausable: not paused"); _; } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (access/AccessControl.sol) 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 virtual 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 virtual { 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 virtual 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 revoked `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}. * ==== * * NOTE: This function is deprecated in favor of {_grantRole}. */ 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); } /** * @dev Grants `role` to `account`. * * Internal function without access restriction. */ function _grantRole(bytes32 role, address account) internal virtual { if (!hasRole(role, account)) { _roles[role].members[account] = true; emit RoleGranted(role, account, _msgSender()); } } /** * @dev Revokes `role` from `account`. * * Internal function without access restriction. */ function _revokeRole(bytes32 role, address account) internal virtual { if (hasRole(role, account)) { _roles[role].members[account] = false; emit RoleRevoked(role, account, _msgSender()); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Burnable.sol) 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 // OpenZeppelin Contracts v4.4.1 (utils/Counters.sol) pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/IAccessControl.sol) 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; }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"uint256","name":"_preSaleStart","type":"uint256"},{"internalType":"uint256","name":"_preSaleEnd","type":"uint256"},{"internalType":"uint256","name":"_publicSaleStart","type":"uint256"},{"internalType":"string","name":"_initialBaseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"WolfMinted","type":"event"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PAUSER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WHITELIST_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_whitelistedAddresses","type":"address[]"}],"name":"addWhitelistedAddresses","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"checkWhitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"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":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"internalMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preSaleEnd","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preSaleStart","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleStart","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"safeMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newWhitelistMintCount","type":"uint256"}],"name":"setWhitelistMintCount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"whitelistSafeMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_withdrawal","type":"uint256"}],"name":"withdraw","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
608060405267010a741a46278000600a55611388600b55600a600c556001600d553480156200002d57600080fd5b50604051620051823803806200518283398181016040528101906200005391906200042b565b6040518060400160405280600f81526020017f4d69646e697465576f6c665061636b00000000000000000000000000000000008152506040518060400160405280600481526020017f574f4c46000000000000000000000000000000000000000000000000000000008152508160009080519060200190620000d7929190620002f2565b508060019080519060200190620000f0929190620002f2565b5050506000600660006101000a81548160ff021916908315150217905550620001236000801b336200018d60201b60201c565b620001557f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a336200018d60201b60201c565b83600e8190555082600f8190555081601081905550806011908051906020019062000182929190620002f2565b505050505062000644565b6200019f82826200027f60201b60201c565b6200027b5760016007600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555062000220620002ea60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b60006007600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600033905090565b82805462000300906200054f565b90600052602060002090601f01602090048101928262000324576000855562000370565b82601f106200033f57805160ff191683800117855562000370565b8280016001018555821562000370579182015b828111156200036f57825182559160200191906001019062000352565b5b5090506200037f919062000383565b5090565b5b808211156200039e57600081600090555060010162000384565b5090565b6000620003b9620003b384620004d9565b620004b0565b905082815260208101848484011115620003d257600080fd5b620003df84828562000519565b509392505050565b600082601f830112620003f957600080fd5b81516200040b848260208601620003a2565b91505092915050565b60008151905062000425816200062a565b92915050565b600080600080608085870312156200044257600080fd5b6000620004528782880162000414565b9450506020620004658782880162000414565b9350506040620004788782880162000414565b925050606085015167ffffffffffffffff8111156200049657600080fd5b620004a487828801620003e7565b91505092959194509250565b6000620004bc620004cf565b9050620004ca828262000585565b919050565b6000604051905090565b600067ffffffffffffffff821115620004f757620004f6620005ea565b5b620005028262000619565b9050602081019050919050565b6000819050919050565b60005b83811015620005395780820151818401526020810190506200051c565b8381111562000549576000848401525b50505050565b600060028204905060018216806200056857607f821691505b602082108114156200057f576200057e620005bb565b5b50919050565b620005908262000619565b810181811067ffffffffffffffff82111715620005b257620005b1620005ea565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b62000635816200050f565b81146200064157600080fd5b50565b614b2e80620006546000396000f3fe6080604052600436106102295760003560e01c80636352211e11610123578063a1448194116100ab578063c87b56dd1161006f578063c87b56dd146107f7578063ca2cfc2014610834578063d547741f1461085d578063e63ab1e914610886578063e985e9c5146108b157610233565b8063a144819414610733578063a217fddf1461074f578063a22cb4651461077a578063a2309ff8146107a3578063b88d4fde146107ce57610233565b80638456cb59116100f25780638456cb591461066f5780638a38687f1461068657806391d14854146106a257806395d89b41146106df5780639c508cc01461070a57610233565b80636352211e1461059f5780636bc64e0f146105dc57806370a08231146106075780637a997ab71461064457610233565b80632e1a7d4d116101b15780633f4ba83a116101755780633f4ba83a146104e257806342842e0e146104f957806342966c681461052257806355f804b31461054b5780635c975abb1461057457610233565b80632e1a7d4d146103ff5780632f2ff15d1461043c5780633360caa01461046557806335001a1a1461049057806336568abe146104b957610233565b80630d5624b3116101f85780630d5624b31461030657806318160ddd146103315780631950c2181461035c57806323b872dd14610399578063248a9ca3146103c257610233565b806301ffc9a71461023857806306fdde0314610275578063081812fc146102a0578063095ea7b3146102dd57610233565b3661023357600080fd5b600080fd5b34801561024457600080fd5b5061025f600480360381019061025a919061344e565b6108ee565b60405161026c9190613b29565b60405180910390f35b34801561028157600080fd5b5061028a610900565b6040516102979190613b5f565b60405180910390f35b3480156102ac57600080fd5b506102c760048036038101906102c291906134e1565b610992565b6040516102d49190613a99565b60405180910390f35b3480156102e957600080fd5b5061030460048036038101906102ff919061336c565b610a17565b005b34801561031257600080fd5b5061031b610b2f565b6040516103289190613f01565b60405180910390f35b34801561033d57600080fd5b50610346610b35565b6040516103539190613f01565b60405180910390f35b34801561036857600080fd5b50610383600480360381019061037e9190613201565b610b3f565b6040516103909190613b29565b60405180910390f35b3480156103a557600080fd5b506103c060048036038101906103bb9190613266565b610b72565b005b3480156103ce57600080fd5b506103e960048036038101906103e491906133e9565b610bd2565b6040516103f69190613b44565b60405180910390f35b34801561040b57600080fd5b50610426600480360381019061042191906134e1565b610bf2565b6040516104339190613b29565b60405180910390f35b34801561044857600080fd5b50610463600480360381019061045e9190613412565b610cc0565b005b34801561047157600080fd5b5061047a610ce9565b6040516104879190613f01565b60405180910390f35b34801561049c57600080fd5b506104b760048036038101906104b2919061336c565b610cef565b005b3480156104c557600080fd5b506104e060048036038101906104db9190613412565b610d88565b005b3480156104ee57600080fd5b506104f7610e0b565b005b34801561050557600080fd5b50610520600480360381019061051b9190613266565b610e48565b005b34801561052e57600080fd5b50610549600480360381019061054491906134e1565b610e68565b005b34801561055757600080fd5b50610572600480360381019061056d91906134a0565b610ec4565b005b34801561058057600080fd5b50610589610ef4565b6040516105969190613b29565b60405180910390f35b3480156105ab57600080fd5b506105c660048036038101906105c191906134e1565b610f0b565b6040516105d39190613a99565b60405180910390f35b3480156105e857600080fd5b506105f1610fbd565b6040516105fe9190613f01565b60405180910390f35b34801561061357600080fd5b5061062e60048036038101906106299190613201565b610fc3565b60405161063b9190613f01565b60405180910390f35b34801561065057600080fd5b5061065961107b565b6040516106669190613b44565b60405180910390f35b34801561067b57600080fd5b5061068461109f565b005b6106a0600480360381019061069b9190613201565b6110dc565b005b3480156106ae57600080fd5b506106c960048036038101906106c49190613412565b61138e565b6040516106d69190613b29565b60405180910390f35b3480156106eb57600080fd5b506106f46113f9565b6040516107019190613b5f565b60405180910390f35b34801561071657600080fd5b50610731600480360381019061072c91906134e1565b61148b565b005b61074d6004803603810190610748919061336c565b6114ab565b005b34801561075b57600080fd5b506107646116ab565b6040516107719190613b44565b60405180910390f35b34801561078657600080fd5b506107a1600480360381019061079c9190613330565b6116b2565b005b3480156107af57600080fd5b506107b86116c8565b6040516107c59190613f01565b60405180910390f35b3480156107da57600080fd5b506107f560048036038101906107f091906132b5565b6116d9565b005b34801561080357600080fd5b5061081e600480360381019061081991906134e1565b61173b565b60405161082b9190613b5f565b60405180910390f35b34801561084057600080fd5b5061085b600480360381019061085691906133a8565b6117e2565b005b34801561086957600080fd5b50610884600480360381019061087f9190613412565b611883565b005b34801561089257600080fd5b5061089b6118ac565b6040516108a89190613b44565b60405180910390f35b3480156108bd57600080fd5b506108d860048036038101906108d3919061322a565b6118d0565b6040516108e59190613b29565b60405180910390f35b60006108f982611964565b9050919050565b60606000805461090f9061421c565b80601f016020809104026020016040519081016040528092919081815260200182805461093b9061421c565b80156109885780601f1061095d57610100808354040283529160200191610988565b820191906000526020600020905b81548152906001019060200180831161096b57829003601f168201915b5050505050905090565b600061099d826119de565b6109dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d390613d61565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a2282610f0b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8a90613de1565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ab2611a4a565b73ffffffffffffffffffffffffffffffffffffffff161480610ae15750610ae081610adb611a4a565b6118d0565b5b610b20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1790613cc1565b60405180910390fd5b610b2a8383611a52565b505050565b600e5481565b6000600b54905090565b6000610b6b7fdc72ed553f2544c34465af23b847953efeb813428162d767f9ba5f4013be67608361138e565b9050919050565b610b83610b7d611a4a565b82611b0b565b610bc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb990613e01565b60405180910390fd5b610bcd838383611be9565b505050565b600060076000838152602001908152602001600020600101549050919050565b6000610c016000801b3361138e565b610c0a57600080fd5b60003373ffffffffffffffffffffffffffffffffffffffff1683604051610c3090613a4a565b60006040518083038185875af1925050503d8060008114610c6d576040519150601f19603f3d011682016040523d82523d6000602084013e610c72565b606091505b5050905080610cb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cad90613e21565b60405180910390fd5b6001915050919050565b610cc982610bd2565b610cda81610cd5611a4a565b611e50565b610ce48383611eed565b505050565b60105481565b6000801b610d0481610cff611a4a565b611e50565b60005b82811015610d8257610d196008611fce565b60006001610d276008611fe4565b610d3191906140fe565b9050610d3d8582611ff2565b7fdd278726de107e3ba230ade4c6c7820a9a27aa74089f56482d9322a974ea30898582604051610d6e929190613b00565b60405180910390a181600101915050610d07565b50505050565b610d90611a4a565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610dfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df490613ee1565b60405180910390fd5b610e0782826121cc565b5050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a610e3d81610e38611a4a565b611e50565b610e456122ae565b50565b610e63838383604051806020016040528060008152506116d9565b505050565b610e79610e73611a4a565b82611b0b565b610eb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eaf90613ea1565b60405180910390fd5b610ec181612350565b50565b6000801b610ed981610ed4611a4a565b611e50565b8160119080519060200190610eef929190612f7a565b505050565b6000600660009054906101000a900460ff16905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610fb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fab90613d01565b60405180910390fd5b80915050919050565b600f5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611034576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102b90613ce1565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b7fdc72ed553f2544c34465af23b847953efeb813428162d767f9ba5f4013be676081565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a6110d1816110cc611a4a565b611e50565b6110d961246d565b50565b60006110e86008611fe4565b9050600e5442101561112f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112690613e41565b60405180910390fd5b600f54421115611174576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116b90613dc1565b60405180910390fd5b600b548111156111b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b090613ec1565b60405180910390fd5b6111e37fdc72ed553f2544c34465af23b847953efeb813428162d767f9ba5f4013be67608361138e565b611222576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121990613e81565b60405180910390fd5b600d54600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054106112a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129c90613e61565b60405180910390fd5b600a543410156112ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e190613d81565b60405180910390fd5b6112f46008611fce565b6112fe8282611ff2565b600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815461134a9061427f565b919050819055507fdd278726de107e3ba230ade4c6c7820a9a27aa74089f56482d9322a974ea30898282604051611382929190613b00565b60405180910390a15050565b60006007600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6060600180546114089061421c565b80601f01602080910402602001604051908101604052809291908181526020018280546114349061421c565b80156114815780601f1061145657610100808354040283529160200191611481565b820191906000526020600020905b81548152906001019060200180831161146457829003601f168201915b5050505050905090565b6000801b6114a08161149b611a4a565b611e50565b81600d819055505050565b60006114b76008611fe4565b90506010544210156114fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f590613d21565b60405180910390fd5b600b548110611542576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153990613ec1565b60405180910390fd5b600c54821115611587576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157e90613c81565b60405180910390fd5b600b548282611596919061401d565b11156115d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ce90613c81565b60405180910390fd5b81600a546115e591906140a4565b341015611627576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161e90613d81565b60405180910390fd5b60005b828110156116a55761163c6008611fce565b6000600161164a6008611fe4565b61165491906140fe565b90506116608582611ff2565b7fdd278726de107e3ba230ade4c6c7820a9a27aa74089f56482d9322a974ea30898582604051611691929190613b00565b60405180910390a18160010191505061162a565b50505050565b6000801b81565b6116c46116bd611a4a565b8383612510565b5050565b60006116d46008611fe4565b905090565b6116ea6116e4611a4a565b83611b0b565b611729576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172090613e01565b60405180910390fd5b6117358484848461267d565b50505050565b6060611746826119de565b611785576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177c90613da1565b60405180910390fd5b600061178f6126d9565b905060008151116117af57604051806020016040528060008152506117da565b806117b98461276b565b6040516020016117ca929190613a26565b6040516020818303038152906040525b915050919050565b6000801b6117f7816117f2611a4a565b611e50565b60008251905060005b8181101561187d576118727fdc72ed553f2544c34465af23b847953efeb813428162d767f9ba5f4013be6760858381518110611865577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151611eed565b806001019050611800565b50505050565b61188c82610bd2565b61189d81611898611a4a565b611e50565b6118a783836121cc565b505050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806119d757506119d682612918565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611ac583610f0b565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611b16826119de565b611b55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4c90613c61565b60405180910390fd5b6000611b6083610f0b565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611bcf57508373ffffffffffffffffffffffffffffffffffffffff16611bb784610992565b73ffffffffffffffffffffffffffffffffffffffff16145b80611be05750611bdf81856118d0565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611c0982610f0b565b73ffffffffffffffffffffffffffffffffffffffff1614611c5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5690613be1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ccf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc690613c21565b60405180910390fd5b611cda8383836129fa565b611ce5600082611a52565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d3591906140fe565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d8c919061401d565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611e4b838383612a52565b505050565b611e5a828261138e565b611ee957611e7f8173ffffffffffffffffffffffffffffffffffffffff166014612a57565b611e8d8360001c6020612a57565b604051602001611e9e929190613a5f565b6040516020818303038152906040526040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee09190613b5f565b60405180910390fd5b5050565b611ef7828261138e565b611fca5760016007600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611f6f611a4a565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6001816000016000828254019250508190555050565b600081600001549050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612062576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205990613d41565b60405180910390fd5b61206b816119de565b156120ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120a290613c01565b60405180910390fd5b6120b7600083836129fa565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612107919061401d565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46121c860008383612a52565b5050565b6121d6828261138e565b156122aa5760006007600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061224f611a4a565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b6122b6610ef4565b6122f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ec90613ba1565b60405180910390fd5b6000600660006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa612339611a4a565b6040516123469190613a99565b60405180910390a1565b600061235b82610f0b565b9050612369816000846129fa565b612374600083611a52565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123c491906140fe565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461246981600084612a52565b5050565b612475610ef4565b156124b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ac90613ca1565b60405180910390fd5b6001600660006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586124f9611a4a565b6040516125069190613a99565b60405180910390a1565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561257f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161257690613c41565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516126709190613b29565b60405180910390a3505050565b612688848484611be9565b61269484848484612d51565b6126d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126ca90613bc1565b60405180910390fd5b50505050565b6060601180546126e89061421c565b80601f01602080910402602001604051908101604052809291908181526020018280546127149061421c565b80156127615780601f1061273657610100808354040283529160200191612761565b820191906000526020600020905b81548152906001019060200180831161274457829003601f168201915b5050505050905090565b606060008214156127b3576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612913565b600082905060005b600082146127e55780806127ce9061427f565b915050600a826127de9190614073565b91506127bb565b60008167ffffffffffffffff811115612827577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156128595781602001600182028036833780820191505090505b5090505b6000851461290c5760018261287291906140fe565b9150600a8561288191906142c8565b603061288d919061401d565b60f81b8183815181106128c9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856129059190614073565b945061285d565b8093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806129e357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806129f357506129f282612ee8565b5b9050919050565b612a02610ef4565b15612a42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a3990613ca1565b60405180910390fd5b612a4d838383612f52565b505050565b505050565b606060006002836002612a6a91906140a4565b612a74919061401d565b67ffffffffffffffff811115612ab3577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612ae55781602001600182028036833780820191505090505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110612b43577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110612bcd577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060006001846002612c0d91906140a4565b612c17919061401d565b90505b6001811115612d03577f3031323334353637383961626364656600000000000000000000000000000000600f861660108110612c7f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b1a60f81b828281518110612cbc577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c945080612cfc906141f2565b9050612c1a565b5060008414612d47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d3e90613b81565b60405180910390fd5b8091505092915050565b6000612d728473ffffffffffffffffffffffffffffffffffffffff16612f57565b15612edb578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612d9b611a4a565b8786866040518563ffffffff1660e01b8152600401612dbd9493929190613ab4565b602060405180830381600087803b158015612dd757600080fd5b505af1925050508015612e0857506040513d601f19601f82011682018060405250810190612e059190613477565b60015b612e8b573d8060008114612e38576040519150601f19603f3d011682016040523d82523d6000602084013e612e3d565b606091505b50600081511415612e83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e7a90613bc1565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612ee0565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054612f869061421c565b90600052602060002090601f016020900481019282612fa85760008555612fef565b82601f10612fc157805160ff1916838001178555612fef565b82800160010185558215612fef579182015b82811115612fee578251825591602001919060010190612fd3565b5b509050612ffc9190613000565b5090565b5b80821115613019576000816000905550600101613001565b5090565b600061303061302b84613f41565b613f1c565b9050808382526020820190508285602086028201111561304f57600080fd5b60005b8581101561307f57816130658882613105565b845260208401935060208301925050600181019050613052565b5050509392505050565b600061309c61309784613f6d565b613f1c565b9050828152602081018484840111156130b457600080fd5b6130bf8482856141b0565b509392505050565b60006130da6130d584613f9e565b613f1c565b9050828152602081018484840111156130f257600080fd5b6130fd8482856141b0565b509392505050565b60008135905061311481614a85565b92915050565b600082601f83011261312b57600080fd5b813561313b84826020860161301d565b91505092915050565b60008135905061315381614a9c565b92915050565b60008135905061316881614ab3565b92915050565b60008135905061317d81614aca565b92915050565b60008151905061319281614aca565b92915050565b600082601f8301126131a957600080fd5b81356131b9848260208601613089565b91505092915050565b600082601f8301126131d357600080fd5b81356131e38482602086016130c7565b91505092915050565b6000813590506131fb81614ae1565b92915050565b60006020828403121561321357600080fd5b600061322184828501613105565b91505092915050565b6000806040838503121561323d57600080fd5b600061324b85828601613105565b925050602061325c85828601613105565b9150509250929050565b60008060006060848603121561327b57600080fd5b600061328986828701613105565b935050602061329a86828701613105565b92505060406132ab868287016131ec565b9150509250925092565b600080600080608085870312156132cb57600080fd5b60006132d987828801613105565b94505060206132ea87828801613105565b93505060406132fb878288016131ec565b925050606085013567ffffffffffffffff81111561331857600080fd5b61332487828801613198565b91505092959194509250565b6000806040838503121561334357600080fd5b600061335185828601613105565b925050602061336285828601613144565b9150509250929050565b6000806040838503121561337f57600080fd5b600061338d85828601613105565b925050602061339e858286016131ec565b9150509250929050565b6000602082840312156133ba57600080fd5b600082013567ffffffffffffffff8111156133d457600080fd5b6133e08482850161311a565b91505092915050565b6000602082840312156133fb57600080fd5b600061340984828501613159565b91505092915050565b6000806040838503121561342557600080fd5b600061343385828601613159565b925050602061344485828601613105565b9150509250929050565b60006020828403121561346057600080fd5b600061346e8482850161316e565b91505092915050565b60006020828403121561348957600080fd5b600061349784828501613183565b91505092915050565b6000602082840312156134b257600080fd5b600082013567ffffffffffffffff8111156134cc57600080fd5b6134d8848285016131c2565b91505092915050565b6000602082840312156134f357600080fd5b6000613501848285016131ec565b91505092915050565b61351381614132565b82525050565b61352281614144565b82525050565b61353181614150565b82525050565b600061354282613fcf565b61354c8185613fe5565b935061355c8185602086016141bf565b613565816143b5565b840191505092915050565b600061357b82613fda565b6135858185614001565b93506135958185602086016141bf565b61359e816143b5565b840191505092915050565b60006135b482613fda565b6135be8185614012565b93506135ce8185602086016141bf565b80840191505092915050565b60006135e7602083614001565b91506135f2826143c6565b602082019050919050565b600061360a601483614001565b9150613615826143ef565b602082019050919050565b600061362d603283614001565b915061363882614418565b604082019050919050565b6000613650602583614001565b915061365b82614467565b604082019050919050565b6000613673601c83614001565b915061367e826144b6565b602082019050919050565b6000613696602483614001565b91506136a1826144df565b604082019050919050565b60006136b9601983614001565b91506136c48261452e565b602082019050919050565b60006136dc602c83614001565b91506136e782614557565b604082019050919050565b60006136ff601a83614001565b915061370a826145a6565b602082019050919050565b6000613722601083614001565b915061372d826145cf565b602082019050919050565b6000613745603883614001565b9150613750826145f8565b604082019050919050565b6000613768602a83614001565b915061377382614647565b604082019050919050565b600061378b602983614001565b915061379682614696565b604082019050919050565b60006137ae601c83614001565b91506137b9826146e5565b602082019050919050565b60006137d1602083614001565b91506137dc8261470e565b602082019050919050565b60006137f4602c83614001565b91506137ff82614737565b604082019050919050565b6000613817601683614001565b915061382282614786565b602082019050919050565b600061383a602f83614001565b9150613845826147af565b604082019050919050565b600061385d601683614001565b9150613868826147fe565b602082019050919050565b6000613880602183614001565b915061388b82614827565b604082019050919050565b60006138a3600083613ff6565b91506138ae82614876565b600082019050919050565b60006138c6603183614001565b91506138d182614879565b604082019050919050565b60006138e9601783614012565b91506138f4826148c8565b601782019050919050565b600061390c601d83614001565b9150613917826148f1565b602082019050919050565b600061392f601983614001565b915061393a8261491a565b602082019050919050565b6000613952602083614001565b915061395d82614943565b602082019050919050565b6000613975601f83614001565b91506139808261496c565b602082019050919050565b6000613998603083614001565b91506139a382614995565b604082019050919050565b60006139bb600f83614001565b91506139c6826149e4565b602082019050919050565b60006139de601183614012565b91506139e982614a0d565b601182019050919050565b6000613a01602f83614001565b9150613a0c82614a36565b604082019050919050565b613a20816141a6565b82525050565b6000613a3282856135a9565b9150613a3e82846135a9565b91508190509392505050565b6000613a5582613896565b9150819050919050565b6000613a6a826138dc565b9150613a7682856135a9565b9150613a81826139d1565b9150613a8d82846135a9565b91508190509392505050565b6000602082019050613aae600083018461350a565b92915050565b6000608082019050613ac9600083018761350a565b613ad6602083018661350a565b613ae36040830185613a17565b8181036060830152613af58184613537565b905095945050505050565b6000604082019050613b15600083018561350a565b613b226020830184613a17565b9392505050565b6000602082019050613b3e6000830184613519565b92915050565b6000602082019050613b596000830184613528565b92915050565b60006020820190508181036000830152613b798184613570565b905092915050565b60006020820190508181036000830152613b9a816135da565b9050919050565b60006020820190508181036000830152613bba816135fd565b9050919050565b60006020820190508181036000830152613bda81613620565b9050919050565b60006020820190508181036000830152613bfa81613643565b9050919050565b60006020820190508181036000830152613c1a81613666565b9050919050565b60006020820190508181036000830152613c3a81613689565b9050919050565b60006020820190508181036000830152613c5a816136ac565b9050919050565b60006020820190508181036000830152613c7a816136cf565b9050919050565b60006020820190508181036000830152613c9a816136f2565b9050919050565b60006020820190508181036000830152613cba81613715565b9050919050565b60006020820190508181036000830152613cda81613738565b9050919050565b60006020820190508181036000830152613cfa8161375b565b9050919050565b60006020820190508181036000830152613d1a8161377e565b9050919050565b60006020820190508181036000830152613d3a816137a1565b9050919050565b60006020820190508181036000830152613d5a816137c4565b9050919050565b60006020820190508181036000830152613d7a816137e7565b9050919050565b60006020820190508181036000830152613d9a8161380a565b9050919050565b60006020820190508181036000830152613dba8161382d565b9050919050565b60006020820190508181036000830152613dda81613850565b9050919050565b60006020820190508181036000830152613dfa81613873565b9050919050565b60006020820190508181036000830152613e1a816138b9565b9050919050565b60006020820190508181036000830152613e3a816138ff565b9050919050565b60006020820190508181036000830152613e5a81613922565b9050919050565b60006020820190508181036000830152613e7a81613945565b9050919050565b60006020820190508181036000830152613e9a81613968565b9050919050565b60006020820190508181036000830152613eba8161398b565b9050919050565b60006020820190508181036000830152613eda816139ae565b9050919050565b60006020820190508181036000830152613efa816139f4565b9050919050565b6000602082019050613f166000830184613a17565b92915050565b6000613f26613f37565b9050613f32828261424e565b919050565b6000604051905090565b600067ffffffffffffffff821115613f5c57613f5b614386565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613f8857613f87614386565b5b613f91826143b5565b9050602081019050919050565b600067ffffffffffffffff821115613fb957613fb8614386565b5b613fc2826143b5565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614028826141a6565b9150614033836141a6565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614068576140676142f9565b5b828201905092915050565b600061407e826141a6565b9150614089836141a6565b92508261409957614098614328565b5b828204905092915050565b60006140af826141a6565b91506140ba836141a6565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156140f3576140f26142f9565b5b828202905092915050565b6000614109826141a6565b9150614114836141a6565b925082821015614127576141266142f9565b5b828203905092915050565b600061413d82614186565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156141dd5780820151818401526020810190506141c2565b838111156141ec576000848401525b50505050565b60006141fd826141a6565b91506000821415614211576142106142f9565b5b600182039050919050565b6000600282049050600182168061423457607f821691505b6020821081141561424857614247614357565b5b50919050565b614257826143b5565b810181811067ffffffffffffffff8211171561427657614275614386565b5b80604052505050565b600061428a826141a6565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156142bd576142bc6142f9565b5b600182019050919050565b60006142d3826141a6565b91506142de836141a6565b9250826142ee576142ed614328565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f546f6f206d616e7920746f6b656e73207265717565737465642e000000000000600082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f5075626c69632073616c6520686173206e6f7420737461727465642e00000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f496e636f727265637420616d6f756e742073656e742e00000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f5072652d73616c65206861732066696e69736865642e00000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b7f556e61626c6520746f2070726f63657373207769746864726177616c2e000000600082015250565b7f5072652d73616c6520686173206e6f7420737461727465642e00000000000000600082015250565b7f4d6178696d756d207072652d73616c6520746f6b656e7320726561636865642e600082015250565b7f41646472657373206e6f7420666f756e6420696e2077686974656c6973742e00600082015250565b7f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656400000000000000000000000000000000602082015250565b7f4d696e742068617320656e6465642e0000000000000000000000000000000000600082015250565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b614a8e81614132565b8114614a9957600080fd5b50565b614aa581614144565b8114614ab057600080fd5b50565b614abc81614150565b8114614ac757600080fd5b50565b614ad38161415a565b8114614ade57600080fd5b50565b614aea816141a6565b8114614af557600080fd5b5056fea26469706673582212208a1c501fbacd7281e2f054a0b7b397b06354ba325c6494ece5fd33886b5a8cf864736f6c6343000804003300000000000000000000000000000000000000000000000000000000623c877000000000000000000000000000000000000000000000000000000000623cdbd000000000000000000000000000000000000000000000000000000000623cdbd00000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000001f68747470733a2f2f6e66742e6d69646e6974652e636f6d2f746f6b656e732f00
Deployed Bytecode
0x6080604052600436106102295760003560e01c80636352211e11610123578063a1448194116100ab578063c87b56dd1161006f578063c87b56dd146107f7578063ca2cfc2014610834578063d547741f1461085d578063e63ab1e914610886578063e985e9c5146108b157610233565b8063a144819414610733578063a217fddf1461074f578063a22cb4651461077a578063a2309ff8146107a3578063b88d4fde146107ce57610233565b80638456cb59116100f25780638456cb591461066f5780638a38687f1461068657806391d14854146106a257806395d89b41146106df5780639c508cc01461070a57610233565b80636352211e1461059f5780636bc64e0f146105dc57806370a08231146106075780637a997ab71461064457610233565b80632e1a7d4d116101b15780633f4ba83a116101755780633f4ba83a146104e257806342842e0e146104f957806342966c681461052257806355f804b31461054b5780635c975abb1461057457610233565b80632e1a7d4d146103ff5780632f2ff15d1461043c5780633360caa01461046557806335001a1a1461049057806336568abe146104b957610233565b80630d5624b3116101f85780630d5624b31461030657806318160ddd146103315780631950c2181461035c57806323b872dd14610399578063248a9ca3146103c257610233565b806301ffc9a71461023857806306fdde0314610275578063081812fc146102a0578063095ea7b3146102dd57610233565b3661023357600080fd5b600080fd5b34801561024457600080fd5b5061025f600480360381019061025a919061344e565b6108ee565b60405161026c9190613b29565b60405180910390f35b34801561028157600080fd5b5061028a610900565b6040516102979190613b5f565b60405180910390f35b3480156102ac57600080fd5b506102c760048036038101906102c291906134e1565b610992565b6040516102d49190613a99565b60405180910390f35b3480156102e957600080fd5b5061030460048036038101906102ff919061336c565b610a17565b005b34801561031257600080fd5b5061031b610b2f565b6040516103289190613f01565b60405180910390f35b34801561033d57600080fd5b50610346610b35565b6040516103539190613f01565b60405180910390f35b34801561036857600080fd5b50610383600480360381019061037e9190613201565b610b3f565b6040516103909190613b29565b60405180910390f35b3480156103a557600080fd5b506103c060048036038101906103bb9190613266565b610b72565b005b3480156103ce57600080fd5b506103e960048036038101906103e491906133e9565b610bd2565b6040516103f69190613b44565b60405180910390f35b34801561040b57600080fd5b50610426600480360381019061042191906134e1565b610bf2565b6040516104339190613b29565b60405180910390f35b34801561044857600080fd5b50610463600480360381019061045e9190613412565b610cc0565b005b34801561047157600080fd5b5061047a610ce9565b6040516104879190613f01565b60405180910390f35b34801561049c57600080fd5b506104b760048036038101906104b2919061336c565b610cef565b005b3480156104c557600080fd5b506104e060048036038101906104db9190613412565b610d88565b005b3480156104ee57600080fd5b506104f7610e0b565b005b34801561050557600080fd5b50610520600480360381019061051b9190613266565b610e48565b005b34801561052e57600080fd5b50610549600480360381019061054491906134e1565b610e68565b005b34801561055757600080fd5b50610572600480360381019061056d91906134a0565b610ec4565b005b34801561058057600080fd5b50610589610ef4565b6040516105969190613b29565b60405180910390f35b3480156105ab57600080fd5b506105c660048036038101906105c191906134e1565b610f0b565b6040516105d39190613a99565b60405180910390f35b3480156105e857600080fd5b506105f1610fbd565b6040516105fe9190613f01565b60405180910390f35b34801561061357600080fd5b5061062e60048036038101906106299190613201565b610fc3565b60405161063b9190613f01565b60405180910390f35b34801561065057600080fd5b5061065961107b565b6040516106669190613b44565b60405180910390f35b34801561067b57600080fd5b5061068461109f565b005b6106a0600480360381019061069b9190613201565b6110dc565b005b3480156106ae57600080fd5b506106c960048036038101906106c49190613412565b61138e565b6040516106d69190613b29565b60405180910390f35b3480156106eb57600080fd5b506106f46113f9565b6040516107019190613b5f565b60405180910390f35b34801561071657600080fd5b50610731600480360381019061072c91906134e1565b61148b565b005b61074d6004803603810190610748919061336c565b6114ab565b005b34801561075b57600080fd5b506107646116ab565b6040516107719190613b44565b60405180910390f35b34801561078657600080fd5b506107a1600480360381019061079c9190613330565b6116b2565b005b3480156107af57600080fd5b506107b86116c8565b6040516107c59190613f01565b60405180910390f35b3480156107da57600080fd5b506107f560048036038101906107f091906132b5565b6116d9565b005b34801561080357600080fd5b5061081e600480360381019061081991906134e1565b61173b565b60405161082b9190613b5f565b60405180910390f35b34801561084057600080fd5b5061085b600480360381019061085691906133a8565b6117e2565b005b34801561086957600080fd5b50610884600480360381019061087f9190613412565b611883565b005b34801561089257600080fd5b5061089b6118ac565b6040516108a89190613b44565b60405180910390f35b3480156108bd57600080fd5b506108d860048036038101906108d3919061322a565b6118d0565b6040516108e59190613b29565b60405180910390f35b60006108f982611964565b9050919050565b60606000805461090f9061421c565b80601f016020809104026020016040519081016040528092919081815260200182805461093b9061421c565b80156109885780601f1061095d57610100808354040283529160200191610988565b820191906000526020600020905b81548152906001019060200180831161096b57829003601f168201915b5050505050905090565b600061099d826119de565b6109dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109d390613d61565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a2282610f0b565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8a90613de1565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610ab2611a4a565b73ffffffffffffffffffffffffffffffffffffffff161480610ae15750610ae081610adb611a4a565b6118d0565b5b610b20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b1790613cc1565b60405180910390fd5b610b2a8383611a52565b505050565b600e5481565b6000600b54905090565b6000610b6b7fdc72ed553f2544c34465af23b847953efeb813428162d767f9ba5f4013be67608361138e565b9050919050565b610b83610b7d611a4a565b82611b0b565b610bc2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb990613e01565b60405180910390fd5b610bcd838383611be9565b505050565b600060076000838152602001908152602001600020600101549050919050565b6000610c016000801b3361138e565b610c0a57600080fd5b60003373ffffffffffffffffffffffffffffffffffffffff1683604051610c3090613a4a565b60006040518083038185875af1925050503d8060008114610c6d576040519150601f19603f3d011682016040523d82523d6000602084013e610c72565b606091505b5050905080610cb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cad90613e21565b60405180910390fd5b6001915050919050565b610cc982610bd2565b610cda81610cd5611a4a565b611e50565b610ce48383611eed565b505050565b60105481565b6000801b610d0481610cff611a4a565b611e50565b60005b82811015610d8257610d196008611fce565b60006001610d276008611fe4565b610d3191906140fe565b9050610d3d8582611ff2565b7fdd278726de107e3ba230ade4c6c7820a9a27aa74089f56482d9322a974ea30898582604051610d6e929190613b00565b60405180910390a181600101915050610d07565b50505050565b610d90611a4a565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610dfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df490613ee1565b60405180910390fd5b610e0782826121cc565b5050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a610e3d81610e38611a4a565b611e50565b610e456122ae565b50565b610e63838383604051806020016040528060008152506116d9565b505050565b610e79610e73611a4a565b82611b0b565b610eb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eaf90613ea1565b60405180910390fd5b610ec181612350565b50565b6000801b610ed981610ed4611a4a565b611e50565b8160119080519060200190610eef929190612f7a565b505050565b6000600660009054906101000a900460ff16905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610fb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fab90613d01565b60405180910390fd5b80915050919050565b600f5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611034576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102b90613ce1565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b7fdc72ed553f2544c34465af23b847953efeb813428162d767f9ba5f4013be676081565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a6110d1816110cc611a4a565b611e50565b6110d961246d565b50565b60006110e86008611fe4565b9050600e5442101561112f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112690613e41565b60405180910390fd5b600f54421115611174576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116b90613dc1565b60405180910390fd5b600b548111156111b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b090613ec1565b60405180910390fd5b6111e37fdc72ed553f2544c34465af23b847953efeb813428162d767f9ba5f4013be67608361138e565b611222576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121990613e81565b60405180910390fd5b600d54600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054106112a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129c90613e61565b60405180910390fd5b600a543410156112ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e190613d81565b60405180910390fd5b6112f46008611fce565b6112fe8282611ff2565b600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815461134a9061427f565b919050819055507fdd278726de107e3ba230ade4c6c7820a9a27aa74089f56482d9322a974ea30898282604051611382929190613b00565b60405180910390a15050565b60006007600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6060600180546114089061421c565b80601f01602080910402602001604051908101604052809291908181526020018280546114349061421c565b80156114815780601f1061145657610100808354040283529160200191611481565b820191906000526020600020905b81548152906001019060200180831161146457829003601f168201915b5050505050905090565b6000801b6114a08161149b611a4a565b611e50565b81600d819055505050565b60006114b76008611fe4565b90506010544210156114fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f590613d21565b60405180910390fd5b600b548110611542576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153990613ec1565b60405180910390fd5b600c54821115611587576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157e90613c81565b60405180910390fd5b600b548282611596919061401d565b11156115d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ce90613c81565b60405180910390fd5b81600a546115e591906140a4565b341015611627576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161e90613d81565b60405180910390fd5b60005b828110156116a55761163c6008611fce565b6000600161164a6008611fe4565b61165491906140fe565b90506116608582611ff2565b7fdd278726de107e3ba230ade4c6c7820a9a27aa74089f56482d9322a974ea30898582604051611691929190613b00565b60405180910390a18160010191505061162a565b50505050565b6000801b81565b6116c46116bd611a4a565b8383612510565b5050565b60006116d46008611fe4565b905090565b6116ea6116e4611a4a565b83611b0b565b611729576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172090613e01565b60405180910390fd5b6117358484848461267d565b50505050565b6060611746826119de565b611785576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177c90613da1565b60405180910390fd5b600061178f6126d9565b905060008151116117af57604051806020016040528060008152506117da565b806117b98461276b565b6040516020016117ca929190613a26565b6040516020818303038152906040525b915050919050565b6000801b6117f7816117f2611a4a565b611e50565b60008251905060005b8181101561187d576118727fdc72ed553f2544c34465af23b847953efeb813428162d767f9ba5f4013be6760858381518110611865577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151611eed565b806001019050611800565b50505050565b61188c82610bd2565b61189d81611898611a4a565b611e50565b6118a783836121cc565b505050565b7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806119d757506119d682612918565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611ac583610f0b565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611b16826119de565b611b55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b4c90613c61565b60405180910390fd5b6000611b6083610f0b565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611bcf57508373ffffffffffffffffffffffffffffffffffffffff16611bb784610992565b73ffffffffffffffffffffffffffffffffffffffff16145b80611be05750611bdf81856118d0565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16611c0982610f0b565b73ffffffffffffffffffffffffffffffffffffffff1614611c5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5690613be1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ccf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc690613c21565b60405180910390fd5b611cda8383836129fa565b611ce5600082611a52565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d3591906140fe565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d8c919061401d565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611e4b838383612a52565b505050565b611e5a828261138e565b611ee957611e7f8173ffffffffffffffffffffffffffffffffffffffff166014612a57565b611e8d8360001c6020612a57565b604051602001611e9e929190613a5f565b6040516020818303038152906040526040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee09190613b5f565b60405180910390fd5b5050565b611ef7828261138e565b611fca5760016007600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611f6f611a4a565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6001816000016000828254019250508190555050565b600081600001549050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612062576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205990613d41565b60405180910390fd5b61206b816119de565b156120ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120a290613c01565b60405180910390fd5b6120b7600083836129fa565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612107919061401d565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46121c860008383612a52565b5050565b6121d6828261138e565b156122aa5760006007600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061224f611a4a565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b6122b6610ef4565b6122f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122ec90613ba1565b60405180910390fd5b6000600660006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa612339611a4a565b6040516123469190613a99565b60405180910390a1565b600061235b82610f0b565b9050612369816000846129fa565b612374600083611a52565b6001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546123c491906140fe565b925050819055506002600083815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905581600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461246981600084612a52565b5050565b612475610ef4565b156124b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ac90613ca1565b60405180910390fd5b6001600660006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586124f9611a4a565b6040516125069190613a99565b60405180910390a1565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561257f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161257690613c41565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516126709190613b29565b60405180910390a3505050565b612688848484611be9565b61269484848484612d51565b6126d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126ca90613bc1565b60405180910390fd5b50505050565b6060601180546126e89061421c565b80601f01602080910402602001604051908101604052809291908181526020018280546127149061421c565b80156127615780601f1061273657610100808354040283529160200191612761565b820191906000526020600020905b81548152906001019060200180831161274457829003601f168201915b5050505050905090565b606060008214156127b3576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612913565b600082905060005b600082146127e55780806127ce9061427f565b915050600a826127de9190614073565b91506127bb565b60008167ffffffffffffffff811115612827577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156128595781602001600182028036833780820191505090505b5090505b6000851461290c5760018261287291906140fe565b9150600a8561288191906142c8565b603061288d919061401d565b60f81b8183815181106128c9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856129059190614073565b945061285d565b8093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806129e357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806129f357506129f282612ee8565b5b9050919050565b612a02610ef4565b15612a42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a3990613ca1565b60405180910390fd5b612a4d838383612f52565b505050565b505050565b606060006002836002612a6a91906140a4565b612a74919061401d565b67ffffffffffffffff811115612ab3577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612ae55781602001600182028036833780820191505090505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110612b43577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110612bcd577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060006001846002612c0d91906140a4565b612c17919061401d565b90505b6001811115612d03577f3031323334353637383961626364656600000000000000000000000000000000600f861660108110612c7f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b1a60f81b828281518110612cbc577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c945080612cfc906141f2565b9050612c1a565b5060008414612d47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d3e90613b81565b60405180910390fd5b8091505092915050565b6000612d728473ffffffffffffffffffffffffffffffffffffffff16612f57565b15612edb578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612d9b611a4a565b8786866040518563ffffffff1660e01b8152600401612dbd9493929190613ab4565b602060405180830381600087803b158015612dd757600080fd5b505af1925050508015612e0857506040513d601f19601f82011682018060405250810190612e059190613477565b60015b612e8b573d8060008114612e38576040519150601f19603f3d011682016040523d82523d6000602084013e612e3d565b606091505b50600081511415612e83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e7a90613bc1565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612ee0565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b828054612f869061421c565b90600052602060002090601f016020900481019282612fa85760008555612fef565b82601f10612fc157805160ff1916838001178555612fef565b82800160010185558215612fef579182015b82811115612fee578251825591602001919060010190612fd3565b5b509050612ffc9190613000565b5090565b5b80821115613019576000816000905550600101613001565b5090565b600061303061302b84613f41565b613f1c565b9050808382526020820190508285602086028201111561304f57600080fd5b60005b8581101561307f57816130658882613105565b845260208401935060208301925050600181019050613052565b5050509392505050565b600061309c61309784613f6d565b613f1c565b9050828152602081018484840111156130b457600080fd5b6130bf8482856141b0565b509392505050565b60006130da6130d584613f9e565b613f1c565b9050828152602081018484840111156130f257600080fd5b6130fd8482856141b0565b509392505050565b60008135905061311481614a85565b92915050565b600082601f83011261312b57600080fd5b813561313b84826020860161301d565b91505092915050565b60008135905061315381614a9c565b92915050565b60008135905061316881614ab3565b92915050565b60008135905061317d81614aca565b92915050565b60008151905061319281614aca565b92915050565b600082601f8301126131a957600080fd5b81356131b9848260208601613089565b91505092915050565b600082601f8301126131d357600080fd5b81356131e38482602086016130c7565b91505092915050565b6000813590506131fb81614ae1565b92915050565b60006020828403121561321357600080fd5b600061322184828501613105565b91505092915050565b6000806040838503121561323d57600080fd5b600061324b85828601613105565b925050602061325c85828601613105565b9150509250929050565b60008060006060848603121561327b57600080fd5b600061328986828701613105565b935050602061329a86828701613105565b92505060406132ab868287016131ec565b9150509250925092565b600080600080608085870312156132cb57600080fd5b60006132d987828801613105565b94505060206132ea87828801613105565b93505060406132fb878288016131ec565b925050606085013567ffffffffffffffff81111561331857600080fd5b61332487828801613198565b91505092959194509250565b6000806040838503121561334357600080fd5b600061335185828601613105565b925050602061336285828601613144565b9150509250929050565b6000806040838503121561337f57600080fd5b600061338d85828601613105565b925050602061339e858286016131ec565b9150509250929050565b6000602082840312156133ba57600080fd5b600082013567ffffffffffffffff8111156133d457600080fd5b6133e08482850161311a565b91505092915050565b6000602082840312156133fb57600080fd5b600061340984828501613159565b91505092915050565b6000806040838503121561342557600080fd5b600061343385828601613159565b925050602061344485828601613105565b9150509250929050565b60006020828403121561346057600080fd5b600061346e8482850161316e565b91505092915050565b60006020828403121561348957600080fd5b600061349784828501613183565b91505092915050565b6000602082840312156134b257600080fd5b600082013567ffffffffffffffff8111156134cc57600080fd5b6134d8848285016131c2565b91505092915050565b6000602082840312156134f357600080fd5b6000613501848285016131ec565b91505092915050565b61351381614132565b82525050565b61352281614144565b82525050565b61353181614150565b82525050565b600061354282613fcf565b61354c8185613fe5565b935061355c8185602086016141bf565b613565816143b5565b840191505092915050565b600061357b82613fda565b6135858185614001565b93506135958185602086016141bf565b61359e816143b5565b840191505092915050565b60006135b482613fda565b6135be8185614012565b93506135ce8185602086016141bf565b80840191505092915050565b60006135e7602083614001565b91506135f2826143c6565b602082019050919050565b600061360a601483614001565b9150613615826143ef565b602082019050919050565b600061362d603283614001565b915061363882614418565b604082019050919050565b6000613650602583614001565b915061365b82614467565b604082019050919050565b6000613673601c83614001565b915061367e826144b6565b602082019050919050565b6000613696602483614001565b91506136a1826144df565b604082019050919050565b60006136b9601983614001565b91506136c48261452e565b602082019050919050565b60006136dc602c83614001565b91506136e782614557565b604082019050919050565b60006136ff601a83614001565b915061370a826145a6565b602082019050919050565b6000613722601083614001565b915061372d826145cf565b602082019050919050565b6000613745603883614001565b9150613750826145f8565b604082019050919050565b6000613768602a83614001565b915061377382614647565b604082019050919050565b600061378b602983614001565b915061379682614696565b604082019050919050565b60006137ae601c83614001565b91506137b9826146e5565b602082019050919050565b60006137d1602083614001565b91506137dc8261470e565b602082019050919050565b60006137f4602c83614001565b91506137ff82614737565b604082019050919050565b6000613817601683614001565b915061382282614786565b602082019050919050565b600061383a602f83614001565b9150613845826147af565b604082019050919050565b600061385d601683614001565b9150613868826147fe565b602082019050919050565b6000613880602183614001565b915061388b82614827565b604082019050919050565b60006138a3600083613ff6565b91506138ae82614876565b600082019050919050565b60006138c6603183614001565b91506138d182614879565b604082019050919050565b60006138e9601783614012565b91506138f4826148c8565b601782019050919050565b600061390c601d83614001565b9150613917826148f1565b602082019050919050565b600061392f601983614001565b915061393a8261491a565b602082019050919050565b6000613952602083614001565b915061395d82614943565b602082019050919050565b6000613975601f83614001565b91506139808261496c565b602082019050919050565b6000613998603083614001565b91506139a382614995565b604082019050919050565b60006139bb600f83614001565b91506139c6826149e4565b602082019050919050565b60006139de601183614012565b91506139e982614a0d565b601182019050919050565b6000613a01602f83614001565b9150613a0c82614a36565b604082019050919050565b613a20816141a6565b82525050565b6000613a3282856135a9565b9150613a3e82846135a9565b91508190509392505050565b6000613a5582613896565b9150819050919050565b6000613a6a826138dc565b9150613a7682856135a9565b9150613a81826139d1565b9150613a8d82846135a9565b91508190509392505050565b6000602082019050613aae600083018461350a565b92915050565b6000608082019050613ac9600083018761350a565b613ad6602083018661350a565b613ae36040830185613a17565b8181036060830152613af58184613537565b905095945050505050565b6000604082019050613b15600083018561350a565b613b226020830184613a17565b9392505050565b6000602082019050613b3e6000830184613519565b92915050565b6000602082019050613b596000830184613528565b92915050565b60006020820190508181036000830152613b798184613570565b905092915050565b60006020820190508181036000830152613b9a816135da565b9050919050565b60006020820190508181036000830152613bba816135fd565b9050919050565b60006020820190508181036000830152613bda81613620565b9050919050565b60006020820190508181036000830152613bfa81613643565b9050919050565b60006020820190508181036000830152613c1a81613666565b9050919050565b60006020820190508181036000830152613c3a81613689565b9050919050565b60006020820190508181036000830152613c5a816136ac565b9050919050565b60006020820190508181036000830152613c7a816136cf565b9050919050565b60006020820190508181036000830152613c9a816136f2565b9050919050565b60006020820190508181036000830152613cba81613715565b9050919050565b60006020820190508181036000830152613cda81613738565b9050919050565b60006020820190508181036000830152613cfa8161375b565b9050919050565b60006020820190508181036000830152613d1a8161377e565b9050919050565b60006020820190508181036000830152613d3a816137a1565b9050919050565b60006020820190508181036000830152613d5a816137c4565b9050919050565b60006020820190508181036000830152613d7a816137e7565b9050919050565b60006020820190508181036000830152613d9a8161380a565b9050919050565b60006020820190508181036000830152613dba8161382d565b9050919050565b60006020820190508181036000830152613dda81613850565b9050919050565b60006020820190508181036000830152613dfa81613873565b9050919050565b60006020820190508181036000830152613e1a816138b9565b9050919050565b60006020820190508181036000830152613e3a816138ff565b9050919050565b60006020820190508181036000830152613e5a81613922565b9050919050565b60006020820190508181036000830152613e7a81613945565b9050919050565b60006020820190508181036000830152613e9a81613968565b9050919050565b60006020820190508181036000830152613eba8161398b565b9050919050565b60006020820190508181036000830152613eda816139ae565b9050919050565b60006020820190508181036000830152613efa816139f4565b9050919050565b6000602082019050613f166000830184613a17565b92915050565b6000613f26613f37565b9050613f32828261424e565b919050565b6000604051905090565b600067ffffffffffffffff821115613f5c57613f5b614386565b5b602082029050602081019050919050565b600067ffffffffffffffff821115613f8857613f87614386565b5b613f91826143b5565b9050602081019050919050565b600067ffffffffffffffff821115613fb957613fb8614386565b5b613fc2826143b5565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614028826141a6565b9150614033836141a6565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614068576140676142f9565b5b828201905092915050565b600061407e826141a6565b9150614089836141a6565b92508261409957614098614328565b5b828204905092915050565b60006140af826141a6565b91506140ba836141a6565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156140f3576140f26142f9565b5b828202905092915050565b6000614109826141a6565b9150614114836141a6565b925082821015614127576141266142f9565b5b828203905092915050565b600061413d82614186565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156141dd5780820151818401526020810190506141c2565b838111156141ec576000848401525b50505050565b60006141fd826141a6565b91506000821415614211576142106142f9565b5b600182039050919050565b6000600282049050600182168061423457607f821691505b6020821081141561424857614247614357565b5b50919050565b614257826143b5565b810181811067ffffffffffffffff8211171561427657614275614386565b5b80604052505050565b600061428a826141a6565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156142bd576142bc6142f9565b5b600182019050919050565b60006142d3826141a6565b91506142de836141a6565b9250826142ee576142ed614328565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f546f6f206d616e7920746f6b656e73207265717565737465642e000000000000600082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f5075626c69632073616c6520686173206e6f7420737461727465642e00000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f496e636f727265637420616d6f756e742073656e742e00000000000000000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f5072652d73616c65206861732066696e69736865642e00000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b7f556e61626c6520746f2070726f63657373207769746864726177616c2e000000600082015250565b7f5072652d73616c6520686173206e6f7420737461727465642e00000000000000600082015250565b7f4d6178696d756d207072652d73616c6520746f6b656e7320726561636865642e600082015250565b7f41646472657373206e6f7420666f756e6420696e2077686974656c6973742e00600082015250565b7f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656400000000000000000000000000000000602082015250565b7f4d696e742068617320656e6465642e0000000000000000000000000000000000600082015250565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b614a8e81614132565b8114614a9957600080fd5b50565b614aa581614144565b8114614ab057600080fd5b50565b614abc81614150565b8114614ac757600080fd5b50565b614ad38161415a565b8114614ade57600080fd5b50565b614aea816141a6565b8114614af557600080fd5b5056fea26469706673582212208a1c501fbacd7281e2f054a0b7b397b06354ba325c6494ece5fd33886b5a8cf864736f6c63430008040033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000623c877000000000000000000000000000000000000000000000000000000000623cdbd000000000000000000000000000000000000000000000000000000000623cdbd00000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000001f68747470733a2f2f6e66742e6d69646e6974652e636f6d2f746f6b656e732f00
-----Decoded View---------------
Arg [0] : _preSaleStart (uint256): 1648134000
Arg [1] : _preSaleEnd (uint256): 1648155600
Arg [2] : _publicSaleStart (uint256): 1648155600
Arg [3] : _initialBaseURI (string): https://nft.midnite.com/tokens/
-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000623c8770
Arg [1] : 00000000000000000000000000000000000000000000000000000000623cdbd0
Arg [2] : 00000000000000000000000000000000000000000000000000000000623cdbd0
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [4] : 000000000000000000000000000000000000000000000000000000000000001f
Arg [5] : 68747470733a2f2f6e66742e6d69646e6974652e636f6d2f746f6b656e732f00
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.