Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
10,000 BABH
Holders
1,167
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
10 BABHLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
BoredApeBeachHut
Compiler Version
v0.8.1+commit.df193b15
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "./ERC721A.sol"; // ______ ______ ______ ______ _____ ______ ______ ______ // /\ == \/\ __ \/\ == \/\ ___\/\ __-. /\ __ \/\ == /\ ___\ // \ \ __<\ \ \/\ \ \ __<\ \ __\\ \ \/\ \ \ \ __ \ \ _-\ \ __\ // \ \_____\ \_____\ \_\ \_\ \_____\ \____- \ \_\ \_\ \_\ \ \_____\ // \/_____/\/_____/\/_/ /_/\/_____/\/____/ \/_/\/_/\/_/ \/_____/ // ______ ______ ______ ______ __ __ __ __ __ __ ______ // /\ == \/\ ___\/\ __ \/\ ___\/\ \_\ \ /\ \_\ \/\ \/\ \/\__ _\ // \ \ __<\ \ __\\ \ __ \ \ \___\ \ __ \ \ \ __ \ \ \_\ \/_/\ \/ // \ \_____\ \_____\ \_\ \_\ \_____\ \_\ \_\ \ \_\ \_\ \_____\ \ \_\ // \/_____/\/_____/\/_/\/_/\/_____/\/_/\/_/ \/_/\/_/\/_____/ \/_/ contract BoredApeBeachHut is Ownable, ERC721A, ReentrancyGuard { string private _baseTokenURI; uint256 public maxWalletQty = 10; bool public paused = true; uint256 public immutable maxMintQty; uint256 public immutable amountForTeam; constructor( uint256 maxBatchSize_, uint256 collectionSize_, uint256 amountForTeam_ ) ERC721A("Bored Ape Beach Hut", "BABH", maxBatchSize_, collectionSize_) { maxMintQty = maxBatchSize_; amountForTeam = amountForTeam_; } function freeMint(uint256 amount) external nonReentrant { require(paused == false, "Minting is paused"); require(amount <= maxMintQty, "Mint quantity is too high"); require(balanceOf(msg.sender) + amount <= maxWalletQty, "You have hit the max tokens per wallet"); require(totalSupply() + amount <= collectionSize, "All Minted"); require(tx.origin == msg.sender, "The caller is another contract"); _safeMint(msg.sender, amount); } //============================================================================= // Admin Functions //============================================================================= function teamMint() external onlyOwner { require(paused == true, "Public minting must be paused"); require(totalSupply() < collectionSize, "All Minted, cannot team mint"); require(amountForTeam % maxBatchSize == 0, "You can only mint a multiple of the maxBatchSize"); uint256 numChunks = amountForTeam / maxBatchSize; for (uint256 i = 0; i < numChunks; i++) { _safeMint(msg.sender, maxBatchSize); } } function _baseURI() internal view virtual override returns (string memory) { return _baseTokenURI; } function setBaseURI(string calldata baseURI) external onlyOwner { _baseTokenURI = baseURI; } function setMaxWalletQty(uint256 qty) public onlyOwner { maxWalletQty = qty; } function togglePaused() public onlyOwner { paused = !paused; } 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); } //============================================================================= // Override Functions //============================================================================= function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { return string(abi.encodePacked(super.tokenURI(tokenId),".json")); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making 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; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "@openzeppelin/contracts/token/ERC721/IERC721.sol"; import "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol"; import "@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol"; import "@openzeppelin/contracts/utils/Address.sol"; import "@openzeppelin/contracts/utils/Context.sol"; import "@openzeppelin/contracts/utils/Strings.sol"; import "@openzeppelin/contracts/utils/introspection/ERC165.sol"; /** * @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 {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
{ "optimizer": { "enabled": true, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "abi" ] } } }
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":"amountForTeam_","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":"amountForTeam","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":"amount","type":"uint256"}],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"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":"maxMintQty","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletQty","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":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"qty","type":"uint256"}],"name":"setMaxWalletQty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"setOwnersExplicit","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":[],"name":"teamMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePaused","outputs":[],"stateMutability":"nonpayable","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"}]
Contract Creation Code
61010060405260006001818155600891909155600a600b55600c805460ff191690911790553480156200003157600080fd5b5060405162002d4038038062002d40833981016040819052620000549162000258565b6040518060400160405280601381526020017f426f726564204170652042656163682048757400000000000000000000000000815250604051806040016040528060048152602001630848284960e31b8152508484620000c3620000bd6200015e60201b60201c565b62000162565b60008111620000ef5760405162461bcd60e51b8152600401620000e690620002cd565b60405180910390fd5b60008211620001125760405162461bcd60e51b8152600401620000e69062000286565b835162000127906002906020870190620001b2565b5082516200013d906003906020860190620001b2565b5060a0919091526080525050600160095560c0929092525060e05262000358565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b828054620001c0906200031b565b90600052602060002090601f016020900481019282620001e457600085556200022f565b82601f10620001ff57805160ff19168380011785556200022f565b828001600101855582156200022f579182015b828111156200022f57825182559160200191906001019062000212565b506200023d92915062000241565b5090565b5b808211156200023d576000815560010162000242565b6000806000606084860312156200026d578283fd5b8351925060208401519150604084015190509250925092565b60208082526027908201527f455243373231413a206d61782062617463682073697a65206d757374206265206040820152666e6f6e7a65726f60c81b606082015260800190565b6020808252602e908201527f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060408201526d6e6f6e7a65726f20737570706c7960901b606082015260800190565b6002810460018216806200033057607f821691505b602082108114156200035257634e487b7160e01b600052602260045260246000fd5b50919050565b60805160a05160c05160e051612961620003df60003960008181610b7201528181610ce90152610d520152600081816107d10152610985015260008181610cc801528181610d3101528181610d89015281816113f40152818161141e01526117840152600081816109fa01528181610c7f0152818161127901526112ab01526129616000f3fe608060405234801561001057600080fd5b50600436106101f05760003560e01c8063715018a61161010f578063b5b20779116100a2578063d7224ba011610071578063d7224ba0146103dc578063dc33e681146103e4578063e985e9c5146103f7578063f2fde38b1461040a576101f0565b8063b5b207791461039b578063b88d4fde146103ae578063ba7a86b8146103c1578063c87b56dd146103c9576101f0565b806395d89b41116100de57806395d89b4114610370578063a22cb46514610378578063a69b1cd51461038b578063acb695b014610393576101f0565b8063715018a61461032d5780637c928fe9146103355780638da5cb5b146103485780639231ab2a14610350576101f0565b806336566f061161018757806355f804b31161015657806355f804b3146102ec5780635c975abb146102ff5780636352211e1461030757806370a082311461031a576101f0565b806336566f06146102b65780633688236d146102be57806342842e0e146102c65780634f6ccce7146102d9576101f0565b806318160ddd116101c357806318160ddd1461026857806323b872dd1461027d5780632d20fb60146102905780632f745c59146102a3576101f0565b806301ffc9a7146101f557806306fdde031461021e578063081812fc14610233578063095ea7b314610253575b600080fd5b610208610203366004611d62565b61041d565b6040516102159190611ef4565b60405180910390f35b610226610480565b6040516102159190611eff565b610246610241366004611e07565b610512565b6040516102159190611ea3565b610266610261366004611d39565b61055e565b005b6102706105f7565b6040516102159190612790565b61026661028b366004611bef565b6105fd565b61026661029e366004611e07565b610608565b6102706102b1366004611d39565b610680565b61026661077c565b6102706107cf565b6102666102d4366004611bef565b6107f3565b6102706102e7366004611e07565b61080e565b6102666102fa366004611d9a565b61083a565b610208610885565b610246610315366004611e07565b61088e565b610270610328366004611ba3565b6108a0565b6102666108ed565b610266610343366004611e07565b610938565b610246610a73565b61036361035e366004611e07565b610a82565b6040516102159190612766565b610226610a93565b610266610386366004611cff565b610aa2565b610270610b70565b610270610b94565b6102666103a9366004611e07565b610b9a565b6102666103bc366004611c2a565b610bde565b610266610c17565b6102266103d7366004611e07565b610dc3565b610270610df4565b6102706103f2366004611ba3565b610dfa565b610208610405366004611bbd565b610e05565b610266610418366004611ba3565b610e33565b60006001600160e01b031982166380ac58cd60e01b148061044e57506001600160e01b03198216635b5e139f60e01b145b8061046957506001600160e01b0319821663780e9d6360e01b145b80610478575061047882610ea4565b90505b919050565b60606002805461048f90612869565b80601f01602080910402602001604051908101604052809291908181526020018280546104bb90612869565b80156105085780601f106104dd57610100808354040283529160200191610508565b820191906000526020600020905b8154815290600101906020018083116104eb57829003601f168201915b5050505050905090565b600061051d82610ebd565b6105425760405162461bcd60e51b8152600401610539906126d7565b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006105698261088e565b9050806001600160a01b0316836001600160a01b0316141561059d5760405162461bcd60e51b8152600401610539906123c7565b806001600160a01b03166105af610ec4565b6001600160a01b031614806105cb57506105cb81610405610ec4565b6105e75760405162461bcd60e51b8152600401610539906120f4565b6105f2838383610ec8565b505050565b60015490565b6105f2838383610f24565b610610610ec4565b6001600160a01b0316610621610a73565b6001600160a01b0316146106475760405162461bcd60e51b815260040161053990612274565b6002600954141561066a5760405162461bcd60e51b81526004016105399061261a565b600260095561067881611238565b506001600955565b600061068b836108a0565b82106106a95760405162461bcd60e51b815260040161053990611f12565b60006106b36105f7565b905060008060005b8381101561075d576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561070e57805192505b876001600160a01b0316836001600160a01b0316141561074a578684141561073c5750935061077692505050565b83610746816128a4565b9450505b5080610755816128a4565b9150506106bb565b5060405162461bcd60e51b815260040161053990612586565b92915050565b610784610ec4565b6001600160a01b0316610795610a73565b6001600160a01b0316146107bb5760405162461bcd60e51b815260040161053990612274565b600c805460ff19811660ff90911615179055565b7f000000000000000000000000000000000000000000000000000000000000000081565b6105f283838360405180602001604052806000815250610bde565b60006108186105f7565b82106108365760405162461bcd60e51b815260040161053990611fe4565b5090565b610842610ec4565b6001600160a01b0316610853610a73565b6001600160a01b0316146108795760405162461bcd60e51b815260040161053990612274565b6105f2600a8383611ae0565b600c5460ff1681565b6000610899826113c3565b5192915050565b60006001600160a01b0382166108c85760405162461bcd60e51b815260040161053990612188565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b6108f5610ec4565b6001600160a01b0316610906610a73565b6001600160a01b03161461092c5760405162461bcd60e51b815260040161053990612274565b61093660006114d6565b565b6002600954141561095b5760405162461bcd60e51b81526004016105399061261a565b6002600955600c5460ff16156109835760405162461bcd60e51b815260040161053990612409565b7f00000000000000000000000000000000000000000000000000000000000000008111156109c35760405162461bcd60e51b81526004016105399061254f565b600b54816109d0336108a0565b6109da91906127bb565b11156109f85760405162461bcd60e51b8152600401610539906122a9565b7f000000000000000000000000000000000000000000000000000000000000000081610a226105f7565b610a2c91906127bb565b1115610a4a5760405162461bcd60e51b8152600401610539906121d3565b323314610a695760405162461bcd60e51b8152600401610539906120bd565b6106783382611526565b6000546001600160a01b031690565b610a8a611b60565b610478826113c3565b60606003805461048f90612869565b610aaa610ec4565b6001600160a01b0316826001600160a01b03161415610adb5760405162461bcd60e51b81526004016105399061233e565b8060076000610ae8610ec4565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610b2c610ec4565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610b649190611ef4565b60405180910390a35050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600b5481565b610ba2610ec4565b6001600160a01b0316610bb3610a73565b6001600160a01b031614610bd95760405162461bcd60e51b815260040161053990612274565b600b55565b610be9848484610f24565b610bf584848484611540565b610c115760405162461bcd60e51b815260040161053990612434565b50505050565b610c1f610ec4565b6001600160a01b0316610c30610a73565b6001600160a01b031614610c565760405162461bcd60e51b815260040161053990612274565b600c5460ff161515600114610c7d5760405162461bcd60e51b8152600401610539906121f7565b7f0000000000000000000000000000000000000000000000000000000000000000610ca66105f7565b10610cc35760405162461bcd60e51b8152600401610539906126a0565b610d0d7f00000000000000000000000000000000000000000000000000000000000000007f00000000000000000000000000000000000000000000000000000000000000006128bf565b15610d2a5760405162461bcd60e51b8152600401610539906124ff565b6000610d767f00000000000000000000000000000000000000000000000000000000000000007f00000000000000000000000000000000000000000000000000000000000000006127d3565b905060005b81811015610dbf57610dad337f0000000000000000000000000000000000000000000000000000000000000000611526565b80610db7816128a4565b915050610d7b565b5050565b6060610dce8261165c565b604051602001610dde9190611e7a565b6040516020818303038152906040529050919050565b60085481565b6000610478826116df565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b610e3b610ec4565b6001600160a01b0316610e4c610a73565b6001600160a01b031614610e725760405162461bcd60e51b815260040161053990612274565b6001600160a01b038116610e985760405162461bcd60e51b815260040161053990611f54565b610ea1816114d6565b50565b6001600160e01b031981166301ffc9a760e01b14919050565b6001541190565b3390565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610f2f826113c3565b9050600081600001516001600160a01b0316610f49610ec4565b6001600160a01b03161480610f7e5750610f61610ec4565b6001600160a01b0316610f7384610512565b6001600160a01b0316145b80610f9257508151610f9290610405610ec4565b905080610fb15760405162461bcd60e51b815260040161053990612375565b846001600160a01b031682600001516001600160a01b031614610fe65760405162461bcd60e51b81526004016105399061222e565b6001600160a01b03841661100c5760405162461bcd60e51b815260040161053990612027565b6110198585856001610c11565b6110296000848460000151610ec8565b6001600160a01b038516600090815260056020526040812080546001929061105b9084906001600160801b03166127e7565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b038616600090815260056020526040812080546001945090926110a791859116612799565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526004909152948520935184549151909216600160a01b0267ffffffffffffffff60a01b19929093166001600160a01b0319909116171617905561113d8460016127bb565b6000818152600460205260409020549091506001600160a01b03166111e25761116581610ebd565b156111e25760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff90811682850190815260008781526004909352949091209251835494516001600160a01b031990951692169190911767ffffffffffffffff60a01b1916600160a01b93909116929092029190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46112308686866001610c11565b505050505050565b600854816112585760405162461bcd60e51b815260040161053990612151565b6000600161126684846127bb565b611270919061280f565b905061129d60017f000000000000000000000000000000000000000000000000000000000000000061280f565b8111156112d2576112cf60017f000000000000000000000000000000000000000000000000000000000000000061280f565b90505b6112db81610ebd565b6112f75760405162461bcd60e51b8152600401610539906125d4565b815b8181116113af576000818152600460205260409020546001600160a01b031661139d576000611327826113c3565b60408051808201825282516001600160a01b03908116825260209384015167ffffffffffffffff90811685840190815260008881526004909652939094209151825493516001600160a01b031990941691161767ffffffffffffffff60a01b1916600160a01b9290931691909102919091179055505b806113a7816128a4565b9150506112f9565b506113bb8160016127bb565b600855505050565b6113cb611b60565b6113d482610ebd565b6113f05760405162461bcd60e51b815260040161053990611f9a565b60007f00000000000000000000000000000000000000000000000000000000000000008310611451576114437f00000000000000000000000000000000000000000000000000000000000000008461280f565b61144e9060016127bb565b90505b825b8181106114bd576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156114aa57925061047b915050565b50806114b581612852565b915050611453565b5060405162461bcd60e51b815260040161053990612651565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b610dbf828260405180602001604052806000815250611733565b6000611554846001600160a01b03166119a7565b1561165057836001600160a01b031663150b7a02611570610ec4565b8786866040518563ffffffff1660e01b81526004016115929493929190611eb7565b602060405180830381600087803b1580156115ac57600080fd5b505af19250505080156115dc575060408051601f3d908101601f191682019092526115d991810190611d7e565b60015b611636573d80801561160a576040519150601f19603f3d011682016040523d82523d6000602084013e61160f565b606091505b50805161162e5760405162461bcd60e51b815260040161053990612434565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611654565b5060015b949350505050565b606061166782610ebd565b6116835760405162461bcd60e51b8152600401610539906122ef565b600061168d6119b6565b905060008151116116ad57604051806020016040528060008152506116d8565b806116b7846119c5565b6040516020016116c8929190611e4b565b6040516020818303038152906040525b9392505050565b60006001600160a01b0382166117075760405162461bcd60e51b81526004016105399061206c565b506001600160a01b0316600090815260056020526040902054600160801b90046001600160801b031690565b6001546001600160a01b03841661175c5760405162461bcd60e51b8152600401610539906124be565b61176581610ebd565b156117825760405162461bcd60e51b815260040161053990612487565b7f00000000000000000000000000000000000000000000000000000000000000008311156117c25760405162461bcd60e51b815260040161053990612724565b6117cf6000858386610c11565b6001600160a01b0384166000908152600560209081526040918290208251808401845290546001600160801b038082168352600160801b909104169181019190915281518083019092528051909190819061182b908790612799565b6001600160801b031681526020018583602001516118499190612799565b6001600160801b039081169091526001600160a01b03808816600081815260056020908152604080832087518154988401518816600160801b029088166fffffffffffffffffffffffffffffffff1990991698909817909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526004909552948120915182549451909516600160a01b0267ffffffffffffffff60a01b19959093166001600160a01b031990941693909317939093161790915582905b858110156119945760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46119586000888488611540565b6119745760405162461bcd60e51b815260040161053990612434565b8161197e816128a4565b925050808061198c906128a4565b91505061190b565b5060018190556112306000878588610c11565b6001600160a01b03163b151590565b6060600a805461048f90612869565b6060816119ea57506040805180820190915260018152600360fc1b602082015261047b565b8160005b8115611a1457806119fe816128a4565b9150611a0d9050600a836127d3565b91506119ee565b60008167ffffffffffffffff811115611a3d57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611a67576020820181803683370190505b5090505b841561165457611a7c60018361280f565b9150611a89600a866128bf565b611a949060306127bb565b60f81b818381518110611ab757634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611ad9600a866127d3565b9450611a6b565b828054611aec90612869565b90600052602060002090601f016020900481019282611b0e5760008555611b54565b82601f10611b275782800160ff19823516178555611b54565b82800160010185558215611b54579182015b82811115611b54578235825591602001919060010190611b39565b50610836929150611b77565b604080518082019091526000808252602082015290565b5b808211156108365760008155600101611b78565b80356001600160a01b038116811461047b57600080fd5b600060208284031215611bb4578081fd5b6116d882611b8c565b60008060408385031215611bcf578081fd5b611bd883611b8c565b9150611be660208401611b8c565b90509250929050565b600080600060608486031215611c03578081fd5b611c0c84611b8c565b9250611c1a60208501611b8c565b9150604084013590509250925092565b60008060008060808587031215611c3f578081fd5b611c4885611b8c565b9350611c5660208601611b8c565b925060408501359150606085013567ffffffffffffffff80821115611c79578283fd5b818701915087601f830112611c8c578283fd5b813581811115611c9e57611c9e6128ff565b604051601f8201601f19908116603f01168101908382118183101715611cc657611cc66128ff565b816040528281528a6020848701011115611cde578586fd5b82602086016020830137918201602001949094529598949750929550505050565b60008060408385031215611d11578182fd5b611d1a83611b8c565b915060208301358015158114611d2e578182fd5b809150509250929050565b60008060408385031215611d4b578182fd5b611d5483611b8c565b946020939093013593505050565b600060208284031215611d73578081fd5b81356116d881612915565b600060208284031215611d8f578081fd5b81516116d881612915565b60008060208385031215611dac578182fd5b823567ffffffffffffffff80821115611dc3578384fd5b818501915085601f830112611dd6578384fd5b813581811115611de4578485fd5b866020828501011115611df5578485fd5b60209290920196919550909350505050565b600060208284031215611e18578081fd5b5035919050565b60008151808452611e37816020860160208601612826565b601f01601f19169290920160200192915050565b60008351611e5d818460208801612826565b835190830190611e71818360208801612826565b01949350505050565b60008251611e8c818460208701612826565b64173539b7b760d91b920191825250600501919050565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611eea90830184611e1f565b9695505050505050565b901515815260200190565b6000602082526116d86020830184611e1f565b60208082526022908201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252602a908201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736040820152693a32b73a103a37b5b2b760b11b606082015260800190565b60208082526023908201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756040820152626e647360e81b606082015260800190565b60208082526025908201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526031908201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260408201527020746865207a65726f206164647265737360781b606082015260800190565b6020808252601e908201527f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000604082015260600190565b60208082526039908201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60408201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606082015260800190565b60208082526018908201527f7175616e74697479206d757374206265206e6f6e7a65726f0000000000000000604082015260600190565b6020808252602b908201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60408201526a65726f206164647265737360a81b606082015260800190565b6020808252600a9082015269105b1b08135a5b9d195960b21b604082015260600190565b6020808252601d908201527f5075626c6963206d696e74696e67206d75737420626520706175736564000000604082015260600190565b60208082526026908201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746040820152651037bbb732b960d11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526026908201527f596f7520686176652068697420746865206d617820746f6b656e7320706572206040820152651dd85b1b195d60d21b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b6020808252601a908201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604082015260600190565b60208082526032908201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206040820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606082015260800190565b60208082526022908201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60408201526132b960f11b606082015260800190565b602080825260119082015270135a5b9d1a5b99c81a5cc81c185d5cd959607a1b604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b6020808252601d908201527f455243373231413a20746f6b656e20616c7265616479206d696e746564000000604082015260600190565b60208082526021908201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526030908201527f596f752063616e206f6e6c79206d696e742061206d756c7469706c65206f662060408201526f746865206d6178426174636853697a6560801b606082015260800190565b60208082526019908201527f4d696e74207175616e7469747920697320746f6f206869676800000000000000604082015260600190565b6020808252602e908201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060408201526d0deeedccae440c4f240d2dcc8caf60931b606082015260800190565b60208082526026908201527f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360408201526506c65616e75760d41b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b6020808252602f908201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560408201526e1037bbb732b91037b3103a37b5b2b760891b606082015260800190565b6020808252601c908201527f416c6c204d696e7465642c2063616e6e6f74207465616d206d696e7400000000604082015260600190565b6020808252602d908201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560408201526c3c34b9ba32b73a103a37b5b2b760991b606082015260800190565b60208082526022908201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696040820152610ced60f31b606082015260800190565b81516001600160a01b0316815260209182015167ffffffffffffffff169181019190915260400190565b90815260200190565b60006001600160801b03808316818516808303821115611e7157611e716128d3565b600082198211156127ce576127ce6128d3565b500190565b6000826127e2576127e26128e9565b500490565b60006001600160801b0383811690831681811015612807576128076128d3565b039392505050565b600082821015612821576128216128d3565b500390565b60005b83811015612841578181015183820152602001612829565b83811115610c115750506000910152565b600081612861576128616128d3565b506000190190565b60028104600182168061287d57607f821691505b6020821081141561289e57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156128b8576128b86128d3565b5060010190565b6000826128ce576128ce6128e9565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610ea157600080fdfea2646970667358221220304c6957ab93cc5dd98c084acde65fc83656921e95ba06e2eecd3dd13a682c5d64736f6c63430008010033000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000271000000000000000000000000000000000000000000000000000000000000003e8
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101f05760003560e01c8063715018a61161010f578063b5b20779116100a2578063d7224ba011610071578063d7224ba0146103dc578063dc33e681146103e4578063e985e9c5146103f7578063f2fde38b1461040a576101f0565b8063b5b207791461039b578063b88d4fde146103ae578063ba7a86b8146103c1578063c87b56dd146103c9576101f0565b806395d89b41116100de57806395d89b4114610370578063a22cb46514610378578063a69b1cd51461038b578063acb695b014610393576101f0565b8063715018a61461032d5780637c928fe9146103355780638da5cb5b146103485780639231ab2a14610350576101f0565b806336566f061161018757806355f804b31161015657806355f804b3146102ec5780635c975abb146102ff5780636352211e1461030757806370a082311461031a576101f0565b806336566f06146102b65780633688236d146102be57806342842e0e146102c65780634f6ccce7146102d9576101f0565b806318160ddd116101c357806318160ddd1461026857806323b872dd1461027d5780632d20fb60146102905780632f745c59146102a3576101f0565b806301ffc9a7146101f557806306fdde031461021e578063081812fc14610233578063095ea7b314610253575b600080fd5b610208610203366004611d62565b61041d565b6040516102159190611ef4565b60405180910390f35b610226610480565b6040516102159190611eff565b610246610241366004611e07565b610512565b6040516102159190611ea3565b610266610261366004611d39565b61055e565b005b6102706105f7565b6040516102159190612790565b61026661028b366004611bef565b6105fd565b61026661029e366004611e07565b610608565b6102706102b1366004611d39565b610680565b61026661077c565b6102706107cf565b6102666102d4366004611bef565b6107f3565b6102706102e7366004611e07565b61080e565b6102666102fa366004611d9a565b61083a565b610208610885565b610246610315366004611e07565b61088e565b610270610328366004611ba3565b6108a0565b6102666108ed565b610266610343366004611e07565b610938565b610246610a73565b61036361035e366004611e07565b610a82565b6040516102159190612766565b610226610a93565b610266610386366004611cff565b610aa2565b610270610b70565b610270610b94565b6102666103a9366004611e07565b610b9a565b6102666103bc366004611c2a565b610bde565b610266610c17565b6102266103d7366004611e07565b610dc3565b610270610df4565b6102706103f2366004611ba3565b610dfa565b610208610405366004611bbd565b610e05565b610266610418366004611ba3565b610e33565b60006001600160e01b031982166380ac58cd60e01b148061044e57506001600160e01b03198216635b5e139f60e01b145b8061046957506001600160e01b0319821663780e9d6360e01b145b80610478575061047882610ea4565b90505b919050565b60606002805461048f90612869565b80601f01602080910402602001604051908101604052809291908181526020018280546104bb90612869565b80156105085780601f106104dd57610100808354040283529160200191610508565b820191906000526020600020905b8154815290600101906020018083116104eb57829003601f168201915b5050505050905090565b600061051d82610ebd565b6105425760405162461bcd60e51b8152600401610539906126d7565b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006105698261088e565b9050806001600160a01b0316836001600160a01b0316141561059d5760405162461bcd60e51b8152600401610539906123c7565b806001600160a01b03166105af610ec4565b6001600160a01b031614806105cb57506105cb81610405610ec4565b6105e75760405162461bcd60e51b8152600401610539906120f4565b6105f2838383610ec8565b505050565b60015490565b6105f2838383610f24565b610610610ec4565b6001600160a01b0316610621610a73565b6001600160a01b0316146106475760405162461bcd60e51b815260040161053990612274565b6002600954141561066a5760405162461bcd60e51b81526004016105399061261a565b600260095561067881611238565b506001600955565b600061068b836108a0565b82106106a95760405162461bcd60e51b815260040161053990611f12565b60006106b36105f7565b905060008060005b8381101561075d576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561070e57805192505b876001600160a01b0316836001600160a01b0316141561074a578684141561073c5750935061077692505050565b83610746816128a4565b9450505b5080610755816128a4565b9150506106bb565b5060405162461bcd60e51b815260040161053990612586565b92915050565b610784610ec4565b6001600160a01b0316610795610a73565b6001600160a01b0316146107bb5760405162461bcd60e51b815260040161053990612274565b600c805460ff19811660ff90911615179055565b7f000000000000000000000000000000000000000000000000000000000000000a81565b6105f283838360405180602001604052806000815250610bde565b60006108186105f7565b82106108365760405162461bcd60e51b815260040161053990611fe4565b5090565b610842610ec4565b6001600160a01b0316610853610a73565b6001600160a01b0316146108795760405162461bcd60e51b815260040161053990612274565b6105f2600a8383611ae0565b600c5460ff1681565b6000610899826113c3565b5192915050565b60006001600160a01b0382166108c85760405162461bcd60e51b815260040161053990612188565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b6108f5610ec4565b6001600160a01b0316610906610a73565b6001600160a01b03161461092c5760405162461bcd60e51b815260040161053990612274565b61093660006114d6565b565b6002600954141561095b5760405162461bcd60e51b81526004016105399061261a565b6002600955600c5460ff16156109835760405162461bcd60e51b815260040161053990612409565b7f000000000000000000000000000000000000000000000000000000000000000a8111156109c35760405162461bcd60e51b81526004016105399061254f565b600b54816109d0336108a0565b6109da91906127bb565b11156109f85760405162461bcd60e51b8152600401610539906122a9565b7f000000000000000000000000000000000000000000000000000000000000271081610a226105f7565b610a2c91906127bb565b1115610a4a5760405162461bcd60e51b8152600401610539906121d3565b323314610a695760405162461bcd60e51b8152600401610539906120bd565b6106783382611526565b6000546001600160a01b031690565b610a8a611b60565b610478826113c3565b60606003805461048f90612869565b610aaa610ec4565b6001600160a01b0316826001600160a01b03161415610adb5760405162461bcd60e51b81526004016105399061233e565b8060076000610ae8610ec4565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155610b2c610ec4565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610b649190611ef4565b60405180910390a35050565b7f00000000000000000000000000000000000000000000000000000000000003e881565b600b5481565b610ba2610ec4565b6001600160a01b0316610bb3610a73565b6001600160a01b031614610bd95760405162461bcd60e51b815260040161053990612274565b600b55565b610be9848484610f24565b610bf584848484611540565b610c115760405162461bcd60e51b815260040161053990612434565b50505050565b610c1f610ec4565b6001600160a01b0316610c30610a73565b6001600160a01b031614610c565760405162461bcd60e51b815260040161053990612274565b600c5460ff161515600114610c7d5760405162461bcd60e51b8152600401610539906121f7565b7f0000000000000000000000000000000000000000000000000000000000002710610ca66105f7565b10610cc35760405162461bcd60e51b8152600401610539906126a0565b610d0d7f000000000000000000000000000000000000000000000000000000000000000a7f00000000000000000000000000000000000000000000000000000000000003e86128bf565b15610d2a5760405162461bcd60e51b8152600401610539906124ff565b6000610d767f000000000000000000000000000000000000000000000000000000000000000a7f00000000000000000000000000000000000000000000000000000000000003e86127d3565b905060005b81811015610dbf57610dad337f000000000000000000000000000000000000000000000000000000000000000a611526565b80610db7816128a4565b915050610d7b565b5050565b6060610dce8261165c565b604051602001610dde9190611e7a565b6040516020818303038152906040529050919050565b60085481565b6000610478826116df565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b610e3b610ec4565b6001600160a01b0316610e4c610a73565b6001600160a01b031614610e725760405162461bcd60e51b815260040161053990612274565b6001600160a01b038116610e985760405162461bcd60e51b815260040161053990611f54565b610ea1816114d6565b50565b6001600160e01b031981166301ffc9a760e01b14919050565b6001541190565b3390565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000610f2f826113c3565b9050600081600001516001600160a01b0316610f49610ec4565b6001600160a01b03161480610f7e5750610f61610ec4565b6001600160a01b0316610f7384610512565b6001600160a01b0316145b80610f9257508151610f9290610405610ec4565b905080610fb15760405162461bcd60e51b815260040161053990612375565b846001600160a01b031682600001516001600160a01b031614610fe65760405162461bcd60e51b81526004016105399061222e565b6001600160a01b03841661100c5760405162461bcd60e51b815260040161053990612027565b6110198585856001610c11565b6110296000848460000151610ec8565b6001600160a01b038516600090815260056020526040812080546001929061105b9084906001600160801b03166127e7565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b038616600090815260056020526040812080546001945090926110a791859116612799565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526004909152948520935184549151909216600160a01b0267ffffffffffffffff60a01b19929093166001600160a01b0319909116171617905561113d8460016127bb565b6000818152600460205260409020549091506001600160a01b03166111e25761116581610ebd565b156111e25760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff90811682850190815260008781526004909352949091209251835494516001600160a01b031990951692169190911767ffffffffffffffff60a01b1916600160a01b93909116929092029190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46112308686866001610c11565b505050505050565b600854816112585760405162461bcd60e51b815260040161053990612151565b6000600161126684846127bb565b611270919061280f565b905061129d60017f000000000000000000000000000000000000000000000000000000000000271061280f565b8111156112d2576112cf60017f000000000000000000000000000000000000000000000000000000000000271061280f565b90505b6112db81610ebd565b6112f75760405162461bcd60e51b8152600401610539906125d4565b815b8181116113af576000818152600460205260409020546001600160a01b031661139d576000611327826113c3565b60408051808201825282516001600160a01b03908116825260209384015167ffffffffffffffff90811685840190815260008881526004909652939094209151825493516001600160a01b031990941691161767ffffffffffffffff60a01b1916600160a01b9290931691909102919091179055505b806113a7816128a4565b9150506112f9565b506113bb8160016127bb565b600855505050565b6113cb611b60565b6113d482610ebd565b6113f05760405162461bcd60e51b815260040161053990611f9a565b60007f000000000000000000000000000000000000000000000000000000000000000a8310611451576114437f000000000000000000000000000000000000000000000000000000000000000a8461280f565b61144e9060016127bb565b90505b825b8181106114bd576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156114aa57925061047b915050565b50806114b581612852565b915050611453565b5060405162461bcd60e51b815260040161053990612651565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b610dbf828260405180602001604052806000815250611733565b6000611554846001600160a01b03166119a7565b1561165057836001600160a01b031663150b7a02611570610ec4565b8786866040518563ffffffff1660e01b81526004016115929493929190611eb7565b602060405180830381600087803b1580156115ac57600080fd5b505af19250505080156115dc575060408051601f3d908101601f191682019092526115d991810190611d7e565b60015b611636573d80801561160a576040519150601f19603f3d011682016040523d82523d6000602084013e61160f565b606091505b50805161162e5760405162461bcd60e51b815260040161053990612434565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611654565b5060015b949350505050565b606061166782610ebd565b6116835760405162461bcd60e51b8152600401610539906122ef565b600061168d6119b6565b905060008151116116ad57604051806020016040528060008152506116d8565b806116b7846119c5565b6040516020016116c8929190611e4b565b6040516020818303038152906040525b9392505050565b60006001600160a01b0382166117075760405162461bcd60e51b81526004016105399061206c565b506001600160a01b0316600090815260056020526040902054600160801b90046001600160801b031690565b6001546001600160a01b03841661175c5760405162461bcd60e51b8152600401610539906124be565b61176581610ebd565b156117825760405162461bcd60e51b815260040161053990612487565b7f000000000000000000000000000000000000000000000000000000000000000a8311156117c25760405162461bcd60e51b815260040161053990612724565b6117cf6000858386610c11565b6001600160a01b0384166000908152600560209081526040918290208251808401845290546001600160801b038082168352600160801b909104169181019190915281518083019092528051909190819061182b908790612799565b6001600160801b031681526020018583602001516118499190612799565b6001600160801b039081169091526001600160a01b03808816600081815260056020908152604080832087518154988401518816600160801b029088166fffffffffffffffffffffffffffffffff1990991698909817909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526004909552948120915182549451909516600160a01b0267ffffffffffffffff60a01b19959093166001600160a01b031990941693909317939093161790915582905b858110156119945760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46119586000888488611540565b6119745760405162461bcd60e51b815260040161053990612434565b8161197e816128a4565b925050808061198c906128a4565b91505061190b565b5060018190556112306000878588610c11565b6001600160a01b03163b151590565b6060600a805461048f90612869565b6060816119ea57506040805180820190915260018152600360fc1b602082015261047b565b8160005b8115611a1457806119fe816128a4565b9150611a0d9050600a836127d3565b91506119ee565b60008167ffffffffffffffff811115611a3d57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611a67576020820181803683370190505b5090505b841561165457611a7c60018361280f565b9150611a89600a866128bf565b611a949060306127bb565b60f81b818381518110611ab757634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350611ad9600a866127d3565b9450611a6b565b828054611aec90612869565b90600052602060002090601f016020900481019282611b0e5760008555611b54565b82601f10611b275782800160ff19823516178555611b54565b82800160010185558215611b54579182015b82811115611b54578235825591602001919060010190611b39565b50610836929150611b77565b604080518082019091526000808252602082015290565b5b808211156108365760008155600101611b78565b80356001600160a01b038116811461047b57600080fd5b600060208284031215611bb4578081fd5b6116d882611b8c565b60008060408385031215611bcf578081fd5b611bd883611b8c565b9150611be660208401611b8c565b90509250929050565b600080600060608486031215611c03578081fd5b611c0c84611b8c565b9250611c1a60208501611b8c565b9150604084013590509250925092565b60008060008060808587031215611c3f578081fd5b611c4885611b8c565b9350611c5660208601611b8c565b925060408501359150606085013567ffffffffffffffff80821115611c79578283fd5b818701915087601f830112611c8c578283fd5b813581811115611c9e57611c9e6128ff565b604051601f8201601f19908116603f01168101908382118183101715611cc657611cc66128ff565b816040528281528a6020848701011115611cde578586fd5b82602086016020830137918201602001949094529598949750929550505050565b60008060408385031215611d11578182fd5b611d1a83611b8c565b915060208301358015158114611d2e578182fd5b809150509250929050565b60008060408385031215611d4b578182fd5b611d5483611b8c565b946020939093013593505050565b600060208284031215611d73578081fd5b81356116d881612915565b600060208284031215611d8f578081fd5b81516116d881612915565b60008060208385031215611dac578182fd5b823567ffffffffffffffff80821115611dc3578384fd5b818501915085601f830112611dd6578384fd5b813581811115611de4578485fd5b866020828501011115611df5578485fd5b60209290920196919550909350505050565b600060208284031215611e18578081fd5b5035919050565b60008151808452611e37816020860160208601612826565b601f01601f19169290920160200192915050565b60008351611e5d818460208801612826565b835190830190611e71818360208801612826565b01949350505050565b60008251611e8c818460208701612826565b64173539b7b760d91b920191825250600501919050565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090611eea90830184611e1f565b9695505050505050565b901515815260200190565b6000602082526116d86020830184611e1f565b60208082526022908201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252602a908201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736040820152693a32b73a103a37b5b2b760b11b606082015260800190565b60208082526023908201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756040820152626e647360e81b606082015260800190565b60208082526025908201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526031908201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260408201527020746865207a65726f206164647265737360781b606082015260800190565b6020808252601e908201527f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000604082015260600190565b60208082526039908201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60408201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606082015260800190565b60208082526018908201527f7175616e74697479206d757374206265206e6f6e7a65726f0000000000000000604082015260600190565b6020808252602b908201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60408201526a65726f206164647265737360a81b606082015260800190565b6020808252600a9082015269105b1b08135a5b9d195960b21b604082015260600190565b6020808252601d908201527f5075626c6963206d696e74696e67206d75737420626520706175736564000000604082015260600190565b60208082526026908201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746040820152651037bbb732b960d11b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526026908201527f596f7520686176652068697420746865206d617820746f6b656e7320706572206040820152651dd85b1b195d60d21b606082015260800190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b6020808252601a908201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604082015260600190565b60208082526032908201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206040820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606082015260800190565b60208082526022908201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60408201526132b960f11b606082015260800190565b602080825260119082015270135a5b9d1a5b99c81a5cc81c185d5cd959607a1b604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b6020808252601d908201527f455243373231413a20746f6b656e20616c7265616479206d696e746564000000604082015260600190565b60208082526021908201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526030908201527f596f752063616e206f6e6c79206d696e742061206d756c7469706c65206f662060408201526f746865206d6178426174636853697a6560801b606082015260800190565b60208082526019908201527f4d696e74207175616e7469747920697320746f6f206869676800000000000000604082015260600190565b6020808252602e908201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060408201526d0deeedccae440c4f240d2dcc8caf60931b606082015260800190565b60208082526026908201527f6e6f7420656e6f756768206d696e7465642079657420666f722074686973206360408201526506c65616e75760d41b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b6020808252602f908201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560408201526e1037bbb732b91037b3103a37b5b2b760891b606082015260800190565b6020808252601c908201527f416c6c204d696e7465642c2063616e6e6f74207465616d206d696e7400000000604082015260600190565b6020808252602d908201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560408201526c3c34b9ba32b73a103a37b5b2b760991b606082015260800190565b60208082526022908201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696040820152610ced60f31b606082015260800190565b81516001600160a01b0316815260209182015167ffffffffffffffff169181019190915260400190565b90815260200190565b60006001600160801b03808316818516808303821115611e7157611e716128d3565b600082198211156127ce576127ce6128d3565b500190565b6000826127e2576127e26128e9565b500490565b60006001600160801b0383811690831681811015612807576128076128d3565b039392505050565b600082821015612821576128216128d3565b500390565b60005b83811015612841578181015183820152602001612829565b83811115610c115750506000910152565b600081612861576128616128d3565b506000190190565b60028104600182168061287d57607f821691505b6020821081141561289e57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156128b8576128b86128d3565b5060010190565b6000826128ce576128ce6128e9565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610ea157600080fdfea2646970667358221220304c6957ab93cc5dd98c084acde65fc83656921e95ba06e2eecd3dd13a682c5d64736f6c63430008010033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000271000000000000000000000000000000000000000000000000000000000000003e8
-----Decoded View---------------
Arg [0] : maxBatchSize_ (uint256): 10
Arg [1] : collectionSize_ (uint256): 10000
Arg [2] : amountForTeam_ (uint256): 1000
-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [1] : 0000000000000000000000000000000000000000000000000000000000002710
Arg [2] : 00000000000000000000000000000000000000000000000000000000000003e8
Deployed Bytecode Sourcemap
1022:2872:11:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4114:358:12;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5778:92;;;:::i;:::-;;;;;;;:::i;7243:200::-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;6821:369::-;;;;;;:::i;:::-;;:::i;:::-;;2720:92;;;:::i;:::-;;;;;;;:::i;8061:136::-;;;;;;:::i;:::-;;:::i;3113:122:11:-;;;;;;:::i;:::-;;:::i;3334:721:12:-;;;;;;:::i;:::-;;:::i;3033:74:11:-;;;:::i;1194:35::-;;;:::i;8255:151:12:-;;;;;;:::i;:::-;;:::i;2876:174::-;;;;;;:::i;:::-;;:::i;2823:104:11:-;;;;;;:::i;:::-;;:::i;1163:25::-;;;:::i;5608:116:12:-;;;;;;:::i;:::-;;:::i;4523:208::-;;;;;;:::i;:::-;;:::i;1668:101:0:-;;;:::i;1554:482:11:-;;;;;;:::i;:::-;;:::i;1036:85:0:-;;;:::i;3358:161:11:-;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;5926:96:12:-;;;:::i;7502:269::-;;;;;;:::i;:::-;;:::i;1235:38:11:-;;;:::i;1125:32::-;;;:::i;2937:90::-;;;;;;:::i;:::-;;:::i;8464:300:12:-;;;;;;:::i;:::-;;:::i;2234:465:11:-;;;:::i;3724:168::-;;;;;;:::i;:::-;;:::i;12734:43:12:-;;;:::i;3241:111:11:-;;;;;;:::i;:::-;;:::i;7829:178:12:-;;;;;;:::i;:::-;;:::i;1918:198:0:-;;;;;;:::i;:::-;;:::i;4114:358:12:-;4236:4;-1:-1:-1;;;;;;4263:40:12;;-1:-1:-1;;;4263:40:12;;:98;;-1:-1:-1;;;;;;;4313:48:12;;-1:-1:-1;;;4313:48:12;4263:98;:158;;;-1:-1:-1;;;;;;;4371:50:12;;-1:-1:-1;;;4371:50:12;4263:158;:204;;;;4431:36;4455:11;4431:23;:36::i;:::-;4250:217;;4114:358;;;;:::o;5778:92::-;5832:13;5860:5;5853:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5778:92;:::o;7243:200::-;7311:7;7334:16;7342:7;7334;:16::i;:::-;7326:74;;;;-1:-1:-1;;;7326:74:12;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;7414:24:12;;;;:15;:24;;;;;;-1:-1:-1;;;;;7414:24:12;;7243:200::o;6821:369::-;6889:13;6905:24;6921:7;6905:15;:24::i;:::-;6889:40;;6949:5;-1:-1:-1;;;;;6943:11:12;:2;-1:-1:-1;;;;;6943:11:12;;;6935:58;;;;-1:-1:-1;;;6935:58:12;;;;;;;:::i;:::-;7031:5;-1:-1:-1;;;;;7015:21:12;:12;:10;:12::i;:::-;-1:-1:-1;;;;;7015:21:12;;:62;;;;7040:37;7057:5;7064:12;:10;:12::i;7040:37::-;7000:150;;;;-1:-1:-1;;;7000:150:12;;;;;;;:::i;:::-;7157:28;7166:2;7170:7;7179:5;7157:8;:28::i;:::-;6821:369;;;:::o;2720:92::-;2795:12;;2720:92;:::o;8061:136::-;8164:28;8174:4;8180:2;8184:7;8164:9;:28::i;3113:122:11:-;1259:12:0;:10;:12::i;:::-;-1:-1:-1;;;;;1248:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1248:23:0;;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;1744:1:1::1;2325:7;;:19;;2317:63;;;;-1:-1:-1::0;;;2317:63:1::1;;;;;;;:::i;:::-;1744:1;2455:7;:18:::0;3200:28:11::2;3219:8:::0;3200:18:::2;:28::i;:::-;-1:-1:-1::0;1701:1:1::1;2628:7;:22:::0;3113:122:11:o;3334:721:12:-;3439:7;3472:16;3482:5;3472:9;:16::i;:::-;3464:5;:24;3456:71;;;;-1:-1:-1;;;3456:71:12;;;;;;;:::i;:::-;3533:22;3558:13;:11;:13::i;:::-;3533:38;;3577:19;3606:25;3655:9;3650:339;3674:14;3670:1;:18;3650:339;;;3703:31;3737:14;;;:11;:14;;;;;;;;;3703:48;;;;;;;;;-1:-1:-1;;;;;3703:48:12;;;;;-1:-1:-1;;;3703:48:12;;;;;;;;;;;;3763:28;3759:87;;3823:14;;;-1:-1:-1;3759:87:12;3878:5;-1:-1:-1;;;;;3857:26:12;:17;-1:-1:-1;;;;;3857:26:12;;3853:130;;;3914:5;3899:11;:20;3895:57;;;-1:-1:-1;3940:1:12;-1:-1:-1;3933:8:12;;-1:-1:-1;;;3933:8:12;3895:57;3961:13;;;;:::i;:::-;;;;3853:130;-1:-1:-1;3690:3:12;;;;:::i;:::-;;;;3650:339;;;;3994:56;;-1:-1:-1;;;3994:56:12;;;;;;;:::i;3334:721::-;;;;;:::o;3033:74:11:-;1259:12:0;:10;:12::i;:::-;-1:-1:-1;;;;;1248:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1248:23:0;;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;3094:6:11::1;::::0;;-1:-1:-1;;3084:16:11;::::1;3094:6;::::0;;::::1;3093:7;3084:16;::::0;;3033:74::o;1194:35::-;;;:::o;8255:151:12:-;8362:39;8379:4;8385:2;8389:7;8362:39;;;;;;;;;;;;:16;:39::i;2876:174::-;2943:7;2974:13;:11;:13::i;:::-;2966:5;:21;2958:69;;;;-1:-1:-1;;;2958:69:12;;;;;;;:::i;:::-;-1:-1:-1;3040:5:12;2876:174::o;2823:104:11:-;1259:12:0;:10;:12::i;:::-;-1:-1:-1;;;;;1248:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1248:23:0;;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;2897:23:11::1;:13;2913:7:::0;;2897:23:::1;:::i;1163:25::-:0;;;;;;:::o;5608:116:12:-;5672:7;5694:20;5706:7;5694:11;:20::i;:::-;:25;;5608:116;-1:-1:-1;;5608:116:12:o;4523:208::-;4587:7;-1:-1:-1;;;;;4610:19:12;;4602:75;;;;-1:-1:-1;;;4602:75:12;;;;;;;:::i;:::-;-1:-1:-1;;;;;;4698:19:12;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;4698:27:12;;4523:208::o;1668:101:0:-;1259:12;:10;:12::i;:::-;-1:-1:-1;;;;;1248:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1248:23:0;;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;1732:30:::1;1759:1;1732:18;:30::i;:::-;1668:101::o:0;1554:482:11:-;1744:1:1;2325:7;;:19;;2317:63;;;;-1:-1:-1;;;2317:63:1;;;;;;;:::i;:::-;1744:1;2455:7;:18;1628:6:11::1;::::0;::::1;;:15;1620:45;;;;-1:-1:-1::0;;;1620:45:11::1;;;;;;;:::i;:::-;1693:10;1683:6;:20;;1675:58;;;;-1:-1:-1::0;;;1675:58:11::1;;;;;;;:::i;:::-;1785:12;;1775:6;1751:21;1761:10;1751:9;:21::i;:::-;:30;;;;:::i;:::-;:46;;1743:97;;;;-1:-1:-1::0;;;1743:97:11::1;;;;;;;:::i;:::-;1884:14;1874:6;1858:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:40;;1850:63;;;;-1:-1:-1::0;;;1850:63:11::1;;;;;;;:::i;:::-;1931:9;1944:10;1931:23;1923:66;;;;-1:-1:-1::0;;;1923:66:11::1;;;;;;;:::i;:::-;2000:29;2010:10;2022:6;2000:9;:29::i;1036:85:0:-:0;1082:7;1108:6;-1:-1:-1;;;;;1108:6:0;1036:85;:::o;3358:161:11:-;3448:21;;:::i;:::-;3492:20;3504:7;3492:11;:20::i;5926:96:12:-;5982:13;6010:7;6003:14;;;;;:::i;7502:269::-;7604:12;:10;:12::i;:::-;-1:-1:-1;;;;;7592:24:12;:8;-1:-1:-1;;;;;7592:24:12;;;7584:63;;;;-1:-1:-1;;;7584:63:12;;;;;;;:::i;:::-;7699:8;7654:18;:32;7673:12;:10;:12::i;:::-;-1:-1:-1;;;;;7654:32:12;;;;;;;;;;;;;;;;;-1:-1:-1;7654:32:12;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;7654:53:12;;;;;;;;;;;7733:12;:10;:12::i;:::-;-1:-1:-1;;;;;7718:48:12;;7757:8;7718:48;;;;;;:::i;:::-;;;;;;;;7502:269;;:::o;1235:38:11:-;;;:::o;1125:32::-;;;;:::o;2937:90::-;1259:12:0;:10;:12::i;:::-;-1:-1:-1;;;;;1248:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1248:23:0;;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;3002:12:11::1;:18:::0;2937:90::o;8464:300:12:-;8595:28;8605:4;8611:2;8615:7;8595:9;:28::i;:::-;8644:48;8667:4;8673:2;8677:7;8686:5;8644:22;:48::i;:::-;8629:130;;;;-1:-1:-1;;;8629:130:12;;;;;;;:::i;:::-;8464:300;;;;:::o;2234:465:11:-;1259:12:0;:10;:12::i;:::-;-1:-1:-1;;;;;1248:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1248:23:0;;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;2291:6:11::1;::::0;::::1;;:14;;:6:::0;:14:::1;2283:56;;;;-1:-1:-1::0;;;2283:56:11::1;;;;;;;:::i;:::-;2373:14;2357:13;:11;:13::i;:::-;:30;2349:71;;;;-1:-1:-1::0;;;2349:71:11::1;;;;;;;:::i;:::-;2438:28;2454:12;2438:13;:28;:::i;:::-;:33:::0;2430:94:::1;;;;-1:-1:-1::0;;;2430:94:11::1;;;;;;;:::i;:::-;2534:17;2554:28;2570:12;2554:13;:28;:::i;:::-;2534:48;;2598:9;2593:100;2617:9;2613:1;:13;2593:100;;;2647:35;2657:10;2669:12;2647:9;:35::i;:::-;2628:3:::0;::::1;::::0;::::1;:::i;:::-;;;;2593:100;;;;1318:1:0;2234:465:11:o:0;3724:168::-;3797:13;3852:23;3867:7;3852:14;:23::i;:::-;3835:49;;;;;;;;:::i;:::-;;;;;;;;;;;;;3821:64;;3724:168;;;:::o;12734:43:12:-;;;;:::o;3241:111:11:-;3299:7;3325:20;3339:5;3325:13;:20::i;7829:178:12:-;-1:-1:-1;;;;;7967:25:12;;;7946:4;7967:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;7829:178::o;1918:198:0:-;1259:12;:10;:12::i;:::-;-1:-1:-1;;;;;1248:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1248:23:0;;1240:68;;;;-1:-1:-1;;;1240:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;2006:22:0;::::1;1998:73;;;;-1:-1:-1::0;;;1998:73:0::1;;;;;;;:::i;:::-;2081:28;2100:8;2081:18;:28::i;:::-;1918:198:::0;:::o;829:155:9:-;-1:-1:-1;;;;;;937:40:9;;-1:-1:-1;;;937:40:9;829:155;;;:::o;8994:103:12:-;9080:12;;-1:-1:-1;9070:22:12;8994:103::o;640:96:7:-;719:10;640:96;:::o;12565:165:12:-;12657:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;12657:29:12;-1:-1:-1;;;;;12657:29:12;;;;;;;;;12697:28;;12657:24;;12697:28;;;;;;;12565:165;;;:::o;10982:1484::-;11074:35;11112:20;11124:7;11112:11;:20::i;:::-;11074:58;;11139:22;11181:13;:18;;;-1:-1:-1;;;;;11165:34:12;:12;:10;:12::i;:::-;-1:-1:-1;;;;;11165:34:12;;:80;;;;11233:12;:10;:12::i;:::-;-1:-1:-1;;;;;11209:36:12;:20;11221:7;11209:11;:20::i;:::-;-1:-1:-1;;;;;11209:36:12;;11165:80;:140;;;-1:-1:-1;11272:18:12;;11255:50;;11292:12;:10;:12::i;11255:50::-;11139:167;;11328:17;11313:98;;;;-1:-1:-1;;;11313:98:12;;;;;;;:::i;:::-;11455:4;-1:-1:-1;;;;;11433:26:12;:13;:18;;;-1:-1:-1;;;;;11433:26:12;;11418:95;;;;-1:-1:-1;;;11418:95:12;;;;;;;:::i;:::-;-1:-1:-1;;;;;11527:16:12;;11519:66;;;;-1:-1:-1;;;11519:66:12;;;;;;;:::i;:::-;11592:43;11614:4;11620:2;11624:7;11633:1;11592:21;:43::i;:::-;11689:49;11706:1;11710:7;11719:13;:18;;;11689:8;:49::i;:::-;-1:-1:-1;;;;;11745:18:12;;;;;;:12;:18;;;;;:31;;11775:1;;11745:18;:31;;11775:1;;-1:-1:-1;;;;;11745:31:12;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;11745:31:12;;;;;;;;;;;;;;;-1:-1:-1;;;;;11782:16:12;;-1:-1:-1;11782:16:12;;;:12;:16;;;;;:29;;-1:-1:-1;;;11782:16:12;;:29;;-1:-1:-1;;11782:29:12;;:::i;:::-;;;-1:-1:-1;;;;;11782:29:12;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;11840:43:12;;;;;;;;-1:-1:-1;;;;;11840:43:12;;;;;;11866:15;11840:43;;;;;;;;;-1:-1:-1;11817:20:12;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;11817:66:12;-1:-1:-1;;;;11817:66:12;;;;-1:-1:-1;;;;;;11817:66:12;;;;;;;;12129:11;11829:7;-1:-1:-1;12129:11:12;:::i;:::-;12191:1;12150:24;;;:11;:24;;;;;:29;12107:33;;-1:-1:-1;;;;;;12150:29:12;12146:229;;12207:20;12215:11;12207:7;:20::i;:::-;12203:166;;;12266:94;;;;;;;;12292:18;;-1:-1:-1;;;;;12266:94:12;;;;;;12322:28;;;;12266:94;;;;;;;;;;-1:-1:-1;12239:24:12;;;:11;:24;;;;;;;:121;;;;;;-1:-1:-1;;;;;;12239:121:12;;;;;;;;;-1:-1:-1;;;;12239:121:12;-1:-1:-1;;;12239:121:12;;;;;;;;;;;;;;12203:166;12405:7;12401:2;-1:-1:-1;;;;;12386:27:12;12395:4;-1:-1:-1;;;;;12386:27:12;;;;;;;;;;;12419:42;12440:4;12446:2;12450:7;12459:1;12419:20;:42::i;:::-;10982:1484;;;;;;:::o;12877:827::-;12966:24;;13004:12;12996:49;;;;-1:-1:-1;;;12996:49:12;;;;;;;:::i;:::-;13051:16;13101:1;13070:28;13090:8;13070:17;:28;:::i;:::-;:32;;;;:::i;:::-;13051:51;-1:-1:-1;13123:18:12;13140:1;13123:14;:18;:::i;:::-;13112:8;:29;13108:79;;;13162:18;13179:1;13162:14;:18;:::i;:::-;13151:29;;13108:79;13300:17;13308:8;13300:7;:17::i;:::-;13292:68;;;;-1:-1:-1;;;13292:68:12;;;;;;;:::i;:::-;13383:17;13366:289;13407:8;13402:1;:13;13366:289;;13465:1;13434:14;;;:11;:14;;;;;:19;-1:-1:-1;;;;;13434:19:12;13430:219;;13479:31;13513:14;13525:1;13513:11;:14::i;:::-;13554:86;;;;;;;;13580:14;;-1:-1:-1;;;;;13554:86:12;;;;;;13606:24;;;;13554:86;;;;;;;;;;-1:-1:-1;13537:14:12;;;:11;:14;;;;;;;:103;;;;;;-1:-1:-1;;;;;;13537:103:12;;;;;;-1:-1:-1;;;;13537:103:12;-1:-1:-1;;;13537:103:12;;;;;;;;;;;;;;-1:-1:-1;13430:219:12;13417:3;;;;:::i;:::-;;;;13366:289;;;-1:-1:-1;13687:12:12;:8;13698:1;13687:12;:::i;:::-;13660:24;:39;-1:-1:-1;;;12877:827:12:o;4973:586::-;5046:21;;:::i;:::-;5085:16;5093:7;5085;:16::i;:::-;5077:71;;;;-1:-1:-1;;;5077:71:12;;;;;;;:::i;:::-;5155:26;5202:12;5191:7;:23;5187:91;;5245:22;5255:12;5245:7;:22;:::i;:::-;:26;;5270:1;5245:26;:::i;:::-;5224:47;;5187:91;5304:7;5284:207;5321:18;5313:4;:26;5284:207;;5357:31;5391:17;;;:11;:17;;;;;;;;;5357:51;;;;;;;;;-1:-1:-1;;;;;5357:51:12;;;;;-1:-1:-1;;;5357:51:12;;;;;;;;;;;;5420:28;5416:69;;5467:9;-1:-1:-1;5460:16:12;;-1:-1:-1;;5460:16:12;5416:69;-1:-1:-1;5341:6:12;;;;:::i;:::-;;;;5284:207;;;;5497:57;;-1:-1:-1;;;5497:57:12;;;;;;;:::i;2270:187:0:-;2343:16;2362:6;;-1:-1:-1;;;;;2378:17:0;;;-1:-1:-1;;;;;;2378:17:0;;;;;;2410:40;;2362:6;;;;;;;2410:40;;2343:16;2410:40;2270:187;;:::o;9101:96:12:-;9165:27;9175:2;9179:8;9165:27;;;;;;;;;;;;:9;:27::i;14235:667::-;14367:4;14383:15;:2;-1:-1:-1;;;;;14383:13:12;;:15::i;:::-;14379:519;;;14436:2;-1:-1:-1;;;;;14420:36:12;;14457:12;:10;:12::i;:::-;14471:4;14477:7;14486:5;14420:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;14420:72:12;;;;;;;;-1:-1:-1;;14420:72:12;;;;;;;;;;;;:::i;:::-;;;14408:452;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;14647:13:12;;14643:209;;14679:61;;-1:-1:-1;;;14679:61:12;;;;;;;:::i;14643:209::-;14822:6;14816:13;14807:6;14803:2;14799:15;14792:38;14408:452;-1:-1:-1;;;;;;14540:55:12;-1:-1:-1;;;14540:55:12;;-1:-1:-1;14533:62:12;;14379:519;-1:-1:-1;14887:4:12;14379:519;14235:667;;;;;;:::o;6080:377::-;6173:13;6211:16;6219:7;6211;:16::i;:::-;6196:94;;;;-1:-1:-1;;;6196:94:12;;;;;;;:::i;:::-;6297:21;6321:10;:8;:10::i;:::-;6297:34;;6374:1;6356:7;6350:21;:25;:102;;;;;;;;;;;;;;;;;6410:7;6419:18;:7;:16;:18::i;:::-;6393:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;6350:102;6337:115;6080:377;-1:-1:-1;;;6080:377:12:o;4735:234::-;4796:7;-1:-1:-1;;;;;4826:19:12;;4811:99;;;;-1:-1:-1;;;4811:99:12;;;;;;;:::i;:::-;-1:-1:-1;;;;;;4931:19:12;;;;;:12;:19;;;;;:32;-1:-1:-1;;;4931:32:12;;-1:-1:-1;;;;;4931:32:12;;4735:234::o;9523:1239::-;9646:12;;-1:-1:-1;;;;;9672:16:12;;9664:62;;;;-1:-1:-1;;;9664:62:12;;;;;;;:::i;:::-;9861:21;9869:12;9861:7;:21::i;:::-;9860:22;9852:64;;;;-1:-1:-1;;;9852:64:12;;;;;;;:::i;:::-;9942:12;9930:8;:24;;9922:71;;;;-1:-1:-1;;;9922:71:12;;;;;;;:::i;:::-;10000:61;10030:1;10034:2;10038:12;10052:8;10000:21;:61::i;:::-;-1:-1:-1;;;;;10101:16:12;;10068:30;10101:16;;;:12;:16;;;;;;;;;10068:49;;;;;;;;;-1:-1:-1;;;;;10068:49:12;;;;;-1:-1:-1;;;10068:49:12;;;;;;;;;;;10142:116;;;;;;;;10161:19;;10068:49;;10142:116;;;10161:39;;10191:8;;10161:39;:::i;:::-;-1:-1:-1;;;;;10142:116:12;;;;;10243:8;10208:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;10142:116:12;;;;;;-1:-1:-1;;;;;10123:16:12;;;;;;;:12;:16;;;;;;;;:135;;;;;;;;;;-1:-1:-1;;;10123:135:12;;;;-1:-1:-1;;10123:135:12;;;;;;;;;;;;;;;;;10292:43;;;;;;;;;;;10318:15;10292:43;;;;;;;;10264:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;10264:71:12;-1:-1:-1;;;;10264:71:12;;;;-1:-1:-1;;;;;;10264:71:12;;;;;;;;;;;;;;;10276:12;;10384:274;10408:8;10404:1;:12;10384:274;;;10436:38;;10461:12;;-1:-1:-1;;;;;10436:38:12;;;10453:1;;10436:38;;10453:1;;10436:38;10499:59;10530:1;10534:2;10538:12;10552:5;10499:22;:59::i;:::-;10482:147;;;;-1:-1:-1;;;10482:147:12;;;;;;;:::i;:::-;10637:14;;;;:::i;:::-;;;;10418:3;;;;;:::i;:::-;;;;10384:274;;;-1:-1:-1;10664:12:12;:27;;;10697:60;10726:1;10730:2;10734:12;10748:8;10697:20;:60::i;1175:320:6:-;-1:-1:-1;;;;;1465:19:6;;:23;;;1175:320::o;2705:112:11:-;2765:13;2797;2790:20;;;;;:::i;328:703:8:-;384:13;601:10;597:51;;-1:-1:-1;627:10:8;;;;;;;;;;;;-1:-1:-1;;;627:10:8;;;;;;597:51;672:5;657:12;711:75;718:9;;711:75;;743:8;;;;:::i;:::-;;-1:-1:-1;765:10:8;;-1:-1:-1;773:2:8;765:10;;:::i;:::-;;;711:75;;;795:19;827:6;817:17;;;;;;-1:-1:-1;;;817:17:8;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;817:17:8;;795:39;;844:150;851:10;;844:150;;877:11;887:1;877:11;;:::i;:::-;;-1:-1:-1;945:10:8;953:2;945:5;:10;:::i;:::-;932:24;;:2;:24;:::i;:::-;919:39;;902:6;909;902:14;;;;;;-1:-1:-1;;;902:14:8;;;;;;;;;;;;:56;-1:-1:-1;;;;;902:56:8;;;;;;;;-1:-1:-1;972:11:8;981:2;972:11;;:::i;:::-;;;844:150;;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;14:175:13;84:20;;-1:-1:-1;;;;;133:31:13;;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:1187::-;;;;;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:40;1331:2;1320:9;1316:18;1295:40;:::i;:::-;1285:50;;1382:2;1371:9;1367:18;1354:32;1344:42;;1437:2;1426:9;1422:18;1409:32;1460:18;1501:2;1493:6;1490:14;1487:2;;;1522:6;1514;1507:22;1487:2;1565:6;1554:9;1550:22;1540:32;;1610:7;1603:4;1599:2;1595:13;1591:27;1581:2;;1637:6;1629;1622:22;1581:2;1678;1665:16;1700:2;1696;1693:10;1690:2;;;1706:18;;:::i;:::-;1781:2;1775:9;1749:2;1835:13;;-1:-1:-1;;1831:22:13;;;1855:2;1827:31;1823:40;1811:53;;;1879:18;;;1899:22;;;1876:46;1873:2;;;1925:18;;:::i;:::-;1965:10;1961:2;1954:22;2000:2;1992:6;1985:18;2040:7;2035:2;2030;2026;2022:11;2018:20;2015:33;2012:2;;;2066:6;2058;2051:22;2012:2;2127;2122;2118;2114:11;2109:2;2101:6;2097:15;2084:46;2150:15;;;2167:2;2146:24;2139:40;;;;1153:1057;;;;-1:-1:-1;1153:1057:13;;-1:-1:-1;;;;1153:1057:13:o;2215:369::-;;;2341:2;2329:9;2320:7;2316:23;2312:32;2309:2;;;2362:6;2354;2347:22;2309:2;2390:31;2411:9;2390:31;:::i;:::-;2380:41;;2471:2;2460:9;2456:18;2443:32;2518:5;2511:13;2504:21;2497:5;2494:32;2484:2;;2545:6;2537;2530:22;2484:2;2573:5;2563:15;;;2299:285;;;;;:::o;2589:266::-;;;2718:2;2706:9;2697:7;2693:23;2689:32;2686:2;;;2739:6;2731;2724:22;2686:2;2767:31;2788:9;2767:31;:::i;:::-;2757:41;2845:2;2830:18;;;;2817:32;;-1:-1:-1;;;2676:179:13:o;2860:257::-;;2971:2;2959:9;2950:7;2946:23;2942:32;2939:2;;;2992:6;2984;2977:22;2939:2;3036:9;3023:23;3055:32;3081:5;3055:32;:::i;3122:261::-;;3244:2;3232:9;3223:7;3219:23;3215:32;3212:2;;;3265:6;3257;3250:22;3212:2;3302:9;3296:16;3321:32;3347:5;3321:32;:::i;3388:642::-;;;3520:2;3508:9;3499:7;3495:23;3491:32;3488:2;;;3541:6;3533;3526:22;3488:2;3586:9;3573:23;3615:18;3656:2;3648:6;3645:14;3642:2;;;3677:6;3669;3662:22;3642:2;3720:6;3709:9;3705:22;3695:32;;3765:7;3758:4;3754:2;3750:13;3746:27;3736:2;;3792:6;3784;3777:22;3736:2;3837;3824:16;3863:2;3855:6;3852:14;3849:2;;;3884:6;3876;3869:22;3849:2;3934:7;3929:2;3920:6;3916:2;3912:15;3908:24;3905:37;3902:2;;;3960:6;3952;3945:22;3902:2;3996;3988:11;;;;;4018:6;;-1:-1:-1;3478:552:13;;-1:-1:-1;;;;3478:552:13:o;4035:190::-;;4147:2;4135:9;4126:7;4122:23;4118:32;4115:2;;;4168:6;4160;4153:22;4115:2;-1:-1:-1;4196:23:13;;4105:120;-1:-1:-1;4105:120:13:o;4230:259::-;;4311:5;4305:12;4338:6;4333:3;4326:19;4354:63;4410:6;4403:4;4398:3;4394:14;4387:4;4380:5;4376:16;4354:63;:::i;:::-;4471:2;4450:15;-1:-1:-1;;4446:29:13;4437:39;;;;4478:4;4433:50;;4281:208;-1:-1:-1;;4281:208:13:o;4494:470::-;;4711:6;4705:13;4727:53;4773:6;4768:3;4761:4;4753:6;4749:17;4727:53;:::i;:::-;4843:13;;4802:16;;;;4865:57;4843:13;4802:16;4899:4;4887:17;;4865:57;:::i;:::-;4938:20;;4681:283;-1:-1:-1;;;;4681:283:13:o;4969:443::-;;5239:6;5233:13;5255:53;5301:6;5296:3;5289:4;5281:6;5277:17;5255:53;:::i;:::-;-1:-1:-1;;;5330:16:13;;5355:22;;;-1:-1:-1;5404:1:13;5393:13;;5209:203;-1:-1:-1;5209:203:13:o;5417:::-;-1:-1:-1;;;;;5581:32:13;;;;5563:51;;5551:2;5536:18;;5518:102::o;5625:490::-;-1:-1:-1;;;;;5894:15:13;;;5876:34;;5946:15;;5941:2;5926:18;;5919:43;5993:2;5978:18;;5971:34;;;6041:3;6036:2;6021:18;;6014:31;;;5625:490;;6062:47;;6089:19;;6081:6;6062:47;:::i;:::-;6054:55;5828:287;-1:-1:-1;;;;;;5828:287:13:o;6120:187::-;6285:14;;6278:22;6260:41;;6248:2;6233:18;;6215:92::o;6312:221::-;;6461:2;6450:9;6443:21;6481:46;6523:2;6512:9;6508:18;6500:6;6481:46;:::i;6538:398::-;6740:2;6722:21;;;6779:2;6759:18;;;6752:30;6818:34;6813:2;6798:18;;6791:62;-1:-1:-1;;;6884:2:13;6869:18;;6862:32;6926:3;6911:19;;6712:224::o;6941:402::-;7143:2;7125:21;;;7182:2;7162:18;;;7155:30;7221:34;7216:2;7201:18;;7194:62;-1:-1:-1;;;7287:2:13;7272:18;;7265:36;7333:3;7318:19;;7115:228::o;7348:406::-;7550:2;7532:21;;;7589:2;7569:18;;;7562:30;7628:34;7623:2;7608:18;;7601:62;-1:-1:-1;;;7694:2:13;7679:18;;7672:40;7744:3;7729:19;;7522:232::o;7759:399::-;7961:2;7943:21;;;8000:2;7980:18;;;7973:30;8039:34;8034:2;8019:18;;8012:62;-1:-1:-1;;;8105:2:13;8090:18;;8083:33;8148:3;8133:19;;7933:225::o;8163:401::-;8365:2;8347:21;;;8404:2;8384:18;;;8377:30;8443:34;8438:2;8423:18;;8416:62;-1:-1:-1;;;8509:2:13;8494:18;;8487:35;8554:3;8539:19;;8337:227::o;8569:413::-;8771:2;8753:21;;;8810:2;8790:18;;;8783:30;8849:34;8844:2;8829:18;;8822:62;-1:-1:-1;;;8915:2:13;8900:18;;8893:47;8972:3;8957:19;;8743:239::o;8987:354::-;9189:2;9171:21;;;9228:2;9208:18;;;9201:30;9267:32;9262:2;9247:18;;9240:60;9332:2;9317:18;;9161:180::o;9346:421::-;9548:2;9530:21;;;9587:2;9567:18;;;9560:30;9626:34;9621:2;9606:18;;9599:62;9697:27;9692:2;9677:18;;9670:55;9757:3;9742:19;;9520:247::o;9772:348::-;9974:2;9956:21;;;10013:2;9993:18;;;9986:30;10052:26;10047:2;10032:18;;10025:54;10111:2;10096:18;;9946:174::o;10125:407::-;10327:2;10309:21;;;10366:2;10346:18;;;10339:30;10405:34;10400:2;10385:18;;10378:62;-1:-1:-1;;;10471:2:13;10456:18;;10449:41;10522:3;10507:19;;10299:233::o;10537:334::-;10739:2;10721:21;;;10778:2;10758:18;;;10751:30;-1:-1:-1;;;10812:2:13;10797:18;;10790:40;10862:2;10847:18;;10711:160::o;10876:353::-;11078:2;11060:21;;;11117:2;11097:18;;;11090:30;11156:31;11151:2;11136:18;;11129:59;11220:2;11205:18;;11050:179::o;11234:402::-;11436:2;11418:21;;;11475:2;11455:18;;;11448:30;11514:34;11509:2;11494:18;;11487:62;-1:-1:-1;;;11580:2:13;11565:18;;11558:36;11626:3;11611:19;;11408:228::o;11641:356::-;11843:2;11825:21;;;11862:18;;;11855:30;11921:34;11916:2;11901:18;;11894:62;11988:2;11973:18;;11815:182::o;12002:402::-;12204:2;12186:21;;;12243:2;12223:18;;;12216:30;12282:34;12277:2;12262:18;;12255:62;-1:-1:-1;;;12348:2:13;12333:18;;12326:36;12394:3;12379:19;;12176:228::o;12409:411::-;12611:2;12593:21;;;12650:2;12630:18;;;12623:30;12689:34;12684:2;12669:18;;12662:62;-1:-1:-1;;;12755:2:13;12740:18;;12733:45;12810:3;12795:19;;12583:237::o;12825:350::-;13027:2;13009:21;;;13066:2;13046:18;;;13039:30;13105:28;13100:2;13085:18;;13078:56;13166:2;13151:18;;12999:176::o;13180:414::-;13382:2;13364:21;;;13421:2;13401:18;;;13394:30;13460:34;13455:2;13440:18;;13433:62;-1:-1:-1;;;13526:2:13;13511:18;;13504:48;13584:3;13569:19;;13354:240::o;13599:398::-;13801:2;13783:21;;;13840:2;13820:18;;;13813:30;13879:34;13874:2;13859:18;;13852:62;-1:-1:-1;;;13945:2:13;13930:18;;13923:32;13987:3;13972:19;;13773:224::o;14002:341::-;14204:2;14186:21;;;14243:2;14223:18;;;14216:30;-1:-1:-1;;;14277:2:13;14262:18;;14255:47;14334:2;14319:18;;14176:167::o;14348:415::-;14550:2;14532:21;;;14589:2;14569:18;;;14562:30;14628:34;14623:2;14608:18;;14601:62;-1:-1:-1;;;14694:2:13;14679:18;;14672:49;14753:3;14738:19;;14522:241::o;14768:353::-;14970:2;14952:21;;;15009:2;14989:18;;;14982:30;15048:31;15043:2;15028:18;;15021:59;15112:2;15097:18;;14942:179::o;15126:397::-;15328:2;15310:21;;;15367:2;15347:18;;;15340:30;15406:34;15401:2;15386:18;;15379:62;-1:-1:-1;;;15472:2:13;15457:18;;15450:31;15513:3;15498:19;;15300:223::o;15528:412::-;15730:2;15712:21;;;15769:2;15749:18;;;15742:30;15808:34;15803:2;15788:18;;15781:62;-1:-1:-1;;;15874:2:13;15859:18;;15852:46;15930:3;15915:19;;15702:238::o;15945:349::-;16147:2;16129:21;;;16186:2;16166:18;;;16159:30;16225:27;16220:2;16205:18;;16198:55;16285:2;16270:18;;16119:175::o;16299:410::-;16501:2;16483:21;;;16540:2;16520:18;;;16513:30;16579:34;16574:2;16559:18;;16552:62;-1:-1:-1;;;16645:2:13;16630:18;;16623:44;16699:3;16684:19;;16473:236::o;16714:402::-;16916:2;16898:21;;;16955:2;16935:18;;;16928:30;16994:34;16989:2;16974:18;;16967:62;-1:-1:-1;;;17060:2:13;17045:18;;17038:36;17106:3;17091:19;;16888:228::o;17121:355::-;17323:2;17305:21;;;17362:2;17342:18;;;17335:30;17401:33;17396:2;17381:18;;17374:61;17467:2;17452:18;;17295:181::o;17481:411::-;17683:2;17665:21;;;17722:2;17702:18;;;17695:30;17761:34;17756:2;17741:18;;17734:62;-1:-1:-1;;;17827:2:13;17812:18;;17805:45;17882:3;17867:19;;17655:237::o;17897:352::-;18099:2;18081:21;;;18138:2;18118:18;;;18111:30;18177;18172:2;18157:18;;18150:58;18240:2;18225:18;;18071:178::o;18254:409::-;18456:2;18438:21;;;18495:2;18475:18;;;18468:30;18534:34;18529:2;18514:18;;18507:62;-1:-1:-1;;;18600:2:13;18585:18;;18578:43;18653:3;18638:19;;18428:235::o;18668:398::-;18870:2;18852:21;;;18909:2;18889:18;;;18882:30;18948:34;18943:2;18928:18;;18921:62;-1:-1:-1;;;19014:2:13;18999:18;;18992:32;19056:3;19041:19;;18842:224::o;19071:362::-;19303:13;;-1:-1:-1;;;;;19299:39:13;19281:58;;19399:4;19387:17;;;19381:24;19407:18;19377:49;19355:20;;;19348:79;;;;19269:2;19254:18;;19236:197::o;19438:177::-;19584:25;;;19572:2;19557:18;;19539:76::o;19620:253::-;;-1:-1:-1;;;;;19749:2:13;19746:1;19742:10;19779:2;19776:1;19772:10;19810:3;19806:2;19802:12;19797:3;19794:21;19791:2;;;19818:18;;:::i;19878:128::-;;19949:1;19945:6;19942:1;19939:13;19936:2;;;19955:18;;:::i;:::-;-1:-1:-1;19991:9:13;;19926:80::o;20011:120::-;;20077:1;20067:2;;20082:18;;:::i;:::-;-1:-1:-1;20116:9:13;;20057:74::o;20136:246::-;;-1:-1:-1;;;;;20289:10:13;;;;20259;;20311:12;;;20308:2;;;20326:18;;:::i;:::-;20363:13;;20185:197;-1:-1:-1;;;20185:197:13:o;20387:125::-;;20455:1;20452;20449:8;20446:2;;;20460:18;;:::i;:::-;-1:-1:-1;20497:9:13;;20436:76::o;20517:258::-;20589:1;20599:113;20613:6;20610:1;20607:13;20599:113;;;20689:11;;;20683:18;20670:11;;;20663:39;20635:2;20628:10;20599:113;;;20730:6;20727:1;20724:13;20721:2;;;-1:-1:-1;;20765:1:13;20747:16;;20740:27;20570:205::o;20780:136::-;;20847:5;20837:2;;20856:18;;:::i;:::-;-1:-1:-1;;;20892:18:13;;20827:89::o;20921:380::-;21006:1;20996:12;;21053:1;21043:12;;;21064:2;;21118:4;21110:6;21106:17;21096:27;;21064:2;21171;21163:6;21160:14;21140:18;21137:38;21134:2;;;21217:10;21212:3;21208:20;21205:1;21198:31;21252:4;21249:1;21242:15;21280:4;21277:1;21270:15;21134:2;;20976:325;;;:::o;21306:135::-;;-1:-1:-1;;21366:17:13;;21363:2;;;21386:18;;:::i;:::-;-1:-1:-1;21433:1:13;21422:13;;21353:88::o;21446:112::-;;21504:1;21494:2;;21509:18;;:::i;:::-;-1:-1:-1;21543:9:13;;21484:74::o;21563:127::-;21624:10;21619:3;21615:20;21612:1;21605:31;21655:4;21652:1;21645:15;21679:4;21676:1;21669:15;21695:127;21756:10;21751:3;21747:20;21744:1;21737:31;21787:4;21784:1;21777:15;21811:4;21808:1;21801:15;21827:127;21888:10;21883:3;21879:20;21876:1;21869:31;21919:4;21916:1;21909:15;21943:4;21940:1;21933:15;21959:133;-1:-1:-1;;;;;;22035:32:13;;22025:43;;22015:2;;22082:1;22079;22072:12
Swarm Source
ipfs://304c6957ab93cc5dd98c084acde65fc83656921e95ba06e2eecd3dd13a682c5d
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.