ERC-721
NFT
Overview
Max Total Supply
5,555 Hobgoblin NFT
Holders
1,201
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
5 Hobgoblin NFTLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
HobgoblinNFT
Compiler Version
v0.8.7+commit.e28d00a7
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// File: erc721a/contracts/IERC721A.sol // ERC721A Contracts v4.0.0 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of an ERC721A compliant contract. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * The caller cannot approve to their own address. */ error ApproveToCaller(); /** * The caller cannot approve to the current owner. */ error ApprovalToCurrentOwner(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); 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; } /** * @dev Returns the total amount of tokens stored by the contract. * * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens. */ function totalSupply() external view returns (uint256); // ============================== // 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); // ============================== // IERC721 // ============================== /** * @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`. * * 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; /** * @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 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 the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @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); // ============================== // IERC721Metadata // ============================== /** * @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); } // File: erc721a/contracts/extensions/IERC721AQueryable.sol // ERC721A Contracts v4.0.0 // Creator: Chiru Labs /** * @dev Interface of an ERC721AQueryable compliant contract. */ interface IERC721AQueryable is IERC721A { /** * Invalid query range (`start` >= `stop`). */ error InvalidQueryRange(); /** * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting. * * If the `tokenId` is out of bounds: * - `addr` = `address(0)` * - `startTimestamp` = `0` * - `burned` = `false` * * If the `tokenId` is burned: * - `addr` = `<Address of owner before token was burned>` * - `startTimestamp` = `<Timestamp when token was burned>` * - `burned = `true` * * Otherwise: * - `addr` = `<Address of owner>` * - `startTimestamp` = `<Timestamp of start of ownership>` * - `burned = `false` */ function explicitOwnershipOf(uint256 tokenId) external view returns (TokenOwnership memory); /** * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order. * See {ERC721AQueryable-explicitOwnershipOf} */ function explicitOwnershipsOf(uint256[] memory tokenIds) external view returns (TokenOwnership[] memory); /** * @dev Returns an array of token IDs owned by `owner`, * in the range [`start`, `stop`) * (i.e. `start <= tokenId < stop`). * * This function allows for tokens to be queried if the collection * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}. * * Requirements: * * - `start` < `stop` */ function tokensOfOwnerIn( address owner, uint256 start, uint256 stop ) external view returns (uint256[] memory); /** * @dev Returns an array of token IDs owned by `owner`. * * This function scans the ownership mapping and is O(totalSupply) in complexity. * It is meant to be called off-chain. * * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into * multiple smaller scans if the collection is large enough to cause * an out-of-gas error (10K pfp collections should be fine). */ function tokensOfOwner(address owner) external view returns (uint256[] memory); } // File: erc721a/contracts/ERC721A.sol // ERC721A Contracts v4.0.0 // Creator: Chiru Labs /** * @dev ERC721 token receiver interface. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @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 IERC721A { // Mask of an entry in packed address data. uint256 private constant BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant BITMASK_NEXT_INITIALIZED = 1 << 225; // The tokenId of the next token to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _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 `_packedOwnershipOf` implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // 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; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see `_totalMinted`. */ function totalSupply() public view override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * @dev 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 Returns the total number of tokens burned. */ function _totalBurned() internal view returns (uint256) { return _burnCounter; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes of the XOR of // all function selectors in the interface. See: https://eips.ethereum.org/EIPS/eip-165 // e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)` return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return _packedAddressData[owner] & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> BITPOS_NUMBER_MINTED) & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> BITPOS_NUMBER_BURNED) & BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> BITPOS_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 { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; assembly { // Cast aux without masking. auxCasted := aux } packed = (packed & BITMASK_AUX_COMPLEMENT) | (auxCasted << BITPOS_AUX); _packedAddressData[owner] = packed; } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & BITMASK_BURNED == 0) { // 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. // // We can directly compare the packed value. // If the address is zero, packed is zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> BITPOS_START_TIMESTAMP); ownership.burned = packed & BITMASK_BURNED != 0; } /** * Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * 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) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @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, _toString(tokenId))) : ''; } /** * @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 Casts the address to uint256 without masking. */ function _addressToUint256(address value) private pure returns (uint256 result) { assembly { result := value } } /** * @dev Casts the boolean to uint256 without branching. */ function _boolToUint256(bool value) private pure returns (uint256 result) { assembly { result := value } } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = address(uint160(_packedOwnershipOf(tokenId))); if (to == owner) revert ApprovalToCurrentOwner(); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @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 virtual override { if (operator == _msgSenderERC721A()) revert ApproveToCaller(); _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), 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.code.length != 0) if (!_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 && // If within bounds, _packedOwnerships[tokenId] & BITMASK_BURNED == 0; // and not burned. } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ 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 { 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 { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the balance and number minted. _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; if (to.code.length != 0) { 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 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) 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 { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the balance and number minted. _packedAddressData[to] += quantity * ((1 << BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | (_boolToUint256(quantity == 1) << BITPOS_NEXT_INITIALIZED); uint256 updatedIndex = startTokenId; uint256 end = updatedIndex + quantity; 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 { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); bool isApprovedOrOwner = (_msgSenderERC721A() == from || isApprovedForAll(from, _msgSenderERC721A()) || getApproved(tokenId) == _msgSenderERC721A()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. delete _tokenApprovals[tokenId]; // 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 { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _addressToUint256(to) | (block.timestamp << BITPOS_START_TIMESTAMP) | BITMASK_NEXT_INITIALIZED; // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); if (approvalCheck) { bool isApprovedOrOwner = (_msgSenderERC721A() == from || isApprovedForAll(from, _msgSenderERC721A()) || getApproved(tokenId) == _msgSenderERC721A()); if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. delete _tokenApprovals[tokenId]; // 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 { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _addressToUint256(from) | (block.timestamp << BITPOS_START_TIMESTAMP) | BITMASK_BURNED | BITMASK_NEXT_INITIALIZED; // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } /** * @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 ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__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 {} /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function _toString(uint256 value) internal pure returns (string memory ptr) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), // but we allocate 128 bytes to keep the free memory pointer 32-byte word aliged. // We will need 1 32-byte word to store the length, // and 3 32-byte words to store a maximum of 78 digits. Total: 32 + 3 * 32 = 128. ptr := add(mload(0x40), 128) // Update the free memory pointer to allocate. mstore(0x40, ptr) // Cache the end of the memory to calculate the length later. let end := ptr // We write the string from the rightmost digit to the leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // Costs a bit more than early returning for the zero case, // but cheaper in terms of deployment and overall runtime costs. for { // Initialize and perform the first pass without check. let temp := value // Move the pointer 1 byte leftwards to point to an empty character slot. ptr := sub(ptr, 1) // Write the character to the pointer. 48 is the ASCII index of '0'. mstore8(ptr, add(48, mod(temp, 10))) temp := div(temp, 10) } temp { // Keep dividing `temp` until zero. temp := div(temp, 10) } { // Body of the for loop. ptr := sub(ptr, 1) mstore8(ptr, add(48, mod(temp, 10))) } let length := sub(end, ptr) // Move the pointer 32 bytes leftwards to make room for the length. ptr := sub(ptr, 32) // Store the length. mstore(ptr, length) } } } // File: erc721a/contracts/extensions/ERC721AQueryable.sol // ERC721A Contracts v4.0.0 // Creator: Chiru Labs /** * @title ERC721A Queryable * @dev ERC721A subclass with convenience query functions. */ abstract contract ERC721AQueryable is ERC721A, IERC721AQueryable { /** * @dev Returns the `TokenOwnership` struct at `tokenId` without reverting. * * If the `tokenId` is out of bounds: * - `addr` = `address(0)` * - `startTimestamp` = `0` * - `burned` = `false` * * If the `tokenId` is burned: * - `addr` = `<Address of owner before token was burned>` * - `startTimestamp` = `<Timestamp when token was burned>` * - `burned = `true` * * Otherwise: * - `addr` = `<Address of owner>` * - `startTimestamp` = `<Timestamp of start of ownership>` * - `burned = `false` */ function explicitOwnershipOf(uint256 tokenId) public view override returns (TokenOwnership memory) { TokenOwnership memory ownership; if (tokenId < _startTokenId() || tokenId >= _nextTokenId()) { return ownership; } ownership = _ownershipAt(tokenId); if (ownership.burned) { return ownership; } return _ownershipOf(tokenId); } /** * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order. * See {ERC721AQueryable-explicitOwnershipOf} */ function explicitOwnershipsOf(uint256[] memory tokenIds) external view override returns (TokenOwnership[] memory) { unchecked { uint256 tokenIdsLength = tokenIds.length; TokenOwnership[] memory ownerships = new TokenOwnership[](tokenIdsLength); for (uint256 i; i != tokenIdsLength; ++i) { ownerships[i] = explicitOwnershipOf(tokenIds[i]); } return ownerships; } } /** * @dev Returns an array of token IDs owned by `owner`, * in the range [`start`, `stop`) * (i.e. `start <= tokenId < stop`). * * This function allows for tokens to be queried if the collection * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}. * * Requirements: * * - `start` < `stop` */ function tokensOfOwnerIn( address owner, uint256 start, uint256 stop ) external view override returns (uint256[] memory) { unchecked { if (start >= stop) revert InvalidQueryRange(); uint256 tokenIdsIdx; uint256 stopLimit = _nextTokenId(); // Set `start = max(start, _startTokenId())`. if (start < _startTokenId()) { start = _startTokenId(); } // Set `stop = min(stop, stopLimit)`. if (stop > stopLimit) { stop = stopLimit; } uint256 tokenIdsMaxLength = balanceOf(owner); // Set `tokenIdsMaxLength = min(balanceOf(owner), stop - start)`, // to cater for cases where `balanceOf(owner)` is too big. if (start < stop) { uint256 rangeLength = stop - start; if (rangeLength < tokenIdsMaxLength) { tokenIdsMaxLength = rangeLength; } } else { tokenIdsMaxLength = 0; } uint256[] memory tokenIds = new uint256[](tokenIdsMaxLength); if (tokenIdsMaxLength == 0) { return tokenIds; } // We need to call `explicitOwnershipOf(start)`, // because the slot at `start` may not be initialized. TokenOwnership memory ownership = explicitOwnershipOf(start); address currOwnershipAddr; // If the starting slot exists (i.e. not burned), initialize `currOwnershipAddr`. // `ownership.address` will not be zero, as `start` is clamped to the valid token ID range. if (!ownership.burned) { currOwnershipAddr = ownership.addr; } for (uint256 i = start; i != stop && tokenIdsIdx != tokenIdsMaxLength; ++i) { ownership = _ownershipAt(i); if (ownership.burned) { continue; } if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { tokenIds[tokenIdsIdx++] = i; } } // Downsize the array to fit. assembly { mstore(tokenIds, tokenIdsIdx) } return tokenIds; } } /** * @dev Returns an array of token IDs owned by `owner`. * * This function scans the ownership mapping and is O(totalSupply) in complexity. * It is meant to be called off-chain. * * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into * multiple smaller scans if the collection is large enough to cause * an out-of-gas error (10K pfp collections should be fine). */ function tokensOfOwner(address owner) external view override returns (uint256[] memory) { unchecked { uint256 tokenIdsIdx; address currOwnershipAddr; uint256 tokenIdsLength = balanceOf(owner); uint256[] memory tokenIds = new uint256[](tokenIdsLength); TokenOwnership memory ownership; for (uint256 i = _startTokenId(); tokenIdsIdx != tokenIdsLength; ++i) { ownership = _ownershipAt(i); if (ownership.burned) { continue; } if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { tokenIds[tokenIdsIdx++] = i; } } return tokenIds; } } } // File: @openzeppelin/contracts/utils/Context.sol pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _setOwner(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol pragma solidity ^0.8.0; /** * @dev These functions deal with verification of Merkle Trees proofs. * * The proofs can be generated using the JavaScript library * https://github.com/miguelmota/merkletreejs[merkletreejs]. * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled. * * See `test/utils/cryptography/MerkleProof.test.js` for some examples. */ library MerkleProof { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { bytes32 proofElement = proof[i]; if (computedHash <= proofElement) { // Hash(current computed hash + current element of the proof) computedHash = keccak256(abi.encodePacked(computedHash, proofElement)); } else { // Hash(current element of the proof + current computed hash) computedHash = keccak256(abi.encodePacked(proofElement, computedHash)); } } // Check if the computed hash (root) is equal to the provided root return computedHash == root; } } // File: @openzeppelin/contracts/security/Pausable.sol pragma solidity ^0.8.0; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!paused(), "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { require(paused(), "Pausable: not paused"); _; } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } } // File: @openzeppelin/contracts/security/ReentrancyGuard.sol pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and make it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // File: @openzeppelin/contracts/utils/Strings.sol pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // File: HobgoblinNFT.sol pragma solidity ^0.8.0; /** * @dev Provides a set of functions to operate with Base64 strings. */ library Base64 { /** * @dev Base64 Encoding/Decoding Table */ string internal constant _TABLE = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/"; /** * @dev Converts a `bytes` to its Bytes64 `string` representation. */ function encode(bytes memory data) internal pure returns (string memory) { /** * Inspired by Brecht Devos (Brechtpd) implementation - MIT licence * https://github.com/Brechtpd/base64/blob/e78d9fd951e7b0977ddca77d92dc85183770daf4/base64.sol */ if (data.length == 0) return ""; // Loads the table into memory string memory table = _TABLE; // Encoding takes 3 bytes chunks of binary data from `bytes` data parameter // and split into 4 numbers of 6 bits. // The final Base64 length should be `bytes` data length multiplied by 4/3 rounded up // - `data.length + 2` -> Round up // - `/ 3` -> Number of 3-bytes chunks // - `4 *` -> 4 characters for each chunk string memory result = new string(4 * ((data.length + 2) / 3)); assembly { // Prepare the lookup table (skip the first "length" byte) let tablePtr := add(table, 1) // Prepare result pointer, jump over length let resultPtr := add(result, 32) // Run over the input, 3 bytes at a time for { let dataPtr := data let endPtr := add(data, mload(data)) } lt(dataPtr, endPtr) { } { // Advance 3 bytes dataPtr := add(dataPtr, 3) let input := mload(dataPtr) // To write each character, shift the 3 bytes (18 bits) chunk // 4 times in blocks of 6 bits for each character (18, 12, 6, 0) // and apply logical AND with 0x3F which is the number of // the previous character in the ASCII table prior to the Base64 Table // The result is then added to the table to get the character to write, // and finally write it in the result pointer but with a left shift // of 256 (1 byte) - 8 (1 ASCII char) = 248 bits mstore8( resultPtr, mload(add(tablePtr, and(shr(18, input), 0x3F))) ) resultPtr := add(resultPtr, 1) // Advance mstore8( resultPtr, mload(add(tablePtr, and(shr(12, input), 0x3F))) ) resultPtr := add(resultPtr, 1) // Advance mstore8( resultPtr, mload(add(tablePtr, and(shr(6, input), 0x3F))) ) resultPtr := add(resultPtr, 1) // Advance mstore8(resultPtr, mload(add(tablePtr, and(input, 0x3F)))) resultPtr := add(resultPtr, 1) // Advance } // When data `bytes` is not exactly 3 bytes long // it is padded with `=` characters at the end switch mod(mload(data), 3) case 1 { mstore8(sub(resultPtr, 1), 0x3d) mstore8(sub(resultPtr, 2), 0x3d) } case 2 { mstore8(sub(resultPtr, 1), 0x3d) } } return result; } } contract HobgoblinNFT is ERC721AQueryable, Ownable, ReentrancyGuard { uint256 public maxSupply; string public baseURI; uint256 public maxBatch; string public defaultURI; bytes32 public ogRoot; bytes32 public whitelistRoot; uint256 public publicPrice; uint256 public whitelistPrice; uint256 public ogPrice; uint256 public ogStartTime; uint256 public ogEndTime; uint256 public publicStartTime; uint256 public publicEndTime; uint256 public whitelistStartTime; uint256 public whitelistEndTime; uint256 public publicNum; uint256 public whitelistNum; uint256 public ogNum; uint256 public maxPublicNum; uint256 public maxWhitelistNum; uint256 public maxOgNum; uint256 public reservedNum; uint256 public maxReservedNum; uint256 public maxAirdropNum; uint256 public airdropNum; using Strings for uint256; constructor( string memory _baseURI, string memory _defaultURI, bytes32 _ogRoot, bytes32 _whitelistRoot ) public ERC721A("Hobgoblin NFT", "Hobgoblin NFT") { uint256 _maxBatch = 10; uint256 _maxSupply = 5555; maxReservedNum = 261; maxWhitelistNum = 500; maxOgNum = 1000; maxPublicNum = 3955; whitelistStartTime = 1654952400; whitelistEndTime = 1654984800; whitelistPrice = 0 ether; ogStartTime = 1654952400; ogEndTime = 1654984800; ogPrice = 0 ether; publicStartTime = 1654956000; publicEndTime = 9655902800; publicPrice = 0.01 ether; setBaseURI(_baseURI); setMaxBatch(_maxBatch); maxSupply = _maxSupply; defaultURI = _defaultURI; ogRoot = _ogRoot; whitelistRoot = _whitelistRoot; } /** * @dev Burns `tokenId`. See {ERC721A-_burn}. * * Requirements: * * - The caller must own `tokenId` or be an approved operator. */ function burn(uint256 tokenId) public virtual { _burn(tokenId, true); } function setPrice( uint256 _publicPrice, uint256 _whitelistPrice, uint256 _ogPrice ) external onlyOwner { publicPrice = _publicPrice; whitelistPrice = _whitelistPrice; ogPrice = _ogPrice; } function setMintTime( uint256 _ogStartTime, uint256 _ogEndTime, uint256 _publicStartTime, uint256 _publicEndTime, uint256 _whitelistStartTime, uint256 _whitelistEndTime ) external onlyOwner { publicStartTime = _publicStartTime; publicEndTime = _publicEndTime; ogStartTime = _ogStartTime; ogEndTime = _ogEndTime; whitelistStartTime = _whitelistStartTime; whitelistEndTime = _whitelistEndTime; } function setMaxNum( uint256 _maxPublicNum, uint256 _maxOgNum, uint256 _maxWhitelistNum, uint256 _maxReservedNum ) external onlyOwner { maxPublicNum = _maxPublicNum; maxOgNum = _maxOgNum; maxWhitelistNum = _maxWhitelistNum; maxReservedNum = _maxReservedNum; } function mint(address _addresss, uint256 _num) internal nonReentrant { require( _num <= maxBatch && _num > 0, "Num must greater 0 and lower maxBatch" ); require(totalSupply() + _num <= maxSupply, "Num must lower maxSupply"); _safeMint(_addresss, _num); } function mintReservedBatch(address _address, uint256 _num) external onlyOwner { require( reservedNum + _num <= maxReservedNum, "reservedNum must lower maxReservedNum" ); mint(_address, _num); reservedNum += _num; } function mintReserved(address[] calldata _address) external onlyOwner { uint256 num = _address.length; require( reservedNum + num <= maxReservedNum, "reservedNum must lower maxReservedNum" ); for (uint256 i = 0; i < num; i++) { mint(_address[i], 1); } reservedNum += num; } function ogMint(uint256 _num, bytes32[] memory _proof) external payable { require(_num <= 2, "Num must lt ot eq 2"); bytes32 leaf = keccak256(abi.encodePacked(msg.sender)); require( MerkleProof.verify(_proof, ogRoot, leaf), "Verification failed" ); require(msg.value == ogPrice * _num, "Value must eq ogPrice*num"); require(ogStartTime <= block.timestamp, "OgMint has not started yet"); require(ogEndTime > block.timestamp, "OgMint has ended"); require(ogNum + _num <= maxOgNum, "Num must lower maxWhitelistNum"); mint(msg.sender, _num); ogNum += _num; } function whitelistMint(uint256 _num, bytes32[] memory _proof) external payable { require(_num <= 1, "Num must lt or eq 1"); bytes32 leaf = keccak256(abi.encodePacked(msg.sender)); require( MerkleProof.verify(_proof, whitelistRoot, leaf), "Verification failed" ); require( msg.value == whitelistPrice * _num, "Value must eq whitelistPrice*num" ); require( whitelistStartTime <= block.timestamp, "WhitelistMint has not started yet" ); require(whitelistEndTime > block.timestamp, "WhitelistMint has ended"); require( whitelistNum + _num <= maxWhitelistNum, "Num must lower maxWhitelistNum" ); mint(msg.sender, _num); whitelistNum += _num; } function publicMint(uint256 _num) external payable { require( msg.value == publicPrice * _num, "Value must eq publicPrice*num" ); require( publicStartTime <= block.timestamp, "PublicMint has not started yet" ); require(publicEndTime > block.timestamp, "PublicMint has ended"); require( publicNum + _num <= maxPublicNum, "Num must lower maxPublicNum" ); mint(msg.sender, _num); publicNum += _num; } function setRoot(bytes32 _ogRoot, bytes32 _whitelistRoot) external onlyOwner { ogRoot = _ogRoot; whitelistRoot = _whitelistRoot; } function setMaxBatch(uint256 _maxBatch) public onlyOwner { maxBatch = _maxBatch; } function withdraw() external onlyOwner { payable(msg.sender).transfer(address(this).balance); } function setBaseURI(string memory _baseURI) public onlyOwner { baseURI = _baseURI; } function setDefaultURI(string memory _defaultURI) public onlyOwner { defaultURI = _defaultURI; } function tokenURI(uint256 _tokenId) public view override returns (string memory) { require( _exists(_tokenId), "ERC721Metadata: URI query for nonexistent token" ); string memory imageURI = bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, _tokenId.toString(), ".json")) : defaultURI; return imageURI; } }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_baseURI","type":"string"},{"internalType":"string","name":"_defaultURI","type":"string"},{"internalType":"bytes32","name":"_ogRoot","type":"bytes32"},{"internalType":"bytes32","name":"_whitelistRoot","type":"bytes32"}],"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":"InvalidQueryRange","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"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"airdropNum","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"defaultURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"explicitOwnershipOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"}],"internalType":"struct IERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"explicitOwnershipsOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"}],"internalType":"struct IERC721A.TokenOwnership[]","name":"","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxAirdropNum","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBatch","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxOgNum","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPublicNum","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxReservedNum","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWhitelistNum","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_address","type":"address[]"}],"name":"mintReserved","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"uint256","name":"_num","type":"uint256"}],"name":"mintReservedBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ogEndTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_num","type":"uint256"},{"internalType":"bytes32[]","name":"_proof","type":"bytes32[]"}],"name":"ogMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"ogNum","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ogPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ogRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ogStartTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicEndTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_num","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicNum","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicStartTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reservedNum","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":"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":"_defaultURI","type":"string"}],"name":"setDefaultURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxBatch","type":"uint256"}],"name":"setMaxBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxPublicNum","type":"uint256"},{"internalType":"uint256","name":"_maxOgNum","type":"uint256"},{"internalType":"uint256","name":"_maxWhitelistNum","type":"uint256"},{"internalType":"uint256","name":"_maxReservedNum","type":"uint256"}],"name":"setMaxNum","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_ogStartTime","type":"uint256"},{"internalType":"uint256","name":"_ogEndTime","type":"uint256"},{"internalType":"uint256","name":"_publicStartTime","type":"uint256"},{"internalType":"uint256","name":"_publicEndTime","type":"uint256"},{"internalType":"uint256","name":"_whitelistStartTime","type":"uint256"},{"internalType":"uint256","name":"_whitelistEndTime","type":"uint256"}],"name":"setMintTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_publicPrice","type":"uint256"},{"internalType":"uint256","name":"_whitelistPrice","type":"uint256"},{"internalType":"uint256","name":"_ogPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_ogRoot","type":"bytes32"},{"internalType":"bytes32","name":"_whitelistRoot","type":"bytes32"}],"name":"setRoot","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":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"start","type":"uint256"},{"internalType":"uint256","name":"stop","type":"uint256"}],"name":"tokensOfOwnerIn","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"whitelistEndTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_num","type":"uint256"},{"internalType":"bytes32[]","name":"_proof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"whitelistNum","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistStartTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b50604051620062c6380380620062c6833981810160405281019062000037919062000589565b6040518060400160405280600d81526020017f486f62676f626c696e204e4654000000000000000000000000000000000000008152506040518060400160405280600d81526020017f486f62676f626c696e204e4654000000000000000000000000000000000000008152508160029080519060200190620000bb92919062000444565b508060039080519060200190620000d492919062000444565b50620000e56200020360201b60201c565b60008190555050506200010d620001016200020860201b60201c565b6200021060201b60201c565b60016009819055506000600a905060006115b390506101056020819055506101f4601d819055506103e8601e81905550610f73601c819055506362a491d06017819055506362a5106060188190555060006011819055506362a491d06013819055506362a5106060148190555060006012819055506362a49fe060158190555064023f896250601681905550662386f26fc10000601081905550620001b886620002d660201b60201c565b620001c9826200038160201b60201c565b80600a8190555084600d9080519060200190620001e892919062000444565b5083600e8190555082600f8190555050505050505062000864565b600090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002e66200020860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200030c6200041a60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000365576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200035c9062000660565b60405180910390fd5b80600b90805190602001906200037d92919062000444565b5050565b620003916200020860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620003b76200041a60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000410576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004079062000660565b60405180910390fd5b80600c8190555050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620004529062000732565b90600052602060002090601f016020900481019282620004765760008555620004c2565b82601f106200049157805160ff1916838001178555620004c2565b82800160010185558215620004c2579182015b82811115620004c1578251825591602001919060010190620004a4565b5b509050620004d19190620004d5565b5090565b5b80821115620004f0576000816000905550600101620004d6565b5090565b60006200050b6200050584620006ab565b62000682565b9050828152602081018484840111156200052a576200052962000801565b5b62000537848285620006fc565b509392505050565b60008151905062000550816200084a565b92915050565b600082601f8301126200056e576200056d620007fc565b5b815162000580848260208601620004f4565b91505092915050565b60008060008060808587031215620005a657620005a56200080b565b5b600085015167ffffffffffffffff811115620005c757620005c662000806565b5b620005d58782880162000556565b945050602085015167ffffffffffffffff811115620005f957620005f862000806565b5b620006078782880162000556565b93505060406200061a878288016200053f565b92505060606200062d878288016200053f565b91505092959194509250565b600062000648602083620006e1565b9150620006558262000821565b602082019050919050565b600060208201905081810360008301526200067b8162000639565b9050919050565b60006200068e620006a1565b90506200069c828262000768565b919050565b6000604051905090565b600067ffffffffffffffff821115620006c957620006c8620007cd565b5b620006d48262000810565b9050602081019050919050565b600082825260208201905092915050565b6000819050919050565b60005b838110156200071c578082015181840152602081019050620006ff565b838111156200072c576000848401525b50505050565b600060028204905060018216806200074b57607f821691505b602082108114156200076257620007616200079e565b5b50919050565b620007738262000810565b810181811067ffffffffffffffff82111715620007955762000794620007cd565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6200085581620006f2565b81146200086157600080fd5b50565b615a5280620008746000396000f3fe6080604052600436106103975760003560e01c80638462151c116101dc578063c0edc37d11610102578063da1b9e08116100a0578063ee7bf8181161006f578063ee7bf81814610d45578063f2fde38b14610d70578063f95b5b9914610d99578063fc1a1c3614610dc457610397565b8063da1b9e0814610c89578063ddbfb0ec14610cb2578063e985e9c514610cdd578063ebdfd72214610d1a57610397565b8063c87b56dd116100dc578063c87b56dd14610bda578063d2cab05614610c17578063d5abeb0114610c33578063d89c688814610c5e57610397565b8063c0edc37d14610b47578063c23dc68f14610b72578063c86c8d8a14610baf57610397565b806399a2557a1161017a578063a80ea4eb11610149578063a80ea4eb14610aa1578063a945bf8014610aca578063aa585d5614610af5578063b88d4fde14610b1e57610397565b806399a2557a146109e55780639e3e76ab14610a22578063a22cb46514610a4d578063a60062ad14610a7657610397565b8063903afdc0116101b6578063903afdc01461093b5780639286a52d146109665780639292caaf1461098f57806395d89b41146109ba57610397565b80638462151c146108aa578063850f3f3f146108e75780638da5cb5b1461091057610397565b80633ccfd60b116102c15780635d195c521161025f5780636c0360eb1161022e5780636c0360eb1461080257806370a082311461082d578063715018a61461086a57806371f384201461088157610397565b80635d195c52146107445780635fd1bbc41461076f5780636352211e1461079a57806367765b87146107d757610397565b806342af83fb1161029b57806342af83fb1461068a578063517430c9146106b357806355f804b3146106de5780635bbb21771461070757610397565b80633ccfd60b1461062157806342842e0e1461063857806342966c681461066157610397565b806323b872dd11610339578063300b23d811610308578063300b23d81461057757806331b21e40146105a0578063386bfc98146105cb5780633a367a67146105f657610397565b806323b872dd146104eb5780632b314dc6146105145780632c27e581146105305780632db115441461055b57610397565b8063095ea7b311610375578063095ea7b3146104415780630b56d4c61461046a57806315f5d8a01461049557806318160ddd146104c057610397565b806301ffc9a71461039c57806306fdde03146103d9578063081812fc14610404575b600080fd5b3480156103a857600080fd5b506103c360048036038101906103be91906142a5565b610def565b6040516103d09190614c73565b60405180910390f35b3480156103e557600080fd5b506103ee610e81565b6040516103fb9190614ca9565b60405180910390f35b34801561041057600080fd5b5061042b60048036038101906104269190614348565b610f13565b6040516104389190614bc8565b60405180910390f35b34801561044d57600080fd5b506104686004803603810190610463919061413c565b610f8f565b005b34801561047657600080fd5b5061047f611136565b60405161048c9190614f86565b60405180910390f35b3480156104a157600080fd5b506104aa61113c565b6040516104b79190614f86565b60405180910390f35b3480156104cc57600080fd5b506104d5611142565b6040516104e29190614f86565b60405180910390f35b3480156104f757600080fd5b50610512600480360381019061050d9190614026565b611159565b005b61052e60048036038101906105299190614375565b611169565b005b34801561053c57600080fd5b50610545611376565b6040516105529190614f86565b60405180910390f35b61057560048036038101906105709190614348565b61137c565b005b34801561058357600080fd5b5061059e60048036038101906105999190614348565b6114cc565b005b3480156105ac57600080fd5b506105b5611552565b6040516105c29190614f86565b60405180910390f35b3480156105d757600080fd5b506105e0611558565b6040516105ed9190614c8e565b60405180910390f35b34801561060257600080fd5b5061060b61155e565b6040516106189190614ca9565b60405180910390f35b34801561062d57600080fd5b506106366115ec565b005b34801561064457600080fd5b5061065f600480360381019061065a9190614026565b6116b1565b005b34801561066d57600080fd5b5061068860048036038101906106839190614348565b6116d1565b005b34801561069657600080fd5b506106b160048036038101906106ac9190614265565b6116df565b005b3480156106bf57600080fd5b506106c861176d565b6040516106d59190614f86565b60405180910390f35b3480156106ea57600080fd5b50610705600480360381019061070091906142ff565b611773565b005b34801561071357600080fd5b5061072e6004803603810190610729919061421c565b611809565b60405161073b9190614c2f565b60405180910390f35b34801561075057600080fd5b506107596118ca565b6040516107669190614f86565b60405180910390f35b34801561077b57600080fd5b506107846118d0565b6040516107919190614f86565b60405180910390f35b3480156107a657600080fd5b506107c160048036038101906107bc9190614348565b6118d6565b6040516107ce9190614bc8565b60405180910390f35b3480156107e357600080fd5b506107ec6118e8565b6040516107f99190614f86565b60405180910390f35b34801561080e57600080fd5b506108176118ee565b6040516108249190614ca9565b60405180910390f35b34801561083957600080fd5b50610854600480360381019061084f9190613fb9565b61197c565b6040516108619190614f86565b60405180910390f35b34801561087657600080fd5b5061087f611a35565b005b34801561088d57600080fd5b506108a860048036038101906108a39190614424565b611abd565b005b3480156108b657600080fd5b506108d160048036038101906108cc9190613fb9565b611b5b565b6040516108de9190614c51565b60405180910390f35b3480156108f357600080fd5b5061090e600480360381019061090991906141cf565b611ca5565b005b34801561091c57600080fd5b50610925611dea565b6040516109329190614bc8565b60405180910390f35b34801561094757600080fd5b50610950611e14565b60405161095d9190614c8e565b60405180910390f35b34801561097257600080fd5b5061098d6004803603810190610988919061448b565b611e1a565b005b34801561099b57600080fd5b506109a4611ec8565b6040516109b19190614f86565b60405180910390f35b3480156109c657600080fd5b506109cf611ece565b6040516109dc9190614ca9565b60405180910390f35b3480156109f157600080fd5b50610a0c6004803603810190610a07919061417c565b611f60565b604051610a199190614c51565b60405180910390f35b348015610a2e57600080fd5b50610a37612174565b604051610a449190614f86565b60405180910390f35b348015610a5957600080fd5b50610a746004803603810190610a6f91906140fc565b61217a565b005b348015610a8257600080fd5b50610a8b6122f2565b604051610a989190614f86565b60405180910390f35b348015610aad57600080fd5b50610ac86004803603810190610ac3919061413c565b6122f8565b005b348015610ad657600080fd5b50610adf6123ed565b604051610aec9190614f86565b60405180910390f35b348015610b0157600080fd5b50610b1c6004803603810190610b1791906143d1565b6123f3565b005b348015610b2a57600080fd5b50610b456004803603810190610b409190614079565b612489565b005b348015610b5357600080fd5b50610b5c6124fc565b604051610b699190614f86565b60405180910390f35b348015610b7e57600080fd5b50610b996004803603810190610b949190614348565b612502565b604051610ba69190614f6b565b60405180910390f35b348015610bbb57600080fd5b50610bc461256c565b604051610bd19190614f86565b60405180910390f35b348015610be657600080fd5b50610c016004803603810190610bfc9190614348565b612572565b604051610c0e9190614ca9565b60405180910390f35b610c316004803603810190610c2c9190614375565b61269a565b005b348015610c3f57600080fd5b50610c486128a7565b604051610c559190614f86565b60405180910390f35b348015610c6a57600080fd5b50610c736128ad565b604051610c809190614f86565b60405180910390f35b348015610c9557600080fd5b50610cb06004803603810190610cab91906142ff565b6128b3565b005b348015610cbe57600080fd5b50610cc7612949565b604051610cd49190614f86565b60405180910390f35b348015610ce957600080fd5b50610d046004803603810190610cff9190613fe6565b61294f565b604051610d119190614c73565b60405180910390f35b348015610d2657600080fd5b50610d2f6129e3565b604051610d3c9190614f86565b60405180910390f35b348015610d5157600080fd5b50610d5a6129e9565b604051610d679190614f86565b60405180910390f35b348015610d7c57600080fd5b50610d976004803603810190610d929190613fb9565b6129ef565b005b348015610da557600080fd5b50610dae612ae7565b604051610dbb9190614f86565b60405180910390f35b348015610dd057600080fd5b50610dd9612aed565b604051610de69190614f86565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610e4a57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610e7a5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610e9090615333565b80601f0160208091040260200160405190810160405280929190818152602001828054610ebc90615333565b8015610f095780601f10610ede57610100808354040283529160200191610f09565b820191906000526020600020905b815481529060010190602001808311610eec57829003601f168201915b5050505050905090565b6000610f1e82612af3565b610f54576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610f9a82612b52565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611002576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16611021612c20565b73ffffffffffffffffffffffffffffffffffffffff16146110845761104d81611048612c20565b61294f565b611083576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60225481565b60125481565b600061114c612c28565b6001546000540303905090565b611164838383612c2d565b505050565b60028211156111ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a490614ecb565b60405180910390fd5b6000336040516020016111c09190614b52565b6040516020818303038152906040528051906020012090506111e582600e5483612fd7565b611224576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121b90614d6b565b60405180910390fd5b8260125461123291906151d1565b3414611273576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126a90614f0b565b60405180910390fd5b4260135411156112b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112af90614ccb565b60405180910390fd5b42601454116112fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f390614ceb565b60405180910390fd5b601e5483601b5461130d919061514a565b111561134e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134590614e8b565b60405180910390fd5b611358338461308d565b82601b600082825461136a919061514a565b92505081905550505050565b60165481565b8060105461138a91906151d1565b34146113cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c290614e0b565b60405180910390fd5b426015541115611410576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140790614e6b565b60405180910390fd5b4260165411611454576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144b90614d4b565b60405180910390fd5b601c5481601954611465919061514a565b11156114a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149d90614f4b565b60405180910390fd5b6114b0338261308d565b80601960008282546114c2919061514a565b9250508190555050565b6114d4613199565b73ffffffffffffffffffffffffffffffffffffffff166114f2611dea565b73ffffffffffffffffffffffffffffffffffffffff1614611548576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153f90614deb565b60405180910390fd5b80600c8190555050565b60205481565b600f5481565b600d805461156b90615333565b80601f016020809104026020016040519081016040528092919081815260200182805461159790615333565b80156115e45780601f106115b9576101008083540402835291602001916115e4565b820191906000526020600020905b8154815290600101906020018083116115c757829003601f168201915b505050505081565b6115f4613199565b73ffffffffffffffffffffffffffffffffffffffff16611612611dea565b73ffffffffffffffffffffffffffffffffffffffff1614611668576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165f90614deb565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050501580156116ae573d6000803e3d6000fd5b50565b6116cc83838360405180602001604052806000815250612489565b505050565b6116dc8160016131a1565b50565b6116e7613199565b73ffffffffffffffffffffffffffffffffffffffff16611705611dea565b73ffffffffffffffffffffffffffffffffffffffff161461175b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175290614deb565b60405180910390fd5b81600e8190555080600f819055505050565b601d5481565b61177b613199565b73ffffffffffffffffffffffffffffffffffffffff16611799611dea565b73ffffffffffffffffffffffffffffffffffffffff16146117ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e690614deb565b60405180910390fd5b80600b9080519060200190611805929190613be3565b5050565b606060008251905060008167ffffffffffffffff81111561182d5761182c6154fa565b5b60405190808252806020026020018201604052801561186657816020015b611853613c69565b81526020019060019003908161184b5790505b50905060005b8281146118bf57611896858281518110611889576118886154cb565b5b6020026020010151612502565b8282815181106118a9576118a86154cb565b5b602002602001018190525080600101905061186c565b508092505050919050565b601b5481565b60155481565b60006118e182612b52565b9050919050565b600c5481565b600b80546118fb90615333565b80601f016020809104026020016040519081016040528092919081815260200182805461192790615333565b80156119745780601f1061194957610100808354040283529160200191611974565b820191906000526020600020905b81548152906001019060200180831161195757829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119e4576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611a3d613199565b73ffffffffffffffffffffffffffffffffffffffff16611a5b611dea565b73ffffffffffffffffffffffffffffffffffffffff1614611ab1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa890614deb565b60405180910390fd5b611abb6000613479565b565b611ac5613199565b73ffffffffffffffffffffffffffffffffffffffff16611ae3611dea565b73ffffffffffffffffffffffffffffffffffffffff1614611b39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3090614deb565b60405180910390fd5b83601c8190555082601e8190555081601d819055508060208190555050505050565b60606000806000611b6b8561197c565b905060008167ffffffffffffffff811115611b8957611b886154fa565b5b604051908082528060200260200182016040528015611bb75781602001602082028036833780820191505090505b509050611bc2613c69565b6000611bcc612c28565b90505b838614611c9757611bdf8161353f565b9150816040015115611bf057611c8c565b600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611c3057816000015194505b8773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415611c8b5780838780600101985081518110611c7e57611c7d6154cb565b5b6020026020010181815250505b5b806001019050611bcf565b508195505050505050919050565b611cad613199565b73ffffffffffffffffffffffffffffffffffffffff16611ccb611dea565b73ffffffffffffffffffffffffffffffffffffffff1614611d21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1890614deb565b60405180910390fd5b600082829050905060205481601f54611d3a919061514a565b1115611d7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7290614e4b565b60405180910390fd5b60005b81811015611dcb57611db8848483818110611d9c57611d9b6154cb565b5b9050602002016020810190611db19190613fb9565b600161308d565b8080611dc390615396565b915050611d7e565b5080601f6000828254611dde919061514a565b92505081905550505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600e5481565b611e22613199565b73ffffffffffffffffffffffffffffffffffffffff16611e40611dea565b73ffffffffffffffffffffffffffffffffffffffff1614611e96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8d90614deb565b60405180910390fd5b836015819055508260168190555085601381905550846014819055508160178190555080601881905550505050505050565b60175481565b606060038054611edd90615333565b80601f0160208091040260200160405190810160405280929190818152602001828054611f0990615333565b8015611f565780601f10611f2b57610100808354040283529160200191611f56565b820191906000526020600020905b815481529060010190602001808311611f3957829003601f168201915b5050505050905090565b6060818310611f9b576040517f32c1995a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080611fa661356a565b9050611fb0612c28565b851015611fc257611fbf612c28565b94505b80841115611fce578093505b6000611fd98761197c565b905084861015611ffc576000868603905081811015611ff6578091505b50612001565b600090505b60008167ffffffffffffffff81111561201d5761201c6154fa565b5b60405190808252806020026020018201604052801561204b5781602001602082028036833780820191505090505b5090506000821415612063578094505050505061216d565b600061206e88612502565b90506000816040015161208357816000015190505b60008990505b8881141580156120995750848714155b1561215f576120a78161353f565b92508260400151156120b857612154565b600073ffffffffffffffffffffffffffffffffffffffff16836000015173ffffffffffffffffffffffffffffffffffffffff16146120f857826000015191505b8a73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156121535780848880600101995081518110612146576121456154cb565b5b6020026020010181815250505b5b806001019050612089565b508583528296505050505050505b9392505050565b601e5481565b612182612c20565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156121e7576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006121f4612c20565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166122a1612c20565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516122e69190614c73565b60405180910390a35050565b60195481565b612300613199565b73ffffffffffffffffffffffffffffffffffffffff1661231e611dea565b73ffffffffffffffffffffffffffffffffffffffff1614612374576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236b90614deb565b60405180910390fd5b60205481601f54612385919061514a565b11156123c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123bd90614e4b565b60405180910390fd5b6123d0828261308d565b80601f60008282546123e2919061514a565b925050819055505050565b60105481565b6123fb613199565b73ffffffffffffffffffffffffffffffffffffffff16612419611dea565b73ffffffffffffffffffffffffffffffffffffffff161461246f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246690614deb565b60405180910390fd5b826010819055508160118190555080601281905550505050565b612494848484612c2d565b60008373ffffffffffffffffffffffffffffffffffffffff163b146124f6576124bf84848484613573565b6124f5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b601c5481565b61250a613c69565b612512613c69565b61251a612c28565b83108061252e575061252a61356a565b8310155b1561253c5780915050612567565b6125458361353f565b905080604001511561255a5780915050612567565b612563836136d3565b9150505b919050565b60135481565b606061257d82612af3565b6125bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125b390614e2b565b60405180910390fd5b600080600b80546125cc90615333565b90501161266357600d80546125e090615333565b80601f016020809104026020016040519081016040528092919081815260200182805461260c90615333565b80156126595780601f1061262e57610100808354040283529160200191612659565b820191906000526020600020905b81548152906001019060200180831161263c57829003601f168201915b505050505061268f565b600b61266e846136f3565b60405160200161267f929190614b99565b6040516020818303038152906040525b905080915050919050565b60018211156126de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126d590614d2b565b60405180910390fd5b6000336040516020016126f19190614b52565b60405160208183030381529060405280519060200120905061271682600f5483612fd7565b612755576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161274c90614d6b565b60405180910390fd5b8260115461276391906151d1565b34146127a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161279b90614d8b565b60405180910390fd5b4260175411156127e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127e090614eab565b60405180910390fd5b426018541161282d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161282490614dcb565b60405180910390fd5b601d5483601a5461283e919061514a565b111561287f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161287690614e8b565b60405180910390fd5b612889338461308d565b82601a600082825461289b919061514a565b92505081905550505050565b600a5481565b601f5481565b6128bb613199565b73ffffffffffffffffffffffffffffffffffffffff166128d9611dea565b73ffffffffffffffffffffffffffffffffffffffff161461292f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161292690614deb565b60405180910390fd5b80600d9080519060200190612945929190613be3565b5050565b60215481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60185481565b60145481565b6129f7613199565b73ffffffffffffffffffffffffffffffffffffffff16612a15611dea565b73ffffffffffffffffffffffffffffffffffffffff1614612a6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a6290614deb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612adb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ad290614d0b565b60405180910390fd5b612ae481613479565b50565b601a5481565b60115481565b600081612afe612c28565b11158015612b0d575060005482105b8015612b4b575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60008082905080612b61612c28565b11612be957600054811015612be85760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415612be6575b6000811415612bdc576004600083600190039350838152602001908152602001600020549050612bb1565b8092505050612c1b565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600090565b6000612c3882612b52565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614612c9f576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16612cc0612c20565b73ffffffffffffffffffffffffffffffffffffffff161480612cef5750612cee85612ce9612c20565b61294f565b5b80612d345750612cfd612c20565b73ffffffffffffffffffffffffffffffffffffffff16612d1c84610f13565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612d6d576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612dd4576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612de18585856001613854565b6006600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b612ede8661385a565b1717600460008581526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000083161415612f68576000600184019050600060046000838152602001908152602001600020541415612f66576000548114612f65578260046000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612fd08585856001613864565b5050505050565b60008082905060005b855181101561307f576000868281518110612ffe57612ffd6154cb565b5b6020026020010151905080831161303f578281604051602001613022929190614b6d565b60405160208183030381529060405280519060200120925061306b565b8083604051602001613052929190614b6d565b6040516020818303038152906040528051906020012092505b50808061307790615396565b915050612fe0565b508381149150509392505050565b600260095414156130d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130ca90614f2b565b60405180910390fd5b6002600981905550600c5481111580156130ed5750600081115b61312c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161312390614eeb565b60405180910390fd5b600a5481613138611142565b613142919061514a565b1115613183576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161317a90614dab565b60405180910390fd5b61318d828261386a565b60016009819055505050565b600033905090565b60006131ac83612b52565b9050600081905082156132895760008173ffffffffffffffffffffffffffffffffffffffff166131da612c20565b73ffffffffffffffffffffffffffffffffffffffff161480613209575061320882613203612c20565b61294f565b5b8061324e5750613217612c20565b73ffffffffffffffffffffffffffffffffffffffff1661323686610f13565b73ffffffffffffffffffffffffffffffffffffffff16145b905080613287576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505b613297816000866001613854565b6006600085815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600160806001901b03600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055507c02000000000000000000000000000000000000000000000000000000007c010000000000000000000000000000000000000000000000000000000060a042901b61336c8461385a565b171717600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000831614156133f75760006001850190506000600460008381526020019081526020016000205414156133f55760005481146133f4578260046000838152602001908152602001600020819055505b5b505b83600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613461816000866001613864565b60016000815480929190600101919050555050505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b613547613c69565b6135636004600084815260200190815260200160002054613888565b9050919050565b60008054905090565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613599612c20565b8786866040518563ffffffff1660e01b81526004016135bb9493929190614be3565b602060405180830381600087803b1580156135d557600080fd5b505af192505050801561360657506040513d601f19601f8201168201806040525081019061360391906142d2565b60015b613680573d8060008114613636576040519150601f19603f3d011682016040523d82523d6000602084013e61363b565b606091505b50600081511415613678576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6136db613c69565b6136ec6136e783612b52565b613888565b9050919050565b6060600082141561373b576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061384f565b600082905060005b6000821461376d57808061375690615396565b915050600a8261376691906151a0565b9150613743565b60008167ffffffffffffffff811115613789576137886154fa565b5b6040519080825280601f01601f1916602001820160405280156137bb5781602001600182028036833780820191505090505b5090505b60008514613848576001826137d4919061522b565b9150600a856137e3919061540d565b60306137ef919061514a565b60f81b818381518110613805576138046154cb565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561384191906151a0565b94506137bf565b8093505050505b919050565b50505050565b6000819050919050565b50505050565b613884828260405180602001604052806000815250613924565b5050565b613890613c69565b81816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff168152505060007c010000000000000000000000000000000000000000000000000000000083161415816040019015159081151581525050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415613991576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008314156139cc576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6139d96000858386613854565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e1613a3e60018514613bd9565b901b60a042901b613a4e8661385a565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b14613b52575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613b026000878480600101955087613573565b613b38576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808210613a93578260005414613b4d57600080fd5b613bbd565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210613b53575b816000819055505050613bd36000858386613864565b50505050565b6000819050919050565b828054613bef90615333565b90600052602060002090601f016020900481019282613c115760008555613c58565b82601f10613c2a57805160ff1916838001178555613c58565b82800160010185558215613c58579182015b82811115613c57578251825591602001919060010190613c3c565b5b509050613c659190613cac565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115613cc5576000816000905550600101613cad565b5090565b6000613cdc613cd784614fc6565b614fa1565b90508083825260208201905082856020860282011115613cff57613cfe615533565b5b60005b85811015613d2f5781613d158882613f09565b845260208401935060208301925050600181019050613d02565b5050509392505050565b6000613d4c613d4784614ff2565b614fa1565b90508083825260208201905082856020860282011115613d6f57613d6e615533565b5b60005b85811015613d9f5781613d858882613fa4565b845260208401935060208301925050600181019050613d72565b5050509392505050565b6000613dbc613db78461501e565b614fa1565b905082815260208101848484011115613dd857613dd7615538565b5b613de38482856152f1565b509392505050565b6000613dfe613df98461504f565b614fa1565b905082815260208101848484011115613e1a57613e19615538565b5b613e258482856152f1565b509392505050565b600081359050613e3c816159a9565b92915050565b60008083601f840112613e5857613e5761552e565b5b8235905067ffffffffffffffff811115613e7557613e74615529565b5b602083019150836020820283011115613e9157613e90615533565b5b9250929050565b600082601f830112613ead57613eac61552e565b5b8135613ebd848260208601613cc9565b91505092915050565b600082601f830112613edb57613eda61552e565b5b8135613eeb848260208601613d39565b91505092915050565b600081359050613f03816159c0565b92915050565b600081359050613f18816159d7565b92915050565b600081359050613f2d816159ee565b92915050565b600081519050613f42816159ee565b92915050565b600082601f830112613f5d57613f5c61552e565b5b8135613f6d848260208601613da9565b91505092915050565b600082601f830112613f8b57613f8a61552e565b5b8135613f9b848260208601613deb565b91505092915050565b600081359050613fb381615a05565b92915050565b600060208284031215613fcf57613fce615542565b5b6000613fdd84828501613e2d565b91505092915050565b60008060408385031215613ffd57613ffc615542565b5b600061400b85828601613e2d565b925050602061401c85828601613e2d565b9150509250929050565b60008060006060848603121561403f5761403e615542565b5b600061404d86828701613e2d565b935050602061405e86828701613e2d565b925050604061406f86828701613fa4565b9150509250925092565b6000806000806080858703121561409357614092615542565b5b60006140a187828801613e2d565b94505060206140b287828801613e2d565b93505060406140c387828801613fa4565b925050606085013567ffffffffffffffff8111156140e4576140e361553d565b5b6140f087828801613f48565b91505092959194509250565b6000806040838503121561411357614112615542565b5b600061412185828601613e2d565b925050602061413285828601613ef4565b9150509250929050565b6000806040838503121561415357614152615542565b5b600061416185828601613e2d565b925050602061417285828601613fa4565b9150509250929050565b60008060006060848603121561419557614194615542565b5b60006141a386828701613e2d565b93505060206141b486828701613fa4565b92505060406141c586828701613fa4565b9150509250925092565b600080602083850312156141e6576141e5615542565b5b600083013567ffffffffffffffff8111156142045761420361553d565b5b61421085828601613e42565b92509250509250929050565b60006020828403121561423257614231615542565b5b600082013567ffffffffffffffff8111156142505761424f61553d565b5b61425c84828501613ec6565b91505092915050565b6000806040838503121561427c5761427b615542565b5b600061428a85828601613f09565b925050602061429b85828601613f09565b9150509250929050565b6000602082840312156142bb576142ba615542565b5b60006142c984828501613f1e565b91505092915050565b6000602082840312156142e8576142e7615542565b5b60006142f684828501613f33565b91505092915050565b60006020828403121561431557614314615542565b5b600082013567ffffffffffffffff8111156143335761433261553d565b5b61433f84828501613f76565b91505092915050565b60006020828403121561435e5761435d615542565b5b600061436c84828501613fa4565b91505092915050565b6000806040838503121561438c5761438b615542565b5b600061439a85828601613fa4565b925050602083013567ffffffffffffffff8111156143bb576143ba61553d565b5b6143c785828601613e98565b9150509250929050565b6000806000606084860312156143ea576143e9615542565b5b60006143f886828701613fa4565b935050602061440986828701613fa4565b925050604061441a86828701613fa4565b9150509250925092565b6000806000806080858703121561443e5761443d615542565b5b600061444c87828801613fa4565b945050602061445d87828801613fa4565b935050604061446e87828801613fa4565b925050606061447f87828801613fa4565b91505092959194509250565b60008060008060008060c087890312156144a8576144a7615542565b5b60006144b689828a01613fa4565b96505060206144c789828a01613fa4565b95505060406144d889828a01613fa4565b94505060606144e989828a01613fa4565b93505060806144fa89828a01613fa4565b92505060a061450b89828a01613fa4565b9150509295509295509295565b60006145248383614aa1565b60608301905092915050565b600061453c8383614b25565b60208301905092915050565b6145518161525f565b82525050565b6145608161525f565b82525050565b6145776145728261525f565b6153df565b82525050565b6000614588826150b5565b61459281856150fb565b935061459d83615080565b8060005b838110156145ce5781516145b58882614518565b97506145c0836150e1565b9250506001810190506145a1565b5085935050505092915050565b60006145e6826150c0565b6145f0818561510c565b93506145fb83615090565b8060005b8381101561462c5781516146138882614530565b975061461e836150ee565b9250506001810190506145ff565b5085935050505092915050565b61464281615271565b82525050565b61465181615271565b82525050565b6146608161527d565b82525050565b6146776146728261527d565b6153f1565b82525050565b6000614688826150cb565b614692818561511d565b93506146a2818560208601615300565b6146ab81615547565b840191505092915050565b60006146c1826150d6565b6146cb818561512e565b93506146db818560208601615300565b6146e481615547565b840191505092915050565b60006146fa826150d6565b614704818561513f565b9350614714818560208601615300565b80840191505092915050565b6000815461472d81615333565b614737818661513f565b94506001821660008114614752576001811461476357614796565b60ff19831686528186019350614796565b61476c856150a0565b60005b8381101561478e5781548189015260018201915060208101905061476f565b838801955050505b50505092915050565b60006147ac601a8361512e565b91506147b782615565565b602082019050919050565b60006147cf60108361512e565b91506147da8261558e565b602082019050919050565b60006147f260268361512e565b91506147fd826155b7565b604082019050919050565b600061481560138361512e565b915061482082615606565b602082019050919050565b600061483860148361512e565b91506148438261562f565b602082019050919050565b600061485b60138361512e565b915061486682615658565b602082019050919050565b600061487e60208361512e565b915061488982615681565b602082019050919050565b60006148a160188361512e565b91506148ac826156aa565b602082019050919050565b60006148c460178361512e565b91506148cf826156d3565b602082019050919050565b60006148e760058361513f565b91506148f2826156fc565b600582019050919050565b600061490a60208361512e565b915061491582615725565b602082019050919050565b600061492d601d8361512e565b91506149388261574e565b602082019050919050565b6000614950602f8361512e565b915061495b82615777565b604082019050919050565b600061497360258361512e565b915061497e826157c6565b604082019050919050565b6000614996601e8361512e565b91506149a182615815565b602082019050919050565b60006149b9601e8361512e565b91506149c48261583e565b602082019050919050565b60006149dc60218361512e565b91506149e782615867565b604082019050919050565b60006149ff60138361512e565b9150614a0a826158b6565b602082019050919050565b6000614a2260258361512e565b9150614a2d826158df565b604082019050919050565b6000614a4560198361512e565b9150614a508261592e565b602082019050919050565b6000614a68601f8361512e565b9150614a7382615957565b602082019050919050565b6000614a8b601b8361512e565b9150614a9682615980565b602082019050919050565b606082016000820151614ab76000850182614548565b506020820151614aca6020850182614b43565b506040820151614add6040850182614639565b50505050565b606082016000820151614af96000850182614548565b506020820151614b0c6020850182614b43565b506040820151614b1f6040850182614639565b50505050565b614b2e816152d3565b82525050565b614b3d816152d3565b82525050565b614b4c816152dd565b82525050565b6000614b5e8284614566565b60148201915081905092915050565b6000614b798285614666565b602082019150614b898284614666565b6020820191508190509392505050565b6000614ba58285614720565b9150614bb182846146ef565b9150614bbc826148da565b91508190509392505050565b6000602082019050614bdd6000830184614557565b92915050565b6000608082019050614bf86000830187614557565b614c056020830186614557565b614c126040830185614b34565b8181036060830152614c24818461467d565b905095945050505050565b60006020820190508181036000830152614c49818461457d565b905092915050565b60006020820190508181036000830152614c6b81846145db565b905092915050565b6000602082019050614c886000830184614648565b92915050565b6000602082019050614ca36000830184614657565b92915050565b60006020820190508181036000830152614cc381846146b6565b905092915050565b60006020820190508181036000830152614ce48161479f565b9050919050565b60006020820190508181036000830152614d04816147c2565b9050919050565b60006020820190508181036000830152614d24816147e5565b9050919050565b60006020820190508181036000830152614d4481614808565b9050919050565b60006020820190508181036000830152614d648161482b565b9050919050565b60006020820190508181036000830152614d848161484e565b9050919050565b60006020820190508181036000830152614da481614871565b9050919050565b60006020820190508181036000830152614dc481614894565b9050919050565b60006020820190508181036000830152614de4816148b7565b9050919050565b60006020820190508181036000830152614e04816148fd565b9050919050565b60006020820190508181036000830152614e2481614920565b9050919050565b60006020820190508181036000830152614e4481614943565b9050919050565b60006020820190508181036000830152614e6481614966565b9050919050565b60006020820190508181036000830152614e8481614989565b9050919050565b60006020820190508181036000830152614ea4816149ac565b9050919050565b60006020820190508181036000830152614ec4816149cf565b9050919050565b60006020820190508181036000830152614ee4816149f2565b9050919050565b60006020820190508181036000830152614f0481614a15565b9050919050565b60006020820190508181036000830152614f2481614a38565b9050919050565b60006020820190508181036000830152614f4481614a5b565b9050919050565b60006020820190508181036000830152614f6481614a7e565b9050919050565b6000606082019050614f806000830184614ae3565b92915050565b6000602082019050614f9b6000830184614b34565b92915050565b6000614fab614fbc565b9050614fb78282615365565b919050565b6000604051905090565b600067ffffffffffffffff821115614fe157614fe06154fa565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561500d5761500c6154fa565b5b602082029050602081019050919050565b600067ffffffffffffffff821115615039576150386154fa565b5b61504282615547565b9050602081019050919050565b600067ffffffffffffffff82111561506a576150696154fa565b5b61507382615547565b9050602081019050919050565b6000819050602082019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000615155826152d3565b9150615160836152d3565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156151955761519461543e565b5b828201905092915050565b60006151ab826152d3565b91506151b6836152d3565b9250826151c6576151c561546d565b5b828204905092915050565b60006151dc826152d3565b91506151e7836152d3565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156152205761521f61543e565b5b828202905092915050565b6000615236826152d3565b9150615241836152d3565b9250828210156152545761525361543e565b5b828203905092915050565b600061526a826152b3565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b8381101561531e578082015181840152602081019050615303565b8381111561532d576000848401525b50505050565b6000600282049050600182168061534b57607f821691505b6020821081141561535f5761535e61549c565b5b50919050565b61536e82615547565b810181811067ffffffffffffffff8211171561538d5761538c6154fa565b5b80604052505050565b60006153a1826152d3565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156153d4576153d361543e565b5b600182019050919050565b60006153ea826153fb565b9050919050565b6000819050919050565b600061540682615558565b9050919050565b6000615418826152d3565b9150615423836152d3565b9250826154335761543261546d565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4f674d696e7420686173206e6f74207374617274656420796574000000000000600082015250565b7f4f674d696e742068617320656e64656400000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4e756d206d757374206c74206f72206571203100000000000000000000000000600082015250565b7f5075626c69634d696e742068617320656e646564000000000000000000000000600082015250565b7f566572696669636174696f6e206661696c656400000000000000000000000000600082015250565b7f56616c7565206d7573742065712077686974656c69737450726963652a6e756d600082015250565b7f4e756d206d757374206c6f776572206d6178537570706c790000000000000000600082015250565b7f57686974656c6973744d696e742068617320656e646564000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f56616c7565206d757374206571207075626c696350726963652a6e756d000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f72657365727665644e756d206d757374206c6f776572206d617852657365727660008201527f65644e756d000000000000000000000000000000000000000000000000000000602082015250565b7f5075626c69634d696e7420686173206e6f742073746172746564207965740000600082015250565b7f4e756d206d757374206c6f776572206d617857686974656c6973744e756d0000600082015250565b7f57686974656c6973744d696e7420686173206e6f74207374617274656420796560008201527f7400000000000000000000000000000000000000000000000000000000000000602082015250565b7f4e756d206d757374206c74206f74206571203200000000000000000000000000600082015250565b7f4e756d206d7573742067726561746572203020616e64206c6f776572206d617860008201527f4261746368000000000000000000000000000000000000000000000000000000602082015250565b7f56616c7565206d757374206571206f6750726963652a6e756d00000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f4e756d206d757374206c6f776572206d61785075626c69634e756d0000000000600082015250565b6159b28161525f565b81146159bd57600080fd5b50565b6159c981615271565b81146159d457600080fd5b50565b6159e08161527d565b81146159eb57600080fd5b50565b6159f781615287565b8114615a0257600080fd5b50565b615a0e816152d3565b8114615a1957600080fd5b5056fea26469706673582212208a85c98894b5b7c8f06248b0ffed62ade6d34e147240f3bf9707a5c925ddb76c64736f6c63430008070033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000e02ad0680ba4120f59d7f16d1f757f006fe5962cb8b95a6a203b77d7f27334efac01240802bc60ec14636fc9b2b133faeabd08ee48a053d4f5f94beb613f41e566000000000000000000000000000000000000000000000000000000000000003b68747470733a2f2f686f62676f626c696e2e6f73732d61702d736f757468656173742d312e616c6979756e63732e636f6d2f6d657461646174612f00000000000000000000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106103975760003560e01c80638462151c116101dc578063c0edc37d11610102578063da1b9e08116100a0578063ee7bf8181161006f578063ee7bf81814610d45578063f2fde38b14610d70578063f95b5b9914610d99578063fc1a1c3614610dc457610397565b8063da1b9e0814610c89578063ddbfb0ec14610cb2578063e985e9c514610cdd578063ebdfd72214610d1a57610397565b8063c87b56dd116100dc578063c87b56dd14610bda578063d2cab05614610c17578063d5abeb0114610c33578063d89c688814610c5e57610397565b8063c0edc37d14610b47578063c23dc68f14610b72578063c86c8d8a14610baf57610397565b806399a2557a1161017a578063a80ea4eb11610149578063a80ea4eb14610aa1578063a945bf8014610aca578063aa585d5614610af5578063b88d4fde14610b1e57610397565b806399a2557a146109e55780639e3e76ab14610a22578063a22cb46514610a4d578063a60062ad14610a7657610397565b8063903afdc0116101b6578063903afdc01461093b5780639286a52d146109665780639292caaf1461098f57806395d89b41146109ba57610397565b80638462151c146108aa578063850f3f3f146108e75780638da5cb5b1461091057610397565b80633ccfd60b116102c15780635d195c521161025f5780636c0360eb1161022e5780636c0360eb1461080257806370a082311461082d578063715018a61461086a57806371f384201461088157610397565b80635d195c52146107445780635fd1bbc41461076f5780636352211e1461079a57806367765b87146107d757610397565b806342af83fb1161029b57806342af83fb1461068a578063517430c9146106b357806355f804b3146106de5780635bbb21771461070757610397565b80633ccfd60b1461062157806342842e0e1461063857806342966c681461066157610397565b806323b872dd11610339578063300b23d811610308578063300b23d81461057757806331b21e40146105a0578063386bfc98146105cb5780633a367a67146105f657610397565b806323b872dd146104eb5780632b314dc6146105145780632c27e581146105305780632db115441461055b57610397565b8063095ea7b311610375578063095ea7b3146104415780630b56d4c61461046a57806315f5d8a01461049557806318160ddd146104c057610397565b806301ffc9a71461039c57806306fdde03146103d9578063081812fc14610404575b600080fd5b3480156103a857600080fd5b506103c360048036038101906103be91906142a5565b610def565b6040516103d09190614c73565b60405180910390f35b3480156103e557600080fd5b506103ee610e81565b6040516103fb9190614ca9565b60405180910390f35b34801561041057600080fd5b5061042b60048036038101906104269190614348565b610f13565b6040516104389190614bc8565b60405180910390f35b34801561044d57600080fd5b506104686004803603810190610463919061413c565b610f8f565b005b34801561047657600080fd5b5061047f611136565b60405161048c9190614f86565b60405180910390f35b3480156104a157600080fd5b506104aa61113c565b6040516104b79190614f86565b60405180910390f35b3480156104cc57600080fd5b506104d5611142565b6040516104e29190614f86565b60405180910390f35b3480156104f757600080fd5b50610512600480360381019061050d9190614026565b611159565b005b61052e60048036038101906105299190614375565b611169565b005b34801561053c57600080fd5b50610545611376565b6040516105529190614f86565b60405180910390f35b61057560048036038101906105709190614348565b61137c565b005b34801561058357600080fd5b5061059e60048036038101906105999190614348565b6114cc565b005b3480156105ac57600080fd5b506105b5611552565b6040516105c29190614f86565b60405180910390f35b3480156105d757600080fd5b506105e0611558565b6040516105ed9190614c8e565b60405180910390f35b34801561060257600080fd5b5061060b61155e565b6040516106189190614ca9565b60405180910390f35b34801561062d57600080fd5b506106366115ec565b005b34801561064457600080fd5b5061065f600480360381019061065a9190614026565b6116b1565b005b34801561066d57600080fd5b5061068860048036038101906106839190614348565b6116d1565b005b34801561069657600080fd5b506106b160048036038101906106ac9190614265565b6116df565b005b3480156106bf57600080fd5b506106c861176d565b6040516106d59190614f86565b60405180910390f35b3480156106ea57600080fd5b50610705600480360381019061070091906142ff565b611773565b005b34801561071357600080fd5b5061072e6004803603810190610729919061421c565b611809565b60405161073b9190614c2f565b60405180910390f35b34801561075057600080fd5b506107596118ca565b6040516107669190614f86565b60405180910390f35b34801561077b57600080fd5b506107846118d0565b6040516107919190614f86565b60405180910390f35b3480156107a657600080fd5b506107c160048036038101906107bc9190614348565b6118d6565b6040516107ce9190614bc8565b60405180910390f35b3480156107e357600080fd5b506107ec6118e8565b6040516107f99190614f86565b60405180910390f35b34801561080e57600080fd5b506108176118ee565b6040516108249190614ca9565b60405180910390f35b34801561083957600080fd5b50610854600480360381019061084f9190613fb9565b61197c565b6040516108619190614f86565b60405180910390f35b34801561087657600080fd5b5061087f611a35565b005b34801561088d57600080fd5b506108a860048036038101906108a39190614424565b611abd565b005b3480156108b657600080fd5b506108d160048036038101906108cc9190613fb9565b611b5b565b6040516108de9190614c51565b60405180910390f35b3480156108f357600080fd5b5061090e600480360381019061090991906141cf565b611ca5565b005b34801561091c57600080fd5b50610925611dea565b6040516109329190614bc8565b60405180910390f35b34801561094757600080fd5b50610950611e14565b60405161095d9190614c8e565b60405180910390f35b34801561097257600080fd5b5061098d6004803603810190610988919061448b565b611e1a565b005b34801561099b57600080fd5b506109a4611ec8565b6040516109b19190614f86565b60405180910390f35b3480156109c657600080fd5b506109cf611ece565b6040516109dc9190614ca9565b60405180910390f35b3480156109f157600080fd5b50610a0c6004803603810190610a07919061417c565b611f60565b604051610a199190614c51565b60405180910390f35b348015610a2e57600080fd5b50610a37612174565b604051610a449190614f86565b60405180910390f35b348015610a5957600080fd5b50610a746004803603810190610a6f91906140fc565b61217a565b005b348015610a8257600080fd5b50610a8b6122f2565b604051610a989190614f86565b60405180910390f35b348015610aad57600080fd5b50610ac86004803603810190610ac3919061413c565b6122f8565b005b348015610ad657600080fd5b50610adf6123ed565b604051610aec9190614f86565b60405180910390f35b348015610b0157600080fd5b50610b1c6004803603810190610b1791906143d1565b6123f3565b005b348015610b2a57600080fd5b50610b456004803603810190610b409190614079565b612489565b005b348015610b5357600080fd5b50610b5c6124fc565b604051610b699190614f86565b60405180910390f35b348015610b7e57600080fd5b50610b996004803603810190610b949190614348565b612502565b604051610ba69190614f6b565b60405180910390f35b348015610bbb57600080fd5b50610bc461256c565b604051610bd19190614f86565b60405180910390f35b348015610be657600080fd5b50610c016004803603810190610bfc9190614348565b612572565b604051610c0e9190614ca9565b60405180910390f35b610c316004803603810190610c2c9190614375565b61269a565b005b348015610c3f57600080fd5b50610c486128a7565b604051610c559190614f86565b60405180910390f35b348015610c6a57600080fd5b50610c736128ad565b604051610c809190614f86565b60405180910390f35b348015610c9557600080fd5b50610cb06004803603810190610cab91906142ff565b6128b3565b005b348015610cbe57600080fd5b50610cc7612949565b604051610cd49190614f86565b60405180910390f35b348015610ce957600080fd5b50610d046004803603810190610cff9190613fe6565b61294f565b604051610d119190614c73565b60405180910390f35b348015610d2657600080fd5b50610d2f6129e3565b604051610d3c9190614f86565b60405180910390f35b348015610d5157600080fd5b50610d5a6129e9565b604051610d679190614f86565b60405180910390f35b348015610d7c57600080fd5b50610d976004803603810190610d929190613fb9565b6129ef565b005b348015610da557600080fd5b50610dae612ae7565b604051610dbb9190614f86565b60405180910390f35b348015610dd057600080fd5b50610dd9612aed565b604051610de69190614f86565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610e4a57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610e7a5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b606060028054610e9090615333565b80601f0160208091040260200160405190810160405280929190818152602001828054610ebc90615333565b8015610f095780601f10610ede57610100808354040283529160200191610f09565b820191906000526020600020905b815481529060010190602001808311610eec57829003601f168201915b5050505050905090565b6000610f1e82612af3565b610f54576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610f9a82612b52565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611002576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16611021612c20565b73ffffffffffffffffffffffffffffffffffffffff16146110845761104d81611048612c20565b61294f565b611083576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60225481565b60125481565b600061114c612c28565b6001546000540303905090565b611164838383612c2d565b505050565b60028211156111ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a490614ecb565b60405180910390fd5b6000336040516020016111c09190614b52565b6040516020818303038152906040528051906020012090506111e582600e5483612fd7565b611224576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121b90614d6b565b60405180910390fd5b8260125461123291906151d1565b3414611273576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126a90614f0b565b60405180910390fd5b4260135411156112b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112af90614ccb565b60405180910390fd5b42601454116112fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f390614ceb565b60405180910390fd5b601e5483601b5461130d919061514a565b111561134e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134590614e8b565b60405180910390fd5b611358338461308d565b82601b600082825461136a919061514a565b92505081905550505050565b60165481565b8060105461138a91906151d1565b34146113cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c290614e0b565b60405180910390fd5b426015541115611410576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140790614e6b565b60405180910390fd5b4260165411611454576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144b90614d4b565b60405180910390fd5b601c5481601954611465919061514a565b11156114a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149d90614f4b565b60405180910390fd5b6114b0338261308d565b80601960008282546114c2919061514a565b9250508190555050565b6114d4613199565b73ffffffffffffffffffffffffffffffffffffffff166114f2611dea565b73ffffffffffffffffffffffffffffffffffffffff1614611548576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153f90614deb565b60405180910390fd5b80600c8190555050565b60205481565b600f5481565b600d805461156b90615333565b80601f016020809104026020016040519081016040528092919081815260200182805461159790615333565b80156115e45780601f106115b9576101008083540402835291602001916115e4565b820191906000526020600020905b8154815290600101906020018083116115c757829003601f168201915b505050505081565b6115f4613199565b73ffffffffffffffffffffffffffffffffffffffff16611612611dea565b73ffffffffffffffffffffffffffffffffffffffff1614611668576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165f90614deb565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050501580156116ae573d6000803e3d6000fd5b50565b6116cc83838360405180602001604052806000815250612489565b505050565b6116dc8160016131a1565b50565b6116e7613199565b73ffffffffffffffffffffffffffffffffffffffff16611705611dea565b73ffffffffffffffffffffffffffffffffffffffff161461175b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175290614deb565b60405180910390fd5b81600e8190555080600f819055505050565b601d5481565b61177b613199565b73ffffffffffffffffffffffffffffffffffffffff16611799611dea565b73ffffffffffffffffffffffffffffffffffffffff16146117ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e690614deb565b60405180910390fd5b80600b9080519060200190611805929190613be3565b5050565b606060008251905060008167ffffffffffffffff81111561182d5761182c6154fa565b5b60405190808252806020026020018201604052801561186657816020015b611853613c69565b81526020019060019003908161184b5790505b50905060005b8281146118bf57611896858281518110611889576118886154cb565b5b6020026020010151612502565b8282815181106118a9576118a86154cb565b5b602002602001018190525080600101905061186c565b508092505050919050565b601b5481565b60155481565b60006118e182612b52565b9050919050565b600c5481565b600b80546118fb90615333565b80601f016020809104026020016040519081016040528092919081815260200182805461192790615333565b80156119745780601f1061194957610100808354040283529160200191611974565b820191906000526020600020905b81548152906001019060200180831161195757829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119e4576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611a3d613199565b73ffffffffffffffffffffffffffffffffffffffff16611a5b611dea565b73ffffffffffffffffffffffffffffffffffffffff1614611ab1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa890614deb565b60405180910390fd5b611abb6000613479565b565b611ac5613199565b73ffffffffffffffffffffffffffffffffffffffff16611ae3611dea565b73ffffffffffffffffffffffffffffffffffffffff1614611b39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3090614deb565b60405180910390fd5b83601c8190555082601e8190555081601d819055508060208190555050505050565b60606000806000611b6b8561197c565b905060008167ffffffffffffffff811115611b8957611b886154fa565b5b604051908082528060200260200182016040528015611bb75781602001602082028036833780820191505090505b509050611bc2613c69565b6000611bcc612c28565b90505b838614611c9757611bdf8161353f565b9150816040015115611bf057611c8c565b600073ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614611c3057816000015194505b8773ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415611c8b5780838780600101985081518110611c7e57611c7d6154cb565b5b6020026020010181815250505b5b806001019050611bcf565b508195505050505050919050565b611cad613199565b73ffffffffffffffffffffffffffffffffffffffff16611ccb611dea565b73ffffffffffffffffffffffffffffffffffffffff1614611d21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1890614deb565b60405180910390fd5b600082829050905060205481601f54611d3a919061514a565b1115611d7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7290614e4b565b60405180910390fd5b60005b81811015611dcb57611db8848483818110611d9c57611d9b6154cb565b5b9050602002016020810190611db19190613fb9565b600161308d565b8080611dc390615396565b915050611d7e565b5080601f6000828254611dde919061514a565b92505081905550505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600e5481565b611e22613199565b73ffffffffffffffffffffffffffffffffffffffff16611e40611dea565b73ffffffffffffffffffffffffffffffffffffffff1614611e96576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8d90614deb565b60405180910390fd5b836015819055508260168190555085601381905550846014819055508160178190555080601881905550505050505050565b60175481565b606060038054611edd90615333565b80601f0160208091040260200160405190810160405280929190818152602001828054611f0990615333565b8015611f565780601f10611f2b57610100808354040283529160200191611f56565b820191906000526020600020905b815481529060010190602001808311611f3957829003601f168201915b5050505050905090565b6060818310611f9b576040517f32c1995a00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080611fa661356a565b9050611fb0612c28565b851015611fc257611fbf612c28565b94505b80841115611fce578093505b6000611fd98761197c565b905084861015611ffc576000868603905081811015611ff6578091505b50612001565b600090505b60008167ffffffffffffffff81111561201d5761201c6154fa565b5b60405190808252806020026020018201604052801561204b5781602001602082028036833780820191505090505b5090506000821415612063578094505050505061216d565b600061206e88612502565b90506000816040015161208357816000015190505b60008990505b8881141580156120995750848714155b1561215f576120a78161353f565b92508260400151156120b857612154565b600073ffffffffffffffffffffffffffffffffffffffff16836000015173ffffffffffffffffffffffffffffffffffffffff16146120f857826000015191505b8a73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156121535780848880600101995081518110612146576121456154cb565b5b6020026020010181815250505b5b806001019050612089565b508583528296505050505050505b9392505050565b601e5481565b612182612c20565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156121e7576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006121f4612c20565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166122a1612c20565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516122e69190614c73565b60405180910390a35050565b60195481565b612300613199565b73ffffffffffffffffffffffffffffffffffffffff1661231e611dea565b73ffffffffffffffffffffffffffffffffffffffff1614612374576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236b90614deb565b60405180910390fd5b60205481601f54612385919061514a565b11156123c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123bd90614e4b565b60405180910390fd5b6123d0828261308d565b80601f60008282546123e2919061514a565b925050819055505050565b60105481565b6123fb613199565b73ffffffffffffffffffffffffffffffffffffffff16612419611dea565b73ffffffffffffffffffffffffffffffffffffffff161461246f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246690614deb565b60405180910390fd5b826010819055508160118190555080601281905550505050565b612494848484612c2d565b60008373ffffffffffffffffffffffffffffffffffffffff163b146124f6576124bf84848484613573565b6124f5576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b601c5481565b61250a613c69565b612512613c69565b61251a612c28565b83108061252e575061252a61356a565b8310155b1561253c5780915050612567565b6125458361353f565b905080604001511561255a5780915050612567565b612563836136d3565b9150505b919050565b60135481565b606061257d82612af3565b6125bc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125b390614e2b565b60405180910390fd5b600080600b80546125cc90615333565b90501161266357600d80546125e090615333565b80601f016020809104026020016040519081016040528092919081815260200182805461260c90615333565b80156126595780601f1061262e57610100808354040283529160200191612659565b820191906000526020600020905b81548152906001019060200180831161263c57829003601f168201915b505050505061268f565b600b61266e846136f3565b60405160200161267f929190614b99565b6040516020818303038152906040525b905080915050919050565b60018211156126de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126d590614d2b565b60405180910390fd5b6000336040516020016126f19190614b52565b60405160208183030381529060405280519060200120905061271682600f5483612fd7565b612755576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161274c90614d6b565b60405180910390fd5b8260115461276391906151d1565b34146127a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161279b90614d8b565b60405180910390fd5b4260175411156127e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127e090614eab565b60405180910390fd5b426018541161282d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161282490614dcb565b60405180910390fd5b601d5483601a5461283e919061514a565b111561287f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161287690614e8b565b60405180910390fd5b612889338461308d565b82601a600082825461289b919061514a565b92505081905550505050565b600a5481565b601f5481565b6128bb613199565b73ffffffffffffffffffffffffffffffffffffffff166128d9611dea565b73ffffffffffffffffffffffffffffffffffffffff161461292f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161292690614deb565b60405180910390fd5b80600d9080519060200190612945929190613be3565b5050565b60215481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60185481565b60145481565b6129f7613199565b73ffffffffffffffffffffffffffffffffffffffff16612a15611dea565b73ffffffffffffffffffffffffffffffffffffffff1614612a6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a6290614deb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612adb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ad290614d0b565b60405180910390fd5b612ae481613479565b50565b601a5481565b60115481565b600081612afe612c28565b11158015612b0d575060005482105b8015612b4b575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60008082905080612b61612c28565b11612be957600054811015612be85760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415612be6575b6000811415612bdc576004600083600190039350838152602001908152602001600020549050612bb1565b8092505050612c1b565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b600033905090565b600090565b6000612c3882612b52565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614612c9f576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16612cc0612c20565b73ffffffffffffffffffffffffffffffffffffffff161480612cef5750612cee85612ce9612c20565b61294f565b5b80612d345750612cfd612c20565b73ffffffffffffffffffffffffffffffffffffffff16612d1c84610f13565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612d6d576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612dd4576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612de18585856001613854565b6006600084815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008154600101919050819055507c020000000000000000000000000000000000000000000000000000000060a042901b612ede8661385a565b1717600460008581526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000083161415612f68576000600184019050600060046000838152602001908152602001600020541415612f66576000548114612f65578260046000838152602001908152602001600020819055505b5b505b828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612fd08585856001613864565b5050505050565b60008082905060005b855181101561307f576000868281518110612ffe57612ffd6154cb565b5b6020026020010151905080831161303f578281604051602001613022929190614b6d565b60405160208183030381529060405280519060200120925061306b565b8083604051602001613052929190614b6d565b6040516020818303038152906040528051906020012092505b50808061307790615396565b915050612fe0565b508381149150509392505050565b600260095414156130d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130ca90614f2b565b60405180910390fd5b6002600981905550600c5481111580156130ed5750600081115b61312c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161312390614eeb565b60405180910390fd5b600a5481613138611142565b613142919061514a565b1115613183576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161317a90614dab565b60405180910390fd5b61318d828261386a565b60016009819055505050565b600033905090565b60006131ac83612b52565b9050600081905082156132895760008173ffffffffffffffffffffffffffffffffffffffff166131da612c20565b73ffffffffffffffffffffffffffffffffffffffff161480613209575061320882613203612c20565b61294f565b5b8061324e5750613217612c20565b73ffffffffffffffffffffffffffffffffffffffff1661323686610f13565b73ffffffffffffffffffffffffffffffffffffffff16145b905080613287576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505b613297816000866001613854565b6006600085815260200190815260200160002060006101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055600160806001901b03600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055507c02000000000000000000000000000000000000000000000000000000007c010000000000000000000000000000000000000000000000000000000060a042901b61336c8461385a565b171717600460008681526020019081526020016000208190555060007c0200000000000000000000000000000000000000000000000000000000831614156133f75760006001850190506000600460008381526020019081526020016000205414156133f55760005481146133f4578260046000838152602001908152602001600020819055505b5b505b83600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613461816000866001613864565b60016000815480929190600101919050555050505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b613547613c69565b6135636004600084815260200190815260200160002054613888565b9050919050565b60008054905090565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613599612c20565b8786866040518563ffffffff1660e01b81526004016135bb9493929190614be3565b602060405180830381600087803b1580156135d557600080fd5b505af192505050801561360657506040513d601f19601f8201168201806040525081019061360391906142d2565b60015b613680573d8060008114613636576040519150601f19603f3d011682016040523d82523d6000602084013e61363b565b606091505b50600081511415613678576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6136db613c69565b6136ec6136e783612b52565b613888565b9050919050565b6060600082141561373b576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061384f565b600082905060005b6000821461376d57808061375690615396565b915050600a8261376691906151a0565b9150613743565b60008167ffffffffffffffff811115613789576137886154fa565b5b6040519080825280601f01601f1916602001820160405280156137bb5781602001600182028036833780820191505090505b5090505b60008514613848576001826137d4919061522b565b9150600a856137e3919061540d565b60306137ef919061514a565b60f81b818381518110613805576138046154cb565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561384191906151a0565b94506137bf565b8093505050505b919050565b50505050565b6000819050919050565b50505050565b613884828260405180602001604052806000815250613924565b5050565b613890613c69565b81816000019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505060a082901c816020019067ffffffffffffffff16908167ffffffffffffffff168152505060007c010000000000000000000000000000000000000000000000000000000083161415816040019015159081151581525050919050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415613991576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008314156139cc576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6139d96000858386613854565b600160406001901b178302600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254019250508190555060e1613a3e60018514613bd9565b901b60a042901b613a4e8661385a565b1717600460008381526020019081526020016000208190555060008190506000848201905060008673ffffffffffffffffffffffffffffffffffffffff163b14613b52575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613b026000878480600101955087613573565b613b38576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808210613a93578260005414613b4d57600080fd5b613bbd565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210613b53575b816000819055505050613bd36000858386613864565b50505050565b6000819050919050565b828054613bef90615333565b90600052602060002090601f016020900481019282613c115760008555613c58565b82601f10613c2a57805160ff1916838001178555613c58565b82800160010185558215613c58579182015b82811115613c57578251825591602001919060010190613c3c565b5b509050613c659190613cac565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115613cc5576000816000905550600101613cad565b5090565b6000613cdc613cd784614fc6565b614fa1565b90508083825260208201905082856020860282011115613cff57613cfe615533565b5b60005b85811015613d2f5781613d158882613f09565b845260208401935060208301925050600181019050613d02565b5050509392505050565b6000613d4c613d4784614ff2565b614fa1565b90508083825260208201905082856020860282011115613d6f57613d6e615533565b5b60005b85811015613d9f5781613d858882613fa4565b845260208401935060208301925050600181019050613d72565b5050509392505050565b6000613dbc613db78461501e565b614fa1565b905082815260208101848484011115613dd857613dd7615538565b5b613de38482856152f1565b509392505050565b6000613dfe613df98461504f565b614fa1565b905082815260208101848484011115613e1a57613e19615538565b5b613e258482856152f1565b509392505050565b600081359050613e3c816159a9565b92915050565b60008083601f840112613e5857613e5761552e565b5b8235905067ffffffffffffffff811115613e7557613e74615529565b5b602083019150836020820283011115613e9157613e90615533565b5b9250929050565b600082601f830112613ead57613eac61552e565b5b8135613ebd848260208601613cc9565b91505092915050565b600082601f830112613edb57613eda61552e565b5b8135613eeb848260208601613d39565b91505092915050565b600081359050613f03816159c0565b92915050565b600081359050613f18816159d7565b92915050565b600081359050613f2d816159ee565b92915050565b600081519050613f42816159ee565b92915050565b600082601f830112613f5d57613f5c61552e565b5b8135613f6d848260208601613da9565b91505092915050565b600082601f830112613f8b57613f8a61552e565b5b8135613f9b848260208601613deb565b91505092915050565b600081359050613fb381615a05565b92915050565b600060208284031215613fcf57613fce615542565b5b6000613fdd84828501613e2d565b91505092915050565b60008060408385031215613ffd57613ffc615542565b5b600061400b85828601613e2d565b925050602061401c85828601613e2d565b9150509250929050565b60008060006060848603121561403f5761403e615542565b5b600061404d86828701613e2d565b935050602061405e86828701613e2d565b925050604061406f86828701613fa4565b9150509250925092565b6000806000806080858703121561409357614092615542565b5b60006140a187828801613e2d565b94505060206140b287828801613e2d565b93505060406140c387828801613fa4565b925050606085013567ffffffffffffffff8111156140e4576140e361553d565b5b6140f087828801613f48565b91505092959194509250565b6000806040838503121561411357614112615542565b5b600061412185828601613e2d565b925050602061413285828601613ef4565b9150509250929050565b6000806040838503121561415357614152615542565b5b600061416185828601613e2d565b925050602061417285828601613fa4565b9150509250929050565b60008060006060848603121561419557614194615542565b5b60006141a386828701613e2d565b93505060206141b486828701613fa4565b92505060406141c586828701613fa4565b9150509250925092565b600080602083850312156141e6576141e5615542565b5b600083013567ffffffffffffffff8111156142045761420361553d565b5b61421085828601613e42565b92509250509250929050565b60006020828403121561423257614231615542565b5b600082013567ffffffffffffffff8111156142505761424f61553d565b5b61425c84828501613ec6565b91505092915050565b6000806040838503121561427c5761427b615542565b5b600061428a85828601613f09565b925050602061429b85828601613f09565b9150509250929050565b6000602082840312156142bb576142ba615542565b5b60006142c984828501613f1e565b91505092915050565b6000602082840312156142e8576142e7615542565b5b60006142f684828501613f33565b91505092915050565b60006020828403121561431557614314615542565b5b600082013567ffffffffffffffff8111156143335761433261553d565b5b61433f84828501613f76565b91505092915050565b60006020828403121561435e5761435d615542565b5b600061436c84828501613fa4565b91505092915050565b6000806040838503121561438c5761438b615542565b5b600061439a85828601613fa4565b925050602083013567ffffffffffffffff8111156143bb576143ba61553d565b5b6143c785828601613e98565b9150509250929050565b6000806000606084860312156143ea576143e9615542565b5b60006143f886828701613fa4565b935050602061440986828701613fa4565b925050604061441a86828701613fa4565b9150509250925092565b6000806000806080858703121561443e5761443d615542565b5b600061444c87828801613fa4565b945050602061445d87828801613fa4565b935050604061446e87828801613fa4565b925050606061447f87828801613fa4565b91505092959194509250565b60008060008060008060c087890312156144a8576144a7615542565b5b60006144b689828a01613fa4565b96505060206144c789828a01613fa4565b95505060406144d889828a01613fa4565b94505060606144e989828a01613fa4565b93505060806144fa89828a01613fa4565b92505060a061450b89828a01613fa4565b9150509295509295509295565b60006145248383614aa1565b60608301905092915050565b600061453c8383614b25565b60208301905092915050565b6145518161525f565b82525050565b6145608161525f565b82525050565b6145776145728261525f565b6153df565b82525050565b6000614588826150b5565b61459281856150fb565b935061459d83615080565b8060005b838110156145ce5781516145b58882614518565b97506145c0836150e1565b9250506001810190506145a1565b5085935050505092915050565b60006145e6826150c0565b6145f0818561510c565b93506145fb83615090565b8060005b8381101561462c5781516146138882614530565b975061461e836150ee565b9250506001810190506145ff565b5085935050505092915050565b61464281615271565b82525050565b61465181615271565b82525050565b6146608161527d565b82525050565b6146776146728261527d565b6153f1565b82525050565b6000614688826150cb565b614692818561511d565b93506146a2818560208601615300565b6146ab81615547565b840191505092915050565b60006146c1826150d6565b6146cb818561512e565b93506146db818560208601615300565b6146e481615547565b840191505092915050565b60006146fa826150d6565b614704818561513f565b9350614714818560208601615300565b80840191505092915050565b6000815461472d81615333565b614737818661513f565b94506001821660008114614752576001811461476357614796565b60ff19831686528186019350614796565b61476c856150a0565b60005b8381101561478e5781548189015260018201915060208101905061476f565b838801955050505b50505092915050565b60006147ac601a8361512e565b91506147b782615565565b602082019050919050565b60006147cf60108361512e565b91506147da8261558e565b602082019050919050565b60006147f260268361512e565b91506147fd826155b7565b604082019050919050565b600061481560138361512e565b915061482082615606565b602082019050919050565b600061483860148361512e565b91506148438261562f565b602082019050919050565b600061485b60138361512e565b915061486682615658565b602082019050919050565b600061487e60208361512e565b915061488982615681565b602082019050919050565b60006148a160188361512e565b91506148ac826156aa565b602082019050919050565b60006148c460178361512e565b91506148cf826156d3565b602082019050919050565b60006148e760058361513f565b91506148f2826156fc565b600582019050919050565b600061490a60208361512e565b915061491582615725565b602082019050919050565b600061492d601d8361512e565b91506149388261574e565b602082019050919050565b6000614950602f8361512e565b915061495b82615777565b604082019050919050565b600061497360258361512e565b915061497e826157c6565b604082019050919050565b6000614996601e8361512e565b91506149a182615815565b602082019050919050565b60006149b9601e8361512e565b91506149c48261583e565b602082019050919050565b60006149dc60218361512e565b91506149e782615867565b604082019050919050565b60006149ff60138361512e565b9150614a0a826158b6565b602082019050919050565b6000614a2260258361512e565b9150614a2d826158df565b604082019050919050565b6000614a4560198361512e565b9150614a508261592e565b602082019050919050565b6000614a68601f8361512e565b9150614a7382615957565b602082019050919050565b6000614a8b601b8361512e565b9150614a9682615980565b602082019050919050565b606082016000820151614ab76000850182614548565b506020820151614aca6020850182614b43565b506040820151614add6040850182614639565b50505050565b606082016000820151614af96000850182614548565b506020820151614b0c6020850182614b43565b506040820151614b1f6040850182614639565b50505050565b614b2e816152d3565b82525050565b614b3d816152d3565b82525050565b614b4c816152dd565b82525050565b6000614b5e8284614566565b60148201915081905092915050565b6000614b798285614666565b602082019150614b898284614666565b6020820191508190509392505050565b6000614ba58285614720565b9150614bb182846146ef565b9150614bbc826148da565b91508190509392505050565b6000602082019050614bdd6000830184614557565b92915050565b6000608082019050614bf86000830187614557565b614c056020830186614557565b614c126040830185614b34565b8181036060830152614c24818461467d565b905095945050505050565b60006020820190508181036000830152614c49818461457d565b905092915050565b60006020820190508181036000830152614c6b81846145db565b905092915050565b6000602082019050614c886000830184614648565b92915050565b6000602082019050614ca36000830184614657565b92915050565b60006020820190508181036000830152614cc381846146b6565b905092915050565b60006020820190508181036000830152614ce48161479f565b9050919050565b60006020820190508181036000830152614d04816147c2565b9050919050565b60006020820190508181036000830152614d24816147e5565b9050919050565b60006020820190508181036000830152614d4481614808565b9050919050565b60006020820190508181036000830152614d648161482b565b9050919050565b60006020820190508181036000830152614d848161484e565b9050919050565b60006020820190508181036000830152614da481614871565b9050919050565b60006020820190508181036000830152614dc481614894565b9050919050565b60006020820190508181036000830152614de4816148b7565b9050919050565b60006020820190508181036000830152614e04816148fd565b9050919050565b60006020820190508181036000830152614e2481614920565b9050919050565b60006020820190508181036000830152614e4481614943565b9050919050565b60006020820190508181036000830152614e6481614966565b9050919050565b60006020820190508181036000830152614e8481614989565b9050919050565b60006020820190508181036000830152614ea4816149ac565b9050919050565b60006020820190508181036000830152614ec4816149cf565b9050919050565b60006020820190508181036000830152614ee4816149f2565b9050919050565b60006020820190508181036000830152614f0481614a15565b9050919050565b60006020820190508181036000830152614f2481614a38565b9050919050565b60006020820190508181036000830152614f4481614a5b565b9050919050565b60006020820190508181036000830152614f6481614a7e565b9050919050565b6000606082019050614f806000830184614ae3565b92915050565b6000602082019050614f9b6000830184614b34565b92915050565b6000614fab614fbc565b9050614fb78282615365565b919050565b6000604051905090565b600067ffffffffffffffff821115614fe157614fe06154fa565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561500d5761500c6154fa565b5b602082029050602081019050919050565b600067ffffffffffffffff821115615039576150386154fa565b5b61504282615547565b9050602081019050919050565b600067ffffffffffffffff82111561506a576150696154fa565b5b61507382615547565b9050602081019050919050565b6000819050602082019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000615155826152d3565b9150615160836152d3565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156151955761519461543e565b5b828201905092915050565b60006151ab826152d3565b91506151b6836152d3565b9250826151c6576151c561546d565b5b828204905092915050565b60006151dc826152d3565b91506151e7836152d3565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156152205761521f61543e565b5b828202905092915050565b6000615236826152d3565b9150615241836152d3565b9250828210156152545761525361543e565b5b828203905092915050565b600061526a826152b3565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b82818337600083830152505050565b60005b8381101561531e578082015181840152602081019050615303565b8381111561532d576000848401525b50505050565b6000600282049050600182168061534b57607f821691505b6020821081141561535f5761535e61549c565b5b50919050565b61536e82615547565b810181811067ffffffffffffffff8211171561538d5761538c6154fa565b5b80604052505050565b60006153a1826152d3565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156153d4576153d361543e565b5b600182019050919050565b60006153ea826153fb565b9050919050565b6000819050919050565b600061540682615558565b9050919050565b6000615418826152d3565b9150615423836152d3565b9250826154335761543261546d565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4f674d696e7420686173206e6f74207374617274656420796574000000000000600082015250565b7f4f674d696e742068617320656e64656400000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4e756d206d757374206c74206f72206571203100000000000000000000000000600082015250565b7f5075626c69634d696e742068617320656e646564000000000000000000000000600082015250565b7f566572696669636174696f6e206661696c656400000000000000000000000000600082015250565b7f56616c7565206d7573742065712077686974656c69737450726963652a6e756d600082015250565b7f4e756d206d757374206c6f776572206d6178537570706c790000000000000000600082015250565b7f57686974656c6973744d696e742068617320656e646564000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f56616c7565206d757374206571207075626c696350726963652a6e756d000000600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f72657365727665644e756d206d757374206c6f776572206d617852657365727660008201527f65644e756d000000000000000000000000000000000000000000000000000000602082015250565b7f5075626c69634d696e7420686173206e6f742073746172746564207965740000600082015250565b7f4e756d206d757374206c6f776572206d617857686974656c6973744e756d0000600082015250565b7f57686974656c6973744d696e7420686173206e6f74207374617274656420796560008201527f7400000000000000000000000000000000000000000000000000000000000000602082015250565b7f4e756d206d757374206c74206f74206571203200000000000000000000000000600082015250565b7f4e756d206d7573742067726561746572203020616e64206c6f776572206d617860008201527f4261746368000000000000000000000000000000000000000000000000000000602082015250565b7f56616c7565206d757374206571206f6750726963652a6e756d00000000000000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f4e756d206d757374206c6f776572206d61785075626c69634e756d0000000000600082015250565b6159b28161525f565b81146159bd57600080fd5b50565b6159c981615271565b81146159d457600080fd5b50565b6159e08161527d565b81146159eb57600080fd5b50565b6159f781615287565b8114615a0257600080fd5b50565b615a0e816152d3565b8114615a1957600080fd5b5056fea26469706673582212208a85c98894b5b7c8f06248b0ffed62ade6d34e147240f3bf9707a5c925ddb76c64736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000e02ad0680ba4120f59d7f16d1f757f006fe5962cb8b95a6a203b77d7f27334efac01240802bc60ec14636fc9b2b133faeabd08ee48a053d4f5f94beb613f41e566000000000000000000000000000000000000000000000000000000000000003b68747470733a2f2f686f62676f626c696e2e6f73732d61702d736f757468656173742d312e616c6979756e63732e636f6d2f6d657461646174612f00000000000000000000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _baseURI (string): https://hobgoblin.oss-ap-southeast-1.aliyuncs.com/metadata/
Arg [1] : _defaultURI (string):
Arg [2] : _ogRoot (bytes32): 0x2ad0680ba4120f59d7f16d1f757f006fe5962cb8b95a6a203b77d7f27334efac
Arg [3] : _whitelistRoot (bytes32): 0x01240802bc60ec14636fc9b2b133faeabd08ee48a053d4f5f94beb613f41e566
-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 2ad0680ba4120f59d7f16d1f757f006fe5962cb8b95a6a203b77d7f27334efac
Arg [3] : 01240802bc60ec14636fc9b2b133faeabd08ee48a053d4f5f94beb613f41e566
Arg [4] : 000000000000000000000000000000000000000000000000000000000000003b
Arg [5] : 68747470733a2f2f686f62676f626c696e2e6f73732d61702d736f7574686561
Arg [6] : 73742d312e616c6979756e63732e636f6d2f6d657461646174612f0000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000000
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.