ERC-721
Overview
Max Total Supply
1,572 HMW
Holders
383
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
3 HMWLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
HMW
Compiler Version
v0.8.0+commit.c7dfd78e
Contract Source Code (Solidity Multiple files format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./Ownable.sol"; import "./ReentrancyGuard.sol"; import "./ERC721A.sol"; import "./Strings.sol"; import "./MerkleProof.sol"; contract HMW is Ownable, ERC721A, ReentrancyGuard { uint256 public SALE_NFT = 5405; uint256 public GIVEAWAY_NFT = 150; uint256 public MAX_MINT_ALPHA = 3; uint256 public MAX_MINT_SALE = 3; uint256 public MAX_BY_MINT_IN_TRANSACTION_ALPHA = 3; uint256 public MAX_BY_MINT_IN_TRANSACTION_SALE = 3; uint256 public ALPHA_ONE_PRICE = 0.068 ether; uint256 public SALE_PRICE = 0.088 ether; uint256 public SALE_MINTED; uint256 public GIVEAWAY_MINTED; bool public alphaListOneEnable = false; bool public alphaListTwoEnable = false; bool public saleEnable = false; bytes32 public alphaListOne; bytes32 public alphaListTwo; struct User { uint256 salemint; uint256 alphalistonemint; uint256 alphalisttwolimit; uint256 alphalisttwomint; } mapping (address => User) public users; string public _baseTokenURI; constructor() ERC721A("Howling Meta Wolves", "HMW") {} function giveaway(address _to, uint256 _count) public onlyOwner{ require( GIVEAWAY_MINTED + _count <= GIVEAWAY_NFT, "Max limit" ); _safeMint(_to, _count); GIVEAWAY_MINTED = GIVEAWAY_MINTED + _count; } function AlphaMint(uint256 _count, bytes32[] calldata merkleProof) public payable{ bytes32 node = keccak256(abi.encodePacked(msg.sender)); require( alphaListOneEnable, "Alphalist is not enable" ); require( SALE_MINTED + _count <= SALE_NFT, "Exceeds max limit" ); require( MerkleProof.verify(merkleProof, alphaListOne, node), "MerkleDistributor: Invalid proof." ); require( users[msg.sender].alphalistonemint + _count <= MAX_MINT_ALPHA, "Exceeds max mint limit per wallet" ); require( _count <= MAX_BY_MINT_IN_TRANSACTION_ALPHA, "Exceeds max mint limit per tnx" ); require( msg.value >= ALPHA_ONE_PRICE * _count, "Value below price" ); _safeMint(msg.sender, _count); SALE_MINTED = SALE_MINTED + _count; users[msg.sender].alphalistonemint = users[msg.sender].alphalistonemint + _count; } function OmegaMint(uint256 _count, uint256 _limit, bytes32[] calldata merkleProof) public payable { bytes32 node = keccak256(abi.encodePacked(msg.sender)); require( alphaListTwoEnable, "Alphalist is not enable" ); require( SALE_MINTED + _count <= SALE_NFT, "Exceeds max limit" ); require( MerkleProof.verify(merkleProof, alphaListTwo, node), "MerkleDistributor: Invalid proof." ); if(users[msg.sender].alphalisttwolimit == 0) { users[msg.sender].alphalisttwolimit = _limit; } require( users[msg.sender].alphalisttwomint + _count <= users[msg.sender].alphalisttwolimit, "Exceeds max mint limit per wallet" ); _safeMint(msg.sender, _count); SALE_MINTED = SALE_MINTED + _count; users[msg.sender].alphalisttwomint = users[msg.sender].alphalisttwomint + _count; } function HMWMint(uint256 _count) public payable{ require( saleEnable, "Sale is not enable" ); require( SALE_MINTED + _count <= SALE_NFT, "Exceeds max limit" ); require( users[msg.sender].salemint + _count <= MAX_MINT_SALE, "Exceeds max mint limit per wallet" ); require( _count <= MAX_BY_MINT_IN_TRANSACTION_SALE, "Exceeds max mint limit per tnx" ); require( msg.value >= SALE_PRICE * _count, "Value below price" ); _safeMint(msg.sender, _count); SALE_MINTED = SALE_MINTED + _count; users[msg.sender].salemint = users[msg.sender].salemint + _count; } function _baseURI() internal view virtual override returns (string memory) { return _baseTokenURI; } function setBaseURI(string calldata baseURI) external onlyOwner { _baseTokenURI = baseURI; } function withdraw() public onlyOwner { uint256 balance = address(this).balance; payable(msg.sender).transfer(balance); } function numberMinted(address owner) public view returns (uint256) { return _numberMinted(owner); } function getOwnershipData(uint256 tokenId) external view returns (TokenOwnership memory) { return ownershipOf(tokenId); } function updateSalePrice(uint256 newPrice) external onlyOwner { SALE_PRICE = newPrice; } function updateAlphaListOnePrice(uint256 newPrice) external onlyOwner { ALPHA_ONE_PRICE = newPrice; } function setSaleStatus(bool status) public onlyOwner { require(saleEnable != status); saleEnable = status; } function setAlphaListOneStatus(bool status) public onlyOwner { require(alphaListOneEnable != status); alphaListOneEnable = status; } function setAlphaListTwoStatus(bool status) public onlyOwner { require(alphaListTwoEnable != status); alphaListTwoEnable = status; } function updateSaleMintLimit(uint256 newLimit) external onlyOwner { require(SALE_NFT >= newLimit, "Incorrect value"); MAX_MINT_SALE = newLimit; } function updateAlphaListOneMintLimit(uint256 newLimit) external onlyOwner { require(SALE_NFT >= newLimit, "Incorrect value"); MAX_MINT_ALPHA = newLimit; } function updateSaleSupply(uint256 newSupply) external onlyOwner { require(newSupply >= SALE_MINTED, "Incorrect value"); SALE_NFT = newSupply; } function updateGiveawaySupply(uint256 newSupply) external onlyOwner { require(newSupply >= GIVEAWAY_MINTED, "Incorrect value"); GIVEAWAY_NFT = newSupply; } function updateMintLimitPerTransectionAlphaListOne(uint256 newLimit) external onlyOwner { require(SALE_NFT >= newLimit, "Incorrect value"); MAX_BY_MINT_IN_TRANSACTION_ALPHA = newLimit; } function updateMintLimitPerTransectionSale(uint256 newLimit) external onlyOwner { require(SALE_NFT >= newLimit, "Incorrect value"); MAX_BY_MINT_IN_TRANSACTION_SALE = newLimit; } function updateAlphaList(bytes32 newAlphaListOne, bytes32 newAlphaListTwo) external onlyOwner { alphaListOne = newAlphaListOne; alphaListTwo = newAlphaListTwo; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return _verifyCallResult(success, returndata, errorMessage); } function _verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) private pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT 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 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 pragma solidity ^0.8.0; import "./IERC721.sol"; import "./IERC721Receiver.sol"; import "./IERC721Metadata.sol"; import "./IERC721Enumerable.sol"; import "./Address.sol"; import "./Context.sol"; import "./Strings.sol"; import "./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; // 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; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @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; } 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; 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"); _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; // 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 pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT 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 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); }
// SPDX-License-Identifier: MIT 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 pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; library MerkleProof { /** * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree * defined by `root`. For this, a `proof` must be provided, containing * sibling hashes on the branch from the leaf to the root of the tree. Each * pair of leaves and each pair of pre-images are assumed to be sorted. */ function verify( bytes32[] memory proof, bytes32 root, bytes32 leaf ) internal pure returns (bool) { bytes32 computedHash = leaf; for (uint256 i = 0; i < proof.length; i++) { bytes32 proofElement = proof[i]; if (computedHash <= proofElement) { // Hash(current computed hash + current element of the proof) computedHash = keccak256(abi.encodePacked(computedHash, proofElement)); } else { // Hash(current element of the proof + current computed hash) computedHash = keccak256(abi.encodePacked(proofElement, computedHash)); } } // Check if the computed hash (root) is equal to the provided root return computedHash == root; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./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() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _setOwner(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and make it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } }
// SPDX-License-Identifier: MIT 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); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"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":"ALPHA_ONE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"AlphaMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"GIVEAWAY_MINTED","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"GIVEAWAY_NFT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"HMWMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"MAX_BY_MINT_IN_TRANSACTION_ALPHA","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_BY_MINT_IN_TRANSACTION_SALE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINT_ALPHA","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINT_SALE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"},{"internalType":"uint256","name":"_limit","type":"uint256"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"OmegaMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"SALE_MINTED","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SALE_NFT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SALE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"alphaListOne","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"alphaListOneEnable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"alphaListTwo","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"alphaListTwoEnable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"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":"_to","type":"address"},{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"giveaway","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":"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":[],"name":"saleEnable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"status","type":"bool"}],"name":"setAlphaListOneStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"status","type":"bool"}],"name":"setAlphaListTwoStatus","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":"bool","name":"status","type":"bool"}],"name":"setSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"newAlphaListOne","type":"bytes32"},{"internalType":"bytes32","name":"newAlphaListTwo","type":"bytes32"}],"name":"updateAlphaList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newLimit","type":"uint256"}],"name":"updateAlphaListOneMintLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"updateAlphaListOnePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newSupply","type":"uint256"}],"name":"updateGiveawaySupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newLimit","type":"uint256"}],"name":"updateMintLimitPerTransectionAlphaListOne","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newLimit","type":"uint256"}],"name":"updateMintLimitPerTransectionSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newLimit","type":"uint256"}],"name":"updateSaleMintLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"updateSalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newSupply","type":"uint256"}],"name":"updateSaleSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"users","outputs":[{"internalType":"uint256","name":"salemint","type":"uint256"},{"internalType":"uint256","name":"alphalistonemint","type":"uint256"},{"internalType":"uint256","name":"alphalisttwolimit","type":"uint256"},{"internalType":"uint256","name":"alphalisttwomint","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040526000600181905560085561151d600a556096600b556003600c819055600d819055600e819055600f5566f195a3c4ba0000601055670138a388a43c00006011556014805462ffffff191690553480156200005d57600080fd5b506040518060400160405280601381526020017f486f776c696e67204d65746120576f6c7665730000000000000000000000000081525060405180604001604052806003815260200162484d5760e81b815250620000ca620000c46200010360201b60201c565b62000107565b8151620000df90600290602085019062000157565b508051620000f590600390602084019062000157565b50506001600955506200023a565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b8280546200016590620001fd565b90600052602060002090601f016020900481019282620001895760008555620001d4565b82601f10620001a457805160ff1916838001178555620001d4565b82800160010185558215620001d4579182015b82811115620001d4578251825591602001919060010190620001b7565b50620001e2929150620001e6565b5090565b5b80821115620001e25760008155600101620001e7565b6002810460018216806200021257607f821691505b602082108114156200023457634e487b7160e01b600052602260045260246000fd5b50919050565b6134b3806200024a6000396000f3fe6080604052600436106103765760003560e01c8063711cc2ae116101d1578063ae5cc17211610102578063dc33e681116100a0578063f176baaa1161006f578063f176baaa1461095e578063f2fde38b1461097e578063f43973351461099e578063fe4ca847146109be57610376565b8063dc33e681146108f6578063e3e0725214610916578063e985e9c51461092b578063ec5d9c491461094b57610376565b8063c87b56dd116100dc578063c87b56dd1461088c578063cfc86f7b146108ac578063d7224ba0146108c1578063d897833e146108d657610376565b8063ae5cc17214610842578063b29017c014610857578063b88d4fde1461086c57610376565b80638da5cb5b1161016f578063995b8ef611610149578063995b8ef6146107bd578063a22cb465146107d2578063a87430ba146107f2578063ac40e74f1461082257610376565b80638da5cb5b146107665780639231ab2a1461077b57806395d89b41146107a857610376565b80637ec0912e116101ab5780637ec0912e146106f15780637f205a7414610711578063830359c61461072657806384a9eb331461074657610376565b8063711cc2ae146106b4578063715018a6146106c95780637db38399146106de57610376565b8063362e718a116102ab5780634f6ccce7116102495780635862303511610223578063586230351461064a5780635b09ca1a1461065f5780636352211e1461067457806370a082311461069457610376565b80634f6ccce7146105f5578063507d70861461061557806355f804b31461062a57610376565b80633e2e2a80116102855780633e2e2a801461058b57806342842e0e146105ab578063497865b3146105cb5780634d7cea16146105e057610376565b8063362e718a14610536578063379665bd146105565780633ccfd60b1461057657610376565b806309d6a52d1161031857806323b872dd116102f257806323b872dd146104c157806326facd71146104e15780632e151ada146104f65780632f745c591461051657610376565b806309d6a52d1461047957806318160ddd146104995780631f240f58146104ae57610376565b8063076c64ea11610354578063076c64ea146103f5578063081812fc1461040a578063095ea7b3146104375780630990e5341461045757610376565b806301ffc9a71461037b578063050225ea146103b157806306fdde03146103d3575b600080fd5b34801561038757600080fd5b5061039b6103963660046128d6565b6109d3565b6040516103a89190612b05565b60405180910390f35b3480156103bd57600080fd5b506103d16103cc366004612872565b610a36565b005b3480156103df57600080fd5b506103e8610acc565b6040516103a89190612b19565b34801561040157600080fd5b5061039b610b5e565b34801561041657600080fd5b5061042a61042536600461297b565b610b67565b6040516103a89190612ab4565b34801561044357600080fd5b506103d1610452366004612872565b610baa565b34801561046357600080fd5b5061046c610c43565b6040516103a89190612b10565b34801561048557600080fd5b506103d161049436600461297b565b610c49565b3480156104a557600080fd5b5061046c610c8d565b6103d16104bc366004612993565b610c93565b3480156104cd57600080fd5b506103d16104dc366004612742565b610e4f565b3480156104ed57600080fd5b5061046c610e5a565b34801561050257600080fd5b506103d161051136600461297b565b610e60565b34801561052257600080fd5b5061046c610531366004612872565b610ec6565b34801561054257600080fd5b506103d161055136600461289b565b610fc2565b34801561056257600080fd5b506103d161057136600461297b565b61102a565b34801561058257600080fd5b506103d1611090565b34801561059757600080fd5b506103d16105a636600461297b565b611102565b3480156105b757600080fd5b506103d16105c6366004612742565b611168565b3480156105d757600080fd5b5061046c611183565b3480156105ec57600080fd5b5061046c611189565b34801561060157600080fd5b5061046c61061036600461297b565b61118f565b34801561062157600080fd5b5061046c6111bb565b34801561063657600080fd5b506103d161064536600461290e565b6111c1565b34801561065657600080fd5b5061046c61120c565b34801561066b57600080fd5b5061046c611212565b34801561068057600080fd5b5061042a61068f36600461297b565b611218565b3480156106a057600080fd5b5061046c6106af3660046126f6565b61122a565b3480156106c057600080fd5b5061046c611277565b3480156106d557600080fd5b506103d161127d565b6103d16106ec36600461297b565b6112c8565b3480156106fd57600080fd5b506103d161070c36600461297b565b6113f3565b34801561071d57600080fd5b5061046c611437565b34801561073257600080fd5b506103d161074136600461289b565b61143d565b34801561075257600080fd5b506103d16107613660046128b5565b6114b2565b34801561077257600080fd5b5061042a6114fc565b34801561078757600080fd5b5061079b61079636600461297b565b61150b565b6040516103a89190613287565b3480156107b457600080fd5b506103e861151c565b3480156107c957600080fd5b5061046c61152b565b3480156107de57600080fd5b506103d16107ed366004612849565b611531565b3480156107fe57600080fd5b5061081261080d3660046126f6565b6115ff565b6040516103a894939291906132b1565b34801561082e57600080fd5b506103d161083d36600461297b565b611626565b34801561084e57600080fd5b5061046c61168c565b34801561086357600080fd5b5061039b611692565b34801561087857600080fd5b506103d161088736600461277d565b6116a0565b34801561089857600080fd5b506103e86108a736600461297b565b6116d9565b3480156108b857600080fd5b506103e861175c565b3480156108cd57600080fd5b5061046c6117ea565b3480156108e257600080fd5b506103d16108f136600461289b565b6117f0565b34801561090257600080fd5b5061046c6109113660046126f6565b611868565b34801561092257600080fd5b5061046c611873565b34801561093757600080fd5b5061039b610946366004612710565b611879565b6103d16109593660046129dd565b6118a7565b34801561096a57600080fd5b506103d161097936600461297b565b611a4d565b34801561098a57600080fd5b506103d16109993660046126f6565b611ab3565b3480156109aa57600080fd5b506103d16109b936600461297b565b611b24565b3480156109ca57600080fd5b5061039b611b8a565b60006001600160e01b031982166380ac58cd60e01b1480610a0457506001600160e01b03198216635b5e139f60e01b145b80610a1f57506001600160e01b0319821663780e9d6360e01b145b80610a2e5750610a2e82611b99565b90505b919050565b610a3e611bb2565b6001600160a01b0316610a4f6114fc565b6001600160a01b031614610a7e5760405162461bcd60e51b8152600401610a7590612ee0565b60405180910390fd5b600b5481601354610a8f91906132ee565b1115610aad5760405162461bcd60e51b8152600401610a7590612cd7565b610ab78282611bb6565b80601354610ac591906132ee565b6013555050565b606060028054610adb906133bb565b80601f0160208091040260200160405190810160405280929190818152602001828054610b07906133bb565b8015610b545780601f10610b2957610100808354040283529160200191610b54565b820191906000526020600020905b815481529060010190602001808311610b3757829003601f168201915b5050505050905090565b60145460ff1681565b6000610b7282611bd0565b610b8e5760405162461bcd60e51b8152600401610a759061323a565b506000908152600660205260409020546001600160a01b031690565b6000610bb582611218565b9050806001600160a01b0316836001600160a01b03161415610be95760405162461bcd60e51b8152600401610a759061304f565b806001600160a01b0316610bfb611bb2565b6001600160a01b03161480610c175750610c1781610946611bb2565b610c335760405162461bcd60e51b8152600401610a7590612d9e565b610c3e838383611bd7565b505050565b60125481565b610c51611bb2565b6001600160a01b0316610c626114fc565b6001600160a01b031614610c885760405162461bcd60e51b8152600401610a7590612ee0565b601055565b60015490565b600033604051602001610ca69190612a5a565b60408051601f19818403018152919052805160209091012060145490915060ff16610ce35760405162461bcd60e51b8152600401610a7590612fed565b600a5484601254610cf491906132ee565b1115610d125760405162461bcd60e51b8152600401610a7590612dfb565b610d53838380806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506015549150849050611c33565b610d6f5760405162461bcd60e51b8152600401610a7590612d26565b600c5433600090815260176020526040902060010154610d909086906132ee565b1115610dae5760405162461bcd60e51b8152600401610a759061311b565b600e54841115610dd05760405162461bcd60e51b8152600401610a7590612d67565b83601054610dde919061331a565b341015610dfd5760405162461bcd60e51b8152600401610a7590613024565b610e073385611bb6565b83601254610e1591906132ee565b60125533600090815260176020526040902060010154610e369085906132ee565b3360009081526017602052604090206001015550505050565b610c3e838383611cee565b60155481565b610e68611bb2565b6001600160a01b0316610e796114fc565b6001600160a01b031614610e9f5760405162461bcd60e51b8152600401610a7590612ee0565b80600a541015610ec15760405162461bcd60e51b8152600401610a7590612eb7565b600c55565b6000610ed18361122a565b8210610eef5760405162461bcd60e51b8152600401610a7590612b2c565b6000610ef9610c8d565b905060008060005b83811015610fa3576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610f5457805192505b876001600160a01b0316836001600160a01b03161415610f905786841415610f8257509350610fbc92505050565b83610f8c816133f6565b9450505b5080610f9b816133f6565b915050610f01565b5060405162461bcd60e51b8152600401610a759061319d565b92915050565b610fca611bb2565b6001600160a01b0316610fdb6114fc565b6001600160a01b0316146110015760405162461bcd60e51b8152600401610a7590612ee0565b60145460ff161515811515141561101757600080fd5b6014805460ff1916911515919091179055565b611032611bb2565b6001600160a01b03166110436114fc565b6001600160a01b0316146110695760405162461bcd60e51b8152600401610a7590612ee0565b60135481101561108b5760405162461bcd60e51b8152600401610a7590612eb7565b600b55565b611098611bb2565b6001600160a01b03166110a96114fc565b6001600160a01b0316146110cf5760405162461bcd60e51b8152600401610a7590612ee0565b6040514790339082156108fc029083906000818181858888f193505050501580156110fe573d6000803e3d6000fd5b5050565b61110a611bb2565b6001600160a01b031661111b6114fc565b6001600160a01b0316146111415760405162461bcd60e51b8152600401610a7590612ee0565b80600a5410156111635760405162461bcd60e51b8152600401610a7590612eb7565b600f55565b610c3e838383604051806020016040528060008152506116a0565b600b5481565b60135481565b6000611199610c8d565b82106111b75760405162461bcd60e51b8152600401610a7590612bfe565b5090565b600c5481565b6111c9611bb2565b6001600160a01b03166111da6114fc565b6001600160a01b0316146112005760405162461bcd60e51b8152600401610a7590612ee0565b610c3e601883836125da565b600e5481565b60105481565b600061122382612002565b5192915050565b60006001600160a01b0382166112525760405162461bcd60e51b8152600401610a7590612e26565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b600f5481565b611285611bb2565b6001600160a01b03166112966114fc565b6001600160a01b0316146112bc5760405162461bcd60e51b8152600401610a7590612ee0565b6112c660006120b6565b565b60145462010000900460ff166112f05760405162461bcd60e51b8152600401610a7590612cfa565b600a548160125461130191906132ee565b111561131f5760405162461bcd60e51b8152600401610a7590612dfb565b600d543360009081526017602052604090205461133d9083906132ee565b111561135b5760405162461bcd60e51b8152600401610a759061311b565b600f5481111561137d5760405162461bcd60e51b8152600401610a7590612d67565b8060115461138b919061331a565b3410156113aa5760405162461bcd60e51b8152600401610a7590613024565b6113b43382611bb6565b806012546113c291906132ee565b601255336000908152601760205260409020546113e09082906132ee565b3360009081526017602052604090205550565b6113fb611bb2565b6001600160a01b031661140c6114fc565b6001600160a01b0316146114325760405162461bcd60e51b8152600401610a7590612ee0565b601155565b60115481565b611445611bb2565b6001600160a01b03166114566114fc565b6001600160a01b03161461147c5760405162461bcd60e51b8152600401610a7590612ee0565b60145460ff610100909104161515811515141561149857600080fd5b601480549115156101000261ff0019909216919091179055565b6114ba611bb2565b6001600160a01b03166114cb6114fc565b6001600160a01b0316146114f15760405162461bcd60e51b8152600401610a7590612ee0565b601591909155601655565b6000546001600160a01b031690565b61151361265a565b610a2e82612002565b606060038054610adb906133bb565b600a5481565b611539611bb2565b6001600160a01b0316826001600160a01b0316141561156a5760405162461bcd60e51b8152600401610a7590612f64565b8060076000611577611bb2565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff1916921515929092179091556115bb611bb2565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115f39190612b05565b60405180910390a35050565b60176020526000908152604090208054600182015460028301546003909301549192909184565b61162e611bb2565b6001600160a01b031661163f6114fc565b6001600160a01b0316146116655760405162461bcd60e51b8152600401610a7590612ee0565b80600a5410156116875760405162461bcd60e51b8152600401610a7590612eb7565b600e55565b600d5481565b601454610100900460ff1681565b6116ab848484611cee565b6116b784848484612106565b6116d35760405162461bcd60e51b8152600401610a7590613091565b50505050565b60606116e482611bd0565b6117005760405162461bcd60e51b8152600401610a7590612f15565b600061170a612222565b9050600081511161172a5760405180602001604052806000815250611755565b8061173484612231565b604051602001611745929190612a85565b6040516020818303038152906040525b9392505050565b60188054611769906133bb565b80601f0160208091040260200160405190810160405280929190818152602001828054611795906133bb565b80156117e25780601f106117b7576101008083540402835291602001916117e2565b820191906000526020600020905b8154815290600101906020018083116117c557829003601f168201915b505050505081565b60085481565b6117f8611bb2565b6001600160a01b03166118096114fc565b6001600160a01b03161461182f5760405162461bcd60e51b8152600401610a7590612ee0565b60145460ff62010000909104161515811515141561184c57600080fd5b60148054911515620100000262ff000019909216919091179055565b6000610a2e8261234c565b60165481565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6000336040516020016118ba9190612a5a565b604051602081830303815290604052805190602001209050601460019054906101000a900460ff166118fe5760405162461bcd60e51b8152600401610a7590612fed565b600a548560125461190f91906132ee565b111561192d5760405162461bcd60e51b8152600401610a7590612dfb565b61196e838380806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506016549150849050611c33565b61198a5760405162461bcd60e51b8152600401610a7590612d26565b336000908152601760205260409020600201546119b7573360009081526017602052604090206002018490555b33600090815260176020526040902060028101546003909101546119dc9087906132ee565b11156119fa5760405162461bcd60e51b8152600401610a759061311b565b611a043386611bb6565b84601254611a1291906132ee565b60125533600090815260176020526040902060030154611a339086906132ee565b336000908152601760205260409020600301555050505050565b611a55611bb2565b6001600160a01b0316611a666114fc565b6001600160a01b031614611a8c5760405162461bcd60e51b8152600401610a7590612ee0565b80600a541015611aae5760405162461bcd60e51b8152600401610a7590612eb7565b600d55565b611abb611bb2565b6001600160a01b0316611acc6114fc565b6001600160a01b031614611af25760405162461bcd60e51b8152600401610a7590612ee0565b6001600160a01b038116611b185760405162461bcd60e51b8152600401610a7590612b6e565b611b21816120b6565b50565b611b2c611bb2565b6001600160a01b0316611b3d6114fc565b6001600160a01b031614611b635760405162461bcd60e51b8152600401610a7590612ee0565b601254811015611b855760405162461bcd60e51b8152600401610a7590612eb7565b600a55565b60145462010000900460ff1681565b6001600160e01b031981166301ffc9a760e01b14919050565b3390565b6110fe8282604051806020016040528060008152506123a0565b6001541190565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600081815b8551811015611ce3576000868281518110611c6357634e487b7160e01b600052603260045260246000fd5b60200260200101519050808311611ca4578281604051602001611c87929190612a77565b604051602081830303815290604052805190602001209250611cd0565b8083604051602001611cb7929190612a77565b6040516020818303038152906040528051906020012092505b5080611cdb816133f6565b915050611c38565b509092149392505050565b6000611cf982612002565b9050600081600001516001600160a01b0316611d13611bb2565b6001600160a01b03161480611d485750611d2b611bb2565b6001600160a01b0316611d3d84610b67565b6001600160a01b0316145b80611d5c57508151611d5c90610946611bb2565b905080611d7b5760405162461bcd60e51b8152600401610a7590612f9b565b846001600160a01b031682600001516001600160a01b031614611db05760405162461bcd60e51b8152600401610a7590612e71565b6001600160a01b038416611dd65760405162461bcd60e51b8152600401610a7590612c41565b611de385858560016116d3565b611df36000848460000151611bd7565b6001600160a01b0385166000908152600560205260408120805460019290611e259084906001600160801b0316613339565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b03861660009081526005602052604081208054600194509092611e71918591166132cc565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526004909152948520935184549151909216600160a01b0267ffffffffffffffff60a01b19929093166001600160a01b03199091161716179055611f078460016132ee565b6000818152600460205260409020549091506001600160a01b0316611fac57611f2f81611bd0565b15611fac5760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff90811682850190815260008781526004909352949091209251835494516001600160a01b031990951692169190911767ffffffffffffffff60a01b1916600160a01b93909116929092029190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611ffa86868660016116d3565b505050505050565b61200a61265a565b61201382611bd0565b61202f5760405162461bcd60e51b8152600401610a7590612bb4565b6000825b81811061209d576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561208a579250610a31915050565b5080612095816133a4565b915050612033565b5060405162461bcd60e51b8152600401610a75906131eb565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600061211a846001600160a01b03166125d4565b1561221657836001600160a01b031663150b7a02612136611bb2565b8786866040518563ffffffff1660e01b81526004016121589493929190612ac8565b602060405180830381600087803b15801561217257600080fd5b505af19250505080156121a2575060408051601f3d908101601f1916820190925261219f918101906128f2565b60015b6121fc573d8080156121d0576040519150601f19603f3d011682016040523d82523d6000602084013e6121d5565b606091505b5080516121f45760405162461bcd60e51b8152600401610a7590613091565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061221a565b5060015b949350505050565b606060188054610adb906133bb565b60608161225657506040805180820190915260018152600360fc1b6020820152610a31565b8160005b8115612280578061226a816133f6565b91506122799050600a83613306565b915061225a565b60008167ffffffffffffffff8111156122a957634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156122d3576020820181803683370190505b5090505b841561221a576122e8600183613361565b91506122f5600a86613411565b6123009060306132ee565b60f81b81838151811061232357634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350612345600a86613306565b94506122d7565b60006001600160a01b0382166123745760405162461bcd60e51b8152600401610a7590612c86565b506001600160a01b0316600090815260056020526040902054600160801b90046001600160801b031690565b6001546001600160a01b0384166123c95760405162461bcd60e51b8152600401610a759061315c565b6123d281611bd0565b156123ef5760405162461bcd60e51b8152600401610a75906130e4565b6123fc60008583866116d3565b6001600160a01b0384166000908152600560209081526040918290208251808401845290546001600160801b038082168352600160801b90910416918101919091528151808301909252805190919081906124589087906132cc565b6001600160801b0316815260200185836020015161247691906132cc565b6001600160801b039081169091526001600160a01b03808816600081815260056020908152604080832087518154988401518816600160801b029088166fffffffffffffffffffffffffffffffff1990991698909817909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526004909552948120915182549451909516600160a01b0267ffffffffffffffff60a01b19959093166001600160a01b031990941693909317939093161790915582905b858110156125c15760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46125856000888488612106565b6125a15760405162461bcd60e51b8152600401610a7590613091565b816125ab816133f6565b92505080806125b9906133f6565b915050612538565b506001819055611ffa60008785886116d3565b3b151590565b8280546125e6906133bb565b90600052602060002090601f016020900481019282612608576000855561264e565b82601f106126215782800160ff1982351617855561264e565b8280016001018555821561264e579182015b8281111561264e578235825591602001919060010190612633565b506111b7929150612671565b604080518082019091526000808252602082015290565b5b808211156111b75760008155600101612672565b80356001600160a01b0381168114610a3157600080fd5b60008083601f8401126126ae578081fd5b50813567ffffffffffffffff8111156126c5578182fd5b60208301915083602080830285010111156126df57600080fd5b9250929050565b80358015158114610a3157600080fd5b600060208284031215612707578081fd5b61175582612686565b60008060408385031215612722578081fd5b61272b83612686565b915061273960208401612686565b90509250929050565b600080600060608486031215612756578081fd5b61275f84612686565b925061276d60208501612686565b9150604084013590509250925092565b60008060008060808587031215612792578081fd5b61279b85612686565b935060206127aa818701612686565b935060408601359250606086013567ffffffffffffffff808211156127cd578384fd5b818801915088601f8301126127e0578384fd5b8135818111156127f2576127f2613451565b604051601f8201601f191681018501838111828210171561281557612815613451565b60405281815283820185018b101561282b578586fd5b81858501868301379081019093019390935250939692955090935050565b6000806040838503121561285b578182fd5b61286483612686565b9150612739602084016126e6565b60008060408385031215612884578182fd5b61288d83612686565b946020939093013593505050565b6000602082840312156128ac578081fd5b611755826126e6565b600080604083850312156128c7578182fd5b50508035926020909101359150565b6000602082840312156128e7578081fd5b813561175581613467565b600060208284031215612903578081fd5b815161175581613467565b60008060208385031215612920578182fd5b823567ffffffffffffffff80821115612937578384fd5b818501915085601f83011261294a578384fd5b813581811115612958578485fd5b866020828501011115612969578485fd5b60209290920196919550909350505050565b60006020828403121561298c578081fd5b5035919050565b6000806000604084860312156129a7578283fd5b83359250602084013567ffffffffffffffff8111156129c4578283fd5b6129d08682870161269d565b9497909650939450505050565b600080600080606085870312156129f2578182fd5b8435935060208501359250604085013567ffffffffffffffff811115612a16578283fd5b612a228782880161269d565b95989497509550505050565b60008151808452612a46816020860160208601613378565b601f01601f19169290920160200192915050565b60609190911b6bffffffffffffffffffffffff1916815260140190565b918252602082015260400190565b60008351612a97818460208801613378565b835190830190612aab818360208801613378565b01949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612afb90830184612a2e565b9695505050505050565b901515815260200190565b90815260200190565b6000602082526117556020830184612a2e565b60208082526022908201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252602a908201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736040820152693a32b73a103a37b5b2b760b11b606082015260800190565b60208082526023908201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756040820152626e647360e81b606082015260800190565b60208082526025908201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526031908201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260408201527020746865207a65726f206164647265737360781b606082015260800190565b60208082526009908201526813585e081b1a5b5a5d60ba1b604082015260600190565b60208082526012908201527153616c65206973206e6f7420656e61626c6560701b604082015260600190565b60208082526021908201527f4d65726b6c654469737472696275746f723a20496e76616c69642070726f6f666040820152601760f91b606082015260800190565b6020808252601e908201527f45786365656473206d6178206d696e74206c696d69742070657220746e780000604082015260600190565b60208082526039908201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60408201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606082015260800190565b602080825260119082015270115e18d959591cc81b585e081b1a5b5a5d607a1b604082015260600190565b6020808252602b908201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60408201526a65726f206164647265737360a81b606082015260800190565b60208082526026908201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746040820152651037bbb732b960d11b606082015260800190565b6020808252600f908201526e496e636f72726563742076616c756560881b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b6020808252601a908201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604082015260600190565b60208082526032908201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206040820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606082015260800190565b60208082526017908201527f416c7068616c697374206973206e6f7420656e61626c65000000000000000000604082015260600190565b60208082526011908201527056616c75652062656c6f7720707269636560781b604082015260600190565b60208082526022908201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60408201526132b960f11b606082015260800190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b6020808252601d908201527f455243373231413a20746f6b656e20616c7265616479206d696e746564000000604082015260600190565b60208082526021908201527f45786365656473206d6178206d696e74206c696d6974207065722077616c6c656040820152601d60fa1b606082015260800190565b60208082526021908201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736040820152607360f81b606082015260800190565b6020808252602e908201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060408201526d0deeedccae440c4f240d2dcc8caf60931b606082015260800190565b6020808252602f908201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560408201526e1037bbb732b91037b3103a37b5b2b760891b606082015260800190565b6020808252602d908201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560408201526c3c34b9ba32b73a103a37b5b2b760991b606082015260800190565b81516001600160a01b0316815260209182015167ffffffffffffffff169181019190915260400190565b93845260208401929092526040830152606082015260800190565b60006001600160801b03808316818516808303821115612aab57612aab613425565b6000821982111561330157613301613425565b500190565b6000826133155761331561343b565b500490565b600081600019048311821515161561333457613334613425565b500290565b60006001600160801b038381169083168181101561335957613359613425565b039392505050565b60008282101561337357613373613425565b500390565b60005b8381101561339357818101518382015260200161337b565b838111156116d35750506000910152565b6000816133b3576133b3613425565b506000190190565b6002810460018216806133cf57607f821691505b602082108114156133f057634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561340a5761340a613425565b5060010190565b6000826134205761342061343b565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114611b2157600080fdfea26469706673582212202fc11c68aac1ad8d48730e88918e8ebd13da31aa3641558b7110764ad0d910c164736f6c63430008000033
Deployed Bytecode
0x6080604052600436106103765760003560e01c8063711cc2ae116101d1578063ae5cc17211610102578063dc33e681116100a0578063f176baaa1161006f578063f176baaa1461095e578063f2fde38b1461097e578063f43973351461099e578063fe4ca847146109be57610376565b8063dc33e681146108f6578063e3e0725214610916578063e985e9c51461092b578063ec5d9c491461094b57610376565b8063c87b56dd116100dc578063c87b56dd1461088c578063cfc86f7b146108ac578063d7224ba0146108c1578063d897833e146108d657610376565b8063ae5cc17214610842578063b29017c014610857578063b88d4fde1461086c57610376565b80638da5cb5b1161016f578063995b8ef611610149578063995b8ef6146107bd578063a22cb465146107d2578063a87430ba146107f2578063ac40e74f1461082257610376565b80638da5cb5b146107665780639231ab2a1461077b57806395d89b41146107a857610376565b80637ec0912e116101ab5780637ec0912e146106f15780637f205a7414610711578063830359c61461072657806384a9eb331461074657610376565b8063711cc2ae146106b4578063715018a6146106c95780637db38399146106de57610376565b8063362e718a116102ab5780634f6ccce7116102495780635862303511610223578063586230351461064a5780635b09ca1a1461065f5780636352211e1461067457806370a082311461069457610376565b80634f6ccce7146105f5578063507d70861461061557806355f804b31461062a57610376565b80633e2e2a80116102855780633e2e2a801461058b57806342842e0e146105ab578063497865b3146105cb5780634d7cea16146105e057610376565b8063362e718a14610536578063379665bd146105565780633ccfd60b1461057657610376565b806309d6a52d1161031857806323b872dd116102f257806323b872dd146104c157806326facd71146104e15780632e151ada146104f65780632f745c591461051657610376565b806309d6a52d1461047957806318160ddd146104995780631f240f58146104ae57610376565b8063076c64ea11610354578063076c64ea146103f5578063081812fc1461040a578063095ea7b3146104375780630990e5341461045757610376565b806301ffc9a71461037b578063050225ea146103b157806306fdde03146103d3575b600080fd5b34801561038757600080fd5b5061039b6103963660046128d6565b6109d3565b6040516103a89190612b05565b60405180910390f35b3480156103bd57600080fd5b506103d16103cc366004612872565b610a36565b005b3480156103df57600080fd5b506103e8610acc565b6040516103a89190612b19565b34801561040157600080fd5b5061039b610b5e565b34801561041657600080fd5b5061042a61042536600461297b565b610b67565b6040516103a89190612ab4565b34801561044357600080fd5b506103d1610452366004612872565b610baa565b34801561046357600080fd5b5061046c610c43565b6040516103a89190612b10565b34801561048557600080fd5b506103d161049436600461297b565b610c49565b3480156104a557600080fd5b5061046c610c8d565b6103d16104bc366004612993565b610c93565b3480156104cd57600080fd5b506103d16104dc366004612742565b610e4f565b3480156104ed57600080fd5b5061046c610e5a565b34801561050257600080fd5b506103d161051136600461297b565b610e60565b34801561052257600080fd5b5061046c610531366004612872565b610ec6565b34801561054257600080fd5b506103d161055136600461289b565b610fc2565b34801561056257600080fd5b506103d161057136600461297b565b61102a565b34801561058257600080fd5b506103d1611090565b34801561059757600080fd5b506103d16105a636600461297b565b611102565b3480156105b757600080fd5b506103d16105c6366004612742565b611168565b3480156105d757600080fd5b5061046c611183565b3480156105ec57600080fd5b5061046c611189565b34801561060157600080fd5b5061046c61061036600461297b565b61118f565b34801561062157600080fd5b5061046c6111bb565b34801561063657600080fd5b506103d161064536600461290e565b6111c1565b34801561065657600080fd5b5061046c61120c565b34801561066b57600080fd5b5061046c611212565b34801561068057600080fd5b5061042a61068f36600461297b565b611218565b3480156106a057600080fd5b5061046c6106af3660046126f6565b61122a565b3480156106c057600080fd5b5061046c611277565b3480156106d557600080fd5b506103d161127d565b6103d16106ec36600461297b565b6112c8565b3480156106fd57600080fd5b506103d161070c36600461297b565b6113f3565b34801561071d57600080fd5b5061046c611437565b34801561073257600080fd5b506103d161074136600461289b565b61143d565b34801561075257600080fd5b506103d16107613660046128b5565b6114b2565b34801561077257600080fd5b5061042a6114fc565b34801561078757600080fd5b5061079b61079636600461297b565b61150b565b6040516103a89190613287565b3480156107b457600080fd5b506103e861151c565b3480156107c957600080fd5b5061046c61152b565b3480156107de57600080fd5b506103d16107ed366004612849565b611531565b3480156107fe57600080fd5b5061081261080d3660046126f6565b6115ff565b6040516103a894939291906132b1565b34801561082e57600080fd5b506103d161083d36600461297b565b611626565b34801561084e57600080fd5b5061046c61168c565b34801561086357600080fd5b5061039b611692565b34801561087857600080fd5b506103d161088736600461277d565b6116a0565b34801561089857600080fd5b506103e86108a736600461297b565b6116d9565b3480156108b857600080fd5b506103e861175c565b3480156108cd57600080fd5b5061046c6117ea565b3480156108e257600080fd5b506103d16108f136600461289b565b6117f0565b34801561090257600080fd5b5061046c6109113660046126f6565b611868565b34801561092257600080fd5b5061046c611873565b34801561093757600080fd5b5061039b610946366004612710565b611879565b6103d16109593660046129dd565b6118a7565b34801561096a57600080fd5b506103d161097936600461297b565b611a4d565b34801561098a57600080fd5b506103d16109993660046126f6565b611ab3565b3480156109aa57600080fd5b506103d16109b936600461297b565b611b24565b3480156109ca57600080fd5b5061039b611b8a565b60006001600160e01b031982166380ac58cd60e01b1480610a0457506001600160e01b03198216635b5e139f60e01b145b80610a1f57506001600160e01b0319821663780e9d6360e01b145b80610a2e5750610a2e82611b99565b90505b919050565b610a3e611bb2565b6001600160a01b0316610a4f6114fc565b6001600160a01b031614610a7e5760405162461bcd60e51b8152600401610a7590612ee0565b60405180910390fd5b600b5481601354610a8f91906132ee565b1115610aad5760405162461bcd60e51b8152600401610a7590612cd7565b610ab78282611bb6565b80601354610ac591906132ee565b6013555050565b606060028054610adb906133bb565b80601f0160208091040260200160405190810160405280929190818152602001828054610b07906133bb565b8015610b545780601f10610b2957610100808354040283529160200191610b54565b820191906000526020600020905b815481529060010190602001808311610b3757829003601f168201915b5050505050905090565b60145460ff1681565b6000610b7282611bd0565b610b8e5760405162461bcd60e51b8152600401610a759061323a565b506000908152600660205260409020546001600160a01b031690565b6000610bb582611218565b9050806001600160a01b0316836001600160a01b03161415610be95760405162461bcd60e51b8152600401610a759061304f565b806001600160a01b0316610bfb611bb2565b6001600160a01b03161480610c175750610c1781610946611bb2565b610c335760405162461bcd60e51b8152600401610a7590612d9e565b610c3e838383611bd7565b505050565b60125481565b610c51611bb2565b6001600160a01b0316610c626114fc565b6001600160a01b031614610c885760405162461bcd60e51b8152600401610a7590612ee0565b601055565b60015490565b600033604051602001610ca69190612a5a565b60408051601f19818403018152919052805160209091012060145490915060ff16610ce35760405162461bcd60e51b8152600401610a7590612fed565b600a5484601254610cf491906132ee565b1115610d125760405162461bcd60e51b8152600401610a7590612dfb565b610d53838380806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506015549150849050611c33565b610d6f5760405162461bcd60e51b8152600401610a7590612d26565b600c5433600090815260176020526040902060010154610d909086906132ee565b1115610dae5760405162461bcd60e51b8152600401610a759061311b565b600e54841115610dd05760405162461bcd60e51b8152600401610a7590612d67565b83601054610dde919061331a565b341015610dfd5760405162461bcd60e51b8152600401610a7590613024565b610e073385611bb6565b83601254610e1591906132ee565b60125533600090815260176020526040902060010154610e369085906132ee565b3360009081526017602052604090206001015550505050565b610c3e838383611cee565b60155481565b610e68611bb2565b6001600160a01b0316610e796114fc565b6001600160a01b031614610e9f5760405162461bcd60e51b8152600401610a7590612ee0565b80600a541015610ec15760405162461bcd60e51b8152600401610a7590612eb7565b600c55565b6000610ed18361122a565b8210610eef5760405162461bcd60e51b8152600401610a7590612b2c565b6000610ef9610c8d565b905060008060005b83811015610fa3576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610f5457805192505b876001600160a01b0316836001600160a01b03161415610f905786841415610f8257509350610fbc92505050565b83610f8c816133f6565b9450505b5080610f9b816133f6565b915050610f01565b5060405162461bcd60e51b8152600401610a759061319d565b92915050565b610fca611bb2565b6001600160a01b0316610fdb6114fc565b6001600160a01b0316146110015760405162461bcd60e51b8152600401610a7590612ee0565b60145460ff161515811515141561101757600080fd5b6014805460ff1916911515919091179055565b611032611bb2565b6001600160a01b03166110436114fc565b6001600160a01b0316146110695760405162461bcd60e51b8152600401610a7590612ee0565b60135481101561108b5760405162461bcd60e51b8152600401610a7590612eb7565b600b55565b611098611bb2565b6001600160a01b03166110a96114fc565b6001600160a01b0316146110cf5760405162461bcd60e51b8152600401610a7590612ee0565b6040514790339082156108fc029083906000818181858888f193505050501580156110fe573d6000803e3d6000fd5b5050565b61110a611bb2565b6001600160a01b031661111b6114fc565b6001600160a01b0316146111415760405162461bcd60e51b8152600401610a7590612ee0565b80600a5410156111635760405162461bcd60e51b8152600401610a7590612eb7565b600f55565b610c3e838383604051806020016040528060008152506116a0565b600b5481565b60135481565b6000611199610c8d565b82106111b75760405162461bcd60e51b8152600401610a7590612bfe565b5090565b600c5481565b6111c9611bb2565b6001600160a01b03166111da6114fc565b6001600160a01b0316146112005760405162461bcd60e51b8152600401610a7590612ee0565b610c3e601883836125da565b600e5481565b60105481565b600061122382612002565b5192915050565b60006001600160a01b0382166112525760405162461bcd60e51b8152600401610a7590612e26565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b600f5481565b611285611bb2565b6001600160a01b03166112966114fc565b6001600160a01b0316146112bc5760405162461bcd60e51b8152600401610a7590612ee0565b6112c660006120b6565b565b60145462010000900460ff166112f05760405162461bcd60e51b8152600401610a7590612cfa565b600a548160125461130191906132ee565b111561131f5760405162461bcd60e51b8152600401610a7590612dfb565b600d543360009081526017602052604090205461133d9083906132ee565b111561135b5760405162461bcd60e51b8152600401610a759061311b565b600f5481111561137d5760405162461bcd60e51b8152600401610a7590612d67565b8060115461138b919061331a565b3410156113aa5760405162461bcd60e51b8152600401610a7590613024565b6113b43382611bb6565b806012546113c291906132ee565b601255336000908152601760205260409020546113e09082906132ee565b3360009081526017602052604090205550565b6113fb611bb2565b6001600160a01b031661140c6114fc565b6001600160a01b0316146114325760405162461bcd60e51b8152600401610a7590612ee0565b601155565b60115481565b611445611bb2565b6001600160a01b03166114566114fc565b6001600160a01b03161461147c5760405162461bcd60e51b8152600401610a7590612ee0565b60145460ff610100909104161515811515141561149857600080fd5b601480549115156101000261ff0019909216919091179055565b6114ba611bb2565b6001600160a01b03166114cb6114fc565b6001600160a01b0316146114f15760405162461bcd60e51b8152600401610a7590612ee0565b601591909155601655565b6000546001600160a01b031690565b61151361265a565b610a2e82612002565b606060038054610adb906133bb565b600a5481565b611539611bb2565b6001600160a01b0316826001600160a01b0316141561156a5760405162461bcd60e51b8152600401610a7590612f64565b8060076000611577611bb2565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff1916921515929092179091556115bb611bb2565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516115f39190612b05565b60405180910390a35050565b60176020526000908152604090208054600182015460028301546003909301549192909184565b61162e611bb2565b6001600160a01b031661163f6114fc565b6001600160a01b0316146116655760405162461bcd60e51b8152600401610a7590612ee0565b80600a5410156116875760405162461bcd60e51b8152600401610a7590612eb7565b600e55565b600d5481565b601454610100900460ff1681565b6116ab848484611cee565b6116b784848484612106565b6116d35760405162461bcd60e51b8152600401610a7590613091565b50505050565b60606116e482611bd0565b6117005760405162461bcd60e51b8152600401610a7590612f15565b600061170a612222565b9050600081511161172a5760405180602001604052806000815250611755565b8061173484612231565b604051602001611745929190612a85565b6040516020818303038152906040525b9392505050565b60188054611769906133bb565b80601f0160208091040260200160405190810160405280929190818152602001828054611795906133bb565b80156117e25780601f106117b7576101008083540402835291602001916117e2565b820191906000526020600020905b8154815290600101906020018083116117c557829003601f168201915b505050505081565b60085481565b6117f8611bb2565b6001600160a01b03166118096114fc565b6001600160a01b03161461182f5760405162461bcd60e51b8152600401610a7590612ee0565b60145460ff62010000909104161515811515141561184c57600080fd5b60148054911515620100000262ff000019909216919091179055565b6000610a2e8261234c565b60165481565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6000336040516020016118ba9190612a5a565b604051602081830303815290604052805190602001209050601460019054906101000a900460ff166118fe5760405162461bcd60e51b8152600401610a7590612fed565b600a548560125461190f91906132ee565b111561192d5760405162461bcd60e51b8152600401610a7590612dfb565b61196e838380806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506016549150849050611c33565b61198a5760405162461bcd60e51b8152600401610a7590612d26565b336000908152601760205260409020600201546119b7573360009081526017602052604090206002018490555b33600090815260176020526040902060028101546003909101546119dc9087906132ee565b11156119fa5760405162461bcd60e51b8152600401610a759061311b565b611a043386611bb6565b84601254611a1291906132ee565b60125533600090815260176020526040902060030154611a339086906132ee565b336000908152601760205260409020600301555050505050565b611a55611bb2565b6001600160a01b0316611a666114fc565b6001600160a01b031614611a8c5760405162461bcd60e51b8152600401610a7590612ee0565b80600a541015611aae5760405162461bcd60e51b8152600401610a7590612eb7565b600d55565b611abb611bb2565b6001600160a01b0316611acc6114fc565b6001600160a01b031614611af25760405162461bcd60e51b8152600401610a7590612ee0565b6001600160a01b038116611b185760405162461bcd60e51b8152600401610a7590612b6e565b611b21816120b6565b50565b611b2c611bb2565b6001600160a01b0316611b3d6114fc565b6001600160a01b031614611b635760405162461bcd60e51b8152600401610a7590612ee0565b601254811015611b855760405162461bcd60e51b8152600401610a7590612eb7565b600a55565b60145462010000900460ff1681565b6001600160e01b031981166301ffc9a760e01b14919050565b3390565b6110fe8282604051806020016040528060008152506123a0565b6001541190565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600081815b8551811015611ce3576000868281518110611c6357634e487b7160e01b600052603260045260246000fd5b60200260200101519050808311611ca4578281604051602001611c87929190612a77565b604051602081830303815290604052805190602001209250611cd0565b8083604051602001611cb7929190612a77565b6040516020818303038152906040528051906020012092505b5080611cdb816133f6565b915050611c38565b509092149392505050565b6000611cf982612002565b9050600081600001516001600160a01b0316611d13611bb2565b6001600160a01b03161480611d485750611d2b611bb2565b6001600160a01b0316611d3d84610b67565b6001600160a01b0316145b80611d5c57508151611d5c90610946611bb2565b905080611d7b5760405162461bcd60e51b8152600401610a7590612f9b565b846001600160a01b031682600001516001600160a01b031614611db05760405162461bcd60e51b8152600401610a7590612e71565b6001600160a01b038416611dd65760405162461bcd60e51b8152600401610a7590612c41565b611de385858560016116d3565b611df36000848460000151611bd7565b6001600160a01b0385166000908152600560205260408120805460019290611e259084906001600160801b0316613339565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b03861660009081526005602052604081208054600194509092611e71918591166132cc565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526004909152948520935184549151909216600160a01b0267ffffffffffffffff60a01b19929093166001600160a01b03199091161716179055611f078460016132ee565b6000818152600460205260409020549091506001600160a01b0316611fac57611f2f81611bd0565b15611fac5760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff90811682850190815260008781526004909352949091209251835494516001600160a01b031990951692169190911767ffffffffffffffff60a01b1916600160a01b93909116929092029190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611ffa86868660016116d3565b505050505050565b61200a61265a565b61201382611bd0565b61202f5760405162461bcd60e51b8152600401610a7590612bb4565b6000825b81811061209d576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff16918301919091521561208a579250610a31915050565b5080612095816133a4565b915050612033565b5060405162461bcd60e51b8152600401610a75906131eb565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600061211a846001600160a01b03166125d4565b1561221657836001600160a01b031663150b7a02612136611bb2565b8786866040518563ffffffff1660e01b81526004016121589493929190612ac8565b602060405180830381600087803b15801561217257600080fd5b505af19250505080156121a2575060408051601f3d908101601f1916820190925261219f918101906128f2565b60015b6121fc573d8080156121d0576040519150601f19603f3d011682016040523d82523d6000602084013e6121d5565b606091505b5080516121f45760405162461bcd60e51b8152600401610a7590613091565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061221a565b5060015b949350505050565b606060188054610adb906133bb565b60608161225657506040805180820190915260018152600360fc1b6020820152610a31565b8160005b8115612280578061226a816133f6565b91506122799050600a83613306565b915061225a565b60008167ffffffffffffffff8111156122a957634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156122d3576020820181803683370190505b5090505b841561221a576122e8600183613361565b91506122f5600a86613411565b6123009060306132ee565b60f81b81838151811061232357634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350612345600a86613306565b94506122d7565b60006001600160a01b0382166123745760405162461bcd60e51b8152600401610a7590612c86565b506001600160a01b0316600090815260056020526040902054600160801b90046001600160801b031690565b6001546001600160a01b0384166123c95760405162461bcd60e51b8152600401610a759061315c565b6123d281611bd0565b156123ef5760405162461bcd60e51b8152600401610a75906130e4565b6123fc60008583866116d3565b6001600160a01b0384166000908152600560209081526040918290208251808401845290546001600160801b038082168352600160801b90910416918101919091528151808301909252805190919081906124589087906132cc565b6001600160801b0316815260200185836020015161247691906132cc565b6001600160801b039081169091526001600160a01b03808816600081815260056020908152604080832087518154988401518816600160801b029088166fffffffffffffffffffffffffffffffff1990991698909817909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526004909552948120915182549451909516600160a01b0267ffffffffffffffff60a01b19959093166001600160a01b031990941693909317939093161790915582905b858110156125c15760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46125856000888488612106565b6125a15760405162461bcd60e51b8152600401610a7590613091565b816125ab816133f6565b92505080806125b9906133f6565b915050612538565b506001819055611ffa60008785886116d3565b3b151590565b8280546125e6906133bb565b90600052602060002090601f016020900481019282612608576000855561264e565b82601f106126215782800160ff1982351617855561264e565b8280016001018555821561264e579182015b8281111561264e578235825591602001919060010190612633565b506111b7929150612671565b604080518082019091526000808252602082015290565b5b808211156111b75760008155600101612672565b80356001600160a01b0381168114610a3157600080fd5b60008083601f8401126126ae578081fd5b50813567ffffffffffffffff8111156126c5578182fd5b60208301915083602080830285010111156126df57600080fd5b9250929050565b80358015158114610a3157600080fd5b600060208284031215612707578081fd5b61175582612686565b60008060408385031215612722578081fd5b61272b83612686565b915061273960208401612686565b90509250929050565b600080600060608486031215612756578081fd5b61275f84612686565b925061276d60208501612686565b9150604084013590509250925092565b60008060008060808587031215612792578081fd5b61279b85612686565b935060206127aa818701612686565b935060408601359250606086013567ffffffffffffffff808211156127cd578384fd5b818801915088601f8301126127e0578384fd5b8135818111156127f2576127f2613451565b604051601f8201601f191681018501838111828210171561281557612815613451565b60405281815283820185018b101561282b578586fd5b81858501868301379081019093019390935250939692955090935050565b6000806040838503121561285b578182fd5b61286483612686565b9150612739602084016126e6565b60008060408385031215612884578182fd5b61288d83612686565b946020939093013593505050565b6000602082840312156128ac578081fd5b611755826126e6565b600080604083850312156128c7578182fd5b50508035926020909101359150565b6000602082840312156128e7578081fd5b813561175581613467565b600060208284031215612903578081fd5b815161175581613467565b60008060208385031215612920578182fd5b823567ffffffffffffffff80821115612937578384fd5b818501915085601f83011261294a578384fd5b813581811115612958578485fd5b866020828501011115612969578485fd5b60209290920196919550909350505050565b60006020828403121561298c578081fd5b5035919050565b6000806000604084860312156129a7578283fd5b83359250602084013567ffffffffffffffff8111156129c4578283fd5b6129d08682870161269d565b9497909650939450505050565b600080600080606085870312156129f2578182fd5b8435935060208501359250604085013567ffffffffffffffff811115612a16578283fd5b612a228782880161269d565b95989497509550505050565b60008151808452612a46816020860160208601613378565b601f01601f19169290920160200192915050565b60609190911b6bffffffffffffffffffffffff1916815260140190565b918252602082015260400190565b60008351612a97818460208801613378565b835190830190612aab818360208801613378565b01949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612afb90830184612a2e565b9695505050505050565b901515815260200190565b90815260200190565b6000602082526117556020830184612a2e565b60208082526022908201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252602a908201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736040820152693a32b73a103a37b5b2b760b11b606082015260800190565b60208082526023908201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756040820152626e647360e81b606082015260800190565b60208082526025908201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526031908201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260408201527020746865207a65726f206164647265737360781b606082015260800190565b60208082526009908201526813585e081b1a5b5a5d60ba1b604082015260600190565b60208082526012908201527153616c65206973206e6f7420656e61626c6560701b604082015260600190565b60208082526021908201527f4d65726b6c654469737472696275746f723a20496e76616c69642070726f6f666040820152601760f91b606082015260800190565b6020808252601e908201527f45786365656473206d6178206d696e74206c696d69742070657220746e780000604082015260600190565b60208082526039908201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60408201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606082015260800190565b602080825260119082015270115e18d959591cc81b585e081b1a5b5a5d607a1b604082015260600190565b6020808252602b908201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60408201526a65726f206164647265737360a81b606082015260800190565b60208082526026908201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746040820152651037bbb732b960d11b606082015260800190565b6020808252600f908201526e496e636f72726563742076616c756560881b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b6020808252601a908201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604082015260600190565b60208082526032908201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206040820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606082015260800190565b60208082526017908201527f416c7068616c697374206973206e6f7420656e61626c65000000000000000000604082015260600190565b60208082526011908201527056616c75652062656c6f7720707269636560781b604082015260600190565b60208082526022908201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60408201526132b960f11b606082015260800190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b6020808252601d908201527f455243373231413a20746f6b656e20616c7265616479206d696e746564000000604082015260600190565b60208082526021908201527f45786365656473206d6178206d696e74206c696d6974207065722077616c6c656040820152601d60fa1b606082015260800190565b60208082526021908201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736040820152607360f81b606082015260800190565b6020808252602e908201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060408201526d0deeedccae440c4f240d2dcc8caf60931b606082015260800190565b6020808252602f908201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560408201526e1037bbb732b91037b3103a37b5b2b760891b606082015260800190565b6020808252602d908201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560408201526c3c34b9ba32b73a103a37b5b2b760991b606082015260800190565b81516001600160a01b0316815260209182015167ffffffffffffffff169181019190915260400190565b93845260208401929092526040830152606082015260800190565b60006001600160801b03808316818516808303821115612aab57612aab613425565b6000821982111561330157613301613425565b500190565b6000826133155761331561343b565b500490565b600081600019048311821515161561333457613334613425565b500290565b60006001600160801b038381169083168181101561335957613359613425565b039392505050565b60008282101561337357613373613425565b500390565b60005b8381101561339357818101518382015260200161337b565b838111156116d35750506000910152565b6000816133b3576133b3613425565b506000190190565b6002810460018216806133cf57607f821691505b602082108114156133f057634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561340a5761340a613425565b5060010190565b6000826134205761342061343b565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114611b2157600080fdfea26469706673582212202fc11c68aac1ad8d48730e88918e8ebd13da31aa3641558b7110764ad0d910c164736f6c63430008000033
Deployed Bytecode Sourcemap
201:6230:4:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3090:370:3;;;;;;;;;;-1:-1:-1;3090:370:3;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1135:246:4;;;;;;;;;;-1:-1:-1;1135:246:4;;;;;:::i;:::-;;:::i;:::-;;4720:94:3;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;680:38:4:-;;;;;;;;;;;;;:::i;6245:204:3:-;;;;;;;;;;-1:-1:-1;6245:204:3;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;5808:379::-;;;;;;;;;;-1:-1:-1;5808:379:3;;;;;:::i;:::-;;:::i;613:26:4:-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;4575:115::-;;;;;;;;;;-1:-1:-1;4575:115:4;;;;;:::i;:::-;;:::i;1936:94:3:-;;;;;;;;;;;;;:::i;1389:904:4:-;;;;;;:::i;:::-;;:::i;7095:142:3:-;;;;;;;;;;-1:-1:-1;7095:142:3;;;;;:::i;:::-;;:::i;801:27:4:-;;;;;;;;;;;;;:::i;5310:174::-;;;;;;;;;;-1:-1:-1;5310:174:4;;;;;:::i;:::-;;:::i;2282:744:3:-;;;;;;;;;;-1:-1:-1;2282:744:3;;;;;:::i;:::-;;:::i;4827:150:4:-;;;;;;;;;;-1:-1:-1;4827:150:4;;;;;:::i;:::-;;:::i;5659:175::-;;;;;;;;;;-1:-1:-1;5659:175:4;;;;;:::i;:::-;;:::i;4069:141::-;;;;;;;;;;;;;:::i;6052:197::-;;;;;;;;;;-1:-1:-1;6052:197:4;;;;;:::i;:::-;;:::i;7300:157:3:-;;;;;;;;;;-1:-1:-1;7300:157:3;;;;;:::i;:::-;;:::i;291:33:4:-;;;;;;;;;;;;;:::i;643:30::-;;;;;;;;;;;;;:::i;2099:177:3:-;;;;;;;;;;-1:-1:-1;2099:177:3;;;;;:::i;:::-;;:::i;331:33:4:-;;;;;;;;;;;;;:::i;3958:103::-;;;;;;;;;;-1:-1:-1;3958:103:4;;;;;:::i;:::-;;:::i;407:51::-;;;;;;;;;;;;;:::i;519:44::-;;;;;;;;;;;;;:::i;4543:118:3:-;;;;;;;;;;-1:-1:-1;4543:118:3;;;;;:::i;:::-;;:::i;3516:211::-;;;;;;;;;;-1:-1:-1;3516:211:3;;;;;:::i;:::-;;:::i;462:50:4:-;;;;;;;;;;;;;:::i;1650:94:11:-;;;;;;;;;;;;;:::i;3186:645:4:-;;;;;;:::i;:::-;;:::i;4467:102::-;;;;;;;;;;-1:-1:-1;4467:102:4;;;;;:::i;:::-;;:::i;567:39::-;;;;;;;;;;;;;:::i;4983:150::-;;;;;;;;;;-1:-1:-1;4983:150:4;;;;;:::i;:::-;;:::i;6255:173::-;;;;;;;;;;-1:-1:-1;6255:173:4;;;;;:::i;:::-;;:::i;999:87:11:-;;;;;;;;;;;;;:::i;4333:128:4:-;;;;;;;;;;-1:-1:-1;4333:128:4;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;4875:98:3:-;;;;;;;;;;;;;:::i;257:30:4:-;;;;;;;;;;;;;:::i;6513:274:3:-;;;;;;;;;;-1:-1:-1;6513:274:3;;;;;:::i;:::-;;:::i;995:38:4:-;;;;;;;;;;-1:-1:-1;995:38:4;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;;:::i;5840:206::-;;;;;;;;;;-1:-1:-1;5840:206:4;;;;;:::i;:::-;;:::i;368:32::-;;;;;;;;;;;;;:::i;722:38::-;;;;;;;;;;;;;:::i;7520:311:3:-;;;;;;;;;;-1:-1:-1;7520:311:3;;;;;:::i;:::-;;:::i;5036:394::-;;;;;;;;;;-1:-1:-1;5036:394:3;;;;;:::i;:::-;;:::i;1037:27:4:-;;;;;;;;;;;;;:::i;11857:43:3:-;;;;;;;;;;;;;:::i;4696:125:4:-;;;;;;;;;;-1:-1:-1;4696:125:4;;;;;:::i;:::-;;:::i;4219:109::-;;;;;;;;;;-1:-1:-1;4219:109:4;;;;;:::i;:::-;;:::i;832:27::-;;;;;;;;;;;;;:::i;6850:186:3:-;;;;;;;;;;-1:-1:-1;6850:186:3;;;;;:::i;:::-;;:::i;2303:873:4:-;;;;;;:::i;:::-;;:::i;5139:165::-;;;;;;;;;;-1:-1:-1;5139:165:4;;;;;:::i;:::-;;:::i;1899:192:11:-;;;;;;;;;;-1:-1:-1;1899:192:11;;;;;:::i;:::-;;:::i;5490:163:4:-;;;;;;;;;;-1:-1:-1;5490:163:4;;;;;:::i;:::-;;:::i;764:30::-;;;;;;;;;;;;;:::i;3090:370:3:-;3217:4;-1:-1:-1;;;;;;3247:40:3;;-1:-1:-1;;;3247:40:3;;:99;;-1:-1:-1;;;;;;;3298:48:3;;-1:-1:-1;;;3298:48:3;3247:99;:160;;;-1:-1:-1;;;;;;;3357:50:3;;-1:-1:-1;;;3357:50:3;3247:160;:207;;;;3418:36;3442:11;3418:23;:36::i;:::-;3233:221;;3090:370;;;;:::o;1135:246:4:-;1230:12:11;:10;:12::i;:::-;-1:-1:-1;;;;;1219:23:11;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1219:23:11;;1211:68;;;;-1:-1:-1;;;1211:68:11;;;;;;;:::i;:::-;;;;;;;;;1252:12:4::1;;1242:6;1224:15;;:24;;;;:::i;:::-;:40;;1203:98;;;;-1:-1:-1::0;;;1203:98:4::1;;;;;;;:::i;:::-;1306:22;1316:3;1321:6;1306:9;:22::i;:::-;1369:6;1351:15;;:24;;;;:::i;:::-;1333:15;:42:::0;-1:-1:-1;;1135:246:4:o;4720:94:3:-;4774:13;4803:5;4796:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4720:94;:::o;680:38:4:-;;;;;;:::o;6245:204:3:-;6313:7;6337:16;6345:7;6337;:16::i;:::-;6329:74;;;;-1:-1:-1;;;6329:74:3;;;;;;;:::i;:::-;-1:-1:-1;6419:24:3;;;;:15;:24;;;;;;-1:-1:-1;;;;;6419:24:3;;6245:204::o;5808:379::-;5877:13;5893:24;5909:7;5893:15;:24::i;:::-;5877:40;;5938:5;-1:-1:-1;;;;;5932:11:3;:2;-1:-1:-1;;;;;5932:11:3;;;5924:58;;;;-1:-1:-1;;;5924:58:3;;;;;;;:::i;:::-;6023:5;-1:-1:-1;;;;;6007:21:3;:12;:10;:12::i;:::-;-1:-1:-1;;;;;6007:21:3;;:62;;;;6032:37;6049:5;6056:12;:10;:12::i;6032:37::-;5991:153;;;;-1:-1:-1;;;5991:153:3;;;;;;;:::i;:::-;6153:28;6162:2;6166:7;6175:5;6153:8;:28::i;:::-;5808:379;;;:::o;613:26:4:-;;;;:::o;4575:115::-;1230:12:11;:10;:12::i;:::-;-1:-1:-1;;;;;1219:23:11;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1219:23:11;;1211:68;;;;-1:-1:-1;;;1211:68:11;;;;;;;:::i;:::-;4656:15:4::1;:26:::0;4575:115::o;1936:94:3:-;2012:12;;1936:94;:::o;1389:904:4:-;1475:12;1517:10;1500:28;;;;;;;;:::i;:::-;;;;-1:-1:-1;;1500:28:4;;;;;;;;;1490:39;;1500:28;1490:39;;;;1547:18;;1490:39;;-1:-1:-1;1547:18:4;;1534:68;;;;-1:-1:-1;;;1534:68:4;;;;;;;:::i;:::-;1650:8;;1640:6;1626:11;;:20;;;;:::i;:::-;:32;;1613:76;;;;-1:-1:-1;;;1613:76:4;;;;;;;:::i;:::-;1712:51;1731:11;;1712:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;1744:12:4;;;-1:-1:-1;1758:4:4;;-1:-1:-1;1712:18:4;:51::i;:::-;1697:118;;;;-1:-1:-1;;;1697:118:4;;;;;;;:::i;:::-;1880:14;;1839:10;1833:17;;;;:5;:17;;;;;:34;;;:43;;1870:6;;1833:43;:::i;:::-;:61;;1820:120;;;;-1:-1:-1;;;1820:120:4;;;;;;;:::i;:::-;1968:32;;1958:6;:42;;1945:98;;;;-1:-1:-1;;;1945:98:4;;;;;;;:::i;:::-;2092:6;2074:15;;:24;;;;:::i;:::-;2061:9;:37;;2048:80;;;;-1:-1:-1;;;2048:80:4;;;;;;;:::i;:::-;2133:29;2143:10;2155:6;2133:9;:29::i;:::-;2195:6;2181:11;;:20;;;;:::i;:::-;2167:11;:34;2249:10;2243:17;;;;:5;:17;;;;;:34;;;:43;;2280:6;;2243:43;:::i;:::-;2212:10;2206:17;;;;:5;:17;;;;;:34;;:80;-1:-1:-1;;;;1389:904:4:o;7095:142:3:-;7203:28;7213:4;7219:2;7223:7;7203:9;:28::i;801:27:4:-;;;;:::o;5310:174::-;1230:12:11;:10;:12::i;:::-;-1:-1:-1;;;;;1219:23:11;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1219:23:11;;1211:68;;;;-1:-1:-1;;;1211:68:11;;;;;;;:::i;:::-;5412:8:4::1;5400;;:20;;5392:48;;;;-1:-1:-1::0;;;5392:48:4::1;;;;;;;:::i;:::-;5451:14;:25:::0;5310:174::o;2282:744:3:-;2391:7;2426:16;2436:5;2426:9;:16::i;:::-;2418:5;:24;2410:71;;;;-1:-1:-1;;;2410:71:3;;;;;;;:::i;:::-;2488:22;2513:13;:11;:13::i;:::-;2488:38;;2533:19;2563:25;2613:9;2608:350;2632:14;2628:1;:18;2608:350;;;2662:31;2696:14;;;:11;:14;;;;;;;;;2662:48;;;;;;;;;-1:-1:-1;;;;;2662:48:3;;;;;-1:-1:-1;;;2662:48:3;;;;;;;;;;;;2723:28;2719:89;;2784:14;;;-1:-1:-1;2719:89:3;2841:5;-1:-1:-1;;;;;2820:26:3;:17;-1:-1:-1;;;;;2820:26:3;;2816:135;;;2878:5;2863:11;:20;2859:59;;;-1:-1:-1;2905:1:3;-1:-1:-1;2898:8:3;;-1:-1:-1;;;2898:8:3;2859:59;2928:13;;;;:::i;:::-;;;;2816:135;-1:-1:-1;2648:3:3;;;;:::i;:::-;;;;2608:350;;;;2964:56;;-1:-1:-1;;;2964:56:3;;;;;;;:::i;2282:744::-;;;;;:::o;4827:150:4:-;1230:12:11;:10;:12::i;:::-;-1:-1:-1;;;;;1219:23:11;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1219:23:11;;1211:68;;;;-1:-1:-1;;;1211:68:11;;;;;;;:::i;:::-;4903:18:4::1;::::0;::::1;;:28;;::::0;::::1;;;;4895:37;;;::::0;::::1;;4942:18;:27:::0;;-1:-1:-1;;4942:27:4::1;::::0;::::1;;::::0;;;::::1;::::0;;4827:150::o;5659:175::-;1230:12:11;:10;:12::i;:::-;-1:-1:-1;;;;;1219:23:11;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1219:23:11;;1211:68;;;;-1:-1:-1;;;1211:68:11;;;;;;;:::i;:::-;5756:15:4::1;;5743:9;:28;;5735:56;;;;-1:-1:-1::0;;;5735:56:4::1;;;;;;;:::i;:::-;5802:12;:24:::0;5659:175::o;4069:141::-;1230:12:11;:10;:12::i;:::-;-1:-1:-1;;;;;1219:23:11;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1219:23:11;;1211:68;;;;-1:-1:-1;;;1211:68:11;;;;;;;:::i;:::-;4165:37:4::1;::::0;4134:21:::1;::::0;4173:10:::1;::::0;4165:37;::::1;;;::::0;4134:21;;4116:15:::1;4165:37:::0;4116:15;4165:37;4134:21;4173:10;4165:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;1290:1:11;4069:141:4:o:0;6052:197::-;1230:12:11;:10;:12::i;:::-;-1:-1:-1;;;;;1219:23:11;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1219:23:11;;1211:68;;;;-1:-1:-1;;;1211:68:11;;;;;;;:::i;:::-;6160:8:4::1;6148;;:20;;6140:48;;;;-1:-1:-1::0;;;6140:48:4::1;;;;;;;:::i;:::-;6199:31;:42:::0;6052:197::o;7300:157:3:-;7412:39;7429:4;7435:2;7439:7;7412:39;;;;;;;;;;;;:16;:39::i;291:33:4:-;;;;:::o;643:30::-;;;;:::o;2099:177:3:-;2166:7;2198:13;:11;:13::i;:::-;2190:5;:21;2182:69;;;;-1:-1:-1;;;2182:69:3;;;;;;;:::i;:::-;-1:-1:-1;2265:5:3;2099:177::o;331:33:4:-;;;;:::o;3958:103::-;1230:12:11;:10;:12::i;:::-;-1:-1:-1;;;;;1219:23:11;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1219:23:11;;1211:68;;;;-1:-1:-1;;;1211:68:11;;;;;;;:::i;:::-;4030:23:4::1;:13;4046:7:::0;;4030:23:::1;:::i;407:51::-:0;;;;:::o;519:44::-;;;;:::o;4543:118:3:-;4607:7;4630:20;4642:7;4630:11;:20::i;:::-;:25;;4543:118;-1:-1:-1;;4543:118:3:o;3516:211::-;3580:7;-1:-1:-1;;;;;3604:19:3;;3596:75;;;;-1:-1:-1;;;3596:75:3;;;;;;;:::i;:::-;-1:-1:-1;;;;;;3693:19:3;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;3693:27:3;;3516:211::o;462:50:4:-;;;;:::o;1650:94:11:-;1230:12;:10;:12::i;:::-;-1:-1:-1;;;;;1219:23:11;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1219:23:11;;1211:68;;;;-1:-1:-1;;;1211:68:11;;;;;;;:::i;:::-;1715:21:::1;1733:1;1715:9;:21::i;:::-;1650:94::o:0;3186:645:4:-;3252:10;;;;;;;3238:56;;;;-1:-1:-1;;;3238:56:4;;;;;;;:::i;:::-;3342:8;;3332:6;3318:11;;:20;;;;:::i;:::-;:32;;3305:76;;;;-1:-1:-1;;;3305:76:4;;;;;;;:::i;:::-;3438:13;;3405:10;3399:17;;;;:5;:17;;;;;:26;:35;;3428:6;;3399:35;:::i;:::-;:52;;3386:111;;;;-1:-1:-1;;;3386:111:4;;;;;;;:::i;:::-;3525:31;;3515:6;:41;;3502:97;;;;-1:-1:-1;;;3502:97:4;;;;;;;:::i;:::-;3643:6;3630:10;;:19;;;;:::i;:::-;3617:9;:32;;3604:75;;;;-1:-1:-1;;;3604:75:4;;;;;;;:::i;:::-;3684:29;3694:10;3706:6;3684:9;:29::i;:::-;3749:6;3735:11;;:20;;;;:::i;:::-;3721:11;:34;3795:10;3789:17;;;;:5;:17;;;;;:26;:35;;3818:6;;3789:35;:::i;:::-;3766:10;3760:17;;;;:5;:17;;;;;:64;-1:-1:-1;3186:645:4:o;4467:102::-;1230:12:11;:10;:12::i;:::-;-1:-1:-1;;;;;1219:23:11;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1219:23:11;;1211:68;;;;-1:-1:-1;;;1211:68:11;;;;;;;:::i;:::-;4540:10:4::1;:21:::0;4467:102::o;567:39::-;;;;:::o;4983:150::-;1230:12:11;:10;:12::i;:::-;-1:-1:-1;;;;;1219:23:11;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1219:23:11;;1211:68;;;;-1:-1:-1;;;1211:68:11;;;;;;;:::i;:::-;5059:18:4::1;::::0;::::1;;::::0;;::::1;;:28;;::::0;::::1;;;;5051:37;;;::::0;::::1;;5098:18;:27:::0;;;::::1;;;;-1:-1:-1::0;;5098:27:4;;::::1;::::0;;;::::1;::::0;;4983:150::o;6255:173::-;1230:12:11;:10;:12::i;:::-;-1:-1:-1;;;;;1219:23:11;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1219:23:11;;1211:68;;;;-1:-1:-1;;;1211:68:11;;;;;;;:::i;:::-;6356:12:4::1;:30:::0;;;;6393:12:::1;:30:::0;6255:173::o;999:87:11:-;1045:7;1072:6;-1:-1:-1;;;;;1072:6:11;999:87;:::o;4333:128:4:-;4399:21;;:::i;:::-;4436:20;4448:7;4436:11;:20::i;4875:98:3:-;4931:13;4960:7;4953:14;;;;;:::i;257:30:4:-;;;;:::o;6513:274:3:-;6616:12;:10;:12::i;:::-;-1:-1:-1;;;;;6604:24:3;:8;-1:-1:-1;;;;;6604:24:3;;;6596:63;;;;-1:-1:-1;;;6596:63:3;;;;;;;:::i;:::-;6713:8;6668:18;:32;6687:12;:10;:12::i;:::-;-1:-1:-1;;;;;6668:32:3;;;;;;;;;;;;;;;;;-1:-1:-1;6668:32:3;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;6668:53:3;;;;;;;;;;;6748:12;:10;:12::i;:::-;-1:-1:-1;;;;;6733:48:3;;6772:8;6733:48;;;;;;:::i;:::-;;;;;;;;6513:274;;:::o;995:38:4:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;5840:206::-;1230:12:11;:10;:12::i;:::-;-1:-1:-1;;;;;1219:23:11;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1219:23:11;;1211:68;;;;-1:-1:-1;;;1211:68:11;;;;;;;:::i;:::-;5956:8:4::1;5944;;:20;;5936:48;;;;-1:-1:-1::0;;;5936:48:4::1;;;;;;;:::i;:::-;5995:32;:43:::0;5840:206::o;368:32::-;;;;:::o;722:38::-;;;;;;;;;:::o;7520:311:3:-;7657:28;7667:4;7673:2;7677:7;7657:9;:28::i;:::-;7708:48;7731:4;7737:2;7741:7;7750:5;7708:22;:48::i;:::-;7692:133;;;;-1:-1:-1;;;7692:133:3;;;;;;;:::i;:::-;7520:311;;;;:::o;5036:394::-;5134:13;5175:16;5183:7;5175;:16::i;:::-;5159:97;;;;-1:-1:-1;;;5159:97:3;;;;;;;:::i;:::-;5265:21;5289:10;:8;:10::i;:::-;5265:34;;5344:1;5326:7;5320:21;:25;:104;;;;;;;;;;;;;;;;;5381:7;5390:18;:7;:16;:18::i;:::-;5364:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;5320:104;5306:118;5036:394;-1:-1:-1;;;5036:394:3:o;1037:27:4:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;11857:43:3:-;;;;:::o;4696:125:4:-;1230:12:11;:10;:12::i;:::-;-1:-1:-1;;;;;1219:23:11;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1219:23:11;;1211:68;;;;-1:-1:-1;;;1211:68:11;;;;;;;:::i;:::-;4768:10:4::1;::::0;::::1;::::0;;;::::1;;:20;;::::0;::::1;;;;4760:29;;;::::0;::::1;;4794:10;:19:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;4794:19:4;;::::1;::::0;;;::::1;::::0;;4696:125::o;4219:109::-;4277:7;4300:20;4314:5;4300:13;:20::i;832:27::-;;;;:::o;6850:186:3:-;-1:-1:-1;;;;;6995:25:3;;;6972:4;6995:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;6850:186::o;2303:873:4:-;2406:12;2448:10;2431:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;2421:39;;;;;;2406:54;;2478:18;;;;;;;;;;;2465:68;;;;-1:-1:-1;;;2465:68:4;;;;;;;:::i;:::-;2590:8;;2580:6;2566:11;;:20;;;;:::i;:::-;:32;;2544:84;;;;-1:-1:-1;;;2544:84:4;;;;;;;:::i;:::-;2651:51;2670:11;;2651:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;2683:12:4;;;-1:-1:-1;2697:4:4;;-1:-1:-1;2651:18:4;:51::i;:::-;2636:118;;;;-1:-1:-1;;;2636:118:4;;;;;;;:::i;:::-;2768:10;2762:17;;;;:5;:17;;;;;:35;;;2759:107;;2822:10;2816:17;;;;:5;:17;;;;;:35;;:44;;;2759:107;2936:10;2930:17;;;;:5;:17;;;;;:35;;;;2883:34;;;;;:43;;2920:6;;2883:43;:::i;:::-;:82;;2870:141;;;;-1:-1:-1;;;2870:141:4;;;;;;;:::i;:::-;3016:29;3026:10;3038:6;3016:9;:29::i;:::-;3078:6;3064:11;;:20;;;;:::i;:::-;3050:11;:34;3132:10;3126:17;;;;:5;:17;;;;;:34;;;:43;;3163:6;;3126:43;:::i;:::-;3095:10;3089:17;;;;:5;:17;;;;;:34;;:80;-1:-1:-1;;;;;2303:873:4:o;5139:165::-;1230:12:11;:10;:12::i;:::-;-1:-1:-1;;;;;1219:23:11;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1219:23:11;;1211:68;;;;-1:-1:-1;;;1211:68:11;;;;;;;:::i;:::-;5233:8:4::1;5221;;:20;;5213:48;;;;-1:-1:-1::0;;;5213:48:4::1;;;;;;;:::i;:::-;5272:13;:24:::0;5139:165::o;1899:192:11:-;1230:12;:10;:12::i;:::-;-1:-1:-1;;;;;1219:23:11;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1219:23:11;;1211:68;;;;-1:-1:-1;;;1211:68:11;;;;;;;:::i;:::-;-1:-1:-1;;;;;1988:22:11;::::1;1980:73;;;;-1:-1:-1::0;;;1980:73:11::1;;;;;;;:::i;:::-;2064:19;2074:8;2064:9;:19::i;:::-;1899:192:::0;:::o;5490:163:4:-;1230:12:11;:10;:12::i;:::-;-1:-1:-1;;;;;1219:23:11;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1219:23:11;;1211:68;;;;-1:-1:-1;;;1211:68:11;;;;;;;:::i;:::-;5583:11:4::1;;5570:9;:24;;5562:52;;;;-1:-1:-1::0;;;5562:52:4::1;;;;;;;:::i;:::-;5625:8;:20:::0;5490:163::o;764:30::-;;;;;;;;;:::o;787:157:2:-;-1:-1:-1;;;;;;896:40:2;;-1:-1:-1;;;896:40:2;787:157;;;:::o;601:98:1:-;681:10;601:98;:::o;8181::3:-;8246:27;8256:2;8260:8;8246:27;;;;;;;;;;;;:9;:27::i;8070:105::-;8157:12;;-1:-1:-1;8147:22:3;8070:105::o;11679:172::-;11776:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;11776:29:3;-1:-1:-1;;;;;11776:29:3;;;;;;;;;11817:28;;11776:24;;11817:28;;;;;;;11679:172;;;:::o;423:830:10:-;548:4;588;548;605:525;629:5;:12;625:1;:16;605:525;;;663:20;686:5;692:1;686:8;;;;;;-1:-1:-1;;;686:8:10;;;;;;;;;;;;;;;663:31;;731:12;715;:28;711:408;;885:12;899;868:44;;;;;;;;;:::i;:::-;;;;;;;;;;;;;858:55;;;;;;843:70;;711:408;;;1075:12;1089;1058:44;;;;;;;;;:::i;:::-;;;;;;;;;;;;;1048:55;;;;;;1033:70;;711:408;-1:-1:-1;643:3:10;;;;:::i;:::-;;;;605:525;;;-1:-1:-1;1225:20:10;;;;423:830;-1:-1:-1;;;423:830:10:o;10044:1529:3:-;10141:35;10179:20;10191:7;10179:11;:20::i;:::-;10141:58;;10208:22;10250:13;:18;;;-1:-1:-1;;;;;10234:34:3;:12;:10;:12::i;:::-;-1:-1:-1;;;;;10234:34:3;;:81;;;;10303:12;:10;:12::i;:::-;-1:-1:-1;;;;;10279:36:3;:20;10291:7;10279:11;:20::i;:::-;-1:-1:-1;;;;;10279:36:3;;10234:81;:142;;;-1:-1:-1;10343:18:3;;10326:50;;10363:12;:10;:12::i;10326:50::-;10208:169;;10402:17;10386:101;;;;-1:-1:-1;;;10386:101:3;;;;;;;:::i;:::-;10534:4;-1:-1:-1;;;;;10512:26:3;:13;:18;;;-1:-1:-1;;;;;10512:26:3;;10496:98;;;;-1:-1:-1;;;10496:98:3;;;;;;;:::i;:::-;-1:-1:-1;;;;;10609:16:3;;10601:66;;;;-1:-1:-1;;;10601:66:3;;;;;;;:::i;:::-;10676:43;10698:4;10704:2;10708:7;10717:1;10676:21;:43::i;:::-;10776:49;10793:1;10797:7;10806:13;:18;;;10776:8;:49::i;:::-;-1:-1:-1;;;;;10834:18:3;;;;;;:12;:18;;;;;:31;;10864:1;;10834:18;:31;;10864:1;;-1:-1:-1;;;;;10834:31:3;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;10834:31:3;;;;;;;;;;;;;;;-1:-1:-1;;;;;10872:16:3;;-1:-1:-1;10872:16:3;;;:12;:16;;;;;:29;;-1:-1:-1;;;10872:16:3;;:29;;-1:-1:-1;;10872:29:3;;:::i;:::-;;;-1:-1:-1;;;;;10872:29:3;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;10931:43:3;;;;;;;;-1:-1:-1;;;;;10931:43:3;;;;;;10957:15;10931:43;;;;;;;;;-1:-1:-1;10908:20:3;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;10908:66:3;-1:-1:-1;;;;10908:66:3;;;;-1:-1:-1;;;;;;10908:66:3;;;;;;;;11224:11;10920:7;-1:-1:-1;11224:11:3;:::i;:::-;11287:1;11246:24;;;:11;:24;;;;;:29;11202:33;;-1:-1:-1;;;;;;11246:29:3;11242:236;;11304:20;11312:11;11304:7;:20::i;:::-;11300:171;;;11364:97;;;;;;;;11391:18;;-1:-1:-1;;;;;11364:97:3;;;;;;11422:28;;;;11364:97;;;;;;;;;;-1:-1:-1;11337:24:3;;;:11;:24;;;;;;;:124;;;;;;-1:-1:-1;;;;;;11337:124:3;;;;;;;;;-1:-1:-1;;;;11337:124:3;-1:-1:-1;;;11337:124:3;;;;;;;;;;;;;;11300:171;11510:7;11506:2;-1:-1:-1;;;;;11491:27:3;11500:4;-1:-1:-1;;;;;11491:27:3;;;;;;;;;;;11525:42;11546:4;11552:2;11556:7;11565:1;11525:20;:42::i;:::-;10044:1529;;;;;;:::o;3979:510::-;4055:21;;:::i;:::-;4096:16;4104:7;4096;:16::i;:::-;4088:71;;;;-1:-1:-1;;;4088:71:3;;;;;;;:::i;:::-;4168:26;4224:7;4204:214;4241:18;4233:4;:26;4204:214;;4278:31;4312:17;;;:11;:17;;;;;;;;;4278:51;;;;;;;;;-1:-1:-1;;;;;4278:51:3;;;;;-1:-1:-1;;;4278:51:3;;;;;;;;;;;;4342:28;4338:73;;4392:9;-1:-1:-1;4385:16:3;;-1:-1:-1;;4385:16:3;4338:73;-1:-1:-1;4261:6:3;;;;:::i;:::-;;;;4204:214;;;;4426:57;;-1:-1:-1;;;4426:57:3;;;;;;;:::i;2099:173:11:-;2155:16;2174:6;;-1:-1:-1;;;;;2191:17:11;;;-1:-1:-1;;;;;;2191:17:11;;;;;;2224:40;;2174:6;;;;;;;2224:40;;2155:16;2224:40;2099:173;;:::o;13310:690:3:-;13447:4;13464:15;:2;-1:-1:-1;;;;;13464:13:3;;:15::i;:::-;13460:535;;;13519:2;-1:-1:-1;;;;;13503:36:3;;13540:12;:10;:12::i;:::-;13554:4;13560:7;13569:5;13503:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;13503:72:3;;;;;;;;-1:-1:-1;;13503:72:3;;;;;;;;;;;;:::i;:::-;;;13490:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;13734:13:3;;13730:215;;13767:61;;-1:-1:-1;;;13767:61:3;;;;;;;:::i;13730:215::-;13913:6;13907:13;13898:6;13894:2;13890:15;13883:38;13490:464;-1:-1:-1;;;;;;13625:55:3;-1:-1:-1;;;13625:55:3;;-1:-1:-1;13618:62:3;;13460:535;-1:-1:-1;13983:4:3;13460:535;13310:690;;;;;;:::o;3840:110:4:-;3900:13;3929;3922:20;;;;;:::i;288:723:13:-;344:13;565:10;561:53;;-1:-1:-1;592:10:13;;;;;;;;;;;;-1:-1:-1;;;592:10:13;;;;;;561:53;639:5;624:12;680:78;687:9;;680:78;;713:8;;;;:::i;:::-;;-1:-1:-1;736:10:13;;-1:-1:-1;744:2:13;736:10;;:::i;:::-;;;680:78;;;768:19;800:6;790:17;;;;;;-1:-1:-1;;;790:17:13;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;790:17:13;;768:39;;818:154;825:10;;818:154;;852:11;862:1;852:11;;:::i;:::-;;-1:-1:-1;921:10:13;929:2;921:5;:10;:::i;:::-;908:24;;:2;:24;:::i;:::-;895:39;;878:6;885;878:14;;;;;;-1:-1:-1;;;878:14:13;;;;;;;;;;;;:56;-1:-1:-1;;;;;878:56:13;;;;;;;;-1:-1:-1;949:11:13;958:2;949:11;;:::i;:::-;;;818:154;;3733:240:3;3794:7;-1:-1:-1;;;;;3826:19:3;;3810:102;;;;-1:-1:-1;;;3810:102:3;;;;;;;:::i;:::-;-1:-1:-1;;;;;;3934:19:3;;;;;:12;:19;;;;;:32;-1:-1:-1;;;3934:32:3;;-1:-1:-1;;;;;3934:32:3;;3733:240::o;8618:1194::-;8746:12;;-1:-1:-1;;;;;8773:16:3;;8765:62;;;;-1:-1:-1;;;8765:62:3;;;;;;;:::i;:::-;8964:21;8972:12;8964:7;:21::i;:::-;8963:22;8955:64;;;;-1:-1:-1;;;8955:64:3;;;;;;;:::i;:::-;9028:61;9058:1;9062:2;9066:12;9080:8;9028:21;:61::i;:::-;-1:-1:-1;;;;;9131:16:3;;9098:30;9131:16;;;:12;:16;;;;;;;;;9098:49;;;;;;;;;-1:-1:-1;;;;;9098:49:3;;;;;-1:-1:-1;;;9098:49:3;;;;;;;;;;;9173:119;;;;;;;;9193:19;;9098:49;;9173:119;;;9193:39;;9223:8;;9193:39;:::i;:::-;-1:-1:-1;;;;;9173:119:3;;;;;9276:8;9241:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;9173:119:3;;;;;;-1:-1:-1;;;;;9154:16:3;;;;;;;:12;:16;;;;;;;;:138;;;;;;;;;;-1:-1:-1;;;9154:138:3;;;;-1:-1:-1;;9154:138:3;;;;;;;;;;;;;;;;;9327:43;;;;;;;;;;;9353:15;9327:43;;;;;;;;9299:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;9299:71:3;-1:-1:-1;;;;9299:71:3;;;;-1:-1:-1;;;;;;9299:71:3;;;;;;;;;;;;;;;9311:12;;9423:281;9447:8;9443:1;:12;9423:281;;;9476:38;;9501:12;;-1:-1:-1;;;;;9476:38:3;;;9493:1;;9476:38;;9493:1;;9476:38;9541:59;9572:1;9576:2;9580:12;9594:5;9541:22;:59::i;:::-;9523:150;;;;-1:-1:-1;;;9523:150:3;;;;;;;:::i;:::-;9682:14;;;;:::i;:::-;;;;9457:3;;;;;:::i;:::-;;;;9423:281;;;-1:-1:-1;9712:12:3;:27;;;9746:60;9775:1;9779:2;9783:12;9797:8;9746:20;:60::i;743:387:0:-;1066:20;1114:8;;;743:387::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;14:175:14;84:20;;-1:-1:-1;;;;;133:31:14;;123:42;;113:2;;179:1;176;169:12;194:400;;;327:3;320:4;312:6;308:17;304:27;294:2;;350:6;342;335:22;294:2;-1:-1:-1;378:20:14;;421:18;410:30;;407:2;;;460:8;450;443:26;407:2;504:4;496:6;492:17;480:29;;567:3;560:4;552;544:6;540:17;532:6;528:30;524:41;521:50;518:2;;;584:1;581;574:12;518:2;284:310;;;;;:::o;599:162::-;666:20;;722:13;;715:21;705:32;;695:2;;751:1;748;741:12;766:198;;878:2;866:9;857:7;853:23;849:32;846:2;;;899:6;891;884:22;846:2;927:31;948:9;927:31;:::i;969:274::-;;;1098:2;1086:9;1077:7;1073:23;1069:32;1066:2;;;1119:6;1111;1104:22;1066:2;1147:31;1168:9;1147:31;:::i;:::-;1137:41;;1197:40;1233:2;1222:9;1218:18;1197:40;:::i;:::-;1187:50;;1056:187;;;;;:::o;1248:342::-;;;;1394:2;1382:9;1373:7;1369:23;1365:32;1362:2;;;1415:6;1407;1400:22;1362:2;1443:31;1464:9;1443:31;:::i;:::-;1433:41;;1493:40;1529:2;1518:9;1514:18;1493:40;:::i;:::-;1483:50;;1580:2;1569:9;1565:18;1552:32;1542:42;;1352:238;;;;;:::o;1595:1178::-;;;;;1767:3;1755:9;1746:7;1742:23;1738:33;1735:2;;;1789:6;1781;1774:22;1735:2;1817:31;1838:9;1817:31;:::i;:::-;1807:41;;1867:2;1888:40;1924:2;1913:9;1909:18;1888:40;:::i;:::-;1878:50;;1975:2;1964:9;1960:18;1947:32;1937:42;;2030:2;2019:9;2015:18;2002:32;2053:18;2094:2;2086:6;2083:14;2080:2;;;2115:6;2107;2100:22;2080:2;2158:6;2147:9;2143:22;2133:32;;2203:7;2196:4;2192:2;2188:13;2184:27;2174:2;;2230:6;2222;2215:22;2174:2;2271;2258:16;2293:2;2289;2286:10;2283:2;;;2299:18;;:::i;:::-;2348:2;2342:9;2417:2;2398:13;;-1:-1:-1;;2394:27:14;2382:40;;2378:49;;2442:18;;;2462:22;;;2439:46;2436:2;;;2488:18;;:::i;:::-;2524:2;2517:22;2548:18;;;2585:11;;;2581:20;;2578:33;-1:-1:-1;2575:2:14;;;2629:6;2621;2614:22;2575:2;2690;2685;2681;2677:11;2672:2;2664:6;2660:15;2647:46;2713:15;;;2709:24;;;2702:40;;;;-1:-1:-1;1725:1048:14;;;;-1:-1:-1;1725:1048:14;;-1:-1:-1;;1725:1048:14:o;2778:268::-;;;2904:2;2892:9;2883:7;2879:23;2875:32;2872:2;;;2925:6;2917;2910:22;2872:2;2953:31;2974:9;2953:31;:::i;:::-;2943:41;;3003:37;3036:2;3025:9;3021:18;3003:37;:::i;3051:266::-;;;3180:2;3168:9;3159:7;3155:23;3151:32;3148:2;;;3201:6;3193;3186:22;3148:2;3229:31;3250:9;3229:31;:::i;:::-;3219:41;3307:2;3292:18;;;;3279:32;;-1:-1:-1;;;3138:179:14:o;3322:192::-;;3431:2;3419:9;3410:7;3406:23;3402:32;3399:2;;;3452:6;3444;3437:22;3399:2;3480:28;3498:9;3480:28;:::i;3519:258::-;;;3648:2;3636:9;3627:7;3623:23;3619:32;3616:2;;;3669:6;3661;3654:22;3616:2;-1:-1:-1;;3697:23:14;;;3767:2;3752:18;;;3739:32;;-1:-1:-1;3606:171:14:o;3782:257::-;;3893:2;3881:9;3872:7;3868:23;3864:32;3861:2;;;3914:6;3906;3899:22;3861:2;3958:9;3945:23;3977:32;4003:5;3977:32;:::i;4044:261::-;;4166:2;4154:9;4145:7;4141:23;4137:32;4134:2;;;4187:6;4179;4172:22;4134:2;4224:9;4218:16;4243:32;4269:5;4243:32;:::i;4310:642::-;;;4442:2;4430:9;4421:7;4417:23;4413:32;4410:2;;;4463:6;4455;4448:22;4410:2;4508:9;4495:23;4537:18;4578:2;4570:6;4567:14;4564:2;;;4599:6;4591;4584:22;4564:2;4642:6;4631:9;4627:22;4617:32;;4687:7;4680:4;4676:2;4672:13;4668:27;4658:2;;4714:6;4706;4699:22;4658:2;4759;4746:16;4785:2;4777:6;4774:14;4771:2;;;4806:6;4798;4791:22;4771:2;4856:7;4851:2;4842:6;4838:2;4834:15;4830:24;4827:37;4824:2;;;4882:6;4874;4867:22;4824:2;4918;4910:11;;;;;4940:6;;-1:-1:-1;4400:552:14;;-1:-1:-1;;;;4400:552:14:o;4957:190::-;;5069:2;5057:9;5048:7;5044:23;5040:32;5037:2;;;5090:6;5082;5075:22;5037:2;-1:-1:-1;5118:23:14;;5027:120;-1:-1:-1;5027:120:14:o;5152:531::-;;;;5316:2;5304:9;5295:7;5291:23;5287:32;5284:2;;;5337:6;5329;5322:22;5284:2;5378:9;5365:23;5355:33;;5439:2;5428:9;5424:18;5411:32;5466:18;5458:6;5455:30;5452:2;;;5503:6;5495;5488:22;5452:2;5547:76;5615:7;5606:6;5595:9;5591:22;5547:76;:::i;:::-;5274:409;;5642:8;;-1:-1:-1;5521:102:14;;-1:-1:-1;;;;5274:409:14:o;5688:599::-;;;;;5869:2;5857:9;5848:7;5844:23;5840:32;5837:2;;;5890:6;5882;5875:22;5837:2;5931:9;5918:23;5908:33;;5988:2;5977:9;5973:18;5960:32;5950:42;;6043:2;6032:9;6028:18;6015:32;6070:18;6062:6;6059:30;6056:2;;;6107:6;6099;6092:22;6056:2;6151:76;6219:7;6210:6;6199:9;6195:22;6151:76;:::i;:::-;5827:460;;;;-1:-1:-1;6246:8:14;-1:-1:-1;;;;5827:460:14:o;6292:259::-;;6373:5;6367:12;6400:6;6395:3;6388:19;6416:63;6472:6;6465:4;6460:3;6456:14;6449:4;6442:5;6438:16;6416:63;:::i;:::-;6533:2;6512:15;-1:-1:-1;;6508:29:14;6499:39;;;;6540:4;6495:50;;6343:208;-1:-1:-1;;6343:208:14:o;6556:229::-;6705:2;6701:15;;;;-1:-1:-1;;6697:53:14;6685:66;;6776:2;6767:12;;6675:110::o;6790:247::-;6947:19;;;6991:2;6982:12;;6975:28;7028:2;7019:12;;6937:100::o;7042:470::-;;7259:6;7253:13;7275:53;7321:6;7316:3;7309:4;7301:6;7297:17;7275:53;:::i;:::-;7391:13;;7350:16;;;;7413:57;7391:13;7350:16;7447:4;7435:17;;7413:57;:::i;:::-;7486:20;;7229:283;-1:-1:-1;;;;7229:283:14:o;7517:203::-;-1:-1:-1;;;;;7681:32:14;;;;7663:51;;7651:2;7636:18;;7618:102::o;7725:490::-;-1:-1:-1;;;;;7994:15:14;;;7976:34;;8046:15;;8041:2;8026:18;;8019:43;8093:2;8078:18;;8071:34;;;8141:3;8136:2;8121:18;;8114:31;;;7725:490;;8162:47;;8189:19;;8181:6;8162:47;:::i;:::-;8154:55;7928:287;-1:-1:-1;;;;;;7928:287:14:o;8220:187::-;8385:14;;8378:22;8360:41;;8348:2;8333:18;;8315:92::o;8412:177::-;8558:25;;;8546:2;8531:18;;8513:76::o;8594:221::-;;8743:2;8732:9;8725:21;8763:46;8805:2;8794:9;8790:18;8782:6;8763:46;:::i;8820:398::-;9022:2;9004:21;;;9061:2;9041:18;;;9034:30;9100:34;9095:2;9080:18;;9073:62;-1:-1:-1;;;9166:2:14;9151:18;;9144:32;9208:3;9193:19;;8994:224::o;9223:402::-;9425:2;9407:21;;;9464:2;9444:18;;;9437:30;9503:34;9498:2;9483:18;;9476:62;-1:-1:-1;;;9569:2:14;9554:18;;9547:36;9615:3;9600:19;;9397:228::o;9630:406::-;9832:2;9814:21;;;9871:2;9851:18;;;9844:30;9910:34;9905:2;9890:18;;9883:62;-1:-1:-1;;;9976:2:14;9961:18;;9954:40;10026:3;10011:19;;9804:232::o;10041:399::-;10243:2;10225:21;;;10282:2;10262:18;;;10255:30;10321:34;10316:2;10301:18;;10294:62;-1:-1:-1;;;10387:2:14;10372:18;;10365:33;10430:3;10415:19;;10215:225::o;10445:401::-;10647:2;10629:21;;;10686:2;10666:18;;;10659:30;10725:34;10720:2;10705:18;;10698:62;-1:-1:-1;;;10791:2:14;10776:18;;10769:35;10836:3;10821:19;;10619:227::o;10851:413::-;11053:2;11035:21;;;11092:2;11072:18;;;11065:30;11131:34;11126:2;11111:18;;11104:62;-1:-1:-1;;;11197:2:14;11182:18;;11175:47;11254:3;11239:19;;11025:239::o;11269:332::-;11471:2;11453:21;;;11510:1;11490:18;;;11483:29;-1:-1:-1;;;11543:2:14;11528:18;;11521:39;11592:2;11577:18;;11443:158::o;11606:342::-;11808:2;11790:21;;;11847:2;11827:18;;;11820:30;-1:-1:-1;;;11881:2:14;11866:18;;11859:48;11939:2;11924:18;;11780:168::o;11953:397::-;12155:2;12137:21;;;12194:2;12174:18;;;12167:30;12233:34;12228:2;12213:18;;12206:62;-1:-1:-1;;;12299:2:14;12284:18;;12277:31;12340:3;12325:19;;12127:223::o;12355:354::-;12557:2;12539:21;;;12596:2;12576:18;;;12569:30;12635:32;12630:2;12615:18;;12608:60;12700:2;12685:18;;12529:180::o;12714:421::-;12916:2;12898:21;;;12955:2;12935:18;;;12928:30;12994:34;12989:2;12974:18;;12967:62;13065:27;13060:2;13045:18;;13038:55;13125:3;13110:19;;12888:247::o;13140:341::-;13342:2;13324:21;;;13381:2;13361:18;;;13354:30;-1:-1:-1;;;13415:2:14;13400:18;;13393:47;13472:2;13457:18;;13314:167::o;13486:407::-;13688:2;13670:21;;;13727:2;13707:18;;;13700:30;13766:34;13761:2;13746:18;;13739:62;-1:-1:-1;;;13832:2:14;13817:18;;13810:41;13883:3;13868:19;;13660:233::o;13898:402::-;14100:2;14082:21;;;14139:2;14119:18;;;14112:30;14178:34;14173:2;14158:18;;14151:62;-1:-1:-1;;;14244:2:14;14229:18;;14222:36;14290:3;14275:19;;14072:228::o;14305:339::-;14507:2;14489:21;;;14546:2;14526:18;;;14519:30;-1:-1:-1;;;14580:2:14;14565:18;;14558:45;14635:2;14620:18;;14479:165::o;14649:356::-;14851:2;14833:21;;;14870:18;;;14863:30;14929:34;14924:2;14909:18;;14902:62;14996:2;14981:18;;14823:182::o;15010:411::-;15212:2;15194:21;;;15251:2;15231:18;;;15224:30;15290:34;15285:2;15270:18;;15263:62;-1:-1:-1;;;15356:2:14;15341:18;;15334:45;15411:3;15396:19;;15184:237::o;15426:350::-;15628:2;15610:21;;;15667:2;15647:18;;;15640:30;15706:28;15701:2;15686:18;;15679:56;15767:2;15752:18;;15600:176::o;15781:414::-;15983:2;15965:21;;;16022:2;16002:18;;;15995:30;16061:34;16056:2;16041:18;;16034:62;-1:-1:-1;;;16127:2:14;16112:18;;16105:48;16185:3;16170:19;;15955:240::o;16200:347::-;16402:2;16384:21;;;16441:2;16421:18;;;16414:30;16480:25;16475:2;16460:18;;16453:53;16538:2;16523:18;;16374:173::o;16552:341::-;16754:2;16736:21;;;16793:2;16773:18;;;16766:30;-1:-1:-1;;;16827:2:14;16812:18;;16805:47;16884:2;16869:18;;16726:167::o;16898:398::-;17100:2;17082:21;;;17139:2;17119:18;;;17112:30;17178:34;17173:2;17158:18;;17151:62;-1:-1:-1;;;17244:2:14;17229:18;;17222:32;17286:3;17271:19;;17072:224::o;17301:415::-;17503:2;17485:21;;;17542:2;17522:18;;;17515:30;17581:34;17576:2;17561:18;;17554:62;-1:-1:-1;;;17647:2:14;17632:18;;17625:49;17706:3;17691:19;;17475:241::o;17721:353::-;17923:2;17905:21;;;17962:2;17942:18;;;17935:30;18001:31;17996:2;17981:18;;17974:59;18065:2;18050:18;;17895:179::o;18079:397::-;18281:2;18263:21;;;18320:2;18300:18;;;18293:30;18359:34;18354:2;18339:18;;18332:62;-1:-1:-1;;;18425:2:14;18410:18;;18403:31;18466:3;18451:19;;18253:223::o;18481:397::-;18683:2;18665:21;;;18722:2;18702:18;;;18695:30;18761:34;18756:2;18741:18;;18734:62;-1:-1:-1;;;18827:2:14;18812:18;;18805:31;18868:3;18853:19;;18655:223::o;18883:410::-;19085:2;19067:21;;;19124:2;19104:18;;;19097:30;19163:34;19158:2;19143:18;;19136:62;-1:-1:-1;;;19229:2:14;19214:18;;19207:44;19283:3;19268:19;;19057:236::o;19298:411::-;19500:2;19482:21;;;19539:2;19519:18;;;19512:30;19578:34;19573:2;19558:18;;19551:62;-1:-1:-1;;;19644:2:14;19629:18;;19622:45;19699:3;19684:19;;19472:237::o;19714:409::-;19916:2;19898:21;;;19955:2;19935:18;;;19928:30;19994:34;19989:2;19974:18;;19967:62;-1:-1:-1;;;20060:2:14;20045:18;;20038:43;20113:3;20098:19;;19888:235::o;20128:360::-;20358:13;;-1:-1:-1;;;;;20354:39:14;20336:58;;20454:4;20442:17;;;20436:24;20462:18;20432:49;20410:20;;;20403:79;;;;20324:2;20309:18;;20291:197::o;20675:391::-;20906:25;;;20962:2;20947:18;;20940:34;;;;21005:2;20990:18;;20983:34;21048:2;21033:18;;21026:34;20893:3;20878:19;;20860:206::o;21071:253::-;;-1:-1:-1;;;;;21200:2:14;21197:1;21193:10;21230:2;21227:1;21223:10;21261:3;21257:2;21253:12;21248:3;21245:21;21242:2;;;21269:18;;:::i;21329:128::-;;21400:1;21396:6;21393:1;21390:13;21387:2;;;21406:18;;:::i;:::-;-1:-1:-1;21442:9:14;;21377:80::o;21462:120::-;;21528:1;21518:2;;21533:18;;:::i;:::-;-1:-1:-1;21567:9:14;;21508:74::o;21587:168::-;;21693:1;21689;21685:6;21681:14;21678:1;21675:21;21670:1;21663:9;21656:17;21652:45;21649:2;;;21700:18;;:::i;:::-;-1:-1:-1;21740:9:14;;21639:116::o;21760:246::-;;-1:-1:-1;;;;;21913:10:14;;;;21883;;21935:12;;;21932:2;;;21950:18;;:::i;:::-;21987:13;;21809:197;-1:-1:-1;;;21809:197:14:o;22011:125::-;;22079:1;22076;22073:8;22070:2;;;22084:18;;:::i;:::-;-1:-1:-1;22121:9:14;;22060:76::o;22141:258::-;22213:1;22223:113;22237:6;22234:1;22231:13;22223:113;;;22313:11;;;22307:18;22294:11;;;22287:39;22259:2;22252:10;22223:113;;;22354:6;22351:1;22348:13;22345:2;;;-1:-1:-1;;22389:1:14;22371:16;;22364:27;22194:205::o;22404:136::-;;22471:5;22461:2;;22480:18;;:::i;:::-;-1:-1:-1;;;22516:18:14;;22451:89::o;22545:380::-;22630:1;22620:12;;22677:1;22667:12;;;22688:2;;22742:4;22734:6;22730:17;22720:27;;22688:2;22795;22787:6;22784:14;22764:18;22761:38;22758:2;;;22841:10;22836:3;22832:20;22829:1;22822:31;22876:4;22873:1;22866:15;22904:4;22901:1;22894:15;22758:2;;22600:325;;;:::o;22930:135::-;;-1:-1:-1;;22990:17:14;;22987:2;;;23010:18;;:::i;:::-;-1:-1:-1;23057:1:14;23046:13;;22977:88::o;23070:112::-;;23128:1;23118:2;;23133:18;;:::i;:::-;-1:-1:-1;23167:9:14;;23108:74::o;23187:127::-;23248:10;23243:3;23239:20;23236:1;23229:31;23279:4;23276:1;23269:15;23303:4;23300:1;23293:15;23319:127;23380:10;23375:3;23371:20;23368:1;23361:31;23411:4;23408:1;23401:15;23435:4;23432:1;23425:15;23451:127;23512:10;23507:3;23503:20;23500:1;23493:31;23543:4;23540:1;23533:15;23567:4;23564:1;23557:15;23583:133;-1:-1:-1;;;;;;23659:32:14;;23649:43;;23639:2;;23706:1;23703;23696:12
Swarm Source
ipfs://2fc11c68aac1ad8d48730e88918e8ebd13da31aa3641558b7110764ad0d910c1
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.