Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
2,718 PixelAzuki
Holders
288
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
3 PixelAzukiLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
PixelAzuki
Compiler Version
v0.8.0+commit.c7dfd78e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-01-20 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return _verifyCallResult(success, returndata, errorMessage); } function _verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) private pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } 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; } } 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); } } pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..). * * Assumes the number of issuable tokens (collection size) is capped and fits in a uint128. * * Does not support burning tokens to address(0). */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable { using Address for address; using Strings for uint256; struct TokenOwnership { address addr; uint64 startTimestamp; } struct AddressData { uint128 balance; uint128 numberMinted; } uint256 private currentIndex = 0; uint256 internal immutable collectionSize; uint256 internal immutable maxBatchSize; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details. mapping(uint256 => TokenOwnership) private _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev * `maxBatchSize` refers to how much a minter can mint at a time. * `collectionSize_` refers to how many tokens are in the collection. */ constructor( string memory name_, string memory symbol_, uint256 maxBatchSize_, uint256 collectionSize_ ) { require( collectionSize_ > 0, "ERC721A: collection must have a nonzero supply" ); require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero"); _name = name_; _symbol = symbol_; maxBatchSize = maxBatchSize_; collectionSize = collectionSize_; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view override returns (uint256) { return currentIndex; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view override returns (uint256) { require(index < totalSupply(), "ERC721A: global index out of bounds"); return index; } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. * This read function is O(collectionSize). If calling from a separate contract, be sure to test gas first. * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) { require(index < balanceOf(owner), "ERC721A: owner index out of bounds"); uint256 numMintedSoFar = totalSupply(); uint256 tokenIdsIdx = 0; address currOwnershipAddr = address(0); for (uint256 i = 0; i < numMintedSoFar; i++) { TokenOwnership memory ownership = _ownerships[i]; if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { if (tokenIdsIdx == index) { return i; } tokenIdsIdx++; } } revert("ERC721A: unable to get token of owner by index"); } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { require(owner != address(0), "ERC721A: balance query for the zero address"); return uint256(_addressData[owner].balance); } function _numberMinted(address owner) internal view returns (uint256) { require( owner != address(0), "ERC721A: number minted query for the zero address" ); return uint256(_addressData[owner].numberMinted); } function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { require(_exists(tokenId), "ERC721A: owner query for nonexistent token"); uint256 lowestTokenToCheck; if (tokenId >= maxBatchSize) { lowestTokenToCheck = tokenId - maxBatchSize + 1; } for (uint256 curr = tokenId; curr >= lowestTokenToCheck; curr--) { TokenOwnership memory ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } revert("ERC721A: unable to determine the owner of token"); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require( _exists(tokenId), "ERC721Metadata: URI query for nonexistent token" ); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); require(to != owner, "ERC721A: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721A: approve caller is not owner nor approved for all" ); _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { require(_exists(tokenId), "ERC721A: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public override { require(operator != _msgSender(), "ERC721A: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public override { _transfer(from, to, tokenId); require( _checkOnERC721Received(from, to, tokenId, _data), "ERC721A: transfer to non ERC721Receiver implementer" ); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return tokenId < currentIndex; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ""); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - there must be `quantity` tokens remaining unminted in the total collection. * - `to` cannot be the zero address. * - `quantity` cannot be larger than the max batch size. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { uint256 startTokenId = currentIndex; require(to != address(0), "ERC721A: mint to the zero address"); // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering. require(!_exists(startTokenId), "ERC721A: token already minted"); require(quantity <= maxBatchSize, "ERC721A: quantity to mint too high"); _beforeTokenTransfers(address(0), to, startTokenId, quantity); AddressData memory addressData = _addressData[to]; _addressData[to] = AddressData( addressData.balance + uint128(quantity), addressData.numberMinted + uint128(quantity) ); _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp)); uint256 updatedIndex = startTokenId; for (uint256 i = 0; i < quantity; i++) { emit Transfer(address(0), to, updatedIndex); require( _checkOnERC721Received(address(0), to, updatedIndex, _data), "ERC721A: transfer to non ERC721Receiver implementer" ); updatedIndex++; } currentIndex = updatedIndex; _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = ownershipOf(tokenId); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || getApproved(tokenId) == _msgSender() || isApprovedForAll(prevOwnership.addr, _msgSender())); require( isApprovedOrOwner, "ERC721A: transfer caller is not owner nor approved" ); require( prevOwnership.addr == from, "ERC721A: transfer from incorrect owner" ); require(to != address(0), "ERC721A: transfer to the zero address"); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); _addressData[from].balance -= 1; _addressData[to].balance += 1; _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp)); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { if (_exists(nextTokenId)) { _ownerships[nextTokenId] = TokenOwnership( prevOwnership.addr, prevOwnership.startTimestamp ); } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } uint256 public nextOwnerToExplicitlySet = 0; /** * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf(). */ function _setOwnersExplicit(uint256 quantity) internal { uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet; require(quantity > 0, "quantity must be nonzero"); uint256 endIndex = oldNextOwnerToSet + quantity - 1; if (endIndex > collectionSize - 1) { endIndex = collectionSize - 1; } // We know if the last one in the group exists, all in the group exist, due to serial ordering. require(_exists(endIndex), "not enough minted yet for this cleanup"); for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) { if (_ownerships[i].addr == address(0)) { TokenOwnership memory ownership = ownershipOf(i); _ownerships[i] = TokenOwnership( ownership.addr, ownership.startTimestamp ); } } nextOwnerToExplicitlySet = endIndex + 1; } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721A: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} } 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; } } 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); } } pragma solidity ^0.8.0; contract PixelAzuki is Ownable, ERC721A, ReentrancyGuard { uint256 public immutable maxPerAddressDuringMint; uint256 public immutable amountForDevs; uint256 public publicsalePrice = 10000000000000000; uint256 public MAX_FREETOKEN = 1000; bool public IsActive = true; constructor( uint256 maxBatchSize_, uint256 collectionSize_, uint256 amountForDevs_ ) ERC721A("Pixel Azuki", "PixelAzuki", maxBatchSize_, collectionSize_) { maxPerAddressDuringMint = maxBatchSize_; amountForDevs = amountForDevs_; } modifier callerIsUser() { require(tx.origin == msg.sender, "The caller is another contract"); _; } function setpublicsalePrice(uint _price) external onlyOwner { publicsalePrice = _price; } function setMaxFreeMint(uint _MAX_FREETOKEN) external onlyOwner { MAX_FREETOKEN = _MAX_FREETOKEN; } function Paused() public onlyOwner { IsActive = !IsActive; } function freeMint(uint256 quantity) external payable callerIsUser { require(IsActive, "Sale must be active to mint"); require(quantity > 0 && quantity <= maxPerAddressDuringMint, "Can only mint max token at a time"); require(totalSupply() + quantity <= MAX_FREETOKEN, "reached max Free Mint"); _safeMint(msg.sender, quantity); } function publicMint(uint256 quantity) external payable callerIsUser { require(IsActive, "Sale must be active to mint"); require(quantity > 0 && quantity <= maxPerAddressDuringMint, "Can only mint max token at a time"); require(msg.value >= publicsalePrice*quantity, "Need to send more ETH."); require(totalSupply() + quantity <= collectionSize, "reached max supply"); _safeMint(msg.sender, quantity); } // For marketing etc. function devMint(uint256 quantity) external onlyOwner { require( totalSupply() + quantity <= amountForDevs, "too many already minted before dev mint" ); require( quantity % maxBatchSize == 0, "can only mint a multiple of the maxBatchSize" ); uint256 numChunks = quantity / maxBatchSize; for (uint256 i = 0; i < numChunks; i++) { _safeMint(msg.sender, maxBatchSize); } } // // metadata URI string private _baseTokenURI; function _baseURI() internal view virtual override returns (string memory) { return _baseTokenURI; } function setBaseURI(string calldata baseURI) external onlyOwner { _baseTokenURI = baseURI; } function withdrawMoney() external onlyOwner nonReentrant { (bool success, ) = msg.sender.call{value: address(this).balance}(""); require(success, "Transfer failed."); } function setOwnersExplicit(uint256 quantity) external onlyOwner nonReentrant { _setOwnersExplicit(quantity); } function numberMinted(address owner) public view returns (uint256) { return _numberMinted(owner); } function getOwnershipData(uint256 tokenId) external view returns (TokenOwnership memory) { return ownershipOf(tokenId); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"uint256","name":"maxBatchSize_","type":"uint256"},{"internalType":"uint256","name":"collectionSize_","type":"uint256"},{"internalType":"uint256","name":"amountForDevs_","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"IsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_FREETOKEN","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"Paused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"amountForDevs","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":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"freeMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"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":"maxPerAddressDuringMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","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":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"publicsalePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"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":"uint256","name":"_MAX_FREETOKEN","type":"uint256"}],"name":"setMaxFreeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"setOwnersExplicit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setpublicsalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawMoney","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
61010060405260006001818155600891909155662386f26fc10000600a556103e8600b55600c805460ff191690911790553480156200003d57600080fd5b50604051620030a7380380620030a7833981016040819052620000609162000258565b6040518060400160405280600b81526020016a506978656c20417a756b6960a81b8152506040518060400160405280600a815260200169506978656c417a756b6960b01b8152508484620000c3620000bd6200015e60201b60201c565b62000162565b60008111620000ef5760405162461bcd60e51b8152600401620000e690620002cd565b60405180910390fd5b60008211620001125760405162461bcd60e51b8152600401620000e69062000286565b835162000127906002906020870190620001b2565b5082516200013d906003906020860190620001b2565b5060a0919091526080525050600160095560c0929092525060e05262000358565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b828054620001c0906200031b565b90600052602060002090601f016020900481019282620001e457600085556200022f565b82601f10620001ff57805160ff19168380011785556200022f565b828001600101855582156200022f579182015b828111156200022f57825182559160200191906001019062000212565b506200023d92915062000241565b5090565b5b808211156200023d576000815560010162000242565b6000806000606084860312156200026d578283fd5b8351925060208401519150604084015190509250925092565b60208082526027908201527f455243373231413a206d61782062617463682073697a65206d757374206265206040820152666e6f6e7a65726f60c81b606082015260800190565b6020808252602e908201527f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060408201526d6e6f6e7a65726f20737570706c7960901b606082015260800190565b6002810460018216806200033057607f821691505b602082108114156200035257634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a05160c05160e051612ccf620003d860003960008181610af901526112520152600081816108e801528181610e170152610e92015260008181610b4e01528181610b9701528181610bcf015281816117e20152818161180c0152611bff01526000818161095601528181611649015261167b0152612ccf6000f3fe60806040526004361061020f5760003560e01c8063742a4c9b11610118578063ac446002116100a0578063d7224ba01161006f578063d7224ba0146105ad578063dc33e681146105c2578063e985e9c5146105e2578063f2fde38b14610602578063fbe1aa51146106225761020f565b8063ac44600214610543578063b88d4fde14610558578063c43fe78d14610578578063c87b56dd1461058d5761020f565b80638da5cb5b116100e75780638da5cb5b146104b75780639231ab2a146104cc57806395d89b41146104f95780639e87fac81461050e578063a22cb465146105235761020f565b8063742a4c9b1461045a5780637c928fe91461047a5780637eff4b671461048d5780638bc35c2f146104a25761020f565b8063304dd7541161019b57806355f804b31161016a57806355f804b3146103c55780636352211e146103e5578063670fc7751461040557806370a0823114610425578063715018a6146104455761020f565b8063304dd75414610350578063375a069a1461036557806342842e0e146103855780634f6ccce7146103a55761020f565b806318160ddd116101e257806318160ddd146102bb57806323b872dd146102dd5780632d20fb60146102fd5780632db115441461031d5780632f745c59146103305761020f565b806301ffc9a71461021457806306fdde031461024a578063081812fc1461026c578063095ea7b314610299575b600080fd5b34801561022057600080fd5b5061023461022f3660046120a1565b610637565b604051610241919061220d565b60405180910390f35b34801561025657600080fd5b5061025f61069a565b6040516102419190612218565b34801561027857600080fd5b5061028c610287366004612146565b61072c565b60405161024191906121bc565b3480156102a557600080fd5b506102b96102b4366004612078565b610778565b005b3480156102c757600080fd5b506102d0610811565b6040516102419190612adf565b3480156102e957600080fd5b506102b96102f8366004611f37565b610817565b34801561030957600080fd5b506102b9610318366004612146565b610822565b6102b961032b366004612146565b61089a565b34801561033c57600080fd5b506102d061034b366004612078565b6109b3565b34801561035c57600080fd5b50610234610aaf565b34801561037157600080fd5b506102b9610380366004612146565b610ab8565b34801561039157600080fd5b506102b96103a0366004611f37565b610c05565b3480156103b157600080fd5b506102d06103c0366004612146565b610c20565b3480156103d157600080fd5b506102b96103e03660046120d9565b610c4c565b3480156103f157600080fd5b5061028c610400366004612146565b610c97565b34801561041157600080fd5b506102b9610420366004612146565b610ca9565b34801561043157600080fd5b506102d0610440366004611eeb565b610ced565b34801561045157600080fd5b506102b9610d3a565b34801561046657600080fd5b506102b9610475366004612146565b610d85565b6102b9610488366004612146565b610dc9565b34801561049957600080fd5b506102d0610e8a565b3480156104ae57600080fd5b506102d0610e90565b3480156104c357600080fd5b5061028c610eb4565b3480156104d857600080fd5b506104ec6104e7366004612146565b610ec3565b6040516102419190612ab5565b34801561050557600080fd5b5061025f610ed4565b34801561051a57600080fd5b506102b9610ee3565b34801561052f57600080fd5b506102b961053e36600461203e565b610f36565b34801561054f57600080fd5b506102b9611004565b34801561056457600080fd5b506102b9610573366004611f72565b6110e1565b34801561058457600080fd5b506102d061111a565b34801561059957600080fd5b5061025f6105a8366004612146565b611120565b3480156105b957600080fd5b506102d06111a3565b3480156105ce57600080fd5b506102d06105dd366004611eeb565b6111a9565b3480156105ee57600080fd5b506102346105fd366004611f05565b6111b4565b34801561060e57600080fd5b506102b961061d366004611eeb565b6111e2565b34801561062e57600080fd5b506102d0611250565b60006001600160e01b031982166380ac58cd60e01b148061066857506001600160e01b03198216635b5e139f60e01b145b8061068357506001600160e01b0319821663780e9d6360e01b145b80610692575061069282611274565b90505b919050565b6060600280546106a990612bd7565b80601f01602080910402602001604051908101604052809291908181526020018280546106d590612bd7565b80156107225780601f106106f757610100808354040283529160200191610722565b820191906000526020600020905b81548152906001019060200180831161070557829003601f168201915b5050505050905090565b60006107378261128d565b61075c5760405162461bcd60e51b815260040161075390612a26565b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061078382610c97565b9050806001600160a01b0316836001600160a01b031614156107b75760405162461bcd60e51b81526004016107539061275e565b806001600160a01b03166107c9611294565b6001600160a01b031614806107e557506107e5816105fd611294565b6108015760405162461bcd60e51b8152600401610753906124d1565b61080c838383611298565b505050565b60015490565b61080c8383836112f4565b61082a611294565b6001600160a01b031661083b610eb4565b6001600160a01b0316146108615760405162461bcd60e51b815260040161075390612622565b600260095414156108845760405162461bcd60e51b8152600401610753906129a0565b600260095561089281611608565b506001600955565b3233146108b95760405162461bcd60e51b81526004016107539061249a565b600c5460ff166108db5760405162461bcd60e51b815260040161075390612463565b60008111801561090b57507f00000000000000000000000000000000000000000000000000000000000000008111155b6109275760405162461bcd60e51b815260040161075390612349565b80600a546109359190612b36565b3410156109545760405162461bcd60e51b81526004016107539061281d565b7f00000000000000000000000000000000000000000000000000000000000000008161097e610811565b6109889190612b0a565b11156109a65760405162461bcd60e51b8152600401610753906125b0565b6109b03382611793565b50565b60006109be83610ced565b82106109dc5760405162461bcd60e51b81526004016107539061222b565b60006109e6610811565b905060008060005b83811015610a90576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610a4157805192505b876001600160a01b0316836001600160a01b03161415610a7d5786841415610a6f57509350610aa992505050565b83610a7981612c12565b9450505b5080610a8881612c12565b9150506109ee565b5060405162461bcd60e51b81526004016107539061290c565b92915050565b600c5460ff1681565b610ac0611294565b6001600160a01b0316610ad1610eb4565b6001600160a01b031614610af75760405162461bcd60e51b815260040161075390612622565b7f000000000000000000000000000000000000000000000000000000000000000081610b21610811565b610b2b9190612b0a565b1115610b495760405162461bcd60e51b8152600401610753906128c5565b610b737f000000000000000000000000000000000000000000000000000000000000000082612c2d565b15610b905760405162461bcd60e51b8152600401610753906122fd565b6000610bbc7f000000000000000000000000000000000000000000000000000000000000000083612b22565b905060005b8181101561080c57610bf3337f0000000000000000000000000000000000000000000000000000000000000000611793565b80610bfd81612c12565b915050610bc1565b61080c838383604051806020016040528060008152506110e1565b6000610c2a610811565b8210610c485760405162461bcd60e51b81526004016107539061238a565b5090565b610c54611294565b6001600160a01b0316610c65610eb4565b6001600160a01b031614610c8b5760405162461bcd60e51b815260040161075390612622565b61080c600d8383611e28565b6000610ca2826117b1565b5192915050565b610cb1611294565b6001600160a01b0316610cc2610eb4565b6001600160a01b031614610ce85760405162461bcd60e51b815260040161075390612622565b600a55565b60006001600160a01b038216610d155760405162461bcd60e51b815260040161075390612565565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b610d42611294565b6001600160a01b0316610d53610eb4565b6001600160a01b031614610d795760405162461bcd60e51b815260040161075390612622565b610d8360006118c4565b565b610d8d611294565b6001600160a01b0316610d9e610eb4565b6001600160a01b031614610dc45760405162461bcd60e51b815260040161075390612622565b600b55565b323314610de85760405162461bcd60e51b81526004016107539061249a565b600c5460ff16610e0a5760405162461bcd60e51b815260040161075390612463565b600081118015610e3a57507f00000000000000000000000000000000000000000000000000000000000000008111155b610e565760405162461bcd60e51b815260040161075390612349565b600b5481610e62610811565b610e6c9190612b0a565b11156109a65760405162461bcd60e51b81526004016107539061272f565b600a5481565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000546001600160a01b031690565b610ecb611ea8565b610692826117b1565b6060600380546106a990612bd7565b610eeb611294565b6001600160a01b0316610efc610eb4565b6001600160a01b031614610f225760405162461bcd60e51b815260040161075390612622565b600c805460ff19811660ff90911615179055565b610f3e611294565b6001600160a01b0316826001600160a01b03161415610f6f5760405162461bcd60e51b8152600401610753906126a6565b8060076000610f7c611294565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610fc0611294565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610ff8919061220d565b60405180910390a35050565b61100c611294565b6001600160a01b031661101d610eb4565b6001600160a01b0316146110435760405162461bcd60e51b815260040161075390612622565b600260095414156110665760405162461bcd60e51b8152600401610753906129a0565b60026009556040516000903390479061107e906121b9565b60006040518083038185875af1925050503d80600081146110bb576040519150601f19603f3d011682016040523d82523d6000602084013e6110c0565b606091505b50509050806108925760405162461bcd60e51b8152600401610753906127a0565b6110ec8484846112f4565b6110f884848484611914565b6111145760405162461bcd60e51b8152600401610753906127ca565b50505050565b600b5481565b606061112b8261128d565b6111475760405162461bcd60e51b815260040161075390612657565b6000611151611a30565b90506000815111611171576040518060200160405280600081525061119c565b8061117b84611a3f565b60405160200161118c92919061218a565b6040516020818303038152906040525b9392505050565b60085481565b600061069282611b5a565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6111ea611294565b6001600160a01b03166111fb610eb4565b6001600160a01b0316146112215760405162461bcd60e51b815260040161075390612622565b6001600160a01b0381166112475760405162461bcd60e51b81526004016107539061226d565b6109b0816118c4565b7f000000000000000000000000000000000000000000000000000000000000000081565b6001600160e01b031981166301ffc9a760e01b14919050565b6001541190565b3390565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006112ff826117b1565b9050600081600001516001600160a01b0316611319611294565b6001600160a01b0316148061134e5750611331611294565b6001600160a01b03166113438461072c565b6001600160a01b0316145b8061136257508151611362906105fd611294565b9050806113815760405162461bcd60e51b8152600401610753906126dd565b846001600160a01b031682600001516001600160a01b0316146113b65760405162461bcd60e51b8152600401610753906125dc565b6001600160a01b0384166113dc5760405162461bcd60e51b8152600401610753906123cd565b6113e98585856001611114565b6113f96000848460000151611298565b6001600160a01b038516600090815260056020526040812080546001929061142b9084906001600160801b0316612b55565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b0386166000908152600560205260408120805460019450909261147791859116612ae8565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526004909152948520935184549151909216600160a01b0267ffffffffffffffff60a01b19929093166001600160a01b0319909116171617905561150d846001612b0a565b6000818152600460205260409020549091506001600160a01b03166115b2576115358161128d565b156115b25760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff90811682850190815260008781526004909352949091209251835494516001600160a01b031990951692169190911767ffffffffffffffff60a01b1916600160a01b93909116929092029190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46116008686866001611114565b505050505050565b600854816116285760405162461bcd60e51b81526004016107539061252e565b600060016116368484612b0a565b6116409190612b7d565b905061166d60017f0000000000000000000000000000000000000000000000000000000000000000612b7d565b8111156116a25761169f60017f0000000000000000000000000000000000000000000000000000000000000000612b7d565b90505b6116ab8161128d565b6116c75760405162461bcd60e51b81526004016107539061295a565b815b81811161177f576000818152600460205260409020546001600160a01b031661176d5760006116f7826117b1565b60408051808201825282516001600160a01b03908116825260209384015167ffffffffffffffff90811685840190815260008881526004909652939094209151825493516001600160a01b031990941691161767ffffffffffffffff60a01b1916600160a01b9290931691909102919091179055505b8061177781612c12565b9150506116c9565b5061178b816001612b0a565b600855505050565b6117ad828260405180602001604052806000815250611bae565b5050565b6117b9611ea8565b6117c28261128d565b6117de5760405162461bcd60e51b8152600401610753906122b3565b60007f0000000000000000000000000000000000000000000000000000000000000000831061183f576118317f000000000000000000000000000000000000000000000000000000000000000084612b7d565b61183c906001612b0a565b90505b825b8181106118ab576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611898579250610695915050565b50806118a381612bc0565b915050611841565b5060405162461bcd60e51b8152600401610753906129d7565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000611928846001600160a01b0316611e22565b15611a2457836001600160a01b031663150b7a02611944611294565b8786866040518563ffffffff1660e01b815260040161196694939291906121d0565b602060405180830381600087803b15801561198057600080fd5b505af19250505080156119b0575060408051601f3d908101601f191682019092526119ad918101906120bd565b60015b611a0a573d8080156119de576040519150601f19603f3d011682016040523d82523d6000602084013e6119e3565b606091505b508051611a025760405162461bcd60e51b8152600401610753906127ca565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611a28565b5060015b949350505050565b6060600d80546106a990612bd7565b606081611a6457506040805180820190915260018152600360fc1b6020820152610695565b8160005b8115611a8e5780611a7881612c12565b9150611a879050600a83612b22565b9150611a68565b60008167ffffffffffffffff811115611ab757634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611ae1576020820181803683370190505b5090505b8415611a2857611af6600183612b7d565b9150611b03600a86612c2d565b611b0e906030612b0a565b60f81b818381518110611b3157634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611b53600a86612b22565b9450611ae5565b60006001600160a01b038216611b825760405162461bcd60e51b815260040161075390612412565b506001600160a01b0316600090815260056020526040902054600160801b90046001600160801b031690565b6001546001600160a01b038416611bd75760405162461bcd60e51b815260040161075390612884565b611be08161128d565b15611bfd5760405162461bcd60e51b81526004016107539061284d565b7f0000000000000000000000000000000000000000000000000000000000000000831115611c3d5760405162461bcd60e51b815260040161075390612a73565b611c4a6000858386611114565b6001600160a01b0384166000908152600560209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190611ca6908790612ae8565b6001600160801b03168152602001858360200151611cc49190612ae8565b6001600160801b039081169091526001600160a01b03808816600081815260056020908152604080832087518154988401518816600160801b029088166fffffffffffffffffffffffffffffffff1990991698909817909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526004909552948120915182549451909516600160a01b0267ffffffffffffffff60a01b19959093166001600160a01b031990941693909317939093161790915582905b85811015611e0f5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611dd36000888488611914565b611def5760405162461bcd60e51b8152600401610753906127ca565b81611df981612c12565b9250508080611e0790612c12565b915050611d86565b5060018190556116006000878588611114565b3b151590565b828054611e3490612bd7565b90600052602060002090601f016020900481019282611e565760008555611e9c565b82601f10611e6f5782800160ff19823516178555611e9c565b82800160010185558215611e9c579182015b82811115611e9c578235825591602001919060010190611e81565b50610c48929150611ebf565b604080518082019091526000808252602082015290565b5b80821115610c485760008155600101611ec0565b80356001600160a01b038116811461069557600080fd5b600060208284031215611efc578081fd5b61119c82611ed4565b60008060408385031215611f17578081fd5b611f2083611ed4565b9150611f2e60208401611ed4565b90509250929050565b600080600060608486031215611f4b578081fd5b611f5484611ed4565b9250611f6260208501611ed4565b9150604084013590509250925092565b60008060008060808587031215611f87578081fd5b611f9085611ed4565b93506020611f9f818701611ed4565b935060408601359250606086013567ffffffffffffffff80821115611fc2578384fd5b818801915088601f830112611fd5578384fd5b813581811115611fe757611fe7612c6d565b604051601f8201601f191681018501838111828210171561200a5761200a612c6d565b60405281815283820185018b1015612020578586fd5b81858501868301379081019093019390935250939692955090935050565b60008060408385031215612050578182fd5b61205983611ed4565b91506020830135801515811461206d578182fd5b809150509250929050565b6000806040838503121561208a578182fd5b61209383611ed4565b946020939093013593505050565b6000602082840312156120b2578081fd5b813561119c81612c83565b6000602082840312156120ce578081fd5b815161119c81612c83565b600080602083850312156120eb578182fd5b823567ffffffffffffffff80821115612102578384fd5b818501915085601f830112612115578384fd5b813581811115612123578485fd5b866020828501011115612134578485fd5b60209290920196919550909350505050565b600060208284031215612157578081fd5b5035919050565b60008151808452612176816020860160208601612b94565b601f01601f19169290920160200192915050565b6000835161219c818460208801612b94565b8351908301906121b0818360208801612b94565b01949350505050565b90565b6001600160a01b0391909116815260200190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906122039083018461215e565b9695505050505050565b901515815260200190565b60006020825261119c602083018461215e565b60208082526022908201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252602a908201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736040820152693a32b73a103a37b5b2b760b11b606082015260800190565b6020808252602c908201527f63616e206f6e6c79206d696e742061206d756c7469706c65206f66207468652060408201526b6d6178426174636853697a6560a01b606082015260800190565b60208082526021908201527f43616e206f6e6c79206d696e74206d617820746f6b656e20617420612074696d6040820152606560f81b606082015260800190565b60208082526023908201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756040820152626e647360e81b606082015260800190565b60208082526025908201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526031908201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260408201527020746865207a65726f206164647265737360781b606082015260800190565b6020808252601b908201527f53616c65206d7573742062652061637469766520746f206d696e740000000000604082015260600190565b6020808252601e908201527f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000604082015260600190565b60208082526039908201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60408201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606082015260800190565b60208082526018908201527f7175616e74697479206d757374206265206e6f6e7a65726f0000000000000000604082015260600190565b6020808252602b908201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60408201526a65726f206164647265737360a81b606082015260800190565b60208082526012908201527172656163686564206d617820737570706c7960701b604082015260600190565b60208082526026908201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746040820152651037bbb732b960d11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b6020808252601a908201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604082015260600190565b60208082526032908201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206040820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606082015260800190565b6020808252601590820152741c995858da1959081b585e08119c995948135a5b9d605a1b604082015260600190565b60208082526022908201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60408201526132b960f11b606082015260800190565b60208082526010908201526f2a3930b739b332b9103330b4b632b21760811b604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b6020808252601690820152752732b2b2103a379039b2b7321036b7b9329022aa241760511b604082015260600190565b6020808252601d908201527f455243373231413a20746f6b656e20616c7265616479206d696e746564000000604082015260600190565b60208082526021908201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526027908201527f746f6f206d616e7920616c7265616479206d696e746564206265666f72652064604082015266195d881b5a5b9d60ca1b606082015260800190565b6020808252602e908201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060408201526d0deeedccae440c4f240d2dcc8caf60931b606082015260800190565b60208082526026908201527f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360408201526506c65616e75760d41b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b6020808252602f908201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560408201526e1037bbb732b91037b3103a37b5b2b760891b606082015260800190565b6020808252602d908201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560408201526c3c34b9ba32b73a103a37b5b2b760991b606082015260800190565b60208082526022908201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696040820152610ced60f31b606082015260800190565b81516001600160a01b0316815260209182015167ffffffffffffffff169181019190915260400190565b90815260200190565b60006001600160801b038083168185168083038211156121b0576121b0612c41565b60008219821115612b1d57612b1d612c41565b500190565b600082612b3157612b31612c57565b500490565b6000816000190483118215151615612b5057612b50612c41565b500290565b60006001600160801b0383811690831681811015612b7557612b75612c41565b039392505050565b600082821015612b8f57612b8f612c41565b500390565b60005b83811015612baf578181015183820152602001612b97565b838111156111145750506000910152565b600081612bcf57612bcf612c41565b506000190190565b600281046001821680612beb57607f821691505b60208210811415612c0c57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612c2657612c26612c41565b5060010190565b600082612c3c57612c3c612c57565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146109b057600080fdfea2646970667358221220b9991959fbc405910bed78a60778be7a6435dd67e9a30fc1a3751aa998c4d3b964736f6c634300080000330000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000115c0000000000000000000000000000000000000000000000000000000000000064
Deployed Bytecode
0x60806040526004361061020f5760003560e01c8063742a4c9b11610118578063ac446002116100a0578063d7224ba01161006f578063d7224ba0146105ad578063dc33e681146105c2578063e985e9c5146105e2578063f2fde38b14610602578063fbe1aa51146106225761020f565b8063ac44600214610543578063b88d4fde14610558578063c43fe78d14610578578063c87b56dd1461058d5761020f565b80638da5cb5b116100e75780638da5cb5b146104b75780639231ab2a146104cc57806395d89b41146104f95780639e87fac81461050e578063a22cb465146105235761020f565b8063742a4c9b1461045a5780637c928fe91461047a5780637eff4b671461048d5780638bc35c2f146104a25761020f565b8063304dd7541161019b57806355f804b31161016a57806355f804b3146103c55780636352211e146103e5578063670fc7751461040557806370a0823114610425578063715018a6146104455761020f565b8063304dd75414610350578063375a069a1461036557806342842e0e146103855780634f6ccce7146103a55761020f565b806318160ddd116101e257806318160ddd146102bb57806323b872dd146102dd5780632d20fb60146102fd5780632db115441461031d5780632f745c59146103305761020f565b806301ffc9a71461021457806306fdde031461024a578063081812fc1461026c578063095ea7b314610299575b600080fd5b34801561022057600080fd5b5061023461022f3660046120a1565b610637565b604051610241919061220d565b60405180910390f35b34801561025657600080fd5b5061025f61069a565b6040516102419190612218565b34801561027857600080fd5b5061028c610287366004612146565b61072c565b60405161024191906121bc565b3480156102a557600080fd5b506102b96102b4366004612078565b610778565b005b3480156102c757600080fd5b506102d0610811565b6040516102419190612adf565b3480156102e957600080fd5b506102b96102f8366004611f37565b610817565b34801561030957600080fd5b506102b9610318366004612146565b610822565b6102b961032b366004612146565b61089a565b34801561033c57600080fd5b506102d061034b366004612078565b6109b3565b34801561035c57600080fd5b50610234610aaf565b34801561037157600080fd5b506102b9610380366004612146565b610ab8565b34801561039157600080fd5b506102b96103a0366004611f37565b610c05565b3480156103b157600080fd5b506102d06103c0366004612146565b610c20565b3480156103d157600080fd5b506102b96103e03660046120d9565b610c4c565b3480156103f157600080fd5b5061028c610400366004612146565b610c97565b34801561041157600080fd5b506102b9610420366004612146565b610ca9565b34801561043157600080fd5b506102d0610440366004611eeb565b610ced565b34801561045157600080fd5b506102b9610d3a565b34801561046657600080fd5b506102b9610475366004612146565b610d85565b6102b9610488366004612146565b610dc9565b34801561049957600080fd5b506102d0610e8a565b3480156104ae57600080fd5b506102d0610e90565b3480156104c357600080fd5b5061028c610eb4565b3480156104d857600080fd5b506104ec6104e7366004612146565b610ec3565b6040516102419190612ab5565b34801561050557600080fd5b5061025f610ed4565b34801561051a57600080fd5b506102b9610ee3565b34801561052f57600080fd5b506102b961053e36600461203e565b610f36565b34801561054f57600080fd5b506102b9611004565b34801561056457600080fd5b506102b9610573366004611f72565b6110e1565b34801561058457600080fd5b506102d061111a565b34801561059957600080fd5b5061025f6105a8366004612146565b611120565b3480156105b957600080fd5b506102d06111a3565b3480156105ce57600080fd5b506102d06105dd366004611eeb565b6111a9565b3480156105ee57600080fd5b506102346105fd366004611f05565b6111b4565b34801561060e57600080fd5b506102b961061d366004611eeb565b6111e2565b34801561062e57600080fd5b506102d0611250565b60006001600160e01b031982166380ac58cd60e01b148061066857506001600160e01b03198216635b5e139f60e01b145b8061068357506001600160e01b0319821663780e9d6360e01b145b80610692575061069282611274565b90505b919050565b6060600280546106a990612bd7565b80601f01602080910402602001604051908101604052809291908181526020018280546106d590612bd7565b80156107225780601f106106f757610100808354040283529160200191610722565b820191906000526020600020905b81548152906001019060200180831161070557829003601f168201915b5050505050905090565b60006107378261128d565b61075c5760405162461bcd60e51b815260040161075390612a26565b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061078382610c97565b9050806001600160a01b0316836001600160a01b031614156107b75760405162461bcd60e51b81526004016107539061275e565b806001600160a01b03166107c9611294565b6001600160a01b031614806107e557506107e5816105fd611294565b6108015760405162461bcd60e51b8152600401610753906124d1565b61080c838383611298565b505050565b60015490565b61080c8383836112f4565b61082a611294565b6001600160a01b031661083b610eb4565b6001600160a01b0316146108615760405162461bcd60e51b815260040161075390612622565b600260095414156108845760405162461bcd60e51b8152600401610753906129a0565b600260095561089281611608565b506001600955565b3233146108b95760405162461bcd60e51b81526004016107539061249a565b600c5460ff166108db5760405162461bcd60e51b815260040161075390612463565b60008111801561090b57507f00000000000000000000000000000000000000000000000000000000000000148111155b6109275760405162461bcd60e51b815260040161075390612349565b80600a546109359190612b36565b3410156109545760405162461bcd60e51b81526004016107539061281d565b7f000000000000000000000000000000000000000000000000000000000000115c8161097e610811565b6109889190612b0a565b11156109a65760405162461bcd60e51b8152600401610753906125b0565b6109b03382611793565b50565b60006109be83610ced565b82106109dc5760405162461bcd60e51b81526004016107539061222b565b60006109e6610811565b905060008060005b83811015610a90576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610a4157805192505b876001600160a01b0316836001600160a01b03161415610a7d5786841415610a6f57509350610aa992505050565b83610a7981612c12565b9450505b5080610a8881612c12565b9150506109ee565b5060405162461bcd60e51b81526004016107539061290c565b92915050565b600c5460ff1681565b610ac0611294565b6001600160a01b0316610ad1610eb4565b6001600160a01b031614610af75760405162461bcd60e51b815260040161075390612622565b7f000000000000000000000000000000000000000000000000000000000000006481610b21610811565b610b2b9190612b0a565b1115610b495760405162461bcd60e51b8152600401610753906128c5565b610b737f000000000000000000000000000000000000000000000000000000000000001482612c2d565b15610b905760405162461bcd60e51b8152600401610753906122fd565b6000610bbc7f000000000000000000000000000000000000000000000000000000000000001483612b22565b905060005b8181101561080c57610bf3337f0000000000000000000000000000000000000000000000000000000000000014611793565b80610bfd81612c12565b915050610bc1565b61080c838383604051806020016040528060008152506110e1565b6000610c2a610811565b8210610c485760405162461bcd60e51b81526004016107539061238a565b5090565b610c54611294565b6001600160a01b0316610c65610eb4565b6001600160a01b031614610c8b5760405162461bcd60e51b815260040161075390612622565b61080c600d8383611e28565b6000610ca2826117b1565b5192915050565b610cb1611294565b6001600160a01b0316610cc2610eb4565b6001600160a01b031614610ce85760405162461bcd60e51b815260040161075390612622565b600a55565b60006001600160a01b038216610d155760405162461bcd60e51b815260040161075390612565565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b610d42611294565b6001600160a01b0316610d53610eb4565b6001600160a01b031614610d795760405162461bcd60e51b815260040161075390612622565b610d8360006118c4565b565b610d8d611294565b6001600160a01b0316610d9e610eb4565b6001600160a01b031614610dc45760405162461bcd60e51b815260040161075390612622565b600b55565b323314610de85760405162461bcd60e51b81526004016107539061249a565b600c5460ff16610e0a5760405162461bcd60e51b815260040161075390612463565b600081118015610e3a57507f00000000000000000000000000000000000000000000000000000000000000148111155b610e565760405162461bcd60e51b815260040161075390612349565b600b5481610e62610811565b610e6c9190612b0a565b11156109a65760405162461bcd60e51b81526004016107539061272f565b600a5481565b7f000000000000000000000000000000000000000000000000000000000000001481565b6000546001600160a01b031690565b610ecb611ea8565b610692826117b1565b6060600380546106a990612bd7565b610eeb611294565b6001600160a01b0316610efc610eb4565b6001600160a01b031614610f225760405162461bcd60e51b815260040161075390612622565b600c805460ff19811660ff90911615179055565b610f3e611294565b6001600160a01b0316826001600160a01b03161415610f6f5760405162461bcd60e51b8152600401610753906126a6565b8060076000610f7c611294565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610fc0611294565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610ff8919061220d565b60405180910390a35050565b61100c611294565b6001600160a01b031661101d610eb4565b6001600160a01b0316146110435760405162461bcd60e51b815260040161075390612622565b600260095414156110665760405162461bcd60e51b8152600401610753906129a0565b60026009556040516000903390479061107e906121b9565b60006040518083038185875af1925050503d80600081146110bb576040519150601f19603f3d011682016040523d82523d6000602084013e6110c0565b606091505b50509050806108925760405162461bcd60e51b8152600401610753906127a0565b6110ec8484846112f4565b6110f884848484611914565b6111145760405162461bcd60e51b8152600401610753906127ca565b50505050565b600b5481565b606061112b8261128d565b6111475760405162461bcd60e51b815260040161075390612657565b6000611151611a30565b90506000815111611171576040518060200160405280600081525061119c565b8061117b84611a3f565b60405160200161118c92919061218a565b6040516020818303038152906040525b9392505050565b60085481565b600061069282611b5a565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6111ea611294565b6001600160a01b03166111fb610eb4565b6001600160a01b0316146112215760405162461bcd60e51b815260040161075390612622565b6001600160a01b0381166112475760405162461bcd60e51b81526004016107539061226d565b6109b0816118c4565b7f000000000000000000000000000000000000000000000000000000000000006481565b6001600160e01b031981166301ffc9a760e01b14919050565b6001541190565b3390565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006112ff826117b1565b9050600081600001516001600160a01b0316611319611294565b6001600160a01b0316148061134e5750611331611294565b6001600160a01b03166113438461072c565b6001600160a01b0316145b8061136257508151611362906105fd611294565b9050806113815760405162461bcd60e51b8152600401610753906126dd565b846001600160a01b031682600001516001600160a01b0316146113b65760405162461bcd60e51b8152600401610753906125dc565b6001600160a01b0384166113dc5760405162461bcd60e51b8152600401610753906123cd565b6113e98585856001611114565b6113f96000848460000151611298565b6001600160a01b038516600090815260056020526040812080546001929061142b9084906001600160801b0316612b55565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b0386166000908152600560205260408120805460019450909261147791859116612ae8565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526004909152948520935184549151909216600160a01b0267ffffffffffffffff60a01b19929093166001600160a01b0319909116171617905561150d846001612b0a565b6000818152600460205260409020549091506001600160a01b03166115b2576115358161128d565b156115b25760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff90811682850190815260008781526004909352949091209251835494516001600160a01b031990951692169190911767ffffffffffffffff60a01b1916600160a01b93909116929092029190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46116008686866001611114565b505050505050565b600854816116285760405162461bcd60e51b81526004016107539061252e565b600060016116368484612b0a565b6116409190612b7d565b905061166d60017f000000000000000000000000000000000000000000000000000000000000115c612b7d565b8111156116a25761169f60017f000000000000000000000000000000000000000000000000000000000000115c612b7d565b90505b6116ab8161128d565b6116c75760405162461bcd60e51b81526004016107539061295a565b815b81811161177f576000818152600460205260409020546001600160a01b031661176d5760006116f7826117b1565b60408051808201825282516001600160a01b03908116825260209384015167ffffffffffffffff90811685840190815260008881526004909652939094209151825493516001600160a01b031990941691161767ffffffffffffffff60a01b1916600160a01b9290931691909102919091179055505b8061177781612c12565b9150506116c9565b5061178b816001612b0a565b600855505050565b6117ad828260405180602001604052806000815250611bae565b5050565b6117b9611ea8565b6117c28261128d565b6117de5760405162461bcd60e51b8152600401610753906122b3565b60007f0000000000000000000000000000000000000000000000000000000000000014831061183f576118317f000000000000000000000000000000000000000000000000000000000000001484612b7d565b61183c906001612b0a565b90505b825b8181106118ab576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215611898579250610695915050565b50806118a381612bc0565b915050611841565b5060405162461bcd60e51b8152600401610753906129d7565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000611928846001600160a01b0316611e22565b15611a2457836001600160a01b031663150b7a02611944611294565b8786866040518563ffffffff1660e01b815260040161196694939291906121d0565b602060405180830381600087803b15801561198057600080fd5b505af19250505080156119b0575060408051601f3d908101601f191682019092526119ad918101906120bd565b60015b611a0a573d8080156119de576040519150601f19603f3d011682016040523d82523d6000602084013e6119e3565b606091505b508051611a025760405162461bcd60e51b8152600401610753906127ca565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611a28565b5060015b949350505050565b6060600d80546106a990612bd7565b606081611a6457506040805180820190915260018152600360fc1b6020820152610695565b8160005b8115611a8e5780611a7881612c12565b9150611a879050600a83612b22565b9150611a68565b60008167ffffffffffffffff811115611ab757634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611ae1576020820181803683370190505b5090505b8415611a2857611af6600183612b7d565b9150611b03600a86612c2d565b611b0e906030612b0a565b60f81b818381518110611b3157634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611b53600a86612b22565b9450611ae5565b60006001600160a01b038216611b825760405162461bcd60e51b815260040161075390612412565b506001600160a01b0316600090815260056020526040902054600160801b90046001600160801b031690565b6001546001600160a01b038416611bd75760405162461bcd60e51b815260040161075390612884565b611be08161128d565b15611bfd5760405162461bcd60e51b81526004016107539061284d565b7f0000000000000000000000000000000000000000000000000000000000000014831115611c3d5760405162461bcd60e51b815260040161075390612a73565b611c4a6000858386611114565b6001600160a01b0384166000908152600560209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190611ca6908790612ae8565b6001600160801b03168152602001858360200151611cc49190612ae8565b6001600160801b039081169091526001600160a01b03808816600081815260056020908152604080832087518154988401518816600160801b029088166fffffffffffffffffffffffffffffffff1990991698909817909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526004909552948120915182549451909516600160a01b0267ffffffffffffffff60a01b19959093166001600160a01b031990941693909317939093161790915582905b85811015611e0f5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611dd36000888488611914565b611def5760405162461bcd60e51b8152600401610753906127ca565b81611df981612c12565b9250508080611e0790612c12565b915050611d86565b5060018190556116006000878588611114565b3b151590565b828054611e3490612bd7565b90600052602060002090601f016020900481019282611e565760008555611e9c565b82601f10611e6f5782800160ff19823516178555611e9c565b82800160010185558215611e9c579182015b82811115611e9c578235825591602001919060010190611e81565b50610c48929150611ebf565b604080518082019091526000808252602082015290565b5b80821115610c485760008155600101611ec0565b80356001600160a01b038116811461069557600080fd5b600060208284031215611efc578081fd5b61119c82611ed4565b60008060408385031215611f17578081fd5b611f2083611ed4565b9150611f2e60208401611ed4565b90509250929050565b600080600060608486031215611f4b578081fd5b611f5484611ed4565b9250611f6260208501611ed4565b9150604084013590509250925092565b60008060008060808587031215611f87578081fd5b611f9085611ed4565b93506020611f9f818701611ed4565b935060408601359250606086013567ffffffffffffffff80821115611fc2578384fd5b818801915088601f830112611fd5578384fd5b813581811115611fe757611fe7612c6d565b604051601f8201601f191681018501838111828210171561200a5761200a612c6d565b60405281815283820185018b1015612020578586fd5b81858501868301379081019093019390935250939692955090935050565b60008060408385031215612050578182fd5b61205983611ed4565b91506020830135801515811461206d578182fd5b809150509250929050565b6000806040838503121561208a578182fd5b61209383611ed4565b946020939093013593505050565b6000602082840312156120b2578081fd5b813561119c81612c83565b6000602082840312156120ce578081fd5b815161119c81612c83565b600080602083850312156120eb578182fd5b823567ffffffffffffffff80821115612102578384fd5b818501915085601f830112612115578384fd5b813581811115612123578485fd5b866020828501011115612134578485fd5b60209290920196919550909350505050565b600060208284031215612157578081fd5b5035919050565b60008151808452612176816020860160208601612b94565b601f01601f19169290920160200192915050565b6000835161219c818460208801612b94565b8351908301906121b0818360208801612b94565b01949350505050565b90565b6001600160a01b0391909116815260200190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906122039083018461215e565b9695505050505050565b901515815260200190565b60006020825261119c602083018461215e565b60208082526022908201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252602a908201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736040820152693a32b73a103a37b5b2b760b11b606082015260800190565b6020808252602c908201527f63616e206f6e6c79206d696e742061206d756c7469706c65206f66207468652060408201526b6d6178426174636853697a6560a01b606082015260800190565b60208082526021908201527f43616e206f6e6c79206d696e74206d617820746f6b656e20617420612074696d6040820152606560f81b606082015260800190565b60208082526023908201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756040820152626e647360e81b606082015260800190565b60208082526025908201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526031908201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260408201527020746865207a65726f206164647265737360781b606082015260800190565b6020808252601b908201527f53616c65206d7573742062652061637469766520746f206d696e740000000000604082015260600190565b6020808252601e908201527f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000604082015260600190565b60208082526039908201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60408201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606082015260800190565b60208082526018908201527f7175616e74697479206d757374206265206e6f6e7a65726f0000000000000000604082015260600190565b6020808252602b908201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60408201526a65726f206164647265737360a81b606082015260800190565b60208082526012908201527172656163686564206d617820737570706c7960701b604082015260600190565b60208082526026908201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746040820152651037bbb732b960d11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b6020808252601a908201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604082015260600190565b60208082526032908201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206040820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606082015260800190565b6020808252601590820152741c995858da1959081b585e08119c995948135a5b9d605a1b604082015260600190565b60208082526022908201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60408201526132b960f11b606082015260800190565b60208082526010908201526f2a3930b739b332b9103330b4b632b21760811b604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b6020808252601690820152752732b2b2103a379039b2b7321036b7b9329022aa241760511b604082015260600190565b6020808252601d908201527f455243373231413a20746f6b656e20616c7265616479206d696e746564000000604082015260600190565b60208082526021908201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526027908201527f746f6f206d616e7920616c7265616479206d696e746564206265666f72652064604082015266195d881b5a5b9d60ca1b606082015260800190565b6020808252602e908201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060408201526d0deeedccae440c4f240d2dcc8caf60931b606082015260800190565b60208082526026908201527f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360408201526506c65616e75760d41b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b6020808252602f908201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560408201526e1037bbb732b91037b3103a37b5b2b760891b606082015260800190565b6020808252602d908201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560408201526c3c34b9ba32b73a103a37b5b2b760991b606082015260800190565b60208082526022908201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696040820152610ced60f31b606082015260800190565b81516001600160a01b0316815260209182015167ffffffffffffffff169181019190915260400190565b90815260200190565b60006001600160801b038083168185168083038211156121b0576121b0612c41565b60008219821115612b1d57612b1d612c41565b500190565b600082612b3157612b31612c57565b500490565b6000816000190483118215151615612b5057612b50612c41565b500290565b60006001600160801b0383811690831681811015612b7557612b75612c41565b039392505050565b600082821015612b8f57612b8f612c41565b500390565b60005b83811015612baf578181015183820152602001612b97565b838111156111145750506000910152565b600081612bcf57612bcf612c41565b506000190190565b600281046001821680612beb57607f821691505b60208210811415612c0c57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612c2657612c26612c41565b5060010190565b600082612c3c57612c3c612c57565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146109b057600080fdfea2646970667358221220b9991959fbc405910bed78a60778be7a6435dd67e9a30fc1a3751aa998c4d3b964736f6c63430008000033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000115c0000000000000000000000000000000000000000000000000000000000000064
-----Decoded View---------------
Arg [0] : maxBatchSize_ (uint256): 20
Arg [1] : collectionSize_ (uint256): 4444
Arg [2] : amountForDevs_ (uint256): 100
-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000014
Arg [1] : 000000000000000000000000000000000000000000000000000000000000115c
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000064
Deployed Bytecode Sourcemap
40418:3131:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23233:370;;;;;;;;;;-1:-1:-1;23233:370:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24959:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;26484:204::-;;;;;;;;;;-1:-1:-1;26484:204:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;26047:379::-;;;;;;;;;;-1:-1:-1;26047:379:0;;;;;:::i;:::-;;:::i;:::-;;21794:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;27334:142::-;;;;;;;;;;-1:-1:-1;27334:142:0;;;;;:::i;:::-;;:::i;43162:118::-;;;;;;;;;;-1:-1:-1;43162:118:0;;;;;:::i;:::-;;:::i;41768:450::-;;;;;;:::i;:::-;;:::i;22425:744::-;;;;;;;;;;-1:-1:-1;22425:744:0;;;;;:::i;:::-;;:::i;40682:27::-;;;;;;;;;;;;;:::i;42250:442::-;;;;;;;;;;-1:-1:-1;42250:442:0;;;;;:::i;:::-;;:::i;27539:157::-;;;;;;;;;;-1:-1:-1;27539:157:0;;;;;:::i;:::-;;:::i;21957:177::-;;;;;;;;;;-1:-1:-1;21957:177:0;;;;;:::i;:::-;;:::i;42869:100::-;;;;;;;;;;-1:-1:-1;42869:100:0;;;;;:::i;:::-;;:::i;24782:118::-;;;;;;;;;;-1:-1:-1;24782:118:0;;;;;:::i;:::-;;:::i;41101:97::-;;;;;;;;;;-1:-1:-1;41101:97:0;;;;;:::i;:::-;;:::i;23659:211::-;;;;;;;;;;-1:-1:-1;23659:211:0;;;;;:::i;:::-;;:::i;39758:94::-;;;;;;;;;;;;;:::i;41212:107::-;;;;;;;;;;-1:-1:-1;41212:107:0;;;;;:::i;:::-;;:::i;41409:353::-;;;;;;:::i;:::-;;:::i;40578:53::-;;;;;;;;;;;;;:::i;40480:48::-;;;;;;;;;;;;;:::i;39107:87::-;;;;;;;;;;;;;:::i;43399:147::-;;;;;;;;;;-1:-1:-1;43399:147:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;25114:98::-;;;;;;;;;;;;;:::i;41335:68::-;;;;;;;;;;;;;:::i;26752:274::-;;;;;;;;;;-1:-1:-1;26752:274:0;;;;;:::i;:::-;;:::i;42975:181::-;;;;;;;;;;;;;:::i;27759:311::-;;;;;;;;;;-1:-1:-1;27759:311:0;;;;;:::i;:::-;;:::i;40640:36::-;;;;;;;;;;;;;:::i;25275:394::-;;;;;;;;;;-1:-1:-1;25275:394:0;;;;;:::i;:::-;;:::i;32174:43::-;;;;;;;;;;;;;:::i;43286:107::-;;;;;;;;;;-1:-1:-1;43286:107:0;;;;;:::i;:::-;;:::i;27089:186::-;;;;;;;;;;-1:-1:-1;27089:186:0;;;;;:::i;:::-;;:::i;40007:192::-;;;;;;;;;;-1:-1:-1;40007:192:0;;;;;:::i;:::-;;:::i;40533:38::-;;;;;;;;;;;;;:::i;23233:370::-;23360:4;-1:-1:-1;;;;;;23390:40:0;;-1:-1:-1;;;23390:40:0;;:99;;-1:-1:-1;;;;;;;23441:48:0;;-1:-1:-1;;;23441:48:0;23390:99;:160;;;-1:-1:-1;;;;;;;23500:50:0;;-1:-1:-1;;;23500:50:0;23390:160;:207;;;;23561:36;23585:11;23561:23;:36::i;:::-;23376:221;;23233:370;;;;:::o;24959:94::-;25013:13;25042:5;25035:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24959:94;:::o;26484:204::-;26552:7;26576:16;26584:7;26576;:16::i;:::-;26568:74;;;;-1:-1:-1;;;26568:74:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;26658:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;26658:24:0;;26484:204::o;26047:379::-;26116:13;26132:24;26148:7;26132:15;:24::i;:::-;26116:40;;26177:5;-1:-1:-1;;;;;26171:11:0;:2;-1:-1:-1;;;;;26171:11:0;;;26163:58;;;;-1:-1:-1;;;26163:58:0;;;;;;;:::i;:::-;26262:5;-1:-1:-1;;;;;26246:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;26246:21:0;;:62;;;;26271:37;26288:5;26295:12;:10;:12::i;26271:37::-;26230:153;;;;-1:-1:-1;;;26230:153:0;;;;;;;:::i;:::-;26392:28;26401:2;26405:7;26414:5;26392:8;:28::i;:::-;26047:379;;;:::o;21794:94::-;21870:12;;21794:94;:::o;27334:142::-;27442:28;27452:4;27458:2;27462:7;27442:9;:28::i;43162:118::-;39338:12;:10;:12::i;:::-;-1:-1:-1;;;;;39327:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;39327:23:0;;39319:68;;;;-1:-1:-1;;;39319:68:0;;;;;;;:::i;:::-;37219:1:::1;37815:7;;:19;;37807:63;;;;-1:-1:-1::0;;;37807:63:0::1;;;;;;;:::i;:::-;37219:1;37948:7;:18:::0;43246:28:::2;43265:8:::0;43246:18:::2;:28::i;:::-;-1:-1:-1::0;37175:1:0::1;38127:7;:22:::0;43162:118::o;41768:450::-;41023:9;41036:10;41023:23;41015:66;;;;-1:-1:-1;;;41015:66:0;;;;;;;:::i;:::-;41869:8:::1;::::0;::::1;;41861:48;;;;-1:-1:-1::0;;;41861:48:0::1;;;;;;;:::i;:::-;41935:1;41924:8;:12;:51;;;;;41952:23;41940:8;:35;;41924:51;41916:97;;;;-1:-1:-1::0;;;41916:97:0::1;;;;;;;:::i;:::-;42057:8;42041:15;;:24;;;;:::i;:::-;42028:9;:37;;42020:72;;;;-1:-1:-1::0;;;42020:72:0::1;;;;;;;:::i;:::-;42135:14;42123:8;42107:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:42;;42099:73;;;;-1:-1:-1::0;;;42099:73:0::1;;;;;;;:::i;:::-;42181:31;42191:10;42203:8;42181:9;:31::i;:::-;41768:450:::0;:::o;22425:744::-;22534:7;22569:16;22579:5;22569:9;:16::i;:::-;22561:5;:24;22553:71;;;;-1:-1:-1;;;22553:71:0;;;;;;;:::i;:::-;22631:22;22656:13;:11;:13::i;:::-;22631:38;;22676:19;22706:25;22756:9;22751:350;22775:14;22771:1;:18;22751:350;;;22805:31;22839:14;;;:11;:14;;;;;;;;;22805:48;;;;;;;;;-1:-1:-1;;;;;22805:48:0;;;;;-1:-1:-1;;;22805:48:0;;;;;;;;;;;;22866:28;22862:89;;22927:14;;;-1:-1:-1;22862:89:0;22984:5;-1:-1:-1;;;;;22963:26:0;:17;-1:-1:-1;;;;;22963:26:0;;22959:135;;;23021:5;23006:11;:20;23002:59;;;-1:-1:-1;23048:1:0;-1:-1:-1;23041:8:0;;-1:-1:-1;;;23041:8:0;23002:59;23071:13;;;;:::i;:::-;;;;22959:135;-1:-1:-1;22791:3:0;;;;:::i;:::-;;;;22751:350;;;;23107:56;;-1:-1:-1;;;23107:56:0;;;;;;;:::i;22425:744::-;;;;;:::o;40682:27::-;;;;;;:::o;42250:442::-;39338:12;:10;:12::i;:::-;-1:-1:-1;;;;;39327:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;39327:23:0;;39319:68;;;;-1:-1:-1;;;39319:68:0;;;;;;;:::i;:::-;42355:13:::1;42343:8;42327:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:41;;42311:114;;;;-1:-1:-1::0;;;42311:114:0::1;;;;;;;:::i;:::-;42448:23;42459:12;42448:8:::0;:23:::1;:::i;:::-;:28:::0;42432:106:::1;;;;-1:-1:-1::0;;;42432:106:0::1;;;;;;;:::i;:::-;42545:17;42565:23;42576:12;42565:8:::0;:23:::1;:::i;:::-;42545:43;;42600:9;42595:92;42619:9;42615:1;:13;42595:92;;;42644:35;42654:10;42666:12;42644:9;:35::i;:::-;42630:3:::0;::::1;::::0;::::1;:::i;:::-;;;;42595:92;;27539:157:::0;27651:39;27668:4;27674:2;27678:7;27651:39;;;;;;;;;;;;:16;:39::i;21957:177::-;22024:7;22056:13;:11;:13::i;:::-;22048:5;:21;22040:69;;;;-1:-1:-1;;;22040:69:0;;;;;;;:::i;:::-;-1:-1:-1;22123:5:0;21957:177::o;42869:100::-;39338:12;:10;:12::i;:::-;-1:-1:-1;;;;;39327:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;39327:23:0;;39319:68;;;;-1:-1:-1;;;39319:68:0;;;;;;;:::i;:::-;42940:23:::1;:13;42956:7:::0;;42940:23:::1;:::i;24782:118::-:0;24846:7;24869:20;24881:7;24869:11;:20::i;:::-;:25;;24782:118;-1:-1:-1;;24782:118:0:o;41101:97::-;39338:12;:10;:12::i;:::-;-1:-1:-1;;;;;39327:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;39327:23:0;;39319:68;;;;-1:-1:-1;;;39319:68:0;;;;;;;:::i;:::-;41168:15:::1;:24:::0;41101:97::o;23659:211::-;23723:7;-1:-1:-1;;;;;23747:19:0;;23739:75;;;;-1:-1:-1;;;23739:75:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;23836:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;23836:27:0;;23659:211::o;39758:94::-;39338:12;:10;:12::i;:::-;-1:-1:-1;;;;;39327:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;39327:23:0;;39319:68;;;;-1:-1:-1;;;39319:68:0;;;;;;;:::i;:::-;39823:21:::1;39841:1;39823:9;:21::i;:::-;39758:94::o:0;41212:107::-;39338:12;:10;:12::i;:::-;-1:-1:-1;;;;;39327:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;39327:23:0;;39319:68;;;;-1:-1:-1;;;39319:68:0;;;;;;;:::i;:::-;41283:13:::1;:30:::0;41212:107::o;41409:353::-;41023:9;41036:10;41023:23;41015:66;;;;-1:-1:-1;;;41015:66:0;;;;;;;:::i;:::-;41490:8:::1;::::0;::::1;;41482:48;;;;-1:-1:-1::0;;;41482:48:0::1;;;;;;;:::i;:::-;41556:1;41545:8;:12;:51;;;;;41573:23;41561:8;:35;;41545:51;41537:97;;;;-1:-1:-1::0;;;41537:97:0::1;;;;;;;:::i;:::-;41679:13;;41667:8;41651:13;:11;:13::i;:::-;:24;;;;:::i;:::-;:41;;41643:75;;;;-1:-1:-1::0;;;41643:75:0::1;;;;;;;:::i;40578:53::-:0;;;;:::o;40480:48::-;;;:::o;39107:87::-;39153:7;39180:6;-1:-1:-1;;;;;39180:6:0;39107:87;:::o;43399:147::-;43480:21;;:::i;:::-;43520:20;43532:7;43520:11;:20::i;25114:98::-;25170:13;25199:7;25192:14;;;;;:::i;41335:68::-;39338:12;:10;:12::i;:::-;-1:-1:-1;;;;;39327:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;39327:23:0;;39319:68;;;;-1:-1:-1;;;39319:68:0;;;;;;;:::i;:::-;41389:8:::1;::::0;;-1:-1:-1;;41377:20:0;::::1;41389:8;::::0;;::::1;41388:9;41377:20;::::0;;41335:68::o;26752:274::-;26855:12;:10;:12::i;:::-;-1:-1:-1;;;;;26843:24:0;:8;-1:-1:-1;;;;;26843:24:0;;;26835:63;;;;-1:-1:-1;;;26835:63:0;;;;;;;:::i;:::-;26952:8;26907:18;:32;26926:12;:10;:12::i;:::-;-1:-1:-1;;;;;26907:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;26907:32:0;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;26907:53:0;;;;;;;;;;;26987:12;:10;:12::i;:::-;-1:-1:-1;;;;;26972:48:0;;27011:8;26972:48;;;;;;:::i;:::-;;;;;;;;26752:274;;:::o;42975:181::-;39338:12;:10;:12::i;:::-;-1:-1:-1;;;;;39327:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;39327:23:0;;39319:68;;;;-1:-1:-1;;;39319:68:0;;;;;;;:::i;:::-;37219:1:::1;37815:7;;:19;;37807:63;;;;-1:-1:-1::0;;;37807:63:0::1;;;;;;;:::i;:::-;37219:1;37948:7;:18:::0;43058:49:::2;::::0;43040:12:::2;::::0;43058:10:::2;::::0;43081:21:::2;::::0;43058:49:::2;::::0;::::2;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43039:68;;;43122:7;43114:36;;;;-1:-1:-1::0;;;43114:36:0::2;;;;;;;:::i;27759:311::-:0;27896:28;27906:4;27912:2;27916:7;27896:9;:28::i;:::-;27947:48;27970:4;27976:2;27980:7;27989:5;27947:22;:48::i;:::-;27931:133;;;;-1:-1:-1;;;27931:133:0;;;;;;;:::i;:::-;27759:311;;;;:::o;40640:36::-;;;;:::o;25275:394::-;25373:13;25414:16;25422:7;25414;:16::i;:::-;25398:97;;;;-1:-1:-1;;;25398:97:0;;;;;;;:::i;:::-;25504:21;25528:10;:8;:10::i;:::-;25504:34;;25583:1;25565:7;25559:21;:25;:104;;;;;;;;;;;;;;;;;25620:7;25629:18;:7;:16;:18::i;:::-;25603:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;25559:104;25545:118;25275:394;-1:-1:-1;;;25275:394:0:o;32174:43::-;;;;:::o;43286:107::-;43344:7;43367:20;43381:5;43367:13;:20::i;27089:186::-;-1:-1:-1;;;;;27234:25:0;;;27211:4;27234:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;27089:186::o;40007:192::-;39338:12;:10;:12::i;:::-;-1:-1:-1;;;;;39327:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;39327:23:0;;39319:68;;;;-1:-1:-1;;;39319:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;40096:22:0;::::1;40088:73;;;;-1:-1:-1::0;;;40088:73:0::1;;;;;;;:::i;:::-;40172:19;40182:8;40172:9;:19::i;40533:38::-:0;;;:::o;1543:157::-;-1:-1:-1;;;;;;1652:40:0;;-1:-1:-1;;;1652:40:0;1543:157;;;:::o;28309:105::-;28396:12;;-1:-1:-1;28386:22:0;28309:105::o;15736:98::-;15816:10;15736:98;:::o;31996:172::-;32093:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;32093:29:0;-1:-1:-1;;;;;32093:29:0;;;;;;;;;32134:28;;32093:24;;32134:28;;;;;;;31996:172;;;:::o;30361:1529::-;30458:35;30496:20;30508:7;30496:11;:20::i;:::-;30458:58;;30525:22;30567:13;:18;;;-1:-1:-1;;;;;30551:34:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;30551:34:0;;:81;;;;30620:12;:10;:12::i;:::-;-1:-1:-1;;;;;30596:36:0;:20;30608:7;30596:11;:20::i;:::-;-1:-1:-1;;;;;30596:36:0;;30551:81;:142;;;-1:-1:-1;30660:18:0;;30643:50;;30680:12;:10;:12::i;30643:50::-;30525:169;;30719:17;30703:101;;;;-1:-1:-1;;;30703:101:0;;;;;;;:::i;:::-;30851:4;-1:-1:-1;;;;;30829:26:0;:13;:18;;;-1:-1:-1;;;;;30829:26:0;;30813:98;;;;-1:-1:-1;;;30813:98:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;30926:16:0;;30918:66;;;;-1:-1:-1;;;30918:66:0;;;;;;;:::i;:::-;30993:43;31015:4;31021:2;31025:7;31034:1;30993:21;:43::i;:::-;31093:49;31110:1;31114:7;31123:13;:18;;;31093:8;:49::i;:::-;-1:-1:-1;;;;;31151:18:0;;;;;;:12;:18;;;;;:31;;31181:1;;31151:18;:31;;31181:1;;-1:-1:-1;;;;;31151:31:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;31151:31:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;31189:16:0;;-1:-1:-1;31189:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;31189:16:0;;:29;;-1:-1:-1;;31189:29:0;;:::i;:::-;;;-1:-1:-1;;;;;31189:29:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31248:43:0;;;;;;;;-1:-1:-1;;;;;31248:43:0;;;;;;31274:15;31248:43;;;;;;;;;-1:-1:-1;31225:20:0;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;31225:66:0;-1:-1:-1;;;;31225:66:0;;;;-1:-1:-1;;;;;;31225:66:0;;;;;;;;31541:11;31237:7;-1:-1:-1;31541:11:0;:::i;:::-;31604:1;31563:24;;;:11;:24;;;;;:29;31519:33;;-1:-1:-1;;;;;;31563:29:0;31559:236;;31621:20;31629:11;31621:7;:20::i;:::-;31617:171;;;31681:97;;;;;;;;31708:18;;-1:-1:-1;;;;;31681:97:0;;;;;;31739:28;;;;31681:97;;;;;;;;;;-1:-1:-1;31654:24:0;;;:11;:24;;;;;;;:124;;;;;;-1:-1:-1;;;;;;31654:124:0;;;;;;;;;-1:-1:-1;;;;31654:124:0;-1:-1:-1;;;31654:124:0;;;;;;;;;;;;;;31617:171;31827:7;31823:2;-1:-1:-1;;;;;31808:27:0;31817:4;-1:-1:-1;;;;;31808:27:0;;;;;;;;;;;31842:42;31863:4;31869:2;31873:7;31882:1;31842:20;:42::i;:::-;30361:1529;;;;;;:::o;32322:846::-;32412:24;;32451:12;32443:49;;;;-1:-1:-1;;;32443:49:0;;;;;;;:::i;:::-;32499:16;32549:1;32518:28;32538:8;32518:17;:28;:::i;:::-;:32;;;;:::i;:::-;32499:51;-1:-1:-1;32572:18:0;32589:1;32572:14;:18;:::i;:::-;32561:8;:29;32557:81;;;32612:18;32629:1;32612:14;:18;:::i;:::-;32601:29;;32557:81;32753:17;32761:8;32753:7;:17::i;:::-;32745:68;;;;-1:-1:-1;;;32745:68:0;;;;;;;:::i;:::-;32837:17;32820:297;32861:8;32856:1;:13;32820:297;;32920:1;32889:14;;;:11;:14;;;;;:19;-1:-1:-1;;;;;32889:19:0;32885:225;;32935:31;32969:14;32981:1;32969:11;:14::i;:::-;33011:89;;;;;;;;33038:14;;-1:-1:-1;;;;;33011:89:0;;;;;;33065:24;;;;33011:89;;;;;;;;;;-1:-1:-1;32994:14:0;;;:11;:14;;;;;;;:106;;;;;;-1:-1:-1;;;;;;32994:106:0;;;;;;-1:-1:-1;;;;32994:106:0;-1:-1:-1;;;32994:106:0;;;;;;;;;;;;;;-1:-1:-1;32885:225:0;32871:3;;;;:::i;:::-;;;;32820:297;;;-1:-1:-1;33150:12:0;:8;33161:1;33150:12;:::i;:::-;33123:24;:39;-1:-1:-1;;;32322:846:0:o;28420:98::-;28485:27;28495:2;28499:8;28485:27;;;;;;;;;;;;:9;:27::i;:::-;28420:98;;:::o;24122:606::-;24198:21;;:::i;:::-;24239:16;24247:7;24239;:16::i;:::-;24231:71;;;;-1:-1:-1;;;24231:71:0;;;;;;;:::i;:::-;24311:26;24359:12;24348:7;:23;24344:93;;24403:22;24413:12;24403:7;:22;:::i;:::-;:26;;24428:1;24403:26;:::i;:::-;24382:47;;24344:93;24465:7;24445:212;24482:18;24474:4;:26;24445:212;;24519:31;24553:17;;;:11;:17;;;;;;;;;24519:51;;;;;;;;;-1:-1:-1;;;;;24519:51:0;;;;;-1:-1:-1;;;24519:51:0;;;;;;;;;;;;24583:28;24579:71;;24631:9;-1:-1:-1;24624:16:0;;-1:-1:-1;;24624:16:0;24579:71;-1:-1:-1;24502:6:0;;;;:::i;:::-;;;;24445:212;;;;24665:57;;-1:-1:-1;;;24665:57:0;;;;;;;:::i;40207:173::-;40263:16;40282:6;;-1:-1:-1;;;;;40299:17:0;;;-1:-1:-1;;;;;;40299:17:0;;;;;;40332:40;;40282:6;;;;;;;40332:40;;40263:16;40332:40;40207:173;;:::o;33711:690::-;33848:4;33865:15;:2;-1:-1:-1;;;;;33865:13:0;;:15::i;:::-;33861:535;;;33920:2;-1:-1:-1;;;;;33904:36:0;;33941:12;:10;:12::i;:::-;33955:4;33961:7;33970:5;33904:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;33904:72:0;;;;;;;;-1:-1:-1;;33904:72:0;;;;;;;;;;;;:::i;:::-;;;33891:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34135:13:0;;34131:215;;34168:61;;-1:-1:-1;;;34168:61:0;;;;;;;:::i;34131:215::-;34314:6;34308:13;34299:6;34295:2;34291:15;34284:38;33891:464;-1:-1:-1;;;;;;34026:55:0;-1:-1:-1;;;34026:55:0;;-1:-1:-1;34019:62:0;;33861:535;-1:-1:-1;34384:4:0;33861:535;33711:690;;;;;;:::o;42755:108::-;42815:13;42844;42837:20;;;;;:::i;16205:723::-;16261:13;16482:10;16478:53;;-1:-1:-1;16509:10:0;;;;;;;;;;;;-1:-1:-1;;;16509:10:0;;;;;;16478:53;16556:5;16541:12;16597:78;16604:9;;16597:78;;16630:8;;;;:::i;:::-;;-1:-1:-1;16653:10:0;;-1:-1:-1;16661:2:0;16653:10;;:::i;:::-;;;16597:78;;;16685:19;16717:6;16707:17;;;;;;-1:-1:-1;;;16707:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;16707:17:0;;16685:39;;16735:154;16742:10;;16735:154;;16769:11;16779:1;16769:11;;:::i;:::-;;-1:-1:-1;16838:10:0;16846:2;16838:5;:10;:::i;:::-;16825:24;;:2;:24;:::i;:::-;16812:39;;16795:6;16802;16795:14;;;;;;-1:-1:-1;;;16795:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;16795:56:0;;;;;;;;-1:-1:-1;16866:11:0;16875:2;16866:11;;:::i;:::-;;;16735:154;;23876:240;23937:7;-1:-1:-1;;;;;23969:19:0;;23953:102;;;;-1:-1:-1;;;23953:102:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;24077:19:0;;;;;:12;:19;;;;;:32;-1:-1:-1;;;24077:32:0;;-1:-1:-1;;;;;24077:32:0;;23876:240::o;28857:1272::-;28985:12;;-1:-1:-1;;;;;29012:16:0;;29004:62;;;;-1:-1:-1;;;29004:62:0;;;;;;;:::i;:::-;29203:21;29211:12;29203:7;:21::i;:::-;29202:22;29194:64;;;;-1:-1:-1;;;29194:64:0;;;;;;;:::i;:::-;29285:12;29273:8;:24;;29265:71;;;;-1:-1:-1;;;29265:71:0;;;;;;;:::i;:::-;29345:61;29375:1;29379:2;29383:12;29397:8;29345:21;:61::i;:::-;-1:-1:-1;;;;;29448:16:0;;29415:30;29448:16;;;:12;:16;;;;;;;;;29415:49;;;;;;;;;-1:-1:-1;;;;;29415:49:0;;;;;-1:-1:-1;;;29415:49:0;;;;;;;;;;;29490:119;;;;;;;;29510:19;;29415:49;;29490:119;;;29510:39;;29540:8;;29510:39;:::i;:::-;-1:-1:-1;;;;;29490:119:0;;;;;29593:8;29558:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;29490:119:0;;;;;;-1:-1:-1;;;;;29471:16:0;;;;;;;:12;:16;;;;;;;;:138;;;;;;;;;;-1:-1:-1;;;29471:138:0;;;;-1:-1:-1;;29471:138:0;;;;;;;;;;;;;;;;;29644:43;;;;;;;;;;;29670:15;29644:43;;;;;;;;29616:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;29616:71:0;-1:-1:-1;;;;29616:71:0;;;;-1:-1:-1;;;;;;29616:71:0;;;;;;;;;;;;;;;29628:12;;29740:281;29764:8;29760:1;:12;29740:281;;;29793:38;;29818:12;;-1:-1:-1;;;;;29793:38:0;;;29810:1;;29793:38;;29810:1;;29793:38;29858:59;29889:1;29893:2;29897:12;29911:5;29858:22;:59::i;:::-;29840:150;;;;-1:-1:-1;;;29840:150:0;;;;;;;:::i;:::-;29999:14;;;;:::i;:::-;;;;29774:3;;;;;:::i;:::-;;;;29740:281;;;-1:-1:-1;30029:12:0;:27;;;30063:60;30092:1;30096:2;30100:12;30114:8;30063:20;:60::i;2419:387::-;2742:20;2790:8;;;2419:387::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;14:175:1;84:20;;-1:-1:-1;;;;;133:31:1;;123:42;;113:2;;179:1;176;169:12;194:198;;306:2;294:9;285:7;281:23;277:32;274:2;;;327:6;319;312:22;274:2;355:31;376:9;355:31;:::i;397:274::-;;;526:2;514:9;505:7;501:23;497:32;494:2;;;547:6;539;532:22;494:2;575:31;596:9;575:31;:::i;:::-;565:41;;625:40;661:2;650:9;646:18;625:40;:::i;:::-;615:50;;484:187;;;;;:::o;676:342::-;;;;822:2;810:9;801:7;797:23;793:32;790:2;;;843:6;835;828:22;790:2;871:31;892:9;871:31;:::i;:::-;861:41;;921:40;957:2;946:9;942:18;921:40;:::i;:::-;911:50;;1008:2;997:9;993:18;980:32;970:42;;780:238;;;;;:::o;1023:1178::-;;;;;1195:3;1183:9;1174:7;1170:23;1166:33;1163:2;;;1217:6;1209;1202:22;1163:2;1245:31;1266:9;1245:31;:::i;:::-;1235:41;;1295:2;1316:40;1352:2;1341:9;1337:18;1316:40;:::i;:::-;1306:50;;1403:2;1392:9;1388:18;1375:32;1365:42;;1458:2;1447:9;1443:18;1430:32;1481:18;1522:2;1514:6;1511:14;1508:2;;;1543:6;1535;1528:22;1508:2;1586:6;1575:9;1571:22;1561:32;;1631:7;1624:4;1620:2;1616:13;1612:27;1602:2;;1658:6;1650;1643:22;1602:2;1699;1686:16;1721:2;1717;1714:10;1711:2;;;1727:18;;:::i;:::-;1776:2;1770:9;1845:2;1826:13;;-1:-1:-1;;1822:27:1;1810:40;;1806:49;;1870:18;;;1890:22;;;1867:46;1864:2;;;1916:18;;:::i;:::-;1952:2;1945:22;1976:18;;;2013:11;;;2009:20;;2006:33;-1:-1:-1;2003:2:1;;;2057:6;2049;2042:22;2003:2;2118;2113;2109;2105:11;2100:2;2092:6;2088:15;2075:46;2141:15;;;2137:24;;;2130:40;;;;-1:-1:-1;1153:1048:1;;;;-1:-1:-1;1153:1048:1;;-1:-1:-1;;1153:1048:1:o;2206:369::-;;;2332:2;2320:9;2311:7;2307:23;2303:32;2300:2;;;2353:6;2345;2338:22;2300:2;2381:31;2402:9;2381:31;:::i;:::-;2371:41;;2462:2;2451:9;2447:18;2434:32;2509:5;2502:13;2495:21;2488:5;2485:32;2475:2;;2536:6;2528;2521:22;2475:2;2564:5;2554:15;;;2290:285;;;;;:::o;2580:266::-;;;2709:2;2697:9;2688:7;2684:23;2680:32;2677:2;;;2730:6;2722;2715:22;2677:2;2758:31;2779:9;2758:31;:::i;:::-;2748:41;2836:2;2821:18;;;;2808:32;;-1:-1:-1;;;2667:179:1:o;2851:257::-;;2962:2;2950:9;2941:7;2937:23;2933:32;2930:2;;;2983:6;2975;2968:22;2930:2;3027:9;3014:23;3046:32;3072:5;3046:32;:::i;3113:261::-;;3235:2;3223:9;3214:7;3210:23;3206:32;3203:2;;;3256:6;3248;3241:22;3203:2;3293:9;3287:16;3312:32;3338:5;3312:32;:::i;3379:642::-;;;3511:2;3499:9;3490:7;3486:23;3482:32;3479:2;;;3532:6;3524;3517:22;3479:2;3577:9;3564:23;3606:18;3647:2;3639:6;3636:14;3633:2;;;3668:6;3660;3653:22;3633:2;3711:6;3700:9;3696:22;3686:32;;3756:7;3749:4;3745:2;3741:13;3737:27;3727:2;;3783:6;3775;3768:22;3727:2;3828;3815:16;3854:2;3846:6;3843:14;3840:2;;;3875:6;3867;3860:22;3840:2;3925:7;3920:2;3911:6;3907:2;3903:15;3899:24;3896:37;3893:2;;;3951:6;3943;3936:22;3893:2;3987;3979:11;;;;;4009:6;;-1:-1:-1;3469:552:1;;-1:-1:-1;;;;3469:552:1:o;4026:190::-;;4138:2;4126:9;4117:7;4113:23;4109:32;4106:2;;;4159:6;4151;4144:22;4106:2;-1:-1:-1;4187:23:1;;4096:120;-1:-1:-1;4096:120:1:o;4221:259::-;;4302:5;4296:12;4329:6;4324:3;4317:19;4345:63;4401:6;4394:4;4389:3;4385:14;4378:4;4371:5;4367:16;4345:63;:::i;:::-;4462:2;4441:15;-1:-1:-1;;4437:29:1;4428:39;;;;4469:4;4424:50;;4272:208;-1:-1:-1;;4272:208:1:o;4485:470::-;;4702:6;4696:13;4718:53;4764:6;4759:3;4752:4;4744:6;4740:17;4718:53;:::i;:::-;4834:13;;4793:16;;;;4856:57;4834:13;4793:16;4890:4;4878:17;;4856:57;:::i;:::-;4929:20;;4672:283;-1:-1:-1;;;;4672:283:1:o;4960:205::-;5160:3;5151:14::o;5170:203::-;-1:-1:-1;;;;;5334:32:1;;;;5316:51;;5304:2;5289:18;;5271:102::o;5378:490::-;-1:-1:-1;;;;;5647:15:1;;;5629:34;;5699:15;;5694:2;5679:18;;5672:43;5746:2;5731:18;;5724:34;;;5794:3;5789:2;5774:18;;5767:31;;;5378:490;;5815:47;;5842:19;;5834:6;5815:47;:::i;:::-;5807:55;5581:287;-1:-1:-1;;;;;;5581:287:1:o;5873:187::-;6038:14;;6031:22;6013:41;;6001:2;5986:18;;5968:92::o;6065:221::-;;6214:2;6203:9;6196:21;6234:46;6276:2;6265:9;6261:18;6253:6;6234:46;:::i;6291:398::-;6493:2;6475:21;;;6532:2;6512:18;;;6505:30;6571:34;6566:2;6551:18;;6544:62;-1:-1:-1;;;6637:2:1;6622:18;;6615:32;6679:3;6664:19;;6465:224::o;6694:402::-;6896:2;6878:21;;;6935:2;6915:18;;;6908:30;6974:34;6969:2;6954:18;;6947:62;-1:-1:-1;;;7040:2:1;7025:18;;7018:36;7086:3;7071:19;;6868:228::o;7101:406::-;7303:2;7285:21;;;7342:2;7322:18;;;7315:30;7381:34;7376:2;7361:18;;7354:62;-1:-1:-1;;;7447:2:1;7432:18;;7425:40;7497:3;7482:19;;7275:232::o;7512:408::-;7714:2;7696:21;;;7753:2;7733:18;;;7726:30;7792:34;7787:2;7772:18;;7765:62;-1:-1:-1;;;7858:2:1;7843:18;;7836:42;7910:3;7895:19;;7686:234::o;7925:397::-;8127:2;8109:21;;;8166:2;8146:18;;;8139:30;8205:34;8200:2;8185:18;;8178:62;-1:-1:-1;;;8271:2:1;8256:18;;8249:31;8312:3;8297:19;;8099:223::o;8327:399::-;8529:2;8511:21;;;8568:2;8548:18;;;8541:30;8607:34;8602:2;8587:18;;8580:62;-1:-1:-1;;;8673:2:1;8658:18;;8651:33;8716:3;8701:19;;8501:225::o;8731:401::-;8933:2;8915:21;;;8972:2;8952:18;;;8945:30;9011:34;9006:2;8991:18;;8984:62;-1:-1:-1;;;9077:2:1;9062:18;;9055:35;9122:3;9107:19;;8905:227::o;9137:413::-;9339:2;9321:21;;;9378:2;9358:18;;;9351:30;9417:34;9412:2;9397:18;;9390:62;-1:-1:-1;;;9483:2:1;9468:18;;9461:47;9540:3;9525:19;;9311:239::o;9555:351::-;9757:2;9739:21;;;9796:2;9776:18;;;9769:30;9835:29;9830:2;9815:18;;9808:57;9897:2;9882:18;;9729:177::o;9911:354::-;10113:2;10095:21;;;10152:2;10132:18;;;10125:30;10191:32;10186:2;10171:18;;10164:60;10256:2;10241:18;;10085:180::o;10270:421::-;10472:2;10454:21;;;10511:2;10491:18;;;10484:30;10550:34;10545:2;10530:18;;10523:62;10621:27;10616:2;10601:18;;10594:55;10681:3;10666:19;;10444:247::o;10696:348::-;10898:2;10880:21;;;10937:2;10917:18;;;10910:30;10976:26;10971:2;10956:18;;10949:54;11035:2;11020:18;;10870:174::o;11049:407::-;11251:2;11233:21;;;11290:2;11270:18;;;11263:30;11329:34;11324:2;11309:18;;11302:62;-1:-1:-1;;;11395:2:1;11380:18;;11373:41;11446:3;11431:19;;11223:233::o;11461:342::-;11663:2;11645:21;;;11702:2;11682:18;;;11675:30;-1:-1:-1;;;11736:2:1;11721:18;;11714:48;11794:2;11779:18;;11635:168::o;11808:402::-;12010:2;11992:21;;;12049:2;12029:18;;;12022:30;12088:34;12083:2;12068:18;;12061:62;-1:-1:-1;;;12154:2:1;12139:18;;12132:36;12200:3;12185:19;;11982:228::o;12215:356::-;12417:2;12399:21;;;12436:18;;;12429:30;12495:34;12490:2;12475:18;;12468:62;12562:2;12547:18;;12389:182::o;12576:411::-;12778:2;12760:21;;;12817:2;12797:18;;;12790:30;12856:34;12851:2;12836:18;;12829:62;-1:-1:-1;;;12922:2:1;12907:18;;12900:45;12977:3;12962:19;;12750:237::o;12992:350::-;13194:2;13176:21;;;13233:2;13213:18;;;13206:30;13272:28;13267:2;13252:18;;13245:56;13333:2;13318:18;;13166:176::o;13347:414::-;13549:2;13531:21;;;13588:2;13568:18;;;13561:30;13627:34;13622:2;13607:18;;13600:62;-1:-1:-1;;;13693:2:1;13678:18;;13671:48;13751:3;13736:19;;13521:240::o;13766:345::-;13968:2;13950:21;;;14007:2;13987:18;;;13980:30;-1:-1:-1;;;14041:2:1;14026:18;;14019:51;14102:2;14087:18;;13940:171::o;14116:398::-;14318:2;14300:21;;;14357:2;14337:18;;;14330:30;14396:34;14391:2;14376:18;;14369:62;-1:-1:-1;;;14462:2:1;14447:18;;14440:32;14504:3;14489:19;;14290:224::o;14519:340::-;14721:2;14703:21;;;14760:2;14740:18;;;14733:30;-1:-1:-1;;;14794:2:1;14779:18;;14772:46;14850:2;14835:18;;14693:166::o;14864:415::-;15066:2;15048:21;;;15105:2;15085:18;;;15078:30;15144:34;15139:2;15124:18;;15117:62;-1:-1:-1;;;15210:2:1;15195:18;;15188:49;15269:3;15254:19;;15038:241::o;15284:346::-;15486:2;15468:21;;;15525:2;15505:18;;;15498:30;-1:-1:-1;;;15559:2:1;15544:18;;15537:52;15621:2;15606:18;;15458:172::o;15635:353::-;15837:2;15819:21;;;15876:2;15856:18;;;15849:30;15915:31;15910:2;15895:18;;15888:59;15979:2;15964:18;;15809:179::o;15993:397::-;16195:2;16177:21;;;16234:2;16214:18;;;16207:30;16273:34;16268:2;16253:18;;16246:62;-1:-1:-1;;;16339:2:1;16324:18;;16317:31;16380:3;16365:19;;16167:223::o;16395:403::-;16597:2;16579:21;;;16636:2;16616:18;;;16609:30;16675:34;16670:2;16655:18;;16648:62;-1:-1:-1;;;16741:2:1;16726:18;;16719:37;16788:3;16773:19;;16569:229::o;16803:410::-;17005:2;16987:21;;;17044:2;17024:18;;;17017:30;17083:34;17078:2;17063:18;;17056:62;-1:-1:-1;;;17149:2:1;17134:18;;17127:44;17203:3;17188:19;;16977:236::o;17218:402::-;17420:2;17402:21;;;17459:2;17439:18;;;17432:30;17498:34;17493:2;17478:18;;17471:62;-1:-1:-1;;;17564:2:1;17549:18;;17542:36;17610:3;17595:19;;17392:228::o;17625:355::-;17827:2;17809:21;;;17866:2;17846:18;;;17839:30;17905:33;17900:2;17885:18;;17878:61;17971:2;17956:18;;17799:181::o;17985:411::-;18187:2;18169:21;;;18226:2;18206:18;;;18199:30;18265:34;18260:2;18245:18;;18238:62;-1:-1:-1;;;18331:2:1;18316:18;;18309:45;18386:3;18371:19;;18159:237::o;18401:409::-;18603:2;18585:21;;;18642:2;18622:18;;;18615:30;18681:34;18676:2;18661:18;;18654:62;-1:-1:-1;;;18747:2:1;18732:18;;18725:43;18800:3;18785:19;;18575:235::o;18815:398::-;19017:2;18999:21;;;19056:2;19036:18;;;19029:30;19095:34;19090:2;19075:18;;19068:62;-1:-1:-1;;;19161:2:1;19146:18;;19139:32;19203:3;19188:19;;18989:224::o;19218:360::-;19448:13;;-1:-1:-1;;;;;19444:39:1;19426:58;;19544:4;19532:17;;;19526:24;19552:18;19522:49;19500:20;;;19493:79;;;;19414:2;19399:18;;19381:197::o;19583:177::-;19729:25;;;19717:2;19702:18;;19684:76::o;19765:253::-;;-1:-1:-1;;;;;19894:2:1;19891:1;19887:10;19924:2;19921:1;19917:10;19955:3;19951:2;19947:12;19942:3;19939:21;19936:2;;;19963:18;;:::i;20023:128::-;;20094:1;20090:6;20087:1;20084:13;20081:2;;;20100:18;;:::i;:::-;-1:-1:-1;20136:9:1;;20071:80::o;20156:120::-;;20222:1;20212:2;;20227:18;;:::i;:::-;-1:-1:-1;20261:9:1;;20202:74::o;20281:168::-;;20387:1;20383;20379:6;20375:14;20372:1;20369:21;20364:1;20357:9;20350:17;20346:45;20343:2;;;20394:18;;:::i;:::-;-1:-1:-1;20434:9:1;;20333:116::o;20454:246::-;;-1:-1:-1;;;;;20607:10:1;;;;20577;;20629:12;;;20626:2;;;20644:18;;:::i;:::-;20681:13;;20503:197;-1:-1:-1;;;20503:197:1:o;20705:125::-;;20773:1;20770;20767:8;20764:2;;;20778:18;;:::i;:::-;-1:-1:-1;20815:9:1;;20754:76::o;20835:258::-;20907:1;20917:113;20931:6;20928:1;20925:13;20917:113;;;21007:11;;;21001:18;20988:11;;;20981:39;20953:2;20946:10;20917:113;;;21048:6;21045:1;21042:13;21039:2;;;-1:-1:-1;;21083:1:1;21065:16;;21058:27;20888:205::o;21098:136::-;;21165:5;21155:2;;21174:18;;:::i;:::-;-1:-1:-1;;;21210:18:1;;21145:89::o;21239:380::-;21324:1;21314:12;;21371:1;21361:12;;;21382:2;;21436:4;21428:6;21424:17;21414:27;;21382:2;21489;21481:6;21478:14;21458:18;21455:38;21452:2;;;21535:10;21530:3;21526:20;21523:1;21516:31;21570:4;21567:1;21560:15;21598:4;21595:1;21588:15;21452:2;;21294:325;;;:::o;21624:135::-;;-1:-1:-1;;21684:17:1;;21681:2;;;21704:18;;:::i;:::-;-1:-1:-1;21751:1:1;21740:13;;21671:88::o;21764:112::-;;21822:1;21812:2;;21827:18;;:::i;:::-;-1:-1:-1;21861:9:1;;21802:74::o;21881:127::-;21942:10;21937:3;21933:20;21930:1;21923:31;21973:4;21970:1;21963:15;21997:4;21994:1;21987:15;22013:127;22074:10;22069:3;22065:20;22062:1;22055:31;22105:4;22102:1;22095:15;22129:4;22126:1;22119:15;22145:127;22206:10;22201:3;22197:20;22194:1;22187:31;22237:4;22234:1;22227:15;22261:4;22258:1;22251:15;22277:133;-1:-1:-1;;;;;;22353:32:1;;22343:43;;22333:2;;22400:1;22397;22390:12
Swarm Source
ipfs://b9991959fbc405910bed78a60778be7a6435dd67e9a30fc1a3751aa998c4d3b9
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.