Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
NFT
Overview
Max Total Supply
9,999 GP
Holders
2,582
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 GPLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
GutterPunks
Compiler Version
v0.8.9+commit.e5eed63a
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-03-14 */ // SPDX-License-Identifier: MIT /** , &@@@@@@@/ @@@@@ *@@@@@@@@ @@@@@@@& @@@/ (@@@ * @@@, %@@@@@@@@ &/ %@@& @@@ .@@@ @@@ /@@& @@@ @@@ @@@* (@@@ .@@@ @@@. .. @@@/ .@@@ @@@ @@@ @@@@@* @@@@@@, %@@@@@@@& @@@ @@@ @@@@ @@@& *@@@ @@@@ .@@@/ ,@@@@@@@( @@@ @@@, *@@@ @@@ #@@# @@@ @@@ @@@/.. /@@@ ,@@@ @@@@@@@@ @@@(@@@. @@@@%@@@# ,@@@ &. (@@@ @@@ @@@ &@@/ .@@@./# @@@ @@@ @@@. %@@/ &@@. %@@@(@@@& *@@@@@ @@@@ /@ &@@@ @@@@ @@@ @@@. #@@# @@@ @@@@@& #(/ *** /#% *@@@@@. @@@ @@@ @@@ @@@ .@@@# @@@, #@@@ @@@@@@@ #@& (@@% @@@ @@@ %@@( @@@@@@@@ ,%* @@@@@@@@ *@@@@@# .@@@@@@@@@@@@@@@@@@@@& @@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@# @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@( ,@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ *@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@& #@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ . &@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ &&&&&&&&&&&&&&&&# &&&&% &&&&( *&&&& & ,&&&&&&&&&&&&&&&&&. , &&&&&&&, . &&& . &&&&&&&&&&&&&&&&&&&&&&&&% &&&&&&&&&& &&&. o/ & &&&&&&&&&&&&&&&&&&&# &. &&&&&&& &&# /# . ( /& &&&(&&&&&&&&&&&& &&&&& &&&& *&&&&&&&# %(*,(*.(%&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&&. .%#& #, *(((((%&&&&&&&&&&&&&&&&&&&&&&&, #&&( . .*(( &&& ((((((((&&&&&&&&&&&&&&&&&&& . . . *&@@% *&&&& .(#(#(#(#(##%&&&&&&&&&&%((## @@# *@@@@@@@@@@@@@ *&&&&& .((((((((((#((((((((((((# . /@@, @@ .@@* @@@@. @@@@@@@ (#((((#((((((((#/ , . @@ #@@@@@. %@@@. @@@@@# . /@@@ @@@ &@@@@@ %@( #@@@@@ @@@@@@ ,@@@@@@@@@@@@# *@@@@ (. (@@@ @@ @@@@@@ ,* ,. . ,@@@@ @@ @@ @@@@@@ @@@@@@ @@@@@@@@@@@@@@@ &@@@( / #@ @@@@@@ .*%@@@ %@@@@&(,..,/%&@@ @@@@ */ pragma solidity ^0.8.9; pragma solidity ^0.8.9; error ApprovalCallerNotOwnerNorApproved(); error ApprovalQueryForNonexistentToken(); error ApproveToCaller(); error ApprovalToCurrentOwner(); error BalanceQueryForZeroAddress(); error MintedQueryForZeroAddress(); error BurnedQueryForZeroAddress(); error AuxQueryForZeroAddress(); error MintToZeroAddress(); error MintZeroQuantity(); error OwnerIndexOutOfBounds(); error OwnerQueryForNonexistentToken(); error TokenIndexOutOfBounds(); error TransferCallerNotOwnerNorApproved(); error TransferFromIncorrectOwner(); error TransferToNonERC721ReceiverImplementer(); error TransferToZeroAddress(); error URIQueryForNonexistentToken(); /** * @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; } } /** * @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); } /** * @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; } /** * @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); } /** * @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); } /** * @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; } } /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..). * * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Compiler will pack this into a single 256bit word. struct TokenOwnership { // The address of the owner. address addr; // Keeps track of the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; } // Compiler will pack this into a single 256bit word. struct AddressData { // Realistically, 2**64-1 is more than enough. uint64 balance; // Keeps track of mint count with minimal overhead for tokenomics. uint64 numberMinted; // Keeps track of burn count with minimal overhead for tokenomics. uint64 numberBurned; // For miscellaneous variable(s) pertaining to the address // (e.g. number of whitelist mint slots used). // If there are multiple variables, please pack them into a uint64. uint64 aux; } // The tokenId of the next token to be minted. uint256 internal _currentIndex; // The number of tokens burned. uint256 internal _burnCounter; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; address[] public airdrops; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * To change the starting tokenId, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev See {IERC721Enumerable-totalSupply}. * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens. */ function totalSupply() public view returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than _currentIndex - _startTokenId() times unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view returns (uint256) { // Counter underflow is impossible as _currentIndex does not decrement, // and it is initialized to _startTokenId() unchecked { return _currentIndex - _startTokenId(); } } /** * @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 override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return uint256(_addressData[owner].balance); } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { if (owner == address(0)) revert MintedQueryForZeroAddress(); return uint256(_addressData[owner].numberMinted); } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { if (owner == address(0)) revert BurnedQueryForZeroAddress(); return uint256(_addressData[owner].numberBurned); } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { if (owner == address(0)) revert AuxQueryForZeroAddress(); return _addressData[owner].aux; } /** * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal { if (owner == address(0)) revert AuxQueryForZeroAddress(); _addressData[owner].aux = aux; } /** * Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around in the collection over time. */ function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr && curr < _currentIndex) { TokenOwnership memory ownership = _ownerships[curr]; if (!ownership.burned) { if (ownership.addr != address(0)) { return ownership; } // Invariant: // There will always be an ownership that has an address and is not burned // before an ownership that does not have an address and is not burned. // Hence, curr will not underflow. while (true) { curr--; ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } } } } revert OwnerQueryForNonexistentToken(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) { revert ApprovalCallerNotOwnerNorApproved(); } _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public override { if (operator == _msgSender()) revert ApproveToCaller(); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { _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 { _transfer(from, to, tokenId); if (to.isContract() && !_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && !_ownerships[tokenId].burned; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { _mint(to, quantity, _data, true); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event. */ function _mint( address to, uint256 quantity, bytes memory _data, bool safe ) internal { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1 // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1 unchecked { _addressData[to].balance += uint64(quantity); _addressData[to].numberMinted += uint64(quantity); _ownerships[startTokenId].addr = to; _ownerships[startTokenId].startTimestamp = uint64(block.timestamp); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (safe && to.isContract()) { do { emit Transfer(address(0), to, updatedIndex); if (!_checkContractOnERC721Received(address(0), to, updatedIndex++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (updatedIndex != end); // Reentrancy protection if (_currentIndex != startTokenId) revert(); } else { do { emit Transfer(address(0), to, updatedIndex++); } while (updatedIndex != end); } _currentIndex = updatedIndex; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = ownershipOf(tokenId); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || isApprovedForAll(prevOwnership.addr, _msgSender()) || getApproved(tokenId) == _msgSender()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (prevOwnership.addr != from) revert TransferFromIncorrectOwner(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); for(uint256 i = 0;i < airdrops.length;i++) { AirdropToken adt = AirdropToken(airdrops[i]); adt.parentTokenTransferred(from, tokenId); } // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; _ownerships[tokenId].addr = to; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId < _currentIndex) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @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 { TokenOwnership memory prevOwnership = ownershipOf(tokenId); _beforeTokenTransfers(prevOwnership.addr, address(0), tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256. unchecked { _addressData[prevOwnership.addr].balance -= 1; _addressData[prevOwnership.addr].numberBurned += 1; // Keep track of who burned the token, and the timestamp of burning. _ownerships[tokenId].addr = prevOwnership.addr; _ownerships[tokenId].startTimestamp = uint64(block.timestamp); _ownerships[tokenId].burned = true; // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { // This will suffice for checking _exists(nextTokenId), // as a burned slot cannot contain the zero address. if (nextTokenId < _currentIndex) { _ownerships[nextTokenId].addr = prevOwnership.addr; _ownerships[nextTokenId].startTimestamp = prevOwnership.startTimestamp; } } } emit Transfer(prevOwnership.addr, address(0), tokenId); _afterTokenTransfers(prevOwnership.addr, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * And also called before burning one token. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * And also called after one token has been burned. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } /** * @title Gutter Punks contract. * @author The Gutter Punks team. * * @notice Implements a fair and random NFT distribution. * * Additional features include: * - Merkle-tree whitelist with customizable number of mints per address. * - On-chain support for a pre-reveal placeholder image. * - Contract-level metadata. * - Finalization of metadata to prevent further changes. */ contract GutterPunks is ERC721A, Ownable { using Strings for uint256; event SetPresaleMerkleRoot(bytes32 root); event SetProvenanceHash(string provenanceHash); event SetPresaleIsActive(bool presaleIsActive); event SetSaleIsActive(bool saleIsActive); event SetIsRevealed(bool isRevealed); event Finalized(); event SetCurrentPrice(uint256 currentPrice); event SetRoyaltyInfo(address royaltyRecipient, uint256 royaltyAmountNumerator); event SetBaseURI(string baseURI); event SetPlaceholderURI(string placeholderURI); event SetContractURI(string contractURI); event Withdrew(uint256 balance); uint256 public constant MAX_SUPPLY = 9999; uint256 public constant RESERVED_SUPPLY = 225; uint256 public _presaleExtras = 3000; string public constant TOKEN_URI_EXTENSION = ".json"; uint256 public constant ROYALTY_AMOUNT_DENOMINATOR = 1e18; bytes4 private constant INTERFACE_ID_ERC2981 = 0x2a55205a; /// @notice The root of the Merkle tree with addresses allowed to mint in the presale. bytes32 public _presaleMerkleRoot; /// @notice Hash which commits to the content, metadata, and original sequence of the NFTs. string public _provenanceHash; /// @notice The current price to mint one Gutter Punk uint256 public _currentPrice = 0.050 ether; /// @notice Controls whether minting is allowed via the presale mint function. bool public _presaleIsActive = false; /// @notice Controls whether minting is allowed via the regular mint function. bool public _saleIsActive = false; /// @notice Whether the placeholder URI should be returned for all tokens. bool public _isRevealed = false; /// @notice Whether further changes to the token URI have been disabled. bool public _isFinalized = false; /// @notice The recipient of ERC-2981 royalties. address public _royaltyRecipient; /// @notice The royalty rate for ERC-2981 royalties, as a fraction of ROYALTY_AMOUNT_DENOMINATOR. uint256 public _royaltyAmountNumerator; /// @notice The number of presale mints completed by address. mapping(address => uint256) public _numPresaleMints; /// @notice Whether the address used the voucher amount specified in the Merkle tree. /// Note that we assume each address is only included once in the Merkle tree. mapping(address => bool) public _usedVoucher; string internal _baseTokenURI; string internal _placeholderURI; string internal _contractURI; modifier notFinalized() { require( !_isFinalized, "Metadata is finalized" ); _; } constructor( string memory placeholderURI ) ERC721A("Gutter Punks", "GP") { _placeholderURI = placeholderURI; } function _startTokenId() internal view override virtual returns (uint256) { return 1; } function setPresaleMerkleRoot(bytes32 root) external onlyOwner { _presaleMerkleRoot = root; emit SetPresaleMerkleRoot(root); } function setProvenanceHash(string calldata provenanceHash) external onlyOwner notFinalized { _provenanceHash = provenanceHash; emit SetProvenanceHash(provenanceHash); } function setPresaleIsActive(bool presaleIsActive) external onlyOwner { _presaleIsActive = presaleIsActive; emit SetPresaleIsActive(presaleIsActive); } function setSaleIsActive(bool saleIsActive) external onlyOwner { _saleIsActive = saleIsActive; emit SetSaleIsActive(saleIsActive); } function setCurrentPrice(uint256 currentPrice) external onlyOwner { _currentPrice = currentPrice; emit SetCurrentPrice(currentPrice); } function setIsRevealed(bool isRevealed) external onlyOwner notFinalized { _isRevealed = isRevealed; emit SetIsRevealed(isRevealed); } function setPresaleExtras(uint256 presaleExtras) external onlyOwner { _presaleExtras = presaleExtras; } function finalize() external onlyOwner notFinalized { require( _isRevealed, "Must be revealed to finalize" ); _isFinalized = true; emit Finalized(); } function setRoyaltyInfo(address royaltyRecipient, uint256 royaltyAmountNumerator) external onlyOwner { _royaltyRecipient = royaltyRecipient; _royaltyAmountNumerator = royaltyAmountNumerator; emit SetRoyaltyInfo(royaltyRecipient, royaltyAmountNumerator); } function setBaseURI(string calldata baseURI) external onlyOwner notFinalized { _baseTokenURI = baseURI; emit SetBaseURI(baseURI); } function setPlaceholderURI(string calldata placeholderURI) external onlyOwner { _placeholderURI = placeholderURI; emit SetPlaceholderURI(placeholderURI); } function setContractURI(string calldata newContractURI) external onlyOwner { _contractURI = newContractURI; emit SetContractURI(newContractURI); } function withdraw() external onlyOwner { uint256 balance = address(this).balance; payable(msg.sender).transfer(balance); emit Withdrew(balance); } function mintReservedTokens(address recipient, uint256 numToMint) external onlyOwner { require( _totalMinted() + numToMint <= RESERVED_SUPPLY, "Mint would exceed reserved supply" ); _mint(recipient, numToMint, '', true); } /** * @notice Called by users to mint from the presale. */ function mintPresale( uint256 numToMint, uint256 maxMints, uint256 voucherAmount, bytes32[] calldata merkleProof ) external payable { require( _presaleIsActive, "Presale not active" ); // The Merkle tree node contains: (address account, uint256 maxMints, uint256 voucherAmount) bytes32 leaf = keccak256(abi.encodePacked(msg.sender, maxMints, voucherAmount)); // Verify the mint params are part of the Merkle tree, given the Merkle proof. require( MerkleProof.verify(merkleProof, _presaleMerkleRoot, leaf), "Invalid Merkle proof" ); // Require that the minter does not exceed their max allocation given by the Merkle tree. uint256 newNumPresaleMints = _numPresaleMints[msg.sender] + numToMint; uint256 presaleExtrasNeeded = 0; if(newNumPresaleMints > maxMints) { presaleExtrasNeeded = newNumPresaleMints - maxMints; require( presaleExtrasNeeded <= _presaleExtras, "Presale mints exceeded" ); } // Use the voucher amount if it wasn't previously used. uint256 remainingVoucherAmount = 0; if (voucherAmount != 0 && !_usedVoucher[msg.sender]) { remainingVoucherAmount = voucherAmount; _usedVoucher[msg.sender] = true; } // Update storage (do this before minting as mint recipients may have callbacks). _numPresaleMints[msg.sender] = newNumPresaleMints; if(presaleExtrasNeeded > 0) { _presaleExtras -= presaleExtrasNeeded; } // Mint tokens, checking for sufficient payment and supply. _mintInner(numToMint, remainingVoucherAmount); } /** * @notice Called by users to mint from the main sale. */ function mint(uint256 numToMint) external payable { require( _saleIsActive, "Sale not active" ); // Mint tokens, checking for sufficient payment and supply. _mintInner(numToMint, 0); } /** * @notice Implements ERC-2981 royalty info interface. */ function royaltyInfo(uint256 /* tokenId */, uint256 salePrice) external view returns (address, uint256) { return (_royaltyRecipient, salePrice * _royaltyAmountNumerator / ROYALTY_AMOUNT_DENOMINATOR); } function contractURI() external view returns (string memory) { return _contractURI; } function tokenURI(uint256 tokenId) public view override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); if (!_isRevealed) { return _placeholderURI; } string memory baseURI = _baseTokenURI; return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString(), TOKEN_URI_EXTENSION)) : ""; } function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return ( interfaceId == INTERFACE_ID_ERC2981 || super.supportsInterface(interfaceId) ); } function getCurrentPrice() public view returns (uint256) { return _currentPrice; } function getCost(uint256 numToMint) public view returns (uint256) { return numToMint * getCurrentPrice(); } /** * @dev Mints `numToMint` tokens to msg.sender. * * Reverts if the max supply would be exceeded. * Reverts if the payment amount (`msg.value`) is insufficient. */ function _mintInner(uint256 numToMint, uint256 voucherAmount) internal { require( _totalMinted() + numToMint <= MAX_SUPPLY, "Mint would exceed max supply" ); require( getCost(numToMint) <= msg.value + voucherAmount, "Insufficient payment" ); _mint(msg.sender, numToMint, '', true); } function addAirdropContract(address contAddress) external onlyOwner { for(uint256 i = 0;i < airdrops.length;i++) { if(airdrops[i] == contAddress) return; } airdrops.push(contAddress); } function removeAirdropContract(address contAddress) external onlyOwner { uint256 contIndex = 0; bool found = false; for(uint256 i = 0;i < airdrops.length;i++) { if(airdrops[i] == contAddress) { found = true; contIndex = i; break; } } require(found, "Airdrop contract not in list."); if(contIndex != (airdrops.length - 1)) { airdrops[contIndex] = airdrops[airdrops.length - 1]; } airdrops.pop(); } } /** * @dev These functions deal with verification of Merkle Trees proofs. * * The proofs can be generated using the JavaScript library * https://github.com/miguelmota/merkletreejs[merkletreejs]. * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled. * * See `test/utils/cryptography/MerkleProof.test.js` for some examples. */ library MerkleProof { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { return processProof(proof, leaf) == root; } /** * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt * hash matches the root of the tree. When processing the proof, the pairs * of leafs & pre-images are assumed to be sorted. * * _Available since v4.4._ */ function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { bytes32 proofElement = proof[i]; if (computedHash <= proofElement) { // Hash(current computed hash + current element of the proof) computedHash = keccak256(abi.encodePacked(computedHash, proofElement)); } else { // Hash(current element of the proof + current computed hash) computedHash = keccak256(abi.encodePacked(proofElement, computedHash)); } } return computedHash; } } /** * @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); } } /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } abstract contract AirdropToken { function parentTokenTransferred(address from, uint256 tokenId) virtual public; }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"placeholderURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[],"name":"Finalized","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"baseURI","type":"string"}],"name":"SetBaseURI","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"contractURI","type":"string"}],"name":"SetContractURI","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"currentPrice","type":"uint256"}],"name":"SetCurrentPrice","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"isRevealed","type":"bool"}],"name":"SetIsRevealed","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"placeholderURI","type":"string"}],"name":"SetPlaceholderURI","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"presaleIsActive","type":"bool"}],"name":"SetPresaleIsActive","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bytes32","name":"root","type":"bytes32"}],"name":"SetPresaleMerkleRoot","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"provenanceHash","type":"string"}],"name":"SetProvenanceHash","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"royaltyRecipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"royaltyAmountNumerator","type":"uint256"}],"name":"SetRoyaltyInfo","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"saleIsActive","type":"bool"}],"name":"SetSaleIsActive","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":"uint256","name":"balance","type":"uint256"}],"name":"Withdrew","type":"event"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RESERVED_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ROYALTY_AMOUNT_DENOMINATOR","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOKEN_URI_EXTENSION","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_currentPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_isFinalized","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_isRevealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_numPresaleMints","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_presaleExtras","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_presaleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_presaleMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_provenanceHash","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_royaltyAmountNumerator","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_royaltyRecipient","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_usedVoucher","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"contAddress","type":"address"}],"name":"addAirdropContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"airdrops","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"finalize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numToMint","type":"uint256"}],"name":"getCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCurrentPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numToMint","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numToMint","type":"uint256"},{"internalType":"uint256","name":"maxMints","type":"uint256"},{"internalType":"uint256","name":"voucherAmount","type":"uint256"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"mintPresale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"numToMint","type":"uint256"}],"name":"mintReservedTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"contAddress","type":"address"}],"name":"removeAirdropContract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"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":"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":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newContractURI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"currentPrice","type":"uint256"}],"name":"setCurrentPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"isRevealed","type":"bool"}],"name":"setIsRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"placeholderURI","type":"string"}],"name":"setPlaceholderURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"presaleExtras","type":"uint256"}],"name":"setPresaleExtras","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"presaleIsActive","type":"bool"}],"name":"setPresaleIsActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"root","type":"bytes32"}],"name":"setPresaleMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"provenanceHash","type":"string"}],"name":"setProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"royaltyRecipient","type":"address"},{"internalType":"uint256","name":"royaltyAmountNumerator","type":"uint256"}],"name":"setRoyaltyInfo","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"saleIsActive","type":"bool"}],"name":"setSaleIsActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052610bb8600a5566b1a2bc2ec50000600d55600e805463ffffffff191690553480156200002f57600080fd5b506040516200326b3803806200326b8339810160408190526200005291620001fe565b6040518060400160405280600c81526020016b4775747465722050756e6b7360a01b81525060405180604001604052806002815260200161047560f41b8152508160029080519060200190620000aa92919062000142565b508051620000c090600390602084019062000142565b5050600160005550620000d333620000f0565b8051620000e890601390602084019062000142565b505062000317565b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200015090620002da565b90600052602060002090601f016020900481019282620001745760008555620001bf565b82601f106200018f57805160ff1916838001178555620001bf565b82800160010185558215620001bf579182015b82811115620001bf578251825591602001919060010190620001a2565b50620001cd929150620001d1565b5090565b5b80821115620001cd5760008155600101620001d2565b634e487b7160e01b600052604160045260246000fd5b600060208083850312156200021257600080fd5b82516001600160401b03808211156200022a57600080fd5b818501915085601f8301126200023f57600080fd5b815181811115620002545762000254620001e8565b604051601f8201601f19908116603f011681019083821181831017156200027f576200027f620001e8565b8160405282815288868487010111156200029857600080fd5b600093505b82841015620002bc57848401860151818501870152928501926200029d565b82841115620002ce5760008684830101525b98975050505050505050565b600181811c90821680620002ef57607f821691505b602082108114156200031157634e487b7160e01b600052602260045260246000fd5b50919050565b612f4480620003276000396000f3fe60806040526004361061036b5760003560e01c80635d893ba0116101c6578063a22cb465116100f7578063d134dd4a11610095578063e985e9c51161006f578063e985e9c5146109e2578063eb1a190e14610a2b578063eb91d37e14610a45578063f2fde38b14610a5a57600080fd5b8063d134dd4a1461097c578063e2e784d5146109ad578063e8a3d485146109cd57600080fd5b8063b88d4fde116100d1578063b88d4fde146108fc578063c87b56dd1461091c578063ca2bbb6f1461093c578063d03053521461095c57600080fd5b8063a22cb465146108a6578063a24578f2146108c6578063a50c73bf146108e657600080fd5b806376f25d2a11610164578063938e3d7b1161013e578063938e3d7b1461084857806395d89b411461086857806399a30c121461087d578063a0712d681461089357600080fd5b806376f25d2a146107f35780637a36dadb146108095780638da5cb5b1461082a57600080fd5b80637043e9e8116101a05780637043e9e81461078f57806370a08231146107ab578063715018a6146107cb578063727a612e146107e057600080fd5b80635d893ba01461073057806360db50821461074f5780636352211e1461076f57600080fd5b80632a55205a116102a057806342842e0e1161023e578063534308cc11610218578063534308cc146106bb57806355f804b3146106d057806357535c43146106f05780635a4dd47d1461071057600080fd5b806342842e0e1461066657806349a5980a146106865780634bb278f3146106a657600080fd5b806332cb6b0c1161027a57806332cb6b0c146106055780633574a2dd1461061b5780633bdd280e1461063b5780633ccfd60b1461065157600080fd5b80632a55205a146105815780632e210d6b146105c057806331a53e9a146105f057600080fd5b8063109695231161030d57806318160ddd116102e757806318160ddd1461050457806318b200711461052157806323b872dd1461054157806328d7b2761461056157600080fd5b8063109695231461049c578063135a9389146104bc5780631525131c146104dc57600080fd5b806306fdde031161034957806306fdde0314610402578063081812fc1461042457806308a3547e1461045c578063095ea7b31461047c57600080fd5b806301ffc9a71461037057806302c88989146103a557806305f6ae00146103c7575b600080fd5b34801561037c57600080fd5b5061039061038b3660046128de565b610a7a565b60405190151581526020015b60405180910390f35b3480156103b157600080fd5b506103c56103c0366004612910565b610aa5565b005b3480156103d357600080fd5b506103f46103e2366004612942565b60106020526000908152604090205481565b60405190815260200161039c565b34801561040e57600080fd5b50610417610b2c565b60405161039c91906129b5565b34801561043057600080fd5b5061044461043f3660046129c8565b610bbe565b6040516001600160a01b03909116815260200161039c565b34801561046857600080fd5b506103c5610477366004612910565b610c02565b34801561048857600080fd5b506103c56104973660046129e1565b610c6d565b3480156104a857600080fd5b506103c56104b7366004612a0b565b610cfb565b3480156104c857600080fd5b506103c56104d7366004612942565b610d99565b3480156104e857600080fd5b50600e546104449064010000000090046001600160a01b031681565b34801561051057600080fd5b5060015460005403600019016103f4565b34801561052d57600080fd5b506103c561053c3660046129c8565b610e6e565b34801561054d57600080fd5b506103c561055c366004612a7d565b610ecd565b34801561056d57600080fd5b506103c561057c3660046129c8565b610ed8565b34801561058d57600080fd5b506105a161059c366004612ab9565b610f37565b604080516001600160a01b03909316835260208301919091520161039c565b3480156105cc57600080fd5b506103906105db366004612942565b60116020526000908152604090205460ff1681565b3480156105fc57600080fd5b506103f460e181565b34801561061157600080fd5b506103f461270f81565b34801561062757600080fd5b506103c5610636366004612a0b565b610f7c565b34801561064757600080fd5b506103f4600d5481565b34801561065d57600080fd5b506103c5610fe4565b34801561067257600080fd5b506103c5610681366004612a7d565b61106e565b34801561069257600080fd5b506103c56106a1366004612910565b611089565b3480156106b257600080fd5b506103c5611128565b3480156106c757600080fd5b50610417611212565b3480156106dc57600080fd5b506103c56106eb366004612a0b565b6112a0565b3480156106fc57600080fd5b506103c561070b3660046129e1565b611332565b34801561071c57600080fd5b506103f461072b3660046129c8565b6113ee565b34801561073c57600080fd5b50600e5461039090610100900460ff1681565b34801561075b57600080fd5b5061044461076a3660046129c8565b611403565b34801561077b57600080fd5b5061044461078a3660046129c8565b61142d565b34801561079b57600080fd5b506103f4670de0b6b3a764000081565b3480156107b757600080fd5b506103f46107c6366004612942565b61143f565b3480156107d757600080fd5b506103c561148e565b6103c56107ee366004612adb565b6114c4565b3480156107ff57600080fd5b506103f4600a5481565b34801561081557600080fd5b50600e54610390906301000000900460ff1681565b34801561083657600080fd5b506009546001600160a01b0316610444565b34801561085457600080fd5b506103c5610863366004612a0b565b6116dc565b34801561087457600080fd5b50610417611744565b34801561088957600080fd5b506103f4600b5481565b6103c56108a13660046129c8565b611753565b3480156108b257600080fd5b506103c56108c1366004612b6b565b6117a7565b3480156108d257600080fd5b506103c56108e1366004612942565b61183d565b3480156108f257600080fd5b506103f4600f5481565b34801561090857600080fd5b506103c5610917366004612bb4565b6119e3565b34801561092857600080fd5b506104176109373660046129c8565b611a34565b34801561094857600080fd5b50600e546103909062010000900460ff1681565b34801561096857600080fd5b506103c56109773660046129c8565b611c43565b34801561098857600080fd5b5061041760405180604001604052806005815260200164173539b7b760d91b81525081565b3480156109b957600080fd5b506103c56109c83660046129e1565b611c72565b3480156109d957600080fd5b50610417611d03565b3480156109ee57600080fd5b506103906109fd366004612c90565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b348015610a3757600080fd5b50600e546103909060ff1681565b348015610a5157600080fd5b50600d546103f4565b348015610a6657600080fd5b506103c5610a75366004612942565b611d12565b60006001600160e01b0319821663152a902d60e11b1480610a9f5750610a9f82611daa565b92915050565b6009546001600160a01b03163314610ad85760405162461bcd60e51b8152600401610acf90612cba565b60405180910390fd5b600e80548215156101000261ff00199091161790556040517f20fe3d468e18cc677a838aefa7188273b78ab4acfafec99620be1db979d4e79b90610b2190831515815260200190565b60405180910390a150565b606060028054610b3b90612cef565b80601f0160208091040260200160405190810160405280929190818152602001828054610b6790612cef565b8015610bb45780601f10610b8957610100808354040283529160200191610bb4565b820191906000526020600020905b815481529060010190602001808311610b9757829003601f168201915b5050505050905090565b6000610bc982611dfa565b610be6576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6009546001600160a01b03163314610c2c5760405162461bcd60e51b8152600401610acf90612cba565b600e805460ff19168215159081179091556040519081527f04682f4e7af4746fc1bf0302c8d29247fa327140e8639404464b3191dc5257f190602001610b21565b6000610c788261142d565b9050806001600160a01b0316836001600160a01b03161415610cad5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610ccd5750610ccb81336109fd565b155b15610ceb576040516367d9dca160e11b815260040160405180910390fd5b610cf6838383611e33565b505050565b6009546001600160a01b03163314610d255760405162461bcd60e51b8152600401610acf90612cba565b600e546301000000900460ff1615610d4f5760405162461bcd60e51b8152600401610acf90612d2a565b610d5b600c838361282f565b507f6760362308ca665d8ad5234d7f09a8ac815ee45be8350cad464cb1e4eadd34ee8282604051610d8d929190612d59565b60405180910390a15050565b6009546001600160a01b03163314610dc35760405162461bcd60e51b8152600401610acf90612cba565b60005b600854811015610e1e57816001600160a01b031660088281548110610ded57610ded612d88565b6000918252602090912001546001600160a01b03161415610e0c575050565b80610e1681612db4565b915050610dc6565b50600880546001810182556000919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30180546001600160a01b0319166001600160a01b0383161790555b50565b6009546001600160a01b03163314610e985760405162461bcd60e51b8152600401610acf90612cba565b600d8190556040518181527fb8b500daf77e0865d4adb6566694ae5a410922f8cc7596d899f0b2f2ddd24b9d90602001610b21565b610cf6838383611e8f565b6009546001600160a01b03163314610f025760405162461bcd60e51b8152600401610acf90612cba565b600b8190556040518181527f27fda2f09bdfc247a689f64681c7850adf9ddb3086af9cd89b0a7c724b24f7f690602001610b21565b600080600e60049054906101000a90046001600160a01b0316670de0b6b3a7640000600f5485610f679190612dcf565b610f719190612e04565b915091509250929050565b6009546001600160a01b03163314610fa65760405162461bcd60e51b8152600401610acf90612cba565b610fb26013838361282f565b507f330b2ff4a885bf6f80261e9830cdeec700b2d965f52f12a62f9e9f3b628fcae98282604051610d8d929190612d59565b6009546001600160a01b0316331461100e5760405162461bcd60e51b8152600401610acf90612cba565b6040514790339082156108fc029083906000818181858888f1935050505015801561103d573d6000803e3d6000fd5b506040518181527fb6b476da71cea8275cac6b1720c04966afaff5e637472cedb6cbd32c43a2325190602001610b21565b610cf6838383604051806020016040528060008152506119e3565b6009546001600160a01b031633146110b35760405162461bcd60e51b8152600401610acf90612cba565b600e546301000000900460ff16156110dd5760405162461bcd60e51b8152600401610acf90612d2a565b600e8054821515620100000262ff0000199091161790556040517f40dcfa5db899ec74bc8371886cd6b7550aa92fd52a425b9c498a839183f2886c90610b2190831515815260200190565b6009546001600160a01b031633146111525760405162461bcd60e51b8152600401610acf90612cba565b600e546301000000900460ff161561117c5760405162461bcd60e51b8152600401610acf90612d2a565b600e5462010000900460ff166111d45760405162461bcd60e51b815260206004820152601c60248201527f4d7573742062652072657665616c656420746f2066696e616c697a65000000006044820152606401610acf565b600e805463ff000000191663010000001790556040517f6823b073d48d6e3a7d385eeb601452d680e74bb46afe3255a7d778f3a9b1768190600090a1565b600c805461121f90612cef565b80601f016020809104026020016040519081016040528092919081815260200182805461124b90612cef565b80156112985780601f1061126d57610100808354040283529160200191611298565b820191906000526020600020905b81548152906001019060200180831161127b57829003601f168201915b505050505081565b6009546001600160a01b031633146112ca5760405162461bcd60e51b8152600401610acf90612cba565b600e546301000000900460ff16156112f45760405162461bcd60e51b8152600401610acf90612d2a565b6113006012838361282f565b507f23c8c9488efebfd474e85a7956de6f39b17c7ab88502d42a623db2d8e382bbaa8282604051610d8d929190612d59565b6009546001600160a01b0316331461135c5760405162461bcd60e51b8152600401610acf90612cba565b60e18161136c6000546000190190565b6113769190612e18565b11156113ce5760405162461bcd60e51b815260206004820152602160248201527f4d696e7420776f756c642065786365656420726573657276656420737570706c6044820152607960f81b6064820152608401610acf565b6113ea828260405180602001604052806000815250600161214e565b5050565b60006113f9600d5490565b610a9f9083612dcf565b6008818154811061141357600080fd5b6000918252602090912001546001600160a01b0316905081565b60006114388261231f565b5192915050565b60006001600160a01b038216611468576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6009546001600160a01b031633146114b85760405162461bcd60e51b8152600401610acf90612cba565b6114c26000612448565b565b600e5460ff1661150b5760405162461bcd60e51b815260206004820152601260248201527150726573616c65206e6f742061637469766560701b6044820152606401610acf565b6040516bffffffffffffffffffffffff193360601b166020820152603481018590526054810184905260009060740160405160208183030381529060405280519060200120905061159383838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600b54915084905061249a565b6115d65760405162461bcd60e51b815260206004820152601460248201527324b73b30b634b21026b2b935b63290383937b7b360611b6044820152606401610acf565b336000908152601060205260408120546115f1908890612e18565b9050600086821115611654576116078783612e30565b9050600a548111156116545760405162461bcd60e51b8152602060048201526016602482015275141c995cd85b19481b5a5b9d1cc8195e18d95959195960521b6044820152606401610acf565b6000861580159061167557503360009081526011602052604090205460ff16155b156116975750336000908152601160205260409020805460ff19166001179055855b33600090815260106020526040902083905581156116c75781600a60008282546116c19190612e30565b90915550505b6116d189826124b0565b505050505050505050565b6009546001600160a01b031633146117065760405162461bcd60e51b8152600401610acf90612cba565b6117126014838361282f565b507f5ca9f750836b0b7efdace104f07b5c9f0df0650c0fd24f5163e99044ae36ea528282604051610d8d929190612d59565b606060038054610b3b90612cef565b600e54610100900460ff1661179c5760405162461bcd60e51b815260206004820152600f60248201526e53616c65206e6f742061637469766560881b6044820152606401610acf565b610e6b8160006124b0565b6001600160a01b0382163314156117d15760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6009546001600160a01b031633146118675760405162461bcd60e51b8152600401610acf90612cba565b60008060005b6008548110156118cd57836001600160a01b03166008828154811061189457611894612d88565b6000918252602090912001546001600160a01b031614156118bb57600191508092506118cd565b806118c581612db4565b91505061186d565b508061191b5760405162461bcd60e51b815260206004820152601d60248201527f41697264726f7020636f6e7472616374206e6f7420696e206c6973742e0000006044820152606401610acf565b60085461192a90600190612e30565b82146119ab576008805461194090600190612e30565b8154811061195057611950612d88565b600091825260209091200154600880546001600160a01b03909216918490811061197c5761197c612d88565b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b031602179055505b60088054806119bc576119bc612e47565b600082815260209020810160001990810180546001600160a01b0319169055019055505050565b6119ee848484611e8f565b6001600160a01b0383163b15158015611a105750611a0e8484848461258d565b155b15611a2e576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060611a3f82611dfa565b611aa35760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610acf565b600e5462010000900460ff16611b455760138054611ac090612cef565b80601f0160208091040260200160405190810160405280929190818152602001828054611aec90612cef565b8015611b395780601f10611b0e57610100808354040283529160200191611b39565b820191906000526020600020905b815481529060010190602001808311611b1c57829003601f168201915b50505050509050919050565b600060128054611b5490612cef565b80601f0160208091040260200160405190810160405280929190818152602001828054611b8090612cef565b8015611bcd5780601f10611ba257610100808354040283529160200191611bcd565b820191906000526020600020905b815481529060010190602001808311611bb057829003601f168201915b505050505090506000815111611bf25760405180602001604052806000815250611c3c565b80611bfc84612685565b60405180604001604052806005815260200164173539b7b760d91b815250604051602001611c2c93929190612e5d565b6040516020818303038152906040525b9392505050565b6009546001600160a01b03163314611c6d5760405162461bcd60e51b8152600401610acf90612cba565b600a55565b6009546001600160a01b03163314611c9c5760405162461bcd60e51b8152600401610acf90612cba565b600e8054640100000000600160c01b0319166401000000006001600160a01b03851690810291909117909155600f82905560408051918252602082018390527fff26d16febb506bdb66324138b1086facb8bd304fc773e610e0aa1593b7a07469101610d8d565b606060148054610b3b90612cef565b6009546001600160a01b03163314611d3c5760405162461bcd60e51b8152600401610acf90612cba565b6001600160a01b038116611da15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610acf565b610e6b81612448565b60006001600160e01b031982166380ac58cd60e01b1480611ddb57506001600160e01b03198216635b5e139f60e01b145b80610a9f57506301ffc9a760e01b6001600160e01b0319831614610a9f565b600081600111158015611e0e575060005482105b8015610a9f575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611e9a8261231f565b80519091506000906001600160a01b0316336001600160a01b03161480611ec857508151611ec890336109fd565b80611ee3575033611ed884610bbe565b6001600160a01b0316145b905080611f0357604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b031614611f385760405162a1148160e81b815260040160405180910390fd5b6001600160a01b038416611f5f57604051633a954ecd60e21b815260040160405180910390fd5b60005b60085481101561200757600060088281548110611f8157611f81612d88565b60009182526020909120015460405163efd563cd60e01b81526001600160a01b038981166004830152602482018890529091169150819063efd563cd90604401600060405180830381600087803b158015611fdb57600080fd5b505af1158015611fef573d6000803e3d6000fd5b50505050508080611fff90612db4565b915050611f62565b506120186000848460000151611e33565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021790925590860180835291205490911661210457600054811015612104578251600082815260046020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6000546001600160a01b03851661217757604051622e076360e81b815260040160405180910390fd5b836121955760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561224757506001600160a01b0387163b15155b156122d0575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4612298600088848060010195508861258d565b6122b5576040516368d2bf6b60e11b815260040160405180910390fd5b8082141561224d5782600054146122cb57600080fd5b612316565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808214156122d1575b50600055612147565b6040805160608101825260008082526020820181905291810191909152818060011115801561234f575060005481105b1561242f57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff1615159181018290529061242d5780516001600160a01b0316156123c3579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215612428579392505050565b6123c3565b505b604051636f96cda160e11b815260040160405180910390fd5b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000826124a78584612783565b14949350505050565b61270f826124c16000546000190190565b6124cb9190612e18565b11156125195760405162461bcd60e51b815260206004820152601c60248201527f4d696e7420776f756c6420657863656564206d617820737570706c79000000006044820152606401610acf565b6125238134612e18565b61252c836113ee565b11156125715760405162461bcd60e51b8152602060048201526014602482015273125b9cdd59999a58da595b9d081c185e5b595b9d60621b6044820152606401610acf565b6113ea338360405180602001604052806000815250600161214e565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906125c2903390899088908890600401612ea0565b602060405180830381600087803b1580156125dc57600080fd5b505af192505050801561260c575060408051601f3d908101601f1916820190925261260991810190612edd565b60015b612667573d80801561263a576040519150601f19603f3d011682016040523d82523d6000602084013e61263f565b606091505b50805161265f576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060816126a95750506040805180820190915260018152600360fc1b602082015290565b8160005b81156126d357806126bd81612db4565b91506126cc9050600a83612e04565b91506126ad565b60008167ffffffffffffffff8111156126ee576126ee612b9e565b6040519080825280601f01601f191660200182016040528015612718576020820181803683370190505b5090505b841561267d5761272d600183612e30565b915061273a600a86612efa565b612745906030612e18565b60f81b81838151811061275a5761275a612d88565b60200101906001600160f81b031916908160001a90535061277c600a86612e04565b945061271c565b600081815b84518110156128275760008582815181106127a5576127a5612d88565b602002602001015190508083116127e7576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250612814565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b508061281f81612db4565b915050612788565b509392505050565b82805461283b90612cef565b90600052602060002090601f01602090048101928261285d57600085556128a3565b82601f106128765782800160ff198235161785556128a3565b828001600101855582156128a3579182015b828111156128a3578235825591602001919060010190612888565b506128af9291506128b3565b5090565b5b808211156128af57600081556001016128b4565b6001600160e01b031981168114610e6b57600080fd5b6000602082840312156128f057600080fd5b8135611c3c816128c8565b8035801515811461290b57600080fd5b919050565b60006020828403121561292257600080fd5b611c3c826128fb565b80356001600160a01b038116811461290b57600080fd5b60006020828403121561295457600080fd5b611c3c8261292b565b60005b83811015612978578181015183820152602001612960565b83811115611a2e5750506000910152565b600081518084526129a181602086016020860161295d565b601f01601f19169290920160200192915050565b602081526000611c3c6020830184612989565b6000602082840312156129da57600080fd5b5035919050565b600080604083850312156129f457600080fd5b6129fd8361292b565b946020939093013593505050565b60008060208385031215612a1e57600080fd5b823567ffffffffffffffff80821115612a3657600080fd5b818501915085601f830112612a4a57600080fd5b813581811115612a5957600080fd5b866020828501011115612a6b57600080fd5b60209290920196919550909350505050565b600080600060608486031215612a9257600080fd5b612a9b8461292b565b9250612aa96020850161292b565b9150604084013590509250925092565b60008060408385031215612acc57600080fd5b50508035926020909101359150565b600080600080600060808688031215612af357600080fd5b853594506020860135935060408601359250606086013567ffffffffffffffff80821115612b2057600080fd5b818801915088601f830112612b3457600080fd5b813581811115612b4357600080fd5b8960208260051b8501011115612b5857600080fd5b9699959850939650602001949392505050565b60008060408385031215612b7e57600080fd5b612b878361292b565b9150612b95602084016128fb565b90509250929050565b634e487b7160e01b600052604160045260246000fd5b60008060008060808587031215612bca57600080fd5b612bd38561292b565b9350612be16020860161292b565b925060408501359150606085013567ffffffffffffffff80821115612c0557600080fd5b818701915087601f830112612c1957600080fd5b813581811115612c2b57612c2b612b9e565b604051601f8201601f19908116603f01168101908382118183101715612c5357612c53612b9e565b816040528281528a6020848701011115612c6c57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215612ca357600080fd5b612cac8361292b565b9150612b956020840161292b565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c90821680612d0357607f821691505b60208210811415612d2457634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526015908201527413595d1859185d18481a5cc8199a5b985b1a5e9959605a1b604082015260600190565b60208152816020820152818360408301376000818301604090810191909152601f909201601f19160101919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600019821415612dc857612dc8612d9e565b5060010190565b6000816000190483118215151615612de957612de9612d9e565b500290565b634e487b7160e01b600052601260045260246000fd5b600082612e1357612e13612dee565b500490565b60008219821115612e2b57612e2b612d9e565b500190565b600082821015612e4257612e42612d9e565b500390565b634e487b7160e01b600052603160045260246000fd5b60008451612e6f81846020890161295d565b845190830190612e8381836020890161295d565b8451910190612e9681836020880161295d565b0195945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612ed390830184612989565b9695505050505050565b600060208284031215612eef57600080fd5b8151611c3c816128c8565b600082612f0957612f09612dee565b50069056fea2646970667358221220b8d76299ffa22ddbe3f3ec25ef26ea443d3e7900fa63e354c2a62b89fbbcd43e64736f6c6343000809003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x60806040526004361061036b5760003560e01c80635d893ba0116101c6578063a22cb465116100f7578063d134dd4a11610095578063e985e9c51161006f578063e985e9c5146109e2578063eb1a190e14610a2b578063eb91d37e14610a45578063f2fde38b14610a5a57600080fd5b8063d134dd4a1461097c578063e2e784d5146109ad578063e8a3d485146109cd57600080fd5b8063b88d4fde116100d1578063b88d4fde146108fc578063c87b56dd1461091c578063ca2bbb6f1461093c578063d03053521461095c57600080fd5b8063a22cb465146108a6578063a24578f2146108c6578063a50c73bf146108e657600080fd5b806376f25d2a11610164578063938e3d7b1161013e578063938e3d7b1461084857806395d89b411461086857806399a30c121461087d578063a0712d681461089357600080fd5b806376f25d2a146107f35780637a36dadb146108095780638da5cb5b1461082a57600080fd5b80637043e9e8116101a05780637043e9e81461078f57806370a08231146107ab578063715018a6146107cb578063727a612e146107e057600080fd5b80635d893ba01461073057806360db50821461074f5780636352211e1461076f57600080fd5b80632a55205a116102a057806342842e0e1161023e578063534308cc11610218578063534308cc146106bb57806355f804b3146106d057806357535c43146106f05780635a4dd47d1461071057600080fd5b806342842e0e1461066657806349a5980a146106865780634bb278f3146106a657600080fd5b806332cb6b0c1161027a57806332cb6b0c146106055780633574a2dd1461061b5780633bdd280e1461063b5780633ccfd60b1461065157600080fd5b80632a55205a146105815780632e210d6b146105c057806331a53e9a146105f057600080fd5b8063109695231161030d57806318160ddd116102e757806318160ddd1461050457806318b200711461052157806323b872dd1461054157806328d7b2761461056157600080fd5b8063109695231461049c578063135a9389146104bc5780631525131c146104dc57600080fd5b806306fdde031161034957806306fdde0314610402578063081812fc1461042457806308a3547e1461045c578063095ea7b31461047c57600080fd5b806301ffc9a71461037057806302c88989146103a557806305f6ae00146103c7575b600080fd5b34801561037c57600080fd5b5061039061038b3660046128de565b610a7a565b60405190151581526020015b60405180910390f35b3480156103b157600080fd5b506103c56103c0366004612910565b610aa5565b005b3480156103d357600080fd5b506103f46103e2366004612942565b60106020526000908152604090205481565b60405190815260200161039c565b34801561040e57600080fd5b50610417610b2c565b60405161039c91906129b5565b34801561043057600080fd5b5061044461043f3660046129c8565b610bbe565b6040516001600160a01b03909116815260200161039c565b34801561046857600080fd5b506103c5610477366004612910565b610c02565b34801561048857600080fd5b506103c56104973660046129e1565b610c6d565b3480156104a857600080fd5b506103c56104b7366004612a0b565b610cfb565b3480156104c857600080fd5b506103c56104d7366004612942565b610d99565b3480156104e857600080fd5b50600e546104449064010000000090046001600160a01b031681565b34801561051057600080fd5b5060015460005403600019016103f4565b34801561052d57600080fd5b506103c561053c3660046129c8565b610e6e565b34801561054d57600080fd5b506103c561055c366004612a7d565b610ecd565b34801561056d57600080fd5b506103c561057c3660046129c8565b610ed8565b34801561058d57600080fd5b506105a161059c366004612ab9565b610f37565b604080516001600160a01b03909316835260208301919091520161039c565b3480156105cc57600080fd5b506103906105db366004612942565b60116020526000908152604090205460ff1681565b3480156105fc57600080fd5b506103f460e181565b34801561061157600080fd5b506103f461270f81565b34801561062757600080fd5b506103c5610636366004612a0b565b610f7c565b34801561064757600080fd5b506103f4600d5481565b34801561065d57600080fd5b506103c5610fe4565b34801561067257600080fd5b506103c5610681366004612a7d565b61106e565b34801561069257600080fd5b506103c56106a1366004612910565b611089565b3480156106b257600080fd5b506103c5611128565b3480156106c757600080fd5b50610417611212565b3480156106dc57600080fd5b506103c56106eb366004612a0b565b6112a0565b3480156106fc57600080fd5b506103c561070b3660046129e1565b611332565b34801561071c57600080fd5b506103f461072b3660046129c8565b6113ee565b34801561073c57600080fd5b50600e5461039090610100900460ff1681565b34801561075b57600080fd5b5061044461076a3660046129c8565b611403565b34801561077b57600080fd5b5061044461078a3660046129c8565b61142d565b34801561079b57600080fd5b506103f4670de0b6b3a764000081565b3480156107b757600080fd5b506103f46107c6366004612942565b61143f565b3480156107d757600080fd5b506103c561148e565b6103c56107ee366004612adb565b6114c4565b3480156107ff57600080fd5b506103f4600a5481565b34801561081557600080fd5b50600e54610390906301000000900460ff1681565b34801561083657600080fd5b506009546001600160a01b0316610444565b34801561085457600080fd5b506103c5610863366004612a0b565b6116dc565b34801561087457600080fd5b50610417611744565b34801561088957600080fd5b506103f4600b5481565b6103c56108a13660046129c8565b611753565b3480156108b257600080fd5b506103c56108c1366004612b6b565b6117a7565b3480156108d257600080fd5b506103c56108e1366004612942565b61183d565b3480156108f257600080fd5b506103f4600f5481565b34801561090857600080fd5b506103c5610917366004612bb4565b6119e3565b34801561092857600080fd5b506104176109373660046129c8565b611a34565b34801561094857600080fd5b50600e546103909062010000900460ff1681565b34801561096857600080fd5b506103c56109773660046129c8565b611c43565b34801561098857600080fd5b5061041760405180604001604052806005815260200164173539b7b760d91b81525081565b3480156109b957600080fd5b506103c56109c83660046129e1565b611c72565b3480156109d957600080fd5b50610417611d03565b3480156109ee57600080fd5b506103906109fd366004612c90565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b348015610a3757600080fd5b50600e546103909060ff1681565b348015610a5157600080fd5b50600d546103f4565b348015610a6657600080fd5b506103c5610a75366004612942565b611d12565b60006001600160e01b0319821663152a902d60e11b1480610a9f5750610a9f82611daa565b92915050565b6009546001600160a01b03163314610ad85760405162461bcd60e51b8152600401610acf90612cba565b60405180910390fd5b600e80548215156101000261ff00199091161790556040517f20fe3d468e18cc677a838aefa7188273b78ab4acfafec99620be1db979d4e79b90610b2190831515815260200190565b60405180910390a150565b606060028054610b3b90612cef565b80601f0160208091040260200160405190810160405280929190818152602001828054610b6790612cef565b8015610bb45780601f10610b8957610100808354040283529160200191610bb4565b820191906000526020600020905b815481529060010190602001808311610b9757829003601f168201915b5050505050905090565b6000610bc982611dfa565b610be6576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6009546001600160a01b03163314610c2c5760405162461bcd60e51b8152600401610acf90612cba565b600e805460ff19168215159081179091556040519081527f04682f4e7af4746fc1bf0302c8d29247fa327140e8639404464b3191dc5257f190602001610b21565b6000610c788261142d565b9050806001600160a01b0316836001600160a01b03161415610cad5760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614801590610ccd5750610ccb81336109fd565b155b15610ceb576040516367d9dca160e11b815260040160405180910390fd5b610cf6838383611e33565b505050565b6009546001600160a01b03163314610d255760405162461bcd60e51b8152600401610acf90612cba565b600e546301000000900460ff1615610d4f5760405162461bcd60e51b8152600401610acf90612d2a565b610d5b600c838361282f565b507f6760362308ca665d8ad5234d7f09a8ac815ee45be8350cad464cb1e4eadd34ee8282604051610d8d929190612d59565b60405180910390a15050565b6009546001600160a01b03163314610dc35760405162461bcd60e51b8152600401610acf90612cba565b60005b600854811015610e1e57816001600160a01b031660088281548110610ded57610ded612d88565b6000918252602090912001546001600160a01b03161415610e0c575050565b80610e1681612db4565b915050610dc6565b50600880546001810182556000919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30180546001600160a01b0319166001600160a01b0383161790555b50565b6009546001600160a01b03163314610e985760405162461bcd60e51b8152600401610acf90612cba565b600d8190556040518181527fb8b500daf77e0865d4adb6566694ae5a410922f8cc7596d899f0b2f2ddd24b9d90602001610b21565b610cf6838383611e8f565b6009546001600160a01b03163314610f025760405162461bcd60e51b8152600401610acf90612cba565b600b8190556040518181527f27fda2f09bdfc247a689f64681c7850adf9ddb3086af9cd89b0a7c724b24f7f690602001610b21565b600080600e60049054906101000a90046001600160a01b0316670de0b6b3a7640000600f5485610f679190612dcf565b610f719190612e04565b915091509250929050565b6009546001600160a01b03163314610fa65760405162461bcd60e51b8152600401610acf90612cba565b610fb26013838361282f565b507f330b2ff4a885bf6f80261e9830cdeec700b2d965f52f12a62f9e9f3b628fcae98282604051610d8d929190612d59565b6009546001600160a01b0316331461100e5760405162461bcd60e51b8152600401610acf90612cba565b6040514790339082156108fc029083906000818181858888f1935050505015801561103d573d6000803e3d6000fd5b506040518181527fb6b476da71cea8275cac6b1720c04966afaff5e637472cedb6cbd32c43a2325190602001610b21565b610cf6838383604051806020016040528060008152506119e3565b6009546001600160a01b031633146110b35760405162461bcd60e51b8152600401610acf90612cba565b600e546301000000900460ff16156110dd5760405162461bcd60e51b8152600401610acf90612d2a565b600e8054821515620100000262ff0000199091161790556040517f40dcfa5db899ec74bc8371886cd6b7550aa92fd52a425b9c498a839183f2886c90610b2190831515815260200190565b6009546001600160a01b031633146111525760405162461bcd60e51b8152600401610acf90612cba565b600e546301000000900460ff161561117c5760405162461bcd60e51b8152600401610acf90612d2a565b600e5462010000900460ff166111d45760405162461bcd60e51b815260206004820152601c60248201527f4d7573742062652072657665616c656420746f2066696e616c697a65000000006044820152606401610acf565b600e805463ff000000191663010000001790556040517f6823b073d48d6e3a7d385eeb601452d680e74bb46afe3255a7d778f3a9b1768190600090a1565b600c805461121f90612cef565b80601f016020809104026020016040519081016040528092919081815260200182805461124b90612cef565b80156112985780601f1061126d57610100808354040283529160200191611298565b820191906000526020600020905b81548152906001019060200180831161127b57829003601f168201915b505050505081565b6009546001600160a01b031633146112ca5760405162461bcd60e51b8152600401610acf90612cba565b600e546301000000900460ff16156112f45760405162461bcd60e51b8152600401610acf90612d2a565b6113006012838361282f565b507f23c8c9488efebfd474e85a7956de6f39b17c7ab88502d42a623db2d8e382bbaa8282604051610d8d929190612d59565b6009546001600160a01b0316331461135c5760405162461bcd60e51b8152600401610acf90612cba565b60e18161136c6000546000190190565b6113769190612e18565b11156113ce5760405162461bcd60e51b815260206004820152602160248201527f4d696e7420776f756c642065786365656420726573657276656420737570706c6044820152607960f81b6064820152608401610acf565b6113ea828260405180602001604052806000815250600161214e565b5050565b60006113f9600d5490565b610a9f9083612dcf565b6008818154811061141357600080fd5b6000918252602090912001546001600160a01b0316905081565b60006114388261231f565b5192915050565b60006001600160a01b038216611468576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b031660009081526005602052604090205467ffffffffffffffff1690565b6009546001600160a01b031633146114b85760405162461bcd60e51b8152600401610acf90612cba565b6114c26000612448565b565b600e5460ff1661150b5760405162461bcd60e51b815260206004820152601260248201527150726573616c65206e6f742061637469766560701b6044820152606401610acf565b6040516bffffffffffffffffffffffff193360601b166020820152603481018590526054810184905260009060740160405160208183030381529060405280519060200120905061159383838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600b54915084905061249a565b6115d65760405162461bcd60e51b815260206004820152601460248201527324b73b30b634b21026b2b935b63290383937b7b360611b6044820152606401610acf565b336000908152601060205260408120546115f1908890612e18565b9050600086821115611654576116078783612e30565b9050600a548111156116545760405162461bcd60e51b8152602060048201526016602482015275141c995cd85b19481b5a5b9d1cc8195e18d95959195960521b6044820152606401610acf565b6000861580159061167557503360009081526011602052604090205460ff16155b156116975750336000908152601160205260409020805460ff19166001179055855b33600090815260106020526040902083905581156116c75781600a60008282546116c19190612e30565b90915550505b6116d189826124b0565b505050505050505050565b6009546001600160a01b031633146117065760405162461bcd60e51b8152600401610acf90612cba565b6117126014838361282f565b507f5ca9f750836b0b7efdace104f07b5c9f0df0650c0fd24f5163e99044ae36ea528282604051610d8d929190612d59565b606060038054610b3b90612cef565b600e54610100900460ff1661179c5760405162461bcd60e51b815260206004820152600f60248201526e53616c65206e6f742061637469766560881b6044820152606401610acf565b610e6b8160006124b0565b6001600160a01b0382163314156117d15760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6009546001600160a01b031633146118675760405162461bcd60e51b8152600401610acf90612cba565b60008060005b6008548110156118cd57836001600160a01b03166008828154811061189457611894612d88565b6000918252602090912001546001600160a01b031614156118bb57600191508092506118cd565b806118c581612db4565b91505061186d565b508061191b5760405162461bcd60e51b815260206004820152601d60248201527f41697264726f7020636f6e7472616374206e6f7420696e206c6973742e0000006044820152606401610acf565b60085461192a90600190612e30565b82146119ab576008805461194090600190612e30565b8154811061195057611950612d88565b600091825260209091200154600880546001600160a01b03909216918490811061197c5761197c612d88565b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b031602179055505b60088054806119bc576119bc612e47565b600082815260209020810160001990810180546001600160a01b0319169055019055505050565b6119ee848484611e8f565b6001600160a01b0383163b15158015611a105750611a0e8484848461258d565b155b15611a2e576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6060611a3f82611dfa565b611aa35760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610acf565b600e5462010000900460ff16611b455760138054611ac090612cef565b80601f0160208091040260200160405190810160405280929190818152602001828054611aec90612cef565b8015611b395780601f10611b0e57610100808354040283529160200191611b39565b820191906000526020600020905b815481529060010190602001808311611b1c57829003601f168201915b50505050509050919050565b600060128054611b5490612cef565b80601f0160208091040260200160405190810160405280929190818152602001828054611b8090612cef565b8015611bcd5780601f10611ba257610100808354040283529160200191611bcd565b820191906000526020600020905b815481529060010190602001808311611bb057829003601f168201915b505050505090506000815111611bf25760405180602001604052806000815250611c3c565b80611bfc84612685565b60405180604001604052806005815260200164173539b7b760d91b815250604051602001611c2c93929190612e5d565b6040516020818303038152906040525b9392505050565b6009546001600160a01b03163314611c6d5760405162461bcd60e51b8152600401610acf90612cba565b600a55565b6009546001600160a01b03163314611c9c5760405162461bcd60e51b8152600401610acf90612cba565b600e8054640100000000600160c01b0319166401000000006001600160a01b03851690810291909117909155600f82905560408051918252602082018390527fff26d16febb506bdb66324138b1086facb8bd304fc773e610e0aa1593b7a07469101610d8d565b606060148054610b3b90612cef565b6009546001600160a01b03163314611d3c5760405162461bcd60e51b8152600401610acf90612cba565b6001600160a01b038116611da15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610acf565b610e6b81612448565b60006001600160e01b031982166380ac58cd60e01b1480611ddb57506001600160e01b03198216635b5e139f60e01b145b80610a9f57506301ffc9a760e01b6001600160e01b0319831614610a9f565b600081600111158015611e0e575060005482105b8015610a9f575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611e9a8261231f565b80519091506000906001600160a01b0316336001600160a01b03161480611ec857508151611ec890336109fd565b80611ee3575033611ed884610bbe565b6001600160a01b0316145b905080611f0357604051632ce44b5f60e11b815260040160405180910390fd5b846001600160a01b031682600001516001600160a01b031614611f385760405162a1148160e81b815260040160405180910390fd5b6001600160a01b038416611f5f57604051633a954ecd60e21b815260040160405180910390fd5b60005b60085481101561200757600060088281548110611f8157611f81612d88565b60009182526020909120015460405163efd563cd60e01b81526001600160a01b038981166004830152602482018890529091169150819063efd563cd90604401600060405180830381600087803b158015611fdb57600080fd5b505af1158015611fef573d6000803e3d6000fd5b50505050508080611fff90612db4565b915050611f62565b506120186000848460000151611e33565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff1980821667ffffffffffffffff92831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021790925590860180835291205490911661210457600054811015612104578251600082815260046020908152604090912080549186015167ffffffffffffffff16600160a01b026001600160e01b03199092166001600160a01b03909316929092171790555b5082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6000546001600160a01b03851661217757604051622e076360e81b815260040160405180910390fd5b836121955760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff19811667ffffffffffffffff8083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b42909216919091021790558080850183801561224757506001600160a01b0387163b15155b156122d0575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4612298600088848060010195508861258d565b6122b5576040516368d2bf6b60e11b815260040160405180910390fd5b8082141561224d5782600054146122cb57600080fd5b612316565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808214156122d1575b50600055612147565b6040805160608101825260008082526020820181905291810191909152818060011115801561234f575060005481105b1561242f57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b810467ffffffffffffffff1692820192909252600160e01b90910460ff1615159181018290529061242d5780516001600160a01b0316156123c3579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b820467ffffffffffffffff1693830193909352600160e01b900460ff1615159281019290925215612428579392505050565b6123c3565b505b604051636f96cda160e11b815260040160405180910390fd5b600980546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000826124a78584612783565b14949350505050565b61270f826124c16000546000190190565b6124cb9190612e18565b11156125195760405162461bcd60e51b815260206004820152601c60248201527f4d696e7420776f756c6420657863656564206d617820737570706c79000000006044820152606401610acf565b6125238134612e18565b61252c836113ee565b11156125715760405162461bcd60e51b8152602060048201526014602482015273125b9cdd59999a58da595b9d081c185e5b595b9d60621b6044820152606401610acf565b6113ea338360405180602001604052806000815250600161214e565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906125c2903390899088908890600401612ea0565b602060405180830381600087803b1580156125dc57600080fd5b505af192505050801561260c575060408051601f3d908101601f1916820190925261260991810190612edd565b60015b612667573d80801561263a576040519150601f19603f3d011682016040523d82523d6000602084013e61263f565b606091505b50805161265f576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060816126a95750506040805180820190915260018152600360fc1b602082015290565b8160005b81156126d357806126bd81612db4565b91506126cc9050600a83612e04565b91506126ad565b60008167ffffffffffffffff8111156126ee576126ee612b9e565b6040519080825280601f01601f191660200182016040528015612718576020820181803683370190505b5090505b841561267d5761272d600183612e30565b915061273a600a86612efa565b612745906030612e18565b60f81b81838151811061275a5761275a612d88565b60200101906001600160f81b031916908160001a90535061277c600a86612e04565b945061271c565b600081815b84518110156128275760008582815181106127a5576127a5612d88565b602002602001015190508083116127e7576040805160208101859052908101829052606001604051602081830303815290604052805190602001209250612814565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b508061281f81612db4565b915050612788565b509392505050565b82805461283b90612cef565b90600052602060002090601f01602090048101928261285d57600085556128a3565b82601f106128765782800160ff198235161785556128a3565b828001600101855582156128a3579182015b828111156128a3578235825591602001919060010190612888565b506128af9291506128b3565b5090565b5b808211156128af57600081556001016128b4565b6001600160e01b031981168114610e6b57600080fd5b6000602082840312156128f057600080fd5b8135611c3c816128c8565b8035801515811461290b57600080fd5b919050565b60006020828403121561292257600080fd5b611c3c826128fb565b80356001600160a01b038116811461290b57600080fd5b60006020828403121561295457600080fd5b611c3c8261292b565b60005b83811015612978578181015183820152602001612960565b83811115611a2e5750506000910152565b600081518084526129a181602086016020860161295d565b601f01601f19169290920160200192915050565b602081526000611c3c6020830184612989565b6000602082840312156129da57600080fd5b5035919050565b600080604083850312156129f457600080fd5b6129fd8361292b565b946020939093013593505050565b60008060208385031215612a1e57600080fd5b823567ffffffffffffffff80821115612a3657600080fd5b818501915085601f830112612a4a57600080fd5b813581811115612a5957600080fd5b866020828501011115612a6b57600080fd5b60209290920196919550909350505050565b600080600060608486031215612a9257600080fd5b612a9b8461292b565b9250612aa96020850161292b565b9150604084013590509250925092565b60008060408385031215612acc57600080fd5b50508035926020909101359150565b600080600080600060808688031215612af357600080fd5b853594506020860135935060408601359250606086013567ffffffffffffffff80821115612b2057600080fd5b818801915088601f830112612b3457600080fd5b813581811115612b4357600080fd5b8960208260051b8501011115612b5857600080fd5b9699959850939650602001949392505050565b60008060408385031215612b7e57600080fd5b612b878361292b565b9150612b95602084016128fb565b90509250929050565b634e487b7160e01b600052604160045260246000fd5b60008060008060808587031215612bca57600080fd5b612bd38561292b565b9350612be16020860161292b565b925060408501359150606085013567ffffffffffffffff80821115612c0557600080fd5b818701915087601f830112612c1957600080fd5b813581811115612c2b57612c2b612b9e565b604051601f8201601f19908116603f01168101908382118183101715612c5357612c53612b9e565b816040528281528a6020848701011115612c6c57600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215612ca357600080fd5b612cac8361292b565b9150612b956020840161292b565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600181811c90821680612d0357607f821691505b60208210811415612d2457634e487b7160e01b600052602260045260246000fd5b50919050565b60208082526015908201527413595d1859185d18481a5cc8199a5b985b1a5e9959605a1b604082015260600190565b60208152816020820152818360408301376000818301604090810191909152601f909201601f19160101919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b6000600019821415612dc857612dc8612d9e565b5060010190565b6000816000190483118215151615612de957612de9612d9e565b500290565b634e487b7160e01b600052601260045260246000fd5b600082612e1357612e13612dee565b500490565b60008219821115612e2b57612e2b612d9e565b500190565b600082821015612e4257612e42612d9e565b500390565b634e487b7160e01b600052603160045260246000fd5b60008451612e6f81846020890161295d565b845190830190612e8381836020890161295d565b8451910190612e9681836020880161295d565b0195945050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612ed390830184612989565b9695505050505050565b600060208284031215612eef57600080fd5b8151611c3c816128c8565b600082612f0957612f09612dee565b50069056fea2646970667358221220b8d76299ffa22ddbe3f3ec25ef26ea443d3e7900fa63e354c2a62b89fbbcd43e64736f6c63430008090033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : placeholderURI (string):
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
37861:10614:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46598:231;;;;;;;;;;-1:-1:-1;46598:231:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;46598:231:0;;;;;;;;41379:155;;;;;;;;;;-1:-1:-1;41379:155:0;;;;;:::i;:::-;;:::i;:::-;;40038:51;;;;;;;;;;-1:-1:-1;40038:51:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;;1457:25:1;;;1445:2;1430:18;40038:51:0;1311:177:1;23179:100:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;24682:204::-;;;;;;;;;;-1:-1:-1;24682:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2593:32:1;;;2575:51;;2563:2;2548:18;24682:204:0;2429:203:1;41198:173:0;;;;;;;;;;-1:-1:-1;41198:173:0;;;;;:::i;:::-;;:::i;24245:371::-;;;;;;;;;;-1:-1:-1;24245:371:0;;;;;:::i;:::-;;:::i;40999:191::-;;;;;;;;;;-1:-1:-1;40999:191:0;;;;;:::i;:::-;;:::i;47670:231::-;;;;;;;;;;-1:-1:-1;47670:231:0;;;;;:::i;:::-;;:::i;39780:32::-;;;;;;;;;;-1:-1:-1;39780:32:0;;;;;;;-1:-1:-1;;;;;39780:32:0;;;19043:303;;;;;;;;;;-1:-1:-1;40825:1:0;19297:12;19087:7;19281:13;:28;-1:-1:-1;;19281:46:0;19043:303;;41542:158;;;;;;;;;;-1:-1:-1;41542:158:0;;;;;:::i;:::-;;:::i;25539:170::-;;;;;;;;;;-1:-1:-1;25539:170:0;;;;;:::i;:::-;;:::i;40842:149::-;;;;;;;;;;-1:-1:-1;40842:149:0;;;;;:::i;:::-;;:::i;45764:215::-;;;;;;;;;;-1:-1:-1;45764:215:0;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;4456:32:1;;;4438:51;;4520:2;4505:18;;4498:34;;;;4411:18;45764:215:0;4264:274:1;40274:44:0;;;;;;;;;;-1:-1:-1;40274:44:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;38572:45;;;;;;;;;;;;38614:3;38572:45;;38524:41;;;;;;;;;;;;38561:4;38524:41;;42673:178;;;;;;;;;;-1:-1:-1;42673:178:0;;;;;:::i;:::-;;:::i;39181:42::-;;;;;;;;;;;;;;;;43036:178;;;;;;;;;;;;;:::i;25780:185::-;;;;;;;;;;-1:-1:-1;25780:185:0;;;;;:::i;:::-;;:::i;41708:156::-;;;;;;;;;;-1:-1:-1;41708:156:0;;;;;:::i;:::-;;:::i;41991:217::-;;;;;;;;;;;;;:::i;39084:29::-;;;;;;;;;;;;;:::i;42511:154::-;;;;;;;;;;-1:-1:-1;42511:154:0;;;;;:::i;:::-;;:::i;43222:282::-;;;;;;;;;;-1:-1:-1;43222:282:0;;;;;:::i;:::-;;:::i;46941:121::-;;;;;;;;;;-1:-1:-1;46941:121:0;;;;;:::i;:::-;;:::i;39445:33::-;;;;;;;;;;-1:-1:-1;39445:33:0;;;;;;;;;;;18478:25;;;;;;;;;;-1:-1:-1;18478:25:0;;;;;:::i;:::-;;:::i;22988:124::-;;;;;;;;;;-1:-1:-1;22988:124:0;;;;;:::i;:::-;;:::i;38723:57::-;;;;;;;;;;;;38776:4;38723:57;;20163:206;;;;;;;;;;-1:-1:-1;20163:206:0;;;;;:::i;:::-;;:::i;15211:103::-;;;;;;;;;;;;;:::i;43588:1751::-;;;;;;:::i;:::-;;:::i;38621:36::-;;;;;;;;;;;;;;;;39685:32;;;;;;;;;;-1:-1:-1;39685:32:0;;;;;;;;;;;14560:87;;;;;;;;;;-1:-1:-1;14633:6:0;;-1:-1:-1;;;;;14633:6:0;14560:87;;42859:169;;;;;;;;;;-1:-1:-1;42859:169:0;;;;;:::i;:::-;;:::i;23348:104::-;;;;;;;;;;;;;:::i;38945:33::-;;;;;;;;;;;;;;;;45425:253;;;;;;:::i;:::-;;:::i;24958:279::-;;;;;;;;;;-1:-1:-1;24958:279:0;;;;;:::i;:::-;;:::i;47909:563::-;;;;;;;;;;-1:-1:-1;47909:563:0;;;;;:::i;:::-;;:::i;39924:38::-;;;;;;;;;;;;;;;;26036:369;;;;;;;;;;-1:-1:-1;26036:369:0;;;;;:::i;:::-;;:::i;46094:492::-;;;;;;;;;;-1:-1:-1;46094:492:0;;;;;:::i;:::-;;:::i;39567:31::-;;;;;;;;;;-1:-1:-1;39567:31:0;;;;;;;;;;;41872:111;;;;;;;;;;-1:-1:-1;41872:111:0;;;;;:::i;:::-;;:::i;38664:52::-;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;38664:52:0;;;;;42216:287;;;;;;;;;;-1:-1:-1;42216:287:0;;;;;:::i;:::-;;:::i;45987:99::-;;;;;;;;;;;;;:::i;25308:164::-;;;;;;;;;;-1:-1:-1;25308:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;25429:25:0;;;25405:4;25429:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;25308:164;39316:36;;;;;;;;;;-1:-1:-1;39316:36:0;;;;;;;;46837:96;;;;;;;;;;-1:-1:-1;46912:13:0;;46837:96;;15469:201;;;;;;;;;;-1:-1:-1;15469:201:0;;;;;:::i;:::-;;:::i;46598:231::-;46683:4;-1:-1:-1;;;;;;46722:35:0;;-1:-1:-1;;;46722:35:0;;:88;;;46774:36;46798:11;46774:23;:36::i;:::-;46700:121;46598:231;-1:-1:-1;;46598:231:0:o;41379:155::-;14633:6;;-1:-1:-1;;;;;14633:6:0;5664:10;14780:23;14772:68;;;;-1:-1:-1;;;14772:68:0;;;;;;;:::i;:::-;;;;;;;;;41453:13:::1;:28:::0;;;::::1;;;;-1:-1:-1::0;;41453:28:0;;::::1;;::::0;;41497:29:::1;::::0;::::1;::::0;::::1;::::0;41469:12;565:14:1;558:22;540:41;;528:2;513:18;;400:187;41497:29:0::1;;;;;;;;41379:155:::0;:::o;23179:100::-;23233:13;23266:5;23259:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23179:100;:::o;24682:204::-;24750:7;24775:16;24783:7;24775;:16::i;:::-;24770:64;;24800:34;;-1:-1:-1;;;24800:34:0;;;;;;;;;;;24770:64;-1:-1:-1;24854:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;24854:24:0;;24682:204::o;41198:173::-;14633:6;;-1:-1:-1;;;;;14633:6:0;5664:10;14780:23;14772:68;;;;-1:-1:-1;;;14772:68:0;;;;;;;:::i;:::-;41278:16:::1;:34:::0;;-1:-1:-1;;41278:34:0::1;::::0;::::1;;::::0;;::::1;::::0;;;41328:35:::1;::::0;540:41:1;;;41328:35:0::1;::::0;528:2:1;513:18;41328:35:0::1;400:187:1::0;24245:371:0;24318:13;24334:24;24350:7;24334:15;:24::i;:::-;24318:40;;24379:5;-1:-1:-1;;;;;24373:11:0;:2;-1:-1:-1;;;;;24373:11:0;;24369:48;;;24393:24;;-1:-1:-1;;;24393:24:0;;;;;;;;;;;24369:48;5664:10;-1:-1:-1;;;;;24434:21:0;;;;;;:63;;-1:-1:-1;24460:37:0;24477:5;5664:10;25308:164;:::i;24460:37::-;24459:38;24434:63;24430:138;;;24521:35;;-1:-1:-1;;;24521:35:0;;;;;;;;;;;24430:138;24580:28;24589:2;24593:7;24602:5;24580:8;:28::i;:::-;24307:309;24245:371;;:::o;40999:191::-;14633:6;;-1:-1:-1;;;;;14633:6:0;5664:10;14780:23;14772:68;;;;-1:-1:-1;;;14772:68:0;;;;;;;:::i;:::-;40496:12:::1;::::0;;;::::1;;;40495:13;40473:84;;;;-1:-1:-1::0;;;40473:84:0::1;;;;;;;:::i;:::-;41101:32:::2;:15;41119:14:::0;;41101:32:::2;:::i;:::-;;41149:33;41167:14;;41149:33;;;;;;;:::i;:::-;;;;;;;;40999:191:::0;;:::o;47670:231::-;14633:6;;-1:-1:-1;;;;;14633:6:0;5664:10;14780:23;14772:68;;;;-1:-1:-1;;;14772:68:0;;;;;;;:::i;:::-;47754:9:::1;47750:107;47772:8;:15:::0;47768:19;::::1;47750:107;;;47826:11;-1:-1:-1::0;;;;;47811:26:0::1;:8;47820:1;47811:11;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;47811:11:0::1;:26;47808:38;;;47839:7;47670:231:::0;:::o;47808:38::-:1;47788:3:::0;::::1;::::0;::::1;:::i;:::-;;;;47750:107;;;-1:-1:-1::0;47867:8:0::1;:26:::0;;::::1;::::0;::::1;::::0;;-1:-1:-1;47867:26:0;;;;;::::1;::::0;;-1:-1:-1;;;;;;47867:26:0::1;-1:-1:-1::0;;;;;47867:26:0;::::1;;::::0;;14851:1:::1;47670:231:::0;:::o;41542:158::-;14633:6;;-1:-1:-1;;;;;14633:6:0;5664:10;14780:23;14772:68;;;;-1:-1:-1;;;14772:68:0;;;;;;;:::i;:::-;41619:13:::1;:28:::0;;;41663:29:::1;::::0;1457:25:1;;;41663:29:0::1;::::0;1445:2:1;1430:18;41663:29:0::1;1311:177:1::0;25539:170:0;25673:28;25683:4;25689:2;25693:7;25673:9;:28::i;40842:149::-;14633:6;;-1:-1:-1;;;;;14633:6:0;5664:10;14780:23;14772:68;;;;-1:-1:-1;;;14772:68:0;;;;;;;:::i;:::-;40916:18:::1;:25:::0;;;40957:26:::1;::::0;1457:25:1;;;40957:26:0::1;::::0;1445:2:1;1430:18;40957:26:0::1;1311:177:1::0;45764:215:0;45850:7;45859;45887:17;;;;;;;;;-1:-1:-1;;;;;45887:17:0;38776:4;45918:23;;45906:9;:35;;;;:::i;:::-;:64;;;;:::i;:::-;45879:92;;;;45764:215;;;;;:::o;42673:178::-;14633:6;;-1:-1:-1;;;;;14633:6:0;5664:10;14780:23;14772:68;;;;-1:-1:-1;;;14772:68:0;;;;;;;:::i;:::-;42762:32:::1;:15;42780:14:::0;;42762:32:::1;:::i;:::-;;42810:33;42828:14;;42810:33;;;;;;;:::i;43036:178::-:0;14633:6;;-1:-1:-1;;;;;14633:6:0;5664:10;14780:23;14772:68;;;;-1:-1:-1;;;14772:68:0;;;;;;;:::i;:::-;43136:37:::1;::::0;43104:21:::1;::::0;43144:10:::1;::::0;43136:37;::::1;;;::::0;43104:21;;43086:15:::1;43136:37:::0;43086:15;43136:37;43104:21;43144:10;43136:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;43189:17:0::1;::::0;1457:25:1;;;43189:17:0::1;::::0;1445:2:1;1430:18;43189:17:0::1;1311:177:1::0;25780:185:0;25918:39;25935:4;25941:2;25945:7;25918:39;;;;;;;;;;;;:16;:39::i;41708:156::-;14633:6;;-1:-1:-1;;;;;14633:6:0;5664:10;14780:23;14772:68;;;;-1:-1:-1;;;14772:68:0;;;;;;;:::i;:::-;40496:12:::1;::::0;;;::::1;;;40495:13;40473:84;;;;-1:-1:-1::0;;;40473:84:0::1;;;;;;;:::i;:::-;41791:11:::2;:24:::0;;;::::2;;::::0;::::2;-1:-1:-1::0;;41791:24:0;;::::2;;::::0;;41831:25:::2;::::0;::::2;::::0;::::2;::::0;41805:10;565:14:1;558:22;540:41;;528:2;513:18;;400:187;41991:217:0;14633:6;;-1:-1:-1;;;;;14633:6:0;5664:10;14780:23;14772:68;;;;-1:-1:-1;;;14772:68:0;;;;;;;:::i;:::-;40496:12:::1;::::0;;;::::1;;;40495:13;40473:84;;;;-1:-1:-1::0;;;40473:84:0::1;;;;;;;:::i;:::-;42076:11:::2;::::0;;;::::2;;;42054:89;;;::::0;-1:-1:-1;;;42054:89:0;;9876:2:1;42054:89:0::2;::::0;::::2;9858:21:1::0;9915:2;9895:18;;;9888:30;9954;9934:18;;;9927:58;10002:18;;42054:89:0::2;9674:352:1::0;42054:89:0::2;42154:12;:19:::0;;-1:-1:-1;;42154:19:0::2;::::0;::::2;::::0;;42189:11:::2;::::0;::::2;::::0;42154:19;;42189:11:::2;41991:217::o:0;39084:29::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;42511:154::-;14633:6;;-1:-1:-1;;;;;14633:6:0;5664:10;14780:23;14772:68;;;;-1:-1:-1;;;14772:68:0;;;;;;;:::i;:::-;40496:12:::1;::::0;;;::::1;;;40495:13;40473:84;;;;-1:-1:-1::0;;;40473:84:0::1;;;;;;;:::i;:::-;42599:23:::2;:13;42615:7:::0;;42599:23:::2;:::i;:::-;;42638:19;42649:7;;42638:19;;;;;;;:::i;43222:282::-:0;14633:6;;-1:-1:-1;;;;;14633:6:0;5664:10;14780:23;14772:68;;;;-1:-1:-1;;;14772:68:0;;;;;;;:::i;:::-;38614:3:::1;43357:9;43340:14;19486:7:::0;19672:13;-1:-1:-1;;19672:31:0;;19439:283;43340:14:::1;:26;;;;:::i;:::-;:45;;43318:128;;;::::0;-1:-1:-1;;;43318:128:0;;10366:2:1;43318:128:0::1;::::0;::::1;10348:21:1::0;10405:2;10385:18;;;10378:30;10444:34;10424:18;;;10417:62;-1:-1:-1;;;10495:18:1;;;10488:31;10536:19;;43318:128:0::1;10164:397:1::0;43318:128:0::1;43459:37;43465:9;43476;43459:37;;;;;;;;;;;::::0;43491:4:::1;43459:5;:37::i;:::-;43222:282:::0;;:::o;46941:121::-;46998:7;47037:17;46912:13;;;46837:96;47037:17;47025:29;;:9;:29;:::i;18478:25::-;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;18478:25:0;;-1:-1:-1;18478:25:0;:::o;22988:124::-;23052:7;23079:20;23091:7;23079:11;:20::i;:::-;:25;;22988:124;-1:-1:-1;;22988:124:0:o;20163:206::-;20227:7;-1:-1:-1;;;;;20251:19:0;;20247:60;;20279:28;;-1:-1:-1;;;20279:28:0;;;;;;;;;;;20247:60;-1:-1:-1;;;;;;20333:19:0;;;;;:12;:19;;;;;:27;;;;20163:206::o;15211:103::-;14633:6;;-1:-1:-1;;;;;14633:6:0;5664:10;14780:23;14772:68;;;;-1:-1:-1;;;14772:68:0;;;;;;;:::i;:::-;15276:30:::1;15303:1;15276:18;:30::i;:::-;15211:103::o:0;43588:1751::-;43794:16;;;;43772:84;;;;-1:-1:-1;;;43772:84:0;;10768:2:1;43772:84:0;;;10750:21:1;10807:2;10787:18;;;10780:30;-1:-1:-1;;;10826:18:1;;;10819:48;10884:18;;43772:84:0;10566:342:1;43772:84:0;43996:53;;-1:-1:-1;;44013:10:0;11118:2:1;11114:15;11110:53;43996::0;;;11098:66:1;11180:12;;;11173:28;;;11217:12;;;11210:28;;;43971:12:0;;11254::1;;43996:53:0;;;;;;;;;;;;43986:64;;;;;;43971:79;;44173:57;44192:11;;44173:57;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;44205:18:0;;;-1:-1:-1;44225:4:0;;-1:-1:-1;44173:18:0;:57::i;:::-;44151:127;;;;-1:-1:-1;;;44151:127:0;;11479:2:1;44151:127:0;;;11461:21:1;11518:2;11498:18;;;11491:30;-1:-1:-1;;;11537:18:1;;;11530:50;11597:18;;44151:127:0;11277:344:1;44151:127:0;44436:10;44390:26;44419:28;;;:16;:28;;;;;;:40;;44450:9;;44419:40;:::i;:::-;44390:69;;44464:27;44524:8;44503:18;:29;44500:192;;;44563:29;44584:8;44563:18;:29;:::i;:::-;44541:51;;44635:14;;44612:19;:37;;44598:88;;;;-1:-1:-1;;;44598:88:0;;11958:2:1;44598:88:0;;;11940:21:1;11997:2;11977:18;;;11970:30;-1:-1:-1;;;12016:18:1;;;12009:52;12078:18;;44598:88:0;11756:346:1;44598:88:0;44769:30;44818:18;;;;;:47;;-1:-1:-1;44854:10:0;44841:24;;;;:12;:24;;;;;;;;44840:25;44818:47;44814:164;;;-1:-1:-1;44948:10:0;44935:24;;;;:12;:24;;;;;:31;;-1:-1:-1;;44935:31:0;44962:4;44935:31;;;44907:13;44814:164;45098:10;45081:28;;;;:16;:28;;;;;:49;;;45138:23;;45135:70;;45183:19;45165:14;;:37;;;;;;;:::i;:::-;;;;-1:-1:-1;;45135:70:0;45286:45;45297:9;45308:22;45286:10;:45::i;:::-;43761:1578;;;;43588:1751;;;;;:::o;42859:169::-;14633:6;;-1:-1:-1;;;;;14633:6:0;5664:10;14780:23;14772:68;;;;-1:-1:-1;;;14772:68:0;;;;;;;:::i;:::-;42945:29:::1;:12;42960:14:::0;;42945:29:::1;:::i;:::-;;42990:30;43005:14;;42990:30;;;;;;;:::i;23348:104::-:0;23404:13;23437:7;23430:14;;;;;:::i;45425:253::-;45508:13;;;;;;;45486:78;;;;-1:-1:-1;;;45486:78:0;;12309:2:1;45486:78:0;;;12291:21:1;12348:2;12328:18;;;12321:30;-1:-1:-1;;;12367:18:1;;;12360:45;12422:18;;45486:78:0;12107:339:1;45486:78:0;45646:24;45657:9;45668:1;45646:10;:24::i;24958:279::-;-1:-1:-1;;;;;25049:24:0;;5664:10;25049:24;25045:54;;;25082:17;;-1:-1:-1;;;25082:17:0;;;;;;;;;;;25045:54;5664:10;25112:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;25112:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;25112:53:0;;;;;;;;;;25181:48;;540:41:1;;;25112:42:0;;5664:10;25181:48;;513:18:1;25181:48:0;;;;;;;24958:279;;:::o;47909:563::-;14633:6;;-1:-1:-1;;;;;14633:6:0;5664:10;14780:23;14772:68;;;;-1:-1:-1;;;14772:68:0;;;;;;;:::i;:::-;47991:17:::1;48023:10:::0;48056:9:::1;48052:203;48074:8;:15:::0;48070:19;::::1;48052:203;;;48128:11;-1:-1:-1::0;;;;;48113:26:0::1;:8;48122:1;48113:11;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;-1:-1:-1;;;;;48113:11:0::1;:26;48110:134;;;48168:4;48160:12;;48203:1;48191:13;;48223:5;;48110:134;48090:3:::0;::::1;::::0;::::1;:::i;:::-;;;;48052:203;;;;48273:5;48265:47;;;::::0;-1:-1:-1;;;48265:47:0;;12653:2:1;48265:47:0::1;::::0;::::1;12635:21:1::0;12692:2;12672:18;;;12665:30;12731:31;12711:18;;;12704:59;12780:18;;48265:47:0::1;12451:353:1::0;48265:47:0::1;48340:8;:15:::0;:19:::1;::::0;48358:1:::1;::::0;48340:19:::1;:::i;:::-;48326:9;:34;48323:117;;48399:8;48408:15:::0;;:19:::1;::::0;48426:1:::1;::::0;48408:19:::1;:::i;:::-;48399:29;;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;::::1;::::0;48377:8:::1;:19:::0;;-1:-1:-1;;;;;48399:29:0;;::::1;::::0;48386:9;;48377:19;::::1;;;;;:::i;:::-;;;;;;;;;:51;;;;;-1:-1:-1::0;;;;;48377:51:0::1;;;;;-1:-1:-1::0;;;;;48377:51:0::1;;;;;;48323:117;48450:8;:14;;;;;;;:::i;:::-;;::::0;;;::::1;::::0;;;;-1:-1:-1;;48450:14:0;;;;;-1:-1:-1;;;;;;48450:14:0::1;::::0;;;;;-1:-1:-1;;;47909:563:0:o;26036:369::-;26203:28;26213:4;26219:2;26223:7;26203:9;:28::i;:::-;-1:-1:-1;;;;;26246:13:0;;53481:20;53529:8;;26246:76;;;;;26266:56;26297:4;26303:2;26307:7;26316:5;26266:30;:56::i;:::-;26265:57;26246:76;26242:156;;;26346:40;;-1:-1:-1;;;26346:40:0;;;;;;;;;;;26242:156;26036:369;;;;:::o;46094:492::-;46159:13;46207:16;46215:7;46207;:16::i;:::-;46185:113;;;;-1:-1:-1;;;46185:113:0;;13143:2:1;46185:113:0;;;13125:21:1;13182:2;13162:18;;;13155:30;13221:34;13201:18;;;13194:62;-1:-1:-1;;;13272:18:1;;;13265:45;13327:19;;46185:113:0;12941:411:1;46185:113:0;46316:11;;;;;;;46311:67;;46351:15;46344:22;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46094:492;;;:::o;46311:67::-;46390:21;46414:13;46390:37;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46469:1;46451:7;46445:21;:25;:133;;;;;;;;;;;;;;;;;46510:7;46519:18;:7;:16;:18::i;:::-;46539:19;;;;;;;;;;;;;-1:-1:-1;;;46539:19:0;;;46493:66;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;46445:133;46438:140;46094:492;-1:-1:-1;;;46094:492:0:o;41872:111::-;14633:6;;-1:-1:-1;;;;;14633:6:0;5664:10;14780:23;14772:68;;;;-1:-1:-1;;;14772:68:0;;;;;;;:::i;:::-;41945:14:::1;:30:::0;41872:111::o;42216:287::-;14633:6;;-1:-1:-1;;;;;14633:6:0;5664:10;14780:23;14772:68;;;;-1:-1:-1;;;14772:68:0;;;;;;;:::i;:::-;42328:17:::1;:36:::0;;-1:-1:-1;;;;;;42328:36:0::1;::::0;-1:-1:-1;;;;;42328:36:0;::::1;::::0;;::::1;::::0;;;::::1;::::0;;;42375:23:::1;:48:::0;;;42439:56:::1;::::0;;4438:51:1;;;4520:2;4505:18;;4498:34;;;42439:56:0::1;::::0;4411:18:1;42439:56:0::1;4264:274:1::0;45987:99:0;46033:13;46066:12;46059:19;;;;;:::i;15469:201::-;14633:6;;-1:-1:-1;;;;;14633:6:0;5664:10;14780:23;14772:68;;;;-1:-1:-1;;;14772:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;15558:22:0;::::1;15550:73;;;::::0;-1:-1:-1;;;15550:73:0;;14228:2:1;15550:73:0::1;::::0;::::1;14210:21:1::0;14267:2;14247:18;;;14240:30;14306:34;14286:18;;;14279:62;-1:-1:-1;;;14357:18:1;;;14350:36;14403:19;;15550:73:0::1;14026:402:1::0;15550:73:0::1;15634:28;15653:8;15634:18;:28::i;19794:305::-:0;19896:4;-1:-1:-1;;;;;;19933:40:0;;-1:-1:-1;;;19933:40:0;;:105;;-1:-1:-1;;;;;;;19990:48:0;;-1:-1:-1;;;19990:48:0;19933:105;:158;;;-1:-1:-1;;;;;;;;;;13576:40:0;;;20055:36;13467:157;26660:187;26717:4;26760:7;40825:1;26741:26;;:53;;;;;26781:13;;26771:7;:23;26741:53;:98;;;;-1:-1:-1;;26812:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;26812:27:0;;;;26811:28;;26660:187::o;34453:196::-;34568:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;34568:29:0;-1:-1:-1;;;;;34568:29:0;;;;;;;;;34613:28;;34568:24;;34613:28;;;;;;;34453:196;;;:::o;29773:2294::-;29888:35;29926:20;29938:7;29926:11;:20::i;:::-;30001:18;;29888:58;;-1:-1:-1;29959:22:0;;-1:-1:-1;;;;;29985:34:0;5664:10;-1:-1:-1;;;;;29985:34:0;;:101;;;-1:-1:-1;30053:18:0;;30036:50;;5664:10;25308:164;:::i;30036:50::-;29985:154;;;-1:-1:-1;5664:10:0;30103:20;30115:7;30103:11;:20::i;:::-;-1:-1:-1;;;;;30103:36:0;;29985:154;29959:181;;30158:17;30153:66;;30184:35;;-1:-1:-1;;;30184:35:0;;;;;;;;;;;30153:66;30256:4;-1:-1:-1;;;;;30234:26:0;:13;:18;;;-1:-1:-1;;;;;30234:26:0;;30230:67;;30269:28;;-1:-1:-1;;;30269:28:0;;;;;;;;;;;30230:67;-1:-1:-1;;;;;30312:16:0;;30308:52;;30337:23;;-1:-1:-1;;;30337:23:0;;;;;;;;;;;30308:52;30433:9;30429:170;30451:8;:15;30447:19;;30429:170;;;30487:16;30519:8;30528:1;30519:11;;;;;;;;:::i;:::-;;;;;;;;;;;30546:41;;-1:-1:-1;;;30546:41:0;;-1:-1:-1;;;;;4456:32:1;;;30546:41:0;;;4438:51:1;4505:18;;;4498:34;;;30519:11:0;;;;-1:-1:-1;30519:11:0;;30546:26;;4411:18:1;;30546:41:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30472:127;30467:3;;;;;:::i;:::-;;;;30429:170;;;;30663:49;30680:1;30684:7;30693:13;:18;;;30663:8;:49::i;:::-;-1:-1:-1;;;;;31008:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;31008:31:0;;;;;;;-1:-1:-1;;31008:31:0;;;;;;;31054:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;31054:29:0;;;;;;;;;;;31100:20;;;:11;:20;;;;;;:30;;-1:-1:-1;;;;;;31145:61:0;;;;-1:-1:-1;;;31190:15:0;31145:61;;;;;;;;;;;31480:11;;;31510:24;;;;;:29;31480:11;;31510:29;31506:445;;31735:13;;31721:11;:27;31717:219;;;31805:18;;;31773:24;;;:11;:24;;;;;;;;:50;;31888:28;;;;31846:70;;-1:-1:-1;;;31846:70:0;-1:-1:-1;;;;;;31846:70:0;;;-1:-1:-1;;;;;31773:50:0;;;31846:70;;;;;;;31717:219;30983:979;31998:7;31994:2;-1:-1:-1;;;;;31979:27:0;31988:4;-1:-1:-1;;;;;31979:27:0;;;;;;;;;;;32017:42;29877:2190;;29773:2294;;;:::o;27744:1775::-;27883:20;27906:13;-1:-1:-1;;;;;27934:16:0;;27930:48;;27959:19;;-1:-1:-1;;;27959:19:0;;;;;;;;;;;27930:48;27993:13;27989:44;;28015:18;;-1:-1:-1;;;28015:18:0;;;;;;;;;;;27989:44;-1:-1:-1;;;;;28384:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;28443:49:0;;28384:44;;;;;;;;28443:49;;;;-1:-1:-1;;28384:44:0;;;;;;28443:49;;;;;;;;;;;;;;;;28509:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;28559:66:0;;;;-1:-1:-1;;;28609:15:0;28559:66;;;;;;;;;;28509:25;28706:23;;;28750:4;:23;;;;-1:-1:-1;;;;;;28758:13:0;;53481:20;53529:8;;28758:15;28746:641;;;28794:314;28825:38;;28850:12;;-1:-1:-1;;;;;28825:38:0;;;28842:1;;28825:38;;28842:1;;28825:38;28891:69;28930:1;28934:2;28938:14;;;;;;28954:5;28891:30;:69::i;:::-;28886:174;;28996:40;;-1:-1:-1;;;28996:40:0;;;;;;;;;;;28886:174;29103:3;29087:12;:19;;28794:314;;29189:12;29172:13;;:29;29168:43;;29203:8;;;29168:43;28746:641;;;29252:120;29283:40;;29308:14;;;;;-1:-1:-1;;;;;29283:40:0;;;29300:1;;29283:40;;29300:1;;29283:40;29367:3;29351:12;:19;;29252:120;;28746:641;-1:-1:-1;29401:13:0;:28;29451:60;26036:369;21818:1108;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;21928:7:0;;40825:1;21977:23;;:47;;;;;22011:13;;22004:4;:20;21977:47;21973:886;;;22045:31;22079:17;;;:11;:17;;;;;;;;;22045:51;;;;;;;;;-1:-1:-1;;;;;22045:51:0;;;;-1:-1:-1;;;22045:51:0;;;;;;;;;;;-1:-1:-1;;;22045:51:0;;;;;;;;;;;;;;22115:729;;22165:14;;-1:-1:-1;;;;;22165:28:0;;22161:101;;22229:9;21818:1108;-1:-1:-1;;;21818:1108:0:o;22161:101::-;-1:-1:-1;;;22604:6:0;22649:17;;;;:11;:17;;;;;;;;;22637:29;;;;;;;;;-1:-1:-1;;;;;22637:29:0;;;;;-1:-1:-1;;;22637:29:0;;;;;;;;;;;-1:-1:-1;;;22637:29:0;;;;;;;;;;;;;22697:28;22693:109;;22765:9;21818:1108;-1:-1:-1;;;21818:1108:0:o;22693:109::-;22564:261;;;22026:833;21973:886;22887:31;;-1:-1:-1;;;22887:31:0;;;;;;;;;;;15830:191;15923:6;;;-1:-1:-1;;;;;15940:17:0;;;-1:-1:-1;;;;;;15940:17:0;;;;;;;15973:40;;15923:6;;;15940:17;15923:6;;15973:40;;15904:16;;15973:40;15893:128;15830:191;:::o;49220:190::-;49345:4;49398;49369:25;49382:5;49389:4;49369:12;:25::i;:::-;:33;;49220:190;-1:-1:-1;;;;49220:190:0:o;47273:387::-;38561:4;47394:9;47377:14;19486:7;19672:13;-1:-1:-1;;19672:31:0;;19439:283;47377:14;:26;;;;:::i;:::-;:40;;47355:118;;;;-1:-1:-1;;;47355:118:0;;14635:2:1;47355:118:0;;;14617:21:1;14674:2;14654:18;;;14647:30;14713;14693:18;;;14686:58;14761:18;;47355:118:0;14433:352:1;47355:118:0;47528:25;47540:13;47528:9;:25;:::i;:::-;47506:18;47514:9;47506:7;:18::i;:::-;:47;;47484:117;;;;-1:-1:-1;;;47484:117:0;;14992:2:1;47484:117:0;;;14974:21:1;15031:2;15011:18;;;15004:30;-1:-1:-1;;;15050:18:1;;;15043:50;15110:18;;47484:117:0;14790:344:1;47484:117:0;47614:38;47620:10;47632:9;47614:38;;;;;;;;;;;;47647:4;47614:5;:38::i;35141:667::-;35325:72;;-1:-1:-1;;;35325:72:0;;35304:4;;-1:-1:-1;;;;;35325:36:0;;;;;:72;;5664:10;;35376:4;;35382:7;;35391:5;;35325:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35325:72:0;;;;;;;;-1:-1:-1;;35325:72:0;;;;;;;;;;;;:::i;:::-;;;35321:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35559:13:0;;35555:235;;35605:40;;-1:-1:-1;;;35605:40:0;;;;;;;;;;;35555:235;35748:6;35742:13;35733:6;35729:2;35725:15;35718:38;35321:480;-1:-1:-1;;;;;;35444:55:0;-1:-1:-1;;;35444:55:0;;-1:-1:-1;35321:480:0;35141:667;;;;;;:::o;50716:723::-;50772:13;50993:10;50989:53;;-1:-1:-1;;51020:10:0;;;;;;;;;;;;-1:-1:-1;;;51020:10:0;;;;;50716:723::o;50989:53::-;51067:5;51052:12;51108:78;51115:9;;51108:78;;51141:8;;;;:::i;:::-;;-1:-1:-1;51164:10:0;;-1:-1:-1;51172:2:0;51164:10;;:::i;:::-;;;51108:78;;;51196:19;51228:6;51218:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;51218:17:0;;51196:39;;51246:154;51253:10;;51246:154;;51280:11;51290:1;51280:11;;:::i;:::-;;-1:-1:-1;51349:10:0;51357:2;51349:5;:10;:::i;:::-;51336:24;;:2;:24;:::i;:::-;51323:39;;51306:6;51313;51306:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;51306:56:0;;;;;;;;-1:-1:-1;51377:11:0;51386:2;51377:11;;:::i;:::-;;;51246:154;;49772:701;49855:7;49898:4;49855:7;49913:523;49937:5;:12;49933:1;:16;49913:523;;;49971:20;49994:5;50000:1;49994:8;;;;;;;;:::i;:::-;;;;;;;49971:31;;50037:12;50021;:28;50017:408;;50174:44;;;;;;16161:19:1;;;16196:12;;;16189:28;;;16233:12;;50174:44:0;;;;;;;;;;;;50164:55;;;;;;50149:70;;50017:408;;;50364:44;;;;;;16161:19:1;;;16196:12;;;16189:28;;;16233:12;;50364:44:0;;;;;;;;;;;;50354:55;;;;;;50339:70;;50017:408;-1:-1:-1;49951:3:0;;;;:::i;:::-;;;;49913:523;;;-1:-1:-1;50453:12:0;49772:701;-1:-1:-1;;;49772:701:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:160::-;657:20;;713:13;;706:21;696:32;;686:60;;742:1;739;732:12;686:60;592:160;;;:::o;757:180::-;813:6;866:2;854:9;845:7;841:23;837:32;834:52;;;882:1;879;872:12;834:52;905:26;921:9;905:26;:::i;942:173::-;1010:20;;-1:-1:-1;;;;;1059:31:1;;1049:42;;1039:70;;1105:1;1102;1095:12;1120:186;1179:6;1232:2;1220:9;1211:7;1207:23;1203:32;1200:52;;;1248:1;1245;1238:12;1200:52;1271:29;1290:9;1271:29;:::i;1493:258::-;1565:1;1575:113;1589:6;1586:1;1583:13;1575:113;;;1665:11;;;1659:18;1646:11;;;1639:39;1611:2;1604:10;1575:113;;;1706:6;1703:1;1700:13;1697:48;;;-1:-1:-1;;1741:1:1;1723:16;;1716:27;1493:258::o;1756:::-;1798:3;1836:5;1830:12;1863:6;1858:3;1851:19;1879:63;1935:6;1928:4;1923:3;1919:14;1912:4;1905:5;1901:16;1879:63;:::i;:::-;1996:2;1975:15;-1:-1:-1;;1971:29:1;1962:39;;;;2003:4;1958:50;;1756:258;-1:-1:-1;;1756:258:1:o;2019:220::-;2168:2;2157:9;2150:21;2131:4;2188:45;2229:2;2218:9;2214:18;2206:6;2188:45;:::i;2244:180::-;2303:6;2356:2;2344:9;2335:7;2331:23;2327:32;2324:52;;;2372:1;2369;2362:12;2324:52;-1:-1:-1;2395:23:1;;2244:180;-1:-1:-1;2244:180:1:o;2637:254::-;2705:6;2713;2766:2;2754:9;2745:7;2741:23;2737:32;2734:52;;;2782:1;2779;2772:12;2734:52;2805:29;2824:9;2805:29;:::i;:::-;2795:39;2881:2;2866:18;;;;2853:32;;-1:-1:-1;;;2637:254:1:o;2896:592::-;2967:6;2975;3028:2;3016:9;3007:7;3003:23;2999:32;2996:52;;;3044:1;3041;3034:12;2996:52;3084:9;3071:23;3113:18;3154:2;3146:6;3143:14;3140:34;;;3170:1;3167;3160:12;3140:34;3208:6;3197:9;3193:22;3183:32;;3253:7;3246:4;3242:2;3238:13;3234:27;3224:55;;3275:1;3272;3265:12;3224:55;3315:2;3302:16;3341:2;3333:6;3330:14;3327:34;;;3357:1;3354;3347:12;3327:34;3402:7;3397:2;3388:6;3384:2;3380:15;3376:24;3373:37;3370:57;;;3423:1;3420;3413:12;3370:57;3454:2;3446:11;;;;;3476:6;;-1:-1:-1;2896:592:1;;-1:-1:-1;;;;2896:592:1:o;3493:328::-;3570:6;3578;3586;3639:2;3627:9;3618:7;3614:23;3610:32;3607:52;;;3655:1;3652;3645:12;3607:52;3678:29;3697:9;3678:29;:::i;:::-;3668:39;;3726:38;3760:2;3749:9;3745:18;3726:38;:::i;:::-;3716:48;;3811:2;3800:9;3796:18;3783:32;3773:42;;3493:328;;;;;:::o;4011:248::-;4079:6;4087;4140:2;4128:9;4119:7;4115:23;4111:32;4108:52;;;4156:1;4153;4146:12;4108:52;-1:-1:-1;;4179:23:1;;;4249:2;4234:18;;;4221:32;;-1:-1:-1;4011:248:1:o;4543:820::-;4656:6;4664;4672;4680;4688;4741:3;4729:9;4720:7;4716:23;4712:33;4709:53;;;4758:1;4755;4748:12;4709:53;4794:9;4781:23;4771:33;;4851:2;4840:9;4836:18;4823:32;4813:42;;4902:2;4891:9;4887:18;4874:32;4864:42;;4957:2;4946:9;4942:18;4929:32;4980:18;5021:2;5013:6;5010:14;5007:34;;;5037:1;5034;5027:12;5007:34;5075:6;5064:9;5060:22;5050:32;;5120:7;5113:4;5109:2;5105:13;5101:27;5091:55;;5142:1;5139;5132:12;5091:55;5182:2;5169:16;5208:2;5200:6;5197:14;5194:34;;;5224:1;5221;5214:12;5194:34;5277:7;5272:2;5262:6;5259:1;5255:14;5251:2;5247:23;5243:32;5240:45;5237:65;;;5298:1;5295;5288:12;5237:65;4543:820;;;;-1:-1:-1;4543:820:1;;-1:-1:-1;5329:2:1;5321:11;;5351:6;4543:820;-1:-1:-1;;;4543:820:1:o;5550:254::-;5615:6;5623;5676:2;5664:9;5655:7;5651:23;5647:32;5644:52;;;5692:1;5689;5682:12;5644:52;5715:29;5734:9;5715:29;:::i;:::-;5705:39;;5763:35;5794:2;5783:9;5779:18;5763:35;:::i;:::-;5753:45;;5550:254;;;;;:::o;5809:127::-;5870:10;5865:3;5861:20;5858:1;5851:31;5901:4;5898:1;5891:15;5925:4;5922:1;5915:15;5941:1138;6036:6;6044;6052;6060;6113:3;6101:9;6092:7;6088:23;6084:33;6081:53;;;6130:1;6127;6120:12;6081:53;6153:29;6172:9;6153:29;:::i;:::-;6143:39;;6201:38;6235:2;6224:9;6220:18;6201:38;:::i;:::-;6191:48;;6286:2;6275:9;6271:18;6258:32;6248:42;;6341:2;6330:9;6326:18;6313:32;6364:18;6405:2;6397:6;6394:14;6391:34;;;6421:1;6418;6411:12;6391:34;6459:6;6448:9;6444:22;6434:32;;6504:7;6497:4;6493:2;6489:13;6485:27;6475:55;;6526:1;6523;6516:12;6475:55;6562:2;6549:16;6584:2;6580;6577:10;6574:36;;;6590:18;;:::i;:::-;6665:2;6659:9;6633:2;6719:13;;-1:-1:-1;;6715:22:1;;;6739:2;6711:31;6707:40;6695:53;;;6763:18;;;6783:22;;;6760:46;6757:72;;;6809:18;;:::i;:::-;6849:10;6845:2;6838:22;6884:2;6876:6;6869:18;6924:7;6919:2;6914;6910;6906:11;6902:20;6899:33;6896:53;;;6945:1;6942;6935:12;6896:53;7001:2;6996;6992;6988:11;6983:2;6975:6;6971:15;6958:46;7046:1;7041:2;7036;7028:6;7024:15;7020:24;7013:35;7067:6;7057:16;;;;;;;5941:1138;;;;;;;:::o;7084:260::-;7152:6;7160;7213:2;7201:9;7192:7;7188:23;7184:32;7181:52;;;7229:1;7226;7219:12;7181:52;7252:29;7271:9;7252:29;:::i;:::-;7242:39;;7300:38;7334:2;7323:9;7319:18;7300:38;:::i;7349:356::-;7551:2;7533:21;;;7570:18;;;7563:30;7629:34;7624:2;7609:18;;7602:62;7696:2;7681:18;;7349:356::o;7710:380::-;7789:1;7785:12;;;;7832;;;7853:61;;7907:4;7899:6;7895:17;7885:27;;7853:61;7960:2;7952:6;7949:14;7929:18;7926:38;7923:161;;;8006:10;8001:3;7997:20;7994:1;7987:31;8041:4;8038:1;8031:15;8069:4;8066:1;8059:15;7923:161;;7710:380;;;:::o;8095:345::-;8297:2;8279:21;;;8336:2;8316:18;;;8309:30;-1:-1:-1;;;8370:2:1;8355:18;;8348:51;8431:2;8416:18;;8095:345::o;8445:390::-;8604:2;8593:9;8586:21;8643:6;8638:2;8627:9;8623:18;8616:34;8700:6;8692;8687:2;8676:9;8672:18;8659:48;8756:1;8727:22;;;8751:2;8723:31;;;8716:42;;;;8819:2;8798:15;;;-1:-1:-1;;8794:29:1;8779:45;8775:54;;8445:390;-1:-1:-1;8445:390:1:o;8840:127::-;8901:10;8896:3;8892:20;8889:1;8882:31;8932:4;8929:1;8922:15;8956:4;8953:1;8946:15;8972:127;9033:10;9028:3;9024:20;9021:1;9014:31;9064:4;9061:1;9054:15;9088:4;9085:1;9078:15;9104:135;9143:3;-1:-1:-1;;9164:17:1;;9161:43;;;9184:18;;:::i;:::-;-1:-1:-1;9231:1:1;9220:13;;9104:135::o;9244:168::-;9284:7;9350:1;9346;9342:6;9338:14;9335:1;9332:21;9327:1;9320:9;9313:17;9309:45;9306:71;;;9357:18;;:::i;:::-;-1:-1:-1;9397:9:1;;9244:168::o;9417:127::-;9478:10;9473:3;9469:20;9466:1;9459:31;9509:4;9506:1;9499:15;9533:4;9530:1;9523:15;9549:120;9589:1;9615;9605:35;;9620:18;;:::i;:::-;-1:-1:-1;9654:9:1;;9549:120::o;10031:128::-;10071:3;10102:1;10098:6;10095:1;10092:13;10089:39;;;10108:18;;:::i;:::-;-1:-1:-1;10144:9:1;;10031:128::o;11626:125::-;11666:4;11694:1;11691;11688:8;11685:34;;;11699:18;;:::i;:::-;-1:-1:-1;11736:9:1;;11626:125::o;12809:127::-;12870:10;12865:3;12861:20;12858:1;12851:31;12901:4;12898:1;12891:15;12925:4;12922:1;12915:15;13357:664;13584:3;13622:6;13616:13;13638:53;13684:6;13679:3;13672:4;13664:6;13660:17;13638:53;:::i;:::-;13754:13;;13713:16;;;;13776:57;13754:13;13713:16;13810:4;13798:17;;13776:57;:::i;:::-;13900:13;;13855:20;;;13922:57;13900:13;13855:20;13956:4;13944:17;;13922:57;:::i;:::-;13995:20;;13357:664;-1:-1:-1;;;;;13357:664:1:o;15139:489::-;-1:-1:-1;;;;;15408:15:1;;;15390:34;;15460:15;;15455:2;15440:18;;15433:43;15507:2;15492:18;;15485:34;;;15555:3;15550:2;15535:18;;15528:31;;;15333:4;;15576:46;;15602:19;;15594:6;15576:46;:::i;:::-;15568:54;15139:489;-1:-1:-1;;;;;;15139:489:1:o;15633:249::-;15702:6;15755:2;15743:9;15734:7;15730:23;15726:32;15723:52;;;15771:1;15768;15761:12;15723:52;15803:9;15797:16;15822:30;15846:5;15822:30;:::i;15887:112::-;15919:1;15945;15935:35;;15950:18;;:::i;:::-;-1:-1:-1;15984:9:1;;15887:112::o
Swarm Source
ipfs://b8d76299ffa22ddbe3f3ec25ef26ea443d3e7900fa63e354c2a62b89fbbcd43e
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.