Feature Tip: Add private address tag to any address under My Name Tag !
ERC-721
Overview
Max Total Supply
673 ETHMB
Holders
88
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
10 ETHMBLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
ETHMB
Compiler Version
v0.8.0+commit.c7dfd78e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-04-28 */ pragma solidity ^0.8.0; // SPDX-License-Identifier: MIT abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } 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); } } 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); } } 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; } } 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); } 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; } 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); } 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); } 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); } library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } abstract contract ERC721P is Context, ERC165, IERC721, IERC721Metadata { using Address for address; string private _name; string private _symbol; address[] internal _owners; mapping(uint256 => address) private _tokenApprovals; mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); uint count = 0; uint length = _owners.length; for( uint i = 0; i < length; ++i ){ if( owner == _owners[i] ){ ++count; } } delete length; return count; } function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } function name() public view virtual override returns (string memory) { return _name; } function symbol() public view virtual override returns (string memory) { return _symbol; } function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721P.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } function _exists(uint256 tokenId) internal view virtual returns (bool) { return tokenId < _owners.length && _owners[tokenId] != address(0); } function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721P.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _owners.push(to); emit Transfer(address(0), to, tokenId); } function _burn(uint256 tokenId) internal virtual { address owner = ERC721P.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _owners[tokenId] = address(0); emit Transfer(owner, address(0), tokenId); } function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721P.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _owners[tokenId] = to; emit Transfer(from, to, tokenId); } function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721P.ownerOf(tokenId), to, tokenId); } 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.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } abstract contract ERC721Enum is ERC721P, IERC721Enumerable { function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721P) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256 tokenId) { require(index < ERC721P.balanceOf(owner), "ERC721Enum: owner ioob"); uint count; for( uint i; i < _owners.length; ++i ){ if( owner == _owners[i] ){ if( count == index ) return i; else ++count; } } require(false, "ERC721Enum: owner ioob"); } function tokensOfOwner(address owner) public view returns (uint256[] memory) { require(0 < ERC721P.balanceOf(owner), "ERC721Enum: owner ioob"); uint256 tokenCount = balanceOf(owner); uint256[] memory tokenIds = new uint256[](tokenCount); for (uint256 i = 0; i < tokenCount; i++) { tokenIds[i] = tokenOfOwnerByIndex(owner, i); } return tokenIds; } function totalSupply() public view virtual override returns (uint256) { return _owners.length; } function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enum.totalSupply(), "ERC721Enum: global ioob"); return index; } } contract ETHMB is ERC721Enum, Ownable, ReentrancyGuard { using Strings for uint256; uint256 public SALE_NFT = 9800; uint256 public GIVEAWAY_NFT = 200; uint256 public MAX_BY_MINT_IN_TRANSACTION = 20; uint256 public MAX_MINT_SALE = 9900; uint256 public SALE_PRICE = 0.06 ether; uint256 public SALE_MINTED; uint256 public GIVEAWAY_MINTED; bool public saleEnable = false; string private baseURI; struct User { uint256 salemint; } address[] public addressList = [ 0x049ceAA8649D4A9671D44eb5AB1CEf0181eeb7EC, 0xDFd519509A49FaDFF221A336C4934b2f409DA7FE, 0x977cB56f2883EC7E50e17657BAFf1e185f8f2690 ]; uint[] public shareList = [89,6,5]; mapping(address => User) public users; constructor() ERC721P("Ethereum Moonbirds", "ETHMB") {} function _baseURI() internal view virtual returns (string memory) { return baseURI; } function mintGiveawayNFT(address _to, uint256 _count) public onlyOwner{ uint256 totalSupply = totalSupply(); require( GIVEAWAY_MINTED + _count <= GIVEAWAY_NFT, "Max limit" ); for (uint256 i = 0; i < _count; i++) { _safeMint(_to, totalSupply + i); GIVEAWAY_MINTED++; } } function mintSaleNFT(uint256 _count) public payable{ uint256 totalSupply = totalSupply(); require( saleEnable, "Sale is not enable" ); require( SALE_MINTED + _count <= SALE_NFT, "Exceeds max limit" ); require( _count <= MAX_BY_MINT_IN_TRANSACTION, "Exceeds max mint limit per tnx" ); require( users[msg.sender].salemint + _count <= MAX_MINT_SALE, "Exceeds max mint limit per wallet" ); require( msg.value >= SALE_PRICE * _count, "Value below price" ); for (uint256 i = 0; i < _count; i++) { _safeMint(msg.sender, totalSupply + i); SALE_MINTED++; } users[msg.sender].salemint = users[msg.sender].salemint + _count; } function tokenURI(uint256 _tokenId) external view virtual override returns (string memory) { require(_exists(_tokenId), "ERC721Metadata: Nonexistent token"); string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), ".json")) : ""; } function transferFrom(address _from, address _to, uint256 _tokenId) public override { ERC721P.transferFrom(_from, _to, _tokenId); } function safeTransferFrom(address _from, address _to, uint256 _tokenId, bytes memory _data) public override { ERC721P.safeTransferFrom(_from, _to, _tokenId, _data); } function withdrawAll() public onlyOwner { uint256 balance = address(this).balance; for (uint256 i = 0; i < addressList.length; i++) { payable(addressList[i]).transfer((balance * shareList[i]) / 100); } } function setSaleStatus(bool status) public onlyOwner { require(saleEnable != status); saleEnable = status; } function setBaseURI(string memory newBaseURI) public onlyOwner { baseURI = newBaseURI; } function updateSalePrice(uint256 newPrice) external onlyOwner { SALE_PRICE = newPrice; } function updateGiveawaySupply(uint256 newLimit) external onlyOwner { require(newLimit >= GIVEAWAY_MINTED, "Incorrect value"); GIVEAWAY_NFT = newLimit; } function updateSaleSupply(uint256 newSupply) external onlyOwner { require(newSupply >= SALE_MINTED, "Incorrect value"); SALE_NFT = newSupply; } function updateMintLimitPerTransection(uint256 newLimit) external onlyOwner { require(SALE_NFT >= newLimit, "Incorrect value"); MAX_BY_MINT_IN_TRANSACTION = newLimit; } function updateSaleMintLimit(uint256 newLimit) external onlyOwner { require(SALE_NFT >= newLimit, "Incorrect value"); MAX_MINT_SALE = newLimit; } function updateOwnerFundWallet(address owner) external onlyOwner { require(owner != address(0), "address is the zero address"); addressList[0] = owner; } function updatePartnerFundWallet(address partner) external onlyOwner { require(partner != address(0), "address is the zero address"); addressList[1] = partner; } function updateFundShare(uint256 ownerShare, uint256 partnerShare) external onlyOwner { require(ownerShare + partnerShare == 95, "Incorrect values"); shareList[0] = ownerShare; shareList[1] = partnerShare; } }
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":"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":[],"name":"MAX_BY_MINT_IN_TRANSACTION","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":[],"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":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"addressList","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mintGiveawayNFT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mintSaleNFT","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newBaseURI","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":"uint256","name":"","type":"uint256"}],"name":"shareList","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"tokenId","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":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"ownerShare","type":"uint256"},{"internalType":"uint256","name":"partnerShare","type":"uint256"}],"name":"updateFundShare","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newLimit","type":"uint256"}],"name":"updateGiveawaySupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newLimit","type":"uint256"}],"name":"updateMintLimitPerTransection","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"updateOwnerFundWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"partner","type":"address"}],"name":"updatePartnerFundWallet","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"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
61264860075560c860085560146009556126ac600a5566d529ae9e860000600b55600e805460ff1916905560e060405273049ceaa8649d4a9671d44eb5ab1cef0181eeb7ec608090815273dfd519509a49fadff221a336c4934b2f409da7fe60a05273977cb56f2883ec7e50e17657baff1e185f8f269060c05262000089906010906003620001b2565b50604080516060810182526059815260066020820152600591810191909152620000b89060119060036200021c565b50348015620000c657600080fd5b506040805180820182526012815271457468657265756d204d6f6f6e626972647360701b60208083019182528351808501909452600584526422aa2426a160d91b9084015281519192916200011e916000916200025f565b508051620001349060019060208401906200025f565b505050620001516200014b6200015c60201b60201c565b62000160565b600160065562000330565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280548282559060005260206000209081019282156200020a579160200282015b828111156200020a57825182546001600160a01b0319166001600160a01b03909116178255602090920191600190910190620001d3565b5062000218929150620002dc565b5090565b8280548282559060005260206000209081019282156200020a579160200282015b828111156200020a578251829060ff169055916020019190600101906200023d565b8280546200026d90620002f3565b90600052602060002090601f0160209004810192826200029157600085556200020a565b82601f10620002ac57805160ff19168380011785556200020a565b828001600101855582156200020a579182015b828111156200020a578251825591602001919060010190620002bf565b5b80821115620002185760008155600101620002dd565b6002810460018216806200030857607f821691505b602082108114156200032a57634e487b7160e01b600052602260045260246000fd5b50919050565b612a4880620003406000396000f3fe6080604052600436106102675760003560e01c80638462151c11610144578063be0e430f116100b6578063dce051cc1161007a578063dce051cc146106dc578063e985e9c5146106fc578063f176baaa1461071c578063f2fde38b1461073c578063f43973351461075c578063fe4ca8471461077c57610267565b8063be0e430f14610647578063c4e43ba81461065c578063c87b56dd1461067c578063d40297271461069c578063d897833e146106bc57610267565b8063a22cb46511610108578063a22cb4651461059f578063a87430ba146105bf578063a9526862146105df578063ae5cc172146105f2578063b810fb4314610607578063b88d4fde1461062757610267565b80638462151c1461051e578063853828b61461054b5780638da5cb5b1461056057806395d89b4114610575578063995b8ef61461058a57610267565b8063497865b3116101dd5780636352211e116101a15780636352211e1461047457806370a0823114610494578063715018a6146104b45780637e8bdb6e146104c95780637ec0912e146104e95780637f205a741461050957610267565b8063497865b3146103ea5780634d7cea16146103ff5780634f6ccce71461041457806355180e131461043457806355f804b31461045457610267565b806318160ddd1161022f57806318160ddd1461033557806323b872dd1461034a5780632f745c591461036a578063379665bd1461038a57806342842e0e146103aa578063454b78f0146103ca57610267565b806301ffc9a71461026c57806306fdde03146102a2578063081812fc146102c4578063095ea7b3146102f15780630990e53414610313575b600080fd5b34801561027857600080fd5b5061028c61028736600461207e565b610791565b6040516102999190612235565b60405180910390f35b3480156102ae57600080fd5b506102b76107be565b6040516102999190612240565b3480156102d057600080fd5b506102e46102df3660046120fc565b610850565b60405161029991906121a0565b3480156102fd57600080fd5b5061031161030c36600461203b565b61089c565b005b34801561031f57600080fd5b50610328610934565b60405161029991906128b9565b34801561034157600080fd5b5061032861093a565b34801561035657600080fd5b50610311610365366004611f5e565b610940565b34801561037657600080fd5b5061032861038536600461203b565b61094b565b34801561039657600080fd5b506103116103a53660046120fc565b610a0e565b3480156103b657600080fd5b506103116103c5366004611f5e565b610a74565b3480156103d657600080fd5b506103116103e5366004611f12565b610a8f565b3480156103f657600080fd5b50610328610b48565b34801561040b57600080fd5b50610328610b4e565b34801561042057600080fd5b5061032861042f3660046120fc565b610b54565b34801561044057600080fd5b5061031161044f366004611f12565b610b80565b34801561046057600080fd5b5061031161046f3660046120b6565b610c08565b34801561048057600080fd5b506102e461048f3660046120fc565b610c5e565b3480156104a057600080fd5b506103286104af366004611f12565b610cb6565b3480156104c057600080fd5b50610311610d53565b3480156104d557600080fd5b506103116104e4366004612114565b610d9e565b3480156104f557600080fd5b506103116105043660046120fc565b610e6a565b34801561051557600080fd5b50610328610eae565b34801561052a57600080fd5b5061053e610539366004611f12565b610eb4565b60405161029991906121f1565b34801561055757600080fd5b50610311610f9a565b34801561056c57600080fd5b506102e46110a4565b34801561058157600080fd5b506102b76110b3565b34801561059657600080fd5b506103286110c2565b3480156105ab57600080fd5b506103116105ba366004612012565b6110c8565b3480156105cb57600080fd5b506103286105da366004611f12565b611196565b6103116105ed3660046120fc565b6111a8565b3480156105fe57600080fd5b50610328611307565b34801561061357600080fd5b506102e46106223660046120fc565b61130d565b34801561063357600080fd5b50610311610642366004611f99565b611337565b34801561065357600080fd5b50610328611349565b34801561066857600080fd5b506103116106773660046120fc565b61134f565b34801561068857600080fd5b506102b76106973660046120fc565b6113b5565b3480156106a857600080fd5b506103286106b73660046120fc565b611438565b3480156106c857600080fd5b506103116106d7366004612064565b611459565b3480156106e857600080fd5b506103116106f736600461203b565b6114c1565b34801561070857600080fd5b5061028c610717366004611f2c565b61157c565b34801561072857600080fd5b506103116107373660046120fc565b6115aa565b34801561074857600080fd5b50610311610757366004611f12565b611610565b34801561076857600080fd5b506103116107773660046120fc565b611681565b34801561078857600080fd5b5061028c6116e7565b60006001600160e01b0319821663780e9d6360e01b14806107b657506107b6826116f0565b90505b919050565b6060600080546107cd90612950565b80601f01602080910402602001604051908101604052809291908181526020018280546107f990612950565b80156108465780601f1061081b57610100808354040283529160200191610846565b820191906000526020600020905b81548152906001019060200180831161082957829003601f168201915b5050505050905090565b600061085b82611730565b6108805760405162461bcd60e51b815260040161087790612600565b60405180910390fd5b506000908152600360205260409020546001600160a01b031690565b60006108a782610c5e565b9050806001600160a01b0316836001600160a01b031614156108db5760405162461bcd60e51b8152600401610877906127bc565b806001600160a01b03166108ed611788565b6001600160a01b03161480610909575061090981610717611788565b6109255760405162461bcd60e51b815260040161087790612479565b61092f838361178c565b505050565b600c5481565b60025490565b61092f8383836117fa565b600061095683610cb6565b82106109745760405162461bcd60e51b815260040161087790612755565b6000805b6002548110156109ef57600281815481106109a357634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b03868116911614156109df57838214156109d3579150610a089050565b6109dc8261298b565b91505b6109e88161298b565b9050610978565b5060405162461bcd60e51b815260040161087790612755565b92915050565b610a16611788565b6001600160a01b0316610a276110a4565b6001600160a01b031614610a4d5760405162461bcd60e51b815260040161087790612675565b600d54811015610a6f5760405162461bcd60e51b81526004016108779061264c565b600855565b61092f83838360405180602001604052806000815250611337565b610a97611788565b6001600160a01b0316610aa86110a4565b6001600160a01b031614610ace5760405162461bcd60e51b815260040161087790612675565b6001600160a01b038116610af45760405162461bcd60e51b8152600401610877906126f3565b806010600181548110610b1757634e487b7160e01b600052603260045260246000fd5b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555050565b60085481565b600d5481565b6000610b5e61093a565b8210610b7c5760405162461bcd60e51b815260040161087790612785565b5090565b610b88611788565b6001600160a01b0316610b996110a4565b6001600160a01b031614610bbf5760405162461bcd60e51b815260040161087790612675565b6001600160a01b038116610be55760405162461bcd60e51b8152600401610877906126f3565b806010600081548110610b1757634e487b7160e01b600052603260045260246000fd5b610c10611788565b6001600160a01b0316610c216110a4565b6001600160a01b031614610c475760405162461bcd60e51b815260040161087790612675565b8051610c5a90600f906020840190611deb565b5050565b60008060028381548110610c8257634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b03169050806107b65760405162461bcd60e51b815260040161087790612557565b60006001600160a01b038216610cde5760405162461bcd60e51b81526004016108779061250d565b600254600090815b81811015610d4a5760028181548110610d0f57634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b0386811691161415610d3a57610d378361298b565b92505b610d438161298b565b9050610ce6565b50909392505050565b610d5b611788565b6001600160a01b0316610d6c6110a4565b6001600160a01b031614610d925760405162461bcd60e51b815260040161087790612675565b610d9c6000611832565b565b610da6611788565b6001600160a01b0316610db76110a4565b6001600160a01b031614610ddd5760405162461bcd60e51b815260040161087790612675565b610de781836128c2565b605f14610e065760405162461bcd60e51b81526004016108779061288f565b816011600081548110610e2957634e487b7160e01b600052603260045260246000fd5b9060005260206000200181905550806011600181548110610e5a57634e487b7160e01b600052603260045260246000fd5b6000918252602090912001555050565b610e72611788565b6001600160a01b0316610e836110a4565b6001600160a01b031614610ea95760405162461bcd60e51b815260040161087790612675565b600b55565b600b5481565b6060610ebf82610cb6565b600010610ede5760405162461bcd60e51b815260040161087790612755565b6000610ee983610cb6565b905060008167ffffffffffffffff811115610f1457634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610f3d578160200160208202803683370190505b50905060005b82811015610f9257610f55858261094b565b828281518110610f7557634e487b7160e01b600052603260045260246000fd5b602090810291909101015280610f8a8161298b565b915050610f43565b509392505050565b610fa2611788565b6001600160a01b0316610fb36110a4565b6001600160a01b031614610fd95760405162461bcd60e51b815260040161087790612675565b4760005b601054811015610c5a576010818154811061100857634e487b7160e01b600052603260045260246000fd5b600091825260209091200154601180546001600160a01b03909216916108fc916064918590811061104957634e487b7160e01b600052603260045260246000fd5b90600052602060002001548561105f91906128ee565b61106991906128da565b6040518115909202916000818181858888f19350505050158015611091573d6000803e3d6000fd5b508061109c8161298b565b915050610fdd565b6005546001600160a01b031690565b6060600180546107cd90612950565b60075481565b6110d0611788565b6001600160a01b0316826001600160a01b031614156111015760405162461bcd60e51b8152600401610877906123a7565b806004600061110e611788565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155611152611788565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161118a9190612235565b60405180910390a35050565b60126020526000908152604090205481565b60006111b261093a565b600e5490915060ff166111d75760405162461bcd60e51b815260040161087790612401565b60075482600c546111e891906128c2565b11156112065760405162461bcd60e51b8152600401610877906125a0565b6009548211156112285760405162461bcd60e51b8152600401610877906124d6565b600a54336000908152601260205260409020546112469084906128c2565b11156112645760405162461bcd60e51b81526004016108779061284e565b81600b5461127291906128ee565b3410156112915760405162461bcd60e51b81526004016108779061272a565b60005b828110156112d7576112af336112aa83856128c2565b611884565b600c80549060006112bf8361298b565b919050555080806112cf9061298b565b915050611294565b50336000908152601260205260409020546112f39083906128c2565b336000908152601260205260409020555050565b600a5481565b6010818154811061131d57600080fd5b6000918252602090912001546001600160a01b0316905081565b6113438484848461189e565b50505050565b60095481565b611357611788565b6001600160a01b03166113686110a4565b6001600160a01b03161461138e5760405162461bcd60e51b815260040161087790612675565b8060075410156113b05760405162461bcd60e51b81526004016108779061264c565b600955565b60606113c082611730565b6113dc5760405162461bcd60e51b815260040161087790612253565b60006113e66118d7565b905060008151116114065760405180602001604052806000815250611431565b80611410846118e6565b604051602001611421929190612161565b6040516020818303038152906040525b9392505050565b6011818154811061144857600080fd5b600091825260209091200154905081565b611461611788565b6001600160a01b03166114726110a4565b6001600160a01b0316146114985760405162461bcd60e51b815260040161087790612675565b600e5460ff16151581151514156114ae57600080fd5b600e805460ff1916911515919091179055565b6114c9611788565b6001600160a01b03166114da6110a4565b6001600160a01b0316146115005760405162461bcd60e51b815260040161087790612675565b600061150a61093a565b905060085482600d5461151d91906128c2565b111561153b5760405162461bcd60e51b8152600401610877906123de565b60005b8281101561134357611554846112aa83856128c2565b600d80549060006115648361298b565b919050555080806115749061298b565b91505061153e565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205460ff1690565b6115b2611788565b6001600160a01b03166115c36110a4565b6001600160a01b0316146115e95760405162461bcd60e51b815260040161087790612675565b80600754101561160b5760405162461bcd60e51b81526004016108779061264c565b600a55565b611618611788565b6001600160a01b03166116296110a4565b6001600160a01b03161461164f5760405162461bcd60e51b815260040161087790612675565b6001600160a01b0381166116755760405162461bcd60e51b8152600401610877906122e6565b61167e81611832565b50565b611689611788565b6001600160a01b031661169a6110a4565b6001600160a01b0316146116c05760405162461bcd60e51b815260040161087790612675565b600c548110156116e25760405162461bcd60e51b81526004016108779061264c565b600755565b600e5460ff1681565b60006001600160e01b031982166380ac58cd60e01b148061172157506001600160e01b03198216635b5e139f60e01b145b806107b657506107b682611a09565b600254600090821080156107b6575060006001600160a01b03166002838154811061176b57634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b0316141592915050565b3390565b600081815260036020526040902080546001600160a01b0319166001600160a01b03841690811790915581906117c182610c5e565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b61180b611805611788565b82611a22565b6118275760405162461bcd60e51b8152600401610877906127fd565b61092f838383611a9f565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610c5a828260405180602001604052806000815250611b90565b6118af6118a9611788565b83611a22565b6118cb5760405162461bcd60e51b8152600401610877906127fd565b61134384848484611bc3565b6060600f80546107cd90612950565b60608161190b57506040805180820190915260018152600360fc1b60208201526107b9565b8160005b8115611935578061191f8161298b565b915061192e9050600a836128da565b915061190f565b60008167ffffffffffffffff81111561195e57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611988576020820181803683370190505b5090505b8415611a015761199d60018361290d565b91506119aa600a866129a6565b6119b59060306128c2565b60f81b8183815181106119d857634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506119fa600a866128da565b945061198c565b949350505050565b6001600160e01b031981166301ffc9a760e01b14919050565b6000611a2d82611730565b611a495760405162461bcd60e51b81526004016108779061242d565b6000611a5483610c5e565b9050806001600160a01b0316846001600160a01b03161480611a8f5750836001600160a01b0316611a8484610850565b6001600160a01b0316145b80611a015750611a01818561157c565b826001600160a01b0316611ab282610c5e565b6001600160a01b031614611ad85760405162461bcd60e51b8152600401610877906126aa565b6001600160a01b038216611afe5760405162461bcd60e51b815260040161087790612363565b611b0983838361092f565b611b1460008261178c565b8160028281548110611b3657634e487b7160e01b600052603260045260246000fd5b6000918252602082200180546001600160a01b0319166001600160a01b03938416179055604051839285811692908716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a4505050565b611b9a8383611bf6565b611ba76000848484611cca565b61092f5760405162461bcd60e51b815260040161087790612294565b611bce848484611a9f565b611bda84848484611cca565b6113435760405162461bcd60e51b815260040161087790612294565b6001600160a01b038216611c1c5760405162461bcd60e51b8152600401610877906125cb565b611c2581611730565b15611c425760405162461bcd60e51b81526004016108779061232c565b611c4e6000838361092f565b6002805460018101825560009182527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace0180546001600160a01b0319166001600160a01b0385169081179091556040518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000611cde846001600160a01b0316611de5565b15611dda57836001600160a01b031663150b7a02611cfa611788565b8786866040518563ffffffff1660e01b8152600401611d1c94939291906121b4565b602060405180830381600087803b158015611d3657600080fd5b505af1925050508015611d66575060408051601f3d908101601f19168201909252611d639181019061209a565b60015b611dc0573d808015611d94576040519150601f19603f3d011682016040523d82523d6000602084013e611d99565b606091505b508051611db85760405162461bcd60e51b815260040161087790612294565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611a01565b506001949350505050565b3b151590565b828054611df790612950565b90600052602060002090601f016020900481019282611e195760008555611e5f565b82601f10611e3257805160ff1916838001178555611e5f565b82800160010185558215611e5f579182015b82811115611e5f578251825591602001919060010190611e44565b50610b7c9291505b80821115610b7c5760008155600101611e67565b600067ffffffffffffffff80841115611e9657611e966129e6565b604051601f8501601f191681016020018281118282101715611eba57611eba6129e6565b604052848152915081838501861015611ed257600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b03811681146107b957600080fd5b803580151581146107b957600080fd5b600060208284031215611f23578081fd5b61143182611eeb565b60008060408385031215611f3e578081fd5b611f4783611eeb565b9150611f5560208401611eeb565b90509250929050565b600080600060608486031215611f72578081fd5b611f7b84611eeb565b9250611f8960208501611eeb565b9150604084013590509250925092565b60008060008060808587031215611fae578081fd5b611fb785611eeb565b9350611fc560208601611eeb565b925060408501359150606085013567ffffffffffffffff811115611fe7578182fd5b8501601f81018713611ff7578182fd5b61200687823560208401611e7b565b91505092959194509250565b60008060408385031215612024578182fd5b61202d83611eeb565b9150611f5560208401611f02565b6000806040838503121561204d578182fd5b61205683611eeb565b946020939093013593505050565b600060208284031215612075578081fd5b61143182611f02565b60006020828403121561208f578081fd5b8135611431816129fc565b6000602082840312156120ab578081fd5b8151611431816129fc565b6000602082840312156120c7578081fd5b813567ffffffffffffffff8111156120dd578182fd5b8201601f810184136120ed578182fd5b611a0184823560208401611e7b565b60006020828403121561210d578081fd5b5035919050565b60008060408385031215612126578182fd5b50508035926020909101359150565b6000815180845261214d816020860160208601612924565b601f01601f19169290920160200192915050565b60008351612173818460208801612924565b835190830190612187818360208801612924565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906121e790830184612135565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156122295783518352928401929184019160010161220d565b50909695505050505050565b901515815260200190565b6000602082526114316020830184612135565b60208082526021908201527f4552433732314d657461646174613a204e6f6e6578697374656e7420746f6b656040820152603760f91b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b60208082526009908201526813585e081b1a5b5a5d60ba1b604082015260600190565b60208082526012908201527153616c65206973206e6f7420656e61626c6560701b604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252601e908201527f45786365656473206d6178206d696e74206c696d69742070657220746e780000604082015260600190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b602080825260119082015270115e18d959591cc81b585e081b1a5b5a5d607a1b604082015260600190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252600f908201526e496e636f72726563742076616c756560881b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252601b908201527f6164647265737320697320746865207a65726f20616464726573730000000000604082015260600190565b60208082526011908201527056616c75652062656c6f7720707269636560781b604082015260600190565b60208082526016908201527522a9219b9918a2b73ab69d1037bbb732b91034b7b7b160511b604082015260600190565b60208082526017908201527f455243373231456e756d3a20676c6f62616c20696f6f62000000000000000000604082015260600190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526021908201527f45786365656473206d6178206d696e74206c696d6974207065722077616c6c656040820152601d60fa1b606082015260800190565b60208082526010908201526f496e636f72726563742076616c75657360801b604082015260600190565b90815260200190565b600082198211156128d5576128d56129ba565b500190565b6000826128e9576128e96129d0565b500490565b6000816000190483118215151615612908576129086129ba565b500290565b60008282101561291f5761291f6129ba565b500390565b60005b8381101561293f578181015183820152602001612927565b838111156113435750506000910152565b60028104600182168061296457607f821691505b6020821081141561298557634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561299f5761299f6129ba565b5060010190565b6000826129b5576129b56129d0565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461167e57600080fdfea26469706673582212200723fef47259e30357ad626d6db6638a4200418a79b516025b6a8186a50192b064736f6c63430008000033
Deployed Bytecode
0x6080604052600436106102675760003560e01c80638462151c11610144578063be0e430f116100b6578063dce051cc1161007a578063dce051cc146106dc578063e985e9c5146106fc578063f176baaa1461071c578063f2fde38b1461073c578063f43973351461075c578063fe4ca8471461077c57610267565b8063be0e430f14610647578063c4e43ba81461065c578063c87b56dd1461067c578063d40297271461069c578063d897833e146106bc57610267565b8063a22cb46511610108578063a22cb4651461059f578063a87430ba146105bf578063a9526862146105df578063ae5cc172146105f2578063b810fb4314610607578063b88d4fde1461062757610267565b80638462151c1461051e578063853828b61461054b5780638da5cb5b1461056057806395d89b4114610575578063995b8ef61461058a57610267565b8063497865b3116101dd5780636352211e116101a15780636352211e1461047457806370a0823114610494578063715018a6146104b45780637e8bdb6e146104c95780637ec0912e146104e95780637f205a741461050957610267565b8063497865b3146103ea5780634d7cea16146103ff5780634f6ccce71461041457806355180e131461043457806355f804b31461045457610267565b806318160ddd1161022f57806318160ddd1461033557806323b872dd1461034a5780632f745c591461036a578063379665bd1461038a57806342842e0e146103aa578063454b78f0146103ca57610267565b806301ffc9a71461026c57806306fdde03146102a2578063081812fc146102c4578063095ea7b3146102f15780630990e53414610313575b600080fd5b34801561027857600080fd5b5061028c61028736600461207e565b610791565b6040516102999190612235565b60405180910390f35b3480156102ae57600080fd5b506102b76107be565b6040516102999190612240565b3480156102d057600080fd5b506102e46102df3660046120fc565b610850565b60405161029991906121a0565b3480156102fd57600080fd5b5061031161030c36600461203b565b61089c565b005b34801561031f57600080fd5b50610328610934565b60405161029991906128b9565b34801561034157600080fd5b5061032861093a565b34801561035657600080fd5b50610311610365366004611f5e565b610940565b34801561037657600080fd5b5061032861038536600461203b565b61094b565b34801561039657600080fd5b506103116103a53660046120fc565b610a0e565b3480156103b657600080fd5b506103116103c5366004611f5e565b610a74565b3480156103d657600080fd5b506103116103e5366004611f12565b610a8f565b3480156103f657600080fd5b50610328610b48565b34801561040b57600080fd5b50610328610b4e565b34801561042057600080fd5b5061032861042f3660046120fc565b610b54565b34801561044057600080fd5b5061031161044f366004611f12565b610b80565b34801561046057600080fd5b5061031161046f3660046120b6565b610c08565b34801561048057600080fd5b506102e461048f3660046120fc565b610c5e565b3480156104a057600080fd5b506103286104af366004611f12565b610cb6565b3480156104c057600080fd5b50610311610d53565b3480156104d557600080fd5b506103116104e4366004612114565b610d9e565b3480156104f557600080fd5b506103116105043660046120fc565b610e6a565b34801561051557600080fd5b50610328610eae565b34801561052a57600080fd5b5061053e610539366004611f12565b610eb4565b60405161029991906121f1565b34801561055757600080fd5b50610311610f9a565b34801561056c57600080fd5b506102e46110a4565b34801561058157600080fd5b506102b76110b3565b34801561059657600080fd5b506103286110c2565b3480156105ab57600080fd5b506103116105ba366004612012565b6110c8565b3480156105cb57600080fd5b506103286105da366004611f12565b611196565b6103116105ed3660046120fc565b6111a8565b3480156105fe57600080fd5b50610328611307565b34801561061357600080fd5b506102e46106223660046120fc565b61130d565b34801561063357600080fd5b50610311610642366004611f99565b611337565b34801561065357600080fd5b50610328611349565b34801561066857600080fd5b506103116106773660046120fc565b61134f565b34801561068857600080fd5b506102b76106973660046120fc565b6113b5565b3480156106a857600080fd5b506103286106b73660046120fc565b611438565b3480156106c857600080fd5b506103116106d7366004612064565b611459565b3480156106e857600080fd5b506103116106f736600461203b565b6114c1565b34801561070857600080fd5b5061028c610717366004611f2c565b61157c565b34801561072857600080fd5b506103116107373660046120fc565b6115aa565b34801561074857600080fd5b50610311610757366004611f12565b611610565b34801561076857600080fd5b506103116107773660046120fc565b611681565b34801561078857600080fd5b5061028c6116e7565b60006001600160e01b0319821663780e9d6360e01b14806107b657506107b6826116f0565b90505b919050565b6060600080546107cd90612950565b80601f01602080910402602001604051908101604052809291908181526020018280546107f990612950565b80156108465780601f1061081b57610100808354040283529160200191610846565b820191906000526020600020905b81548152906001019060200180831161082957829003601f168201915b5050505050905090565b600061085b82611730565b6108805760405162461bcd60e51b815260040161087790612600565b60405180910390fd5b506000908152600360205260409020546001600160a01b031690565b60006108a782610c5e565b9050806001600160a01b0316836001600160a01b031614156108db5760405162461bcd60e51b8152600401610877906127bc565b806001600160a01b03166108ed611788565b6001600160a01b03161480610909575061090981610717611788565b6109255760405162461bcd60e51b815260040161087790612479565b61092f838361178c565b505050565b600c5481565b60025490565b61092f8383836117fa565b600061095683610cb6565b82106109745760405162461bcd60e51b815260040161087790612755565b6000805b6002548110156109ef57600281815481106109a357634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b03868116911614156109df57838214156109d3579150610a089050565b6109dc8261298b565b91505b6109e88161298b565b9050610978565b5060405162461bcd60e51b815260040161087790612755565b92915050565b610a16611788565b6001600160a01b0316610a276110a4565b6001600160a01b031614610a4d5760405162461bcd60e51b815260040161087790612675565b600d54811015610a6f5760405162461bcd60e51b81526004016108779061264c565b600855565b61092f83838360405180602001604052806000815250611337565b610a97611788565b6001600160a01b0316610aa86110a4565b6001600160a01b031614610ace5760405162461bcd60e51b815260040161087790612675565b6001600160a01b038116610af45760405162461bcd60e51b8152600401610877906126f3565b806010600181548110610b1757634e487b7160e01b600052603260045260246000fd5b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555050565b60085481565b600d5481565b6000610b5e61093a565b8210610b7c5760405162461bcd60e51b815260040161087790612785565b5090565b610b88611788565b6001600160a01b0316610b996110a4565b6001600160a01b031614610bbf5760405162461bcd60e51b815260040161087790612675565b6001600160a01b038116610be55760405162461bcd60e51b8152600401610877906126f3565b806010600081548110610b1757634e487b7160e01b600052603260045260246000fd5b610c10611788565b6001600160a01b0316610c216110a4565b6001600160a01b031614610c475760405162461bcd60e51b815260040161087790612675565b8051610c5a90600f906020840190611deb565b5050565b60008060028381548110610c8257634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b03169050806107b65760405162461bcd60e51b815260040161087790612557565b60006001600160a01b038216610cde5760405162461bcd60e51b81526004016108779061250d565b600254600090815b81811015610d4a5760028181548110610d0f57634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b0386811691161415610d3a57610d378361298b565b92505b610d438161298b565b9050610ce6565b50909392505050565b610d5b611788565b6001600160a01b0316610d6c6110a4565b6001600160a01b031614610d925760405162461bcd60e51b815260040161087790612675565b610d9c6000611832565b565b610da6611788565b6001600160a01b0316610db76110a4565b6001600160a01b031614610ddd5760405162461bcd60e51b815260040161087790612675565b610de781836128c2565b605f14610e065760405162461bcd60e51b81526004016108779061288f565b816011600081548110610e2957634e487b7160e01b600052603260045260246000fd5b9060005260206000200181905550806011600181548110610e5a57634e487b7160e01b600052603260045260246000fd5b6000918252602090912001555050565b610e72611788565b6001600160a01b0316610e836110a4565b6001600160a01b031614610ea95760405162461bcd60e51b815260040161087790612675565b600b55565b600b5481565b6060610ebf82610cb6565b600010610ede5760405162461bcd60e51b815260040161087790612755565b6000610ee983610cb6565b905060008167ffffffffffffffff811115610f1457634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015610f3d578160200160208202803683370190505b50905060005b82811015610f9257610f55858261094b565b828281518110610f7557634e487b7160e01b600052603260045260246000fd5b602090810291909101015280610f8a8161298b565b915050610f43565b509392505050565b610fa2611788565b6001600160a01b0316610fb36110a4565b6001600160a01b031614610fd95760405162461bcd60e51b815260040161087790612675565b4760005b601054811015610c5a576010818154811061100857634e487b7160e01b600052603260045260246000fd5b600091825260209091200154601180546001600160a01b03909216916108fc916064918590811061104957634e487b7160e01b600052603260045260246000fd5b90600052602060002001548561105f91906128ee565b61106991906128da565b6040518115909202916000818181858888f19350505050158015611091573d6000803e3d6000fd5b508061109c8161298b565b915050610fdd565b6005546001600160a01b031690565b6060600180546107cd90612950565b60075481565b6110d0611788565b6001600160a01b0316826001600160a01b031614156111015760405162461bcd60e51b8152600401610877906123a7565b806004600061110e611788565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155611152611788565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161118a9190612235565b60405180910390a35050565b60126020526000908152604090205481565b60006111b261093a565b600e5490915060ff166111d75760405162461bcd60e51b815260040161087790612401565b60075482600c546111e891906128c2565b11156112065760405162461bcd60e51b8152600401610877906125a0565b6009548211156112285760405162461bcd60e51b8152600401610877906124d6565b600a54336000908152601260205260409020546112469084906128c2565b11156112645760405162461bcd60e51b81526004016108779061284e565b81600b5461127291906128ee565b3410156112915760405162461bcd60e51b81526004016108779061272a565b60005b828110156112d7576112af336112aa83856128c2565b611884565b600c80549060006112bf8361298b565b919050555080806112cf9061298b565b915050611294565b50336000908152601260205260409020546112f39083906128c2565b336000908152601260205260409020555050565b600a5481565b6010818154811061131d57600080fd5b6000918252602090912001546001600160a01b0316905081565b6113438484848461189e565b50505050565b60095481565b611357611788565b6001600160a01b03166113686110a4565b6001600160a01b03161461138e5760405162461bcd60e51b815260040161087790612675565b8060075410156113b05760405162461bcd60e51b81526004016108779061264c565b600955565b60606113c082611730565b6113dc5760405162461bcd60e51b815260040161087790612253565b60006113e66118d7565b905060008151116114065760405180602001604052806000815250611431565b80611410846118e6565b604051602001611421929190612161565b6040516020818303038152906040525b9392505050565b6011818154811061144857600080fd5b600091825260209091200154905081565b611461611788565b6001600160a01b03166114726110a4565b6001600160a01b0316146114985760405162461bcd60e51b815260040161087790612675565b600e5460ff16151581151514156114ae57600080fd5b600e805460ff1916911515919091179055565b6114c9611788565b6001600160a01b03166114da6110a4565b6001600160a01b0316146115005760405162461bcd60e51b815260040161087790612675565b600061150a61093a565b905060085482600d5461151d91906128c2565b111561153b5760405162461bcd60e51b8152600401610877906123de565b60005b8281101561134357611554846112aa83856128c2565b600d80549060006115648361298b565b919050555080806115749061298b565b91505061153e565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205460ff1690565b6115b2611788565b6001600160a01b03166115c36110a4565b6001600160a01b0316146115e95760405162461bcd60e51b815260040161087790612675565b80600754101561160b5760405162461bcd60e51b81526004016108779061264c565b600a55565b611618611788565b6001600160a01b03166116296110a4565b6001600160a01b03161461164f5760405162461bcd60e51b815260040161087790612675565b6001600160a01b0381166116755760405162461bcd60e51b8152600401610877906122e6565b61167e81611832565b50565b611689611788565b6001600160a01b031661169a6110a4565b6001600160a01b0316146116c05760405162461bcd60e51b815260040161087790612675565b600c548110156116e25760405162461bcd60e51b81526004016108779061264c565b600755565b600e5460ff1681565b60006001600160e01b031982166380ac58cd60e01b148061172157506001600160e01b03198216635b5e139f60e01b145b806107b657506107b682611a09565b600254600090821080156107b6575060006001600160a01b03166002838154811061176b57634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b0316141592915050565b3390565b600081815260036020526040902080546001600160a01b0319166001600160a01b03841690811790915581906117c182610c5e565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b61180b611805611788565b82611a22565b6118275760405162461bcd60e51b8152600401610877906127fd565b61092f838383611a9f565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610c5a828260405180602001604052806000815250611b90565b6118af6118a9611788565b83611a22565b6118cb5760405162461bcd60e51b8152600401610877906127fd565b61134384848484611bc3565b6060600f80546107cd90612950565b60608161190b57506040805180820190915260018152600360fc1b60208201526107b9565b8160005b8115611935578061191f8161298b565b915061192e9050600a836128da565b915061190f565b60008167ffffffffffffffff81111561195e57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611988576020820181803683370190505b5090505b8415611a015761199d60018361290d565b91506119aa600a866129a6565b6119b59060306128c2565b60f81b8183815181106119d857634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506119fa600a866128da565b945061198c565b949350505050565b6001600160e01b031981166301ffc9a760e01b14919050565b6000611a2d82611730565b611a495760405162461bcd60e51b81526004016108779061242d565b6000611a5483610c5e565b9050806001600160a01b0316846001600160a01b03161480611a8f5750836001600160a01b0316611a8484610850565b6001600160a01b0316145b80611a015750611a01818561157c565b826001600160a01b0316611ab282610c5e565b6001600160a01b031614611ad85760405162461bcd60e51b8152600401610877906126aa565b6001600160a01b038216611afe5760405162461bcd60e51b815260040161087790612363565b611b0983838361092f565b611b1460008261178c565b8160028281548110611b3657634e487b7160e01b600052603260045260246000fd5b6000918252602082200180546001600160a01b0319166001600160a01b03938416179055604051839285811692908716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a4505050565b611b9a8383611bf6565b611ba76000848484611cca565b61092f5760405162461bcd60e51b815260040161087790612294565b611bce848484611a9f565b611bda84848484611cca565b6113435760405162461bcd60e51b815260040161087790612294565b6001600160a01b038216611c1c5760405162461bcd60e51b8152600401610877906125cb565b611c2581611730565b15611c425760405162461bcd60e51b81526004016108779061232c565b611c4e6000838361092f565b6002805460018101825560009182527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace0180546001600160a01b0319166001600160a01b0385169081179091556040518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b6000611cde846001600160a01b0316611de5565b15611dda57836001600160a01b031663150b7a02611cfa611788565b8786866040518563ffffffff1660e01b8152600401611d1c94939291906121b4565b602060405180830381600087803b158015611d3657600080fd5b505af1925050508015611d66575060408051601f3d908101601f19168201909252611d639181019061209a565b60015b611dc0573d808015611d94576040519150601f19603f3d011682016040523d82523d6000602084013e611d99565b606091505b508051611db85760405162461bcd60e51b815260040161087790612294565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611a01565b506001949350505050565b3b151590565b828054611df790612950565b90600052602060002090601f016020900481019282611e195760008555611e5f565b82601f10611e3257805160ff1916838001178555611e5f565b82800160010185558215611e5f579182015b82811115611e5f578251825591602001919060010190611e44565b50610b7c9291505b80821115610b7c5760008155600101611e67565b600067ffffffffffffffff80841115611e9657611e966129e6565b604051601f8501601f191681016020018281118282101715611eba57611eba6129e6565b604052848152915081838501861015611ed257600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b03811681146107b957600080fd5b803580151581146107b957600080fd5b600060208284031215611f23578081fd5b61143182611eeb565b60008060408385031215611f3e578081fd5b611f4783611eeb565b9150611f5560208401611eeb565b90509250929050565b600080600060608486031215611f72578081fd5b611f7b84611eeb565b9250611f8960208501611eeb565b9150604084013590509250925092565b60008060008060808587031215611fae578081fd5b611fb785611eeb565b9350611fc560208601611eeb565b925060408501359150606085013567ffffffffffffffff811115611fe7578182fd5b8501601f81018713611ff7578182fd5b61200687823560208401611e7b565b91505092959194509250565b60008060408385031215612024578182fd5b61202d83611eeb565b9150611f5560208401611f02565b6000806040838503121561204d578182fd5b61205683611eeb565b946020939093013593505050565b600060208284031215612075578081fd5b61143182611f02565b60006020828403121561208f578081fd5b8135611431816129fc565b6000602082840312156120ab578081fd5b8151611431816129fc565b6000602082840312156120c7578081fd5b813567ffffffffffffffff8111156120dd578182fd5b8201601f810184136120ed578182fd5b611a0184823560208401611e7b565b60006020828403121561210d578081fd5b5035919050565b60008060408385031215612126578182fd5b50508035926020909101359150565b6000815180845261214d816020860160208601612924565b601f01601f19169290920160200192915050565b60008351612173818460208801612924565b835190830190612187818360208801612924565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906121e790830184612135565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156122295783518352928401929184019160010161220d565b50909695505050505050565b901515815260200190565b6000602082526114316020830184612135565b60208082526021908201527f4552433732314d657461646174613a204e6f6e6578697374656e7420746f6b656040820152603760f91b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b60208082526009908201526813585e081b1a5b5a5d60ba1b604082015260600190565b60208082526012908201527153616c65206973206e6f7420656e61626c6560701b604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252601e908201527f45786365656473206d6178206d696e74206c696d69742070657220746e780000604082015260600190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b602080825260119082015270115e18d959591cc81b585e081b1a5b5a5d607a1b604082015260600190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252600f908201526e496e636f72726563742076616c756560881b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b6020808252601b908201527f6164647265737320697320746865207a65726f20616464726573730000000000604082015260600190565b60208082526011908201527056616c75652062656c6f7720707269636560781b604082015260600190565b60208082526016908201527522a9219b9918a2b73ab69d1037bbb732b91034b7b7b160511b604082015260600190565b60208082526017908201527f455243373231456e756d3a20676c6f62616c20696f6f62000000000000000000604082015260600190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526021908201527f45786365656473206d6178206d696e74206c696d6974207065722077616c6c656040820152601d60fa1b606082015260800190565b60208082526010908201526f496e636f72726563742076616c75657360801b604082015260600190565b90815260200190565b600082198211156128d5576128d56129ba565b500190565b6000826128e9576128e96129d0565b500490565b6000816000190483118215151615612908576129086129ba565b500290565b60008282101561291f5761291f6129ba565b500390565b60005b8381101561293f578181015183820152602001612927565b838111156113435750506000910152565b60028104600182168061296457607f821691505b6020821081141561298557634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561299f5761299f6129ba565b5060010190565b6000826129b5576129b56129d0565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b03198116811461167e57600080fdfea26469706673582212200723fef47259e30357ad626d6db6638a4200418a79b516025b6a8186a50192b064736f6c63430008000033
Deployed Bytecode Sourcemap
29786:4604:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28308:225;;;;;;;;;;-1:-1:-1;28308:225:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22427:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;23061:221::-;;;;;;;;;;-1:-1:-1;23061:221:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;22643:412::-;;;;;;;;;;-1:-1:-1;22643:412:0;;;;;:::i;:::-;;:::i;:::-;;30091:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;29469:110::-;;;;;;;;;;;;;:::i;32183:145::-;;;;;;;;;;-1:-1:-1;32183:145:0;;;;;:::i;:::-;;:::i;28539:500::-;;;;;;;;;;-1:-1:-1;28539:500:0;;;;;:::i;:::-;;:::i;33116:171::-;;;;;;;;;;-1:-1:-1;33116:171:0;;;;;:::i;:::-;;:::i;24104:185::-;;;;;;;;;;-1:-1:-1;24104:185:0;;;;;:::i;:::-;;:::i;33994:169::-;;;;;;;;;;-1:-1:-1;33994:169:0;;;;;:::i;:::-;;:::i;29914:33::-;;;;;;;;;;;;;:::i;30121:30::-;;;;;;;;;;;;;:::i;29585:194::-;;;;;;;;;;-1:-1:-1;29585:194:0;;;;;:::i;:::-;;:::i;33827:161::-;;;;;;;;;;-1:-1:-1;33827:161:0;;;;;:::i;:::-;;:::i;32900:102::-;;;;;;;;;;-1:-1:-1;32900:102:0;;;;;:::i;:::-;;:::i;22182:239::-;;;;;;;;;;-1:-1:-1;22182:239:0;;;;;:::i;:::-;;:::i;21754:422::-;;;;;;;;;;-1:-1:-1;21754:422:0;;;;;:::i;:::-;;:::i;1363:94::-;;;;;;;;;;;;;:::i;34169:218::-;;;;;;;;;;-1:-1:-1;34169:218:0;;;;;:::i;:::-;;:::i;33008:102::-;;;;;;;;;;-1:-1:-1;33008:102:0;;;;;:::i;:::-;;:::i;30046:38::-;;;;;;;;;;;;;:::i;29045:418::-;;;;;;;;;;-1:-1:-1;29045:418:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;32522:241::-;;;;;;;;;;;;;:::i;712:87::-;;;;;;;;;;;;;:::i;22533:104::-;;;;;;;;;;;;;:::i;29880:30::-;;;;;;;;;;;;;:::i;23288:295::-;;;;;;;;;;-1:-1:-1;23288:295:0;;;;;:::i;:::-;;:::i;30504:37::-;;;;;;;;;;-1:-1:-1;30504:37:0;;;;;:::i;:::-;;:::i;31079:733::-;;;;;;:::i;:::-;;:::i;30004:35::-;;;;;;;;;;;;;:::i;30274:182::-;;;;;;;;;;-1:-1:-1;30274:182:0;;;;;:::i;:::-;;:::i;32336:180::-;;;;;;;;;;-1:-1:-1;32336:180:0;;;;;:::i;:::-;;:::i;29954:46::-;;;;;;;;;;;;;:::i;33462:188::-;;;;;;;;;;-1:-1:-1;33462:188:0;;;;;:::i;:::-;;:::i;31821:353::-;;;;;;;;;;-1:-1:-1;31821:353:0;;;;;:::i;:::-;;:::i;30463:34::-;;;;;;;;;;-1:-1:-1;30463:34:0;;;;;:::i;:::-;;:::i;32769:125::-;;;;;;;;;;-1:-1:-1;32769:125:0;;;;;:::i;:::-;;:::i;30719:354::-;;;;;;;;;;-1:-1:-1;30719:354:0;;;;;:::i;:::-;;:::i;23589:164::-;;;;;;;;;;-1:-1:-1;23589:164:0;;;;;:::i;:::-;;:::i;33656:165::-;;;;;;;;;;-1:-1:-1;33656:165:0;;;;;:::i;:::-;;:::i;1612:192::-;;;;;;;;;;-1:-1:-1;1612:192:0;;;;;:::i;:::-;;:::i;33293:163::-;;;;;;;;;;-1:-1:-1;33293:163:0;;;;;:::i;:::-;;:::i;30161:30::-;;;;;;;;;;;;;:::i;28308:225::-;28411:4;-1:-1:-1;;;;;;28435:50:0;;-1:-1:-1;;;28435:50:0;;:90;;;28489:36;28513:11;28489:23;:36::i;:::-;28428:97;;28308:225;;;;:::o;22427:100::-;22481:13;22514:5;22507:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22427:100;:::o;23061:221::-;23137:7;23165:16;23173:7;23165;:16::i;:::-;23157:73;;;;-1:-1:-1;;;23157:73:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;23250:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;23250:24:0;;23061:221::o;22643:412::-;22724:13;22740:24;22756:7;22740:15;:24::i;:::-;22724:40;;22789:5;-1:-1:-1;;;;;22783:11:0;:2;-1:-1:-1;;;;;22783:11:0;;;22775:57;;;;-1:-1:-1;;;22775:57:0;;;;;;;:::i;:::-;22883:5;-1:-1:-1;;;;;22867:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;22867:21:0;;:62;;;;22892:37;22909:5;22916:12;:10;:12::i;22892:37::-;22845:168;;;;-1:-1:-1;;;22845:168:0;;;;;;;:::i;:::-;23026:21;23035:2;23039:7;23026:8;:21::i;:::-;22643:412;;;:::o;30091:26::-;;;;:::o;29469:110::-;29557:7;:14;29469:110;:::o;32183:145::-;32278:42;32299:5;32306:3;32311:8;32278:20;:42::i;28539:500::-;28628:15;28672:24;28690:5;28672:17;:24::i;:::-;28664:5;:32;28656:67;;;;-1:-1:-1;;;28656:67:0;;;;;;;:::i;:::-;28734:10;28760:6;28755:226;28772:7;:14;28768:18;;28755:226;;;28821:7;28829:1;28821:10;;;;;;-1:-1:-1;;;28821:10:0;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;28812:19:0;;;28821:10;;28812:19;28808:162;;;28865:5;28856;:14;28852:102;;;28901:1;-1:-1:-1;28894:8:0;;-1:-1:-1;28894:8:0;28852:102;28947:7;;;:::i;:::-;;;28852:102;28788:3;;;:::i;:::-;;;28755:226;;;-1:-1:-1;28991:40:0;;-1:-1:-1;;;28991:40:0;;;;;;;:::i;28539:500::-;;;;;:::o;33116:171::-;943:12;:10;:12::i;:::-;-1:-1:-1;;;;;932:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;932:23:0;;924:68;;;;-1:-1:-1;;;924:68:0;;;;;;;:::i;:::-;33210:15:::1;;33198:8;:27;;33190:56;;;;-1:-1:-1::0;;;33190:56:0::1;;;;;;;:::i;:::-;33256:12;:23:::0;33116:171::o;24104:185::-;24242:39;24259:4;24265:2;24269:7;24242:39;;;;;;;;;;;;:16;:39::i;33994:169::-;943:12;:10;:12::i;:::-;-1:-1:-1;;;;;932:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;932:23:0;;924:68;;;;-1:-1:-1;;;924:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;34076:21:0;::::1;34068:61;;;;-1:-1:-1::0;;;34068:61:0::1;;;;;;;:::i;:::-;34151:7;34134:11;34146:1;34134:14;;;;;;-1:-1:-1::0;;;34134:14:0::1;;;;;;;;;;;;;;;;;:24;;;;;-1:-1:-1::0;;;;;34134:24:0::1;;;;;-1:-1:-1::0;;;;;34134:24:0::1;;;;;;33994:169:::0;:::o;29914:33::-;;;;:::o;30121:30::-;;;;:::o;29585:194::-;29660:7;29696:24;:22;:24::i;:::-;29688:5;:32;29680:68;;;;-1:-1:-1;;;29680:68:0;;;;;;;:::i;:::-;-1:-1:-1;29766:5:0;29585:194::o;33827:161::-;943:12;:10;:12::i;:::-;-1:-1:-1;;;;;932:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;932:23:0;;924:68;;;;-1:-1:-1;;;924:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;33905:19:0;::::1;33897:59;;;;-1:-1:-1::0;;;33897:59:0::1;;;;;;;:::i;:::-;33978:5;33961:11;33973:1;33961:14;;;;;;-1:-1:-1::0;;;33961:14:0::1;;;;;;;;32900:102:::0;943:12;:10;:12::i;:::-;-1:-1:-1;;;;;932:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;932:23:0;;924:68;;;;-1:-1:-1;;;924:68:0;;;;;;;:::i;:::-;32974:20;;::::1;::::0;:7:::1;::::0;:20:::1;::::0;::::1;::::0;::::1;:::i;:::-;;32900:102:::0;:::o;22182:239::-;22254:7;22274:13;22290:7;22298;22290:16;;;;;;-1:-1:-1;;;22290:16:0;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22290:16:0;;-1:-1:-1;22325:19:0;22317:73;;;;-1:-1:-1;;;22317:73:0;;;;;;;:::i;21754:422::-;21826:7;-1:-1:-1;;;;;21854:19:0;;21846:74;;;;-1:-1:-1;;;21846:74:0;;;;;;;:::i;:::-;21970:7;:14;21931:10;;;21995:127;22016:6;22012:1;:10;21995:127;;;22057:7;22065:1;22057:10;;;;;;-1:-1:-1;;;22057:10:0;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22048:19:0;;;22057:10;;22048:19;22044:67;;;22088:7;;;:::i;:::-;;;22044:67;22024:3;;;:::i;:::-;;;21995:127;;;-1:-1:-1;22163:5:0;;21754:422;-1:-1:-1;;;21754:422:0:o;1363:94::-;943:12;:10;:12::i;:::-;-1:-1:-1;;;;;932:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;932:23:0;;924:68;;;;-1:-1:-1;;;924:68:0;;;;;;;:::i;:::-;1428:21:::1;1446:1;1428:9;:21::i;:::-;1363:94::o:0;34169:218::-;943:12;:10;:12::i;:::-;-1:-1:-1;;;;;932:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;932:23:0;;924:68;;;;-1:-1:-1;;;924:68:0;;;;;;;:::i;:::-;34268:25:::1;34281:12:::0;34268:10;:25:::1;:::i;:::-;34297:2;34268:31;34260:60;;;;-1:-1:-1::0;;;34260:60:0::1;;;;;;;:::i;:::-;34340:10;34325:9;34335:1;34325:12;;;;;;-1:-1:-1::0;;;34325:12:0::1;;;;;;;;;;;;;;;;:25;;;;34370:12;34355:9;34365:1;34355:12;;;;;;-1:-1:-1::0;;;34355:12:0::1;;;;;;;;;;::::0;;;::::1;::::0;;;::::1;:27:::0;-1:-1:-1;;34169:218:0:o;33008:102::-;943:12;:10;:12::i;:::-;-1:-1:-1;;;;;932:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;932:23:0;;924:68;;;;-1:-1:-1;;;924:68:0;;;;;;;:::i;:::-;33081:10:::1;:21:::0;33008:102::o;30046:38::-;;;;:::o;29045:418::-;29104:16;29145:24;29163:5;29145:17;:24::i;:::-;29141:1;:28;29133:63;;;;-1:-1:-1;;;29133:63:0;;;;;;;:::i;:::-;29207:18;29228:16;29238:5;29228:9;:16::i;:::-;29207:37;;29255:25;29297:10;29283:25;;;;;;-1:-1:-1;;;29283:25:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;29283:25:0;;29255:53;;29324:9;29319:111;29343:10;29339:1;:14;29319:111;;;29389:29;29409:5;29416:1;29389:19;:29::i;:::-;29375:8;29384:1;29375:11;;;;;;-1:-1:-1;;;29375:11:0;;;;;;;;;;;;;;;;;;:43;29355:3;;;;:::i;:::-;;;;29319:111;;;-1:-1:-1;29447:8:0;29045:418;-1:-1:-1;;;29045:418:0:o;32522:241::-;943:12;:10;:12::i;:::-;-1:-1:-1;;;;;932:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;932:23:0;;924:68;;;;-1:-1:-1;;;924:68:0;;;;;;;:::i;:::-;32591:21:::1;32573:15;32623:133;32647:11;:18:::0;32643:22;::::1;32623:133;;;32688:11;32700:1;32688:14;;;;;;-1:-1:-1::0;;;32688:14:0::1;;;;;;;;;;::::0;;;::::1;::::0;;;::::1;::::0;32724:9:::1;:12:::0;;-1:-1:-1;;;;;32688:14:0;;::::1;::::0;32680:64:::1;::::0;32740:3:::1;::::0;32734:1;;32724:12;::::1;;;-1:-1:-1::0;;;32724:12:0::1;;;;;;;;;;;;;;;;;32714:7;:22;;;;:::i;:::-;32713:30;;;;:::i;:::-;32680:64;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;32667:3:0;::::1;::::0;::::1;:::i;:::-;;;;32623:133;;712:87:::0;785:6;;-1:-1:-1;;;;;785:6:0;712:87;:::o;22533:104::-;22589:13;22622:7;22615:14;;;;;:::i;29880:30::-;;;;:::o;23288:295::-;23403:12;:10;:12::i;:::-;-1:-1:-1;;;;;23391:24:0;:8;-1:-1:-1;;;;;23391:24:0;;;23383:62;;;;-1:-1:-1;;;23383:62:0;;;;;;;:::i;:::-;23503:8;23458:18;:32;23477:12;:10;:12::i;:::-;-1:-1:-1;;;;;23458:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;23458:32:0;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;23458:53:0;;;;;;;;;;;23542:12;:10;:12::i;:::-;-1:-1:-1;;;;;23527:48:0;;23566:8;23527:48;;;;;;:::i;:::-;;;;;;;;23288:295;;:::o;30504:37::-;;;;;;;;;;;;;:::o;31079:733::-;31135:19;31157:13;:11;:13::i;:::-;31188:10;;31135:35;;-1:-1:-1;31188:10:0;;31175:55;;;;-1:-1:-1;;;31175:55:0;;;;;;;:::i;:::-;31278:8;;31268:6;31254:11;;:20;;;;:::i;:::-;:32;;31241:76;;;;-1:-1:-1;;;31241:76:0;;;;;;;:::i;:::-;31345:26;;31335:6;:36;;31322:92;;;;-1:-1:-1;;;31322:92:0;;;;;;;:::i;:::-;31471:13;;31438:10;31432:17;;;;:5;:17;;;;;:26;:35;;31461:6;;31432:35;:::i;:::-;:52;;31419:111;;;;-1:-1:-1;;;31419:111:0;;;;;;;:::i;:::-;31574:6;31561:10;;:19;;;;:::i;:::-;31548:9;:32;;31535:75;;;;-1:-1:-1;;;31535:75:0;;;;;;;:::i;:::-;31620:9;31615:121;31639:6;31635:1;:10;31615:121;;;31667:38;31677:10;31689:15;31703:1;31689:11;:15;:::i;:::-;31667:9;:38::i;:::-;31711:11;:13;;;:11;:13;;;:::i;:::-;;;;;;31647:3;;;;;:::i;:::-;;;;31615:121;;;-1:-1:-1;31775:10:0;31769:17;;;;:5;:17;;;;;:26;:35;;31798:6;;31769:35;:::i;:::-;31746:10;31740:17;;;;:5;:17;;;;;:64;-1:-1:-1;;31079:733:0:o;30004:35::-;;;;:::o;30274:182::-;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;30274:182:0;;-1:-1:-1;30274:182:0;:::o;32336:180::-;32455:53;32480:5;32487:3;32492:8;32502:5;32455:24;:53::i;:::-;32336:180;;;;:::o;29954:46::-;;;;:::o;33462:188::-;943:12;:10;:12::i;:::-;-1:-1:-1;;;;;932:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;932:23:0;;924:68;;;;-1:-1:-1;;;924:68:0;;;;;;;:::i;:::-;33566:8:::1;33554;;:20;;33546:48;;;;-1:-1:-1::0;;;33546:48:0::1;;;;;;;:::i;:::-;33605:26;:37:::0;33462:188::o;31821:353::-;31897:13;31931:17;31939:8;31931:7;:17::i;:::-;31923:63;;;;-1:-1:-1;;;31923:63:0;;;;;;;:::i;:::-;31997:28;32028:10;:8;:10::i;:::-;31997:41;;32087:1;32062:14;32056:28;:32;:110;;;;;;;;;;;;;;;;;32115:14;32131:19;:8;:17;:19::i;:::-;32098:62;;;;;;;;;:::i;:::-;;;;;;;;;;;;;32056:110;32049:117;31821:353;-1:-1:-1;;;31821:353:0:o;30463:34::-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30463:34:0;:::o;32769:125::-;943:12;:10;:12::i;:::-;-1:-1:-1;;;;;932:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;932:23:0;;924:68;;;;-1:-1:-1;;;924:68:0;;;;;;;:::i;:::-;32841:10:::1;::::0;::::1;;:20;;::::0;::::1;;;;32833:29;;;::::0;::::1;;32867:10;:19:::0;;-1:-1:-1;;32867:19:0::1;::::0;::::1;;::::0;;;::::1;::::0;;32769:125::o;30719:354::-;943:12;:10;:12::i;:::-;-1:-1:-1;;;;;932:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;932:23:0;;924:68;;;;-1:-1:-1;;;924:68:0;;;;;;;:::i;:::-;30797:19:::1;30819:13;:11;:13::i;:::-;30797:35;;30893:12;;30883:6;30865:15;;:24;;;;:::i;:::-;:40;;30843:100;;;;-1:-1:-1::0;;;30843:100:0::1;;;;;;;:::i;:::-;30953:9;30948:118;30972:6;30968:1;:10;30948:118;;;31000:31;31010:3:::0;31015:15:::1;31029:1:::0;31015:11;:15:::1;:::i;31000:31::-;31037:15;:17:::0;;;:15:::1;:17;::::0;::::1;:::i;:::-;;;;;;30980:3;;;;;:::i;:::-;;;;30948:118;;23589:164:::0;-1:-1:-1;;;;;23710:25:0;;;23686:4;23710:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;23589:164::o;33656:165::-;943:12;:10;:12::i;:::-;-1:-1:-1;;;;;932:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;932:23:0;;924:68;;;;-1:-1:-1;;;924:68:0;;;;;;;:::i;:::-;33750:8:::1;33738;;:20;;33730:48;;;;-1:-1:-1::0;;;33730:48:0::1;;;;;;;:::i;:::-;33789:13;:24:::0;33656:165::o;1612:192::-;943:12;:10;:12::i;:::-;-1:-1:-1;;;;;932:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;932:23:0;;924:68;;;;-1:-1:-1;;;924:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;1701:22:0;::::1;1693:73;;;;-1:-1:-1::0;;;1693:73:0::1;;;;;;;:::i;:::-;1777:19;1787:8;1777:9;:19::i;:::-;1612:192:::0;:::o;33293:163::-;943:12;:10;:12::i;:::-;-1:-1:-1;;;;;932:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;932:23:0;;924:68;;;;-1:-1:-1;;;924:68:0;;;;;;;:::i;:::-;33386:11:::1;;33373:9;:24;;33365:52;;;;-1:-1:-1::0;;;33365:52:0::1;;;;;;;:::i;:::-;33428:8;:20:::0;33293:163::o;30161:30::-;;;;;;:::o;21455:293::-;21557:4;-1:-1:-1;;;;;;21590:40:0;;-1:-1:-1;;;21590:40:0;;:101;;-1:-1:-1;;;;;;;21643:48:0;;-1:-1:-1;;;21643:48:0;21590:101;:150;;;;21704:36;21728:11;21704:23;:36::i;24950:155::-;25049:7;:14;25015:4;;25039:24;;:58;;;;;25095:1;-1:-1:-1;;;;;25067:30:0;:7;25075;25067:16;;;;;;-1:-1:-1;;;25067:16:0;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;25067:16:0;:30;;;24950:155;-1:-1:-1;;24950:155:0:o;95:98::-;175:10;95:98;:::o;27123:175::-;27198:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;27198:29:0;-1:-1:-1;;;;;27198:29:0;;;;;;;;:24;;27252;27198;27252:15;:24::i;:::-;-1:-1:-1;;;;;27243:47:0;;;;;;;;;;;27123:175;;:::o;23759:339::-;23954:41;23973:12;:10;:12::i;:::-;23987:7;23954:18;:41::i;:::-;23946:103;;;;-1:-1:-1;;;23946:103:0;;;;;;;:::i;:::-;24062:28;24072:4;24078:2;24082:7;24062:9;:28::i;1812:173::-;1887:6;;;-1:-1:-1;;;;;1904:17:0;;;-1:-1:-1;;;;;;1904:17:0;;;;;;;1937:40;;1887:6;;;1904:17;1887:6;;1937:40;;1868:16;;1937:40;1812:173;;:::o;25466:110::-;25542:26;25552:2;25556:7;25542:26;;;;;;;;;;;;:9;:26::i;24295:328::-;24470:41;24489:12;:10;:12::i;:::-;24503:7;24470:18;:41::i;:::-;24462:103;;;;-1:-1:-1;;;24462:103:0;;;;;;;:::i;:::-;24576:39;24590:4;24596:2;24600:7;24609:5;24576:13;:39::i;30614:99::-;30665:13;30698:7;30691:14;;;;;:::i;2180:723::-;2236:13;2457:10;2453:53;;-1:-1:-1;2484:10:0;;;;;;;;;;;;-1:-1:-1;;;2484:10:0;;;;;;2453:53;2531:5;2516:12;2572:78;2579:9;;2572:78;;2605:8;;;;:::i;:::-;;-1:-1:-1;2628:10:0;;-1:-1:-1;2636:2:0;2628:10;;:::i;:::-;;;2572:78;;;2660:19;2692:6;2682:17;;;;;;-1:-1:-1;;;2682:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2682:17:0;;2660:39;;2710:154;2717:10;;2710:154;;2744:11;2754:1;2744:11;;:::i;:::-;;-1:-1:-1;2813:10:0;2821:2;2813:5;:10;:::i;:::-;2800:24;;:2;:24;:::i;:::-;2787:39;;2770:6;2777;2770:14;;;;;;-1:-1:-1;;;2770:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;2770:56:0;;;;;;;;-1:-1:-1;2841:11:0;2850:2;2841:11;;:::i;:::-;;;2710:154;;;2888:6;2180:723;-1:-1:-1;;;;2180:723:0:o;20834:157::-;-1:-1:-1;;;;;;20943:40:0;;-1:-1:-1;;;20943:40:0;20834:157;;;:::o;25111:349::-;25204:4;25229:16;25237:7;25229;:16::i;:::-;25221:73;;;;-1:-1:-1;;;25221:73:0;;;;;;;:::i;:::-;25305:13;25321:24;25337:7;25321:15;:24::i;:::-;25305:40;;25375:5;-1:-1:-1;;;;;25364:16:0;:7;-1:-1:-1;;;;;25364:16:0;;:51;;;;25408:7;-1:-1:-1;;;;;25384:31:0;:20;25396:7;25384:11;:20::i;:::-;-1:-1:-1;;;;;25384:31:0;;25364:51;:87;;;;25419:32;25436:5;25443:7;25419:16;:32::i;26600:517::-;26760:4;-1:-1:-1;;;;;26732:32:0;:24;26748:7;26732:15;:24::i;:::-;-1:-1:-1;;;;;26732:32:0;;26724:86;;;;-1:-1:-1;;;26724:86:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;26829:16:0;;26821:65;;;;-1:-1:-1;;;26821:65:0;;;;;;;:::i;:::-;26899:39;26920:4;26926:2;26930:7;26899:20;:39::i;:::-;27003:29;27020:1;27024:7;27003:8;:29::i;:::-;27062:2;27043:7;27051;27043:16;;;;;;-1:-1:-1;;;27043:16:0;;;;;;;;;;;;;;;;;:21;;-1:-1:-1;;;;;;27043:21:0;-1:-1:-1;;;;;27043:21:0;;;;;;27082:27;;27101:7;;27082:27;;;;;;;;;;27043:16;27082:27;26600:517;;;:::o;25582:321::-;25712:18;25718:2;25722:7;25712:5;:18::i;:::-;25763:54;25794:1;25798:2;25802:7;25811:5;25763:22;:54::i;:::-;25741:154;;;;-1:-1:-1;;;25741:154:0;;;;;;;:::i;24629:315::-;24786:28;24796:4;24802:2;24806:7;24786:9;:28::i;:::-;24833:48;24856:4;24862:2;24866:7;24875:5;24833:22;:48::i;:::-;24825:111;;;;-1:-1:-1;;;24825:111:0;;;;;;;:::i;25909:346::-;-1:-1:-1;;;;;25989:16:0;;25981:61;;;;-1:-1:-1;;;25981:61:0;;;;;;;:::i;:::-;26062:16;26070:7;26062;:16::i;:::-;26061:17;26053:58;;;;-1:-1:-1;;;26053:58:0;;;;;;;:::i;:::-;26124:45;26153:1;26157:2;26161:7;26124:20;:45::i;:::-;26180:7;:16;;;;;;;-1:-1:-1;26180:16:0;;;;;;;-1:-1:-1;;;;;;26180:16:0;-1:-1:-1;;;;;26180:16:0;;;;;;;;26214:33;;26239:7;;-1:-1:-1;26214:33:0;;-1:-1:-1;;26214:33:0;25909:346;;:::o;27304:799::-;27459:4;27480:15;:2;-1:-1:-1;;;;;27480:13:0;;:15::i;:::-;27476:620;;;27532:2;-1:-1:-1;;;;;27516:36:0;;27553:12;:10;:12::i;:::-;27567:4;27573:7;27582:5;27516:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;27516:72:0;;;;;;;;-1:-1:-1;;27516:72:0;;;;;;;;;;;;:::i;:::-;;;27512:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;27758:13:0;;27754:272;;27801:60;;-1:-1:-1;;;27801:60:0;;;;;;;:::i;27754:272::-;27976:6;27970:13;27961:6;27957:2;27953:15;27946:38;27512:529;-1:-1:-1;;;;;;27639:51:0;-1:-1:-1;;;27639:51:0;;-1:-1:-1;27632:58:0;;27476:620;-1:-1:-1;28080:4:0;27304:799;;;;;;:::o;13396:387::-;13719:20;13767:8;;;13396:387::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:607:1;;110:18;151:2;143:6;140:14;137:2;;;157:18;;:::i;:::-;206:2;200:9;279:2;256:17;;-1:-1:-1;;252:31:1;240:44;;286:4;236:55;306:18;;;326:22;;;303:46;300:2;;;352:18;;:::i;:::-;388:2;381:22;436;;;421:6;-1:-1:-1;421:6:1;473:16;;;470:25;-1:-1:-1;467:2:1;;;508:1;505;498:12;467:2;558:6;553:3;546:4;538:6;534:17;521:44;613:1;606:4;597:6;589;585:19;581:30;574:41;;;90:531;;;;;:::o;626:175::-;696:20;;-1:-1:-1;;;;;745:31:1;;735:42;;725:2;;791:1;788;781:12;806:162;873:20;;929:13;;922:21;912:32;;902:2;;958:1;955;948:12;973:198;;1085:2;1073:9;1064:7;1060:23;1056:32;1053:2;;;1106:6;1098;1091:22;1053:2;1134:31;1155:9;1134:31;:::i;1176:274::-;;;1305:2;1293:9;1284:7;1280:23;1276:32;1273:2;;;1326:6;1318;1311:22;1273:2;1354:31;1375:9;1354:31;:::i;:::-;1344:41;;1404:40;1440:2;1429:9;1425:18;1404:40;:::i;:::-;1394:50;;1263:187;;;;;:::o;1455:342::-;;;;1601:2;1589:9;1580:7;1576:23;1572:32;1569:2;;;1622:6;1614;1607:22;1569:2;1650:31;1671:9;1650:31;:::i;:::-;1640:41;;1700:40;1736:2;1725:9;1721:18;1700:40;:::i;:::-;1690:50;;1787:2;1776:9;1772:18;1759:32;1749:42;;1559:238;;;;;:::o;1802:702::-;;;;;1974:3;1962:9;1953:7;1949:23;1945:33;1942:2;;;1996:6;1988;1981:22;1942:2;2024:31;2045:9;2024:31;:::i;:::-;2014:41;;2074:40;2110:2;2099:9;2095:18;2074:40;:::i;:::-;2064:50;;2161:2;2150:9;2146:18;2133:32;2123:42;;2216:2;2205:9;2201:18;2188:32;2243:18;2235:6;2232:30;2229:2;;;2280:6;2272;2265:22;2229:2;2308:22;;2361:4;2353:13;;2349:27;-1:-1:-1;2339:2:1;;2395:6;2387;2380:22;2339:2;2423:75;2490:7;2485:2;2472:16;2467:2;2463;2459:11;2423:75;:::i;:::-;2413:85;;;1932:572;;;;;;;:::o;2509:268::-;;;2635:2;2623:9;2614:7;2610:23;2606:32;2603:2;;;2656:6;2648;2641:22;2603:2;2684:31;2705:9;2684:31;:::i;:::-;2674:41;;2734:37;2767:2;2756:9;2752:18;2734:37;:::i;2782:266::-;;;2911:2;2899:9;2890:7;2886:23;2882:32;2879:2;;;2932:6;2924;2917:22;2879:2;2960:31;2981:9;2960:31;:::i;:::-;2950:41;3038:2;3023:18;;;;3010:32;;-1:-1:-1;;;2869:179:1:o;3053:192::-;;3162:2;3150:9;3141:7;3137:23;3133:32;3130:2;;;3183:6;3175;3168:22;3130:2;3211:28;3229:9;3211:28;:::i;3250:257::-;;3361:2;3349:9;3340:7;3336:23;3332:32;3329:2;;;3382:6;3374;3367:22;3329:2;3426:9;3413:23;3445:32;3471:5;3445:32;:::i;3512:261::-;;3634:2;3622:9;3613:7;3609:23;3605:32;3602:2;;;3655:6;3647;3640:22;3602:2;3692:9;3686:16;3711:32;3737:5;3711:32;:::i;3778:482::-;;3900:2;3888:9;3879:7;3875:23;3871:32;3868:2;;;3921:6;3913;3906:22;3868:2;3966:9;3953:23;3999:18;3991:6;3988:30;3985:2;;;4036:6;4028;4021:22;3985:2;4064:22;;4117:4;4109:13;;4105:27;-1:-1:-1;4095:2:1;;4151:6;4143;4136:22;4095:2;4179:75;4246:7;4241:2;4228:16;4223:2;4219;4215:11;4179:75;:::i;4265:190::-;;4377:2;4365:9;4356:7;4352:23;4348:32;4345:2;;;4398:6;4390;4383:22;4345:2;-1:-1:-1;4426:23:1;;4335:120;-1:-1:-1;4335:120:1:o;4460:258::-;;;4589:2;4577:9;4568:7;4564:23;4560:32;4557:2;;;4610:6;4602;4595:22;4557:2;-1:-1:-1;;4638:23:1;;;4708:2;4693:18;;;4680:32;;-1:-1:-1;4547:171:1:o;4723:259::-;;4804:5;4798:12;4831:6;4826:3;4819:19;4847:63;4903:6;4896:4;4891:3;4887:14;4880:4;4873:5;4869:16;4847:63;:::i;:::-;4964:2;4943:15;-1:-1:-1;;4939:29:1;4930:39;;;;4971:4;4926:50;;4774:208;-1:-1:-1;;4774:208:1:o;4987:637::-;;5305:6;5299:13;5321:53;5367:6;5362:3;5355:4;5347:6;5343:17;5321:53;:::i;:::-;5437:13;;5396:16;;;;5459:57;5437:13;5396:16;5493:4;5481:17;;5459:57;:::i;:::-;-1:-1:-1;;;5538:20:1;;5567:22;;;5616:1;5605:13;;5275:349;-1:-1:-1;;;;5275:349:1:o;5629:203::-;-1:-1:-1;;;;;5793:32:1;;;;5775:51;;5763:2;5748:18;;5730:102::o;5837:490::-;-1:-1:-1;;;;;6106:15:1;;;6088:34;;6158:15;;6153:2;6138:18;;6131:43;6205:2;6190:18;;6183:34;;;6253:3;6248:2;6233:18;;6226:31;;;5837:490;;6274:47;;6301:19;;6293:6;6274:47;:::i;:::-;6266:55;6040:287;-1:-1:-1;;;;;;6040:287:1:o;6332:635::-;6503:2;6555:21;;;6625:13;;6528:18;;;6647:22;;;6332:635;;6503:2;6726:15;;;;6700:2;6685:18;;;6332:635;6772:169;6786:6;6783:1;6780:13;6772:169;;;6847:13;;6835:26;;6916:15;;;;6881:12;;;;6808:1;6801:9;6772:169;;;-1:-1:-1;6958:3:1;;6483:484;-1:-1:-1;;;;;;6483:484:1:o;6972:187::-;7137:14;;7130:22;7112:41;;7100:2;7085:18;;7067:92::o;7164:221::-;;7313:2;7302:9;7295:21;7333:46;7375:2;7364:9;7360:18;7352:6;7333:46;:::i;7390:397::-;7592:2;7574:21;;;7631:2;7611:18;;;7604:30;7670:34;7665:2;7650:18;;7643:62;-1:-1:-1;;;7736:2:1;7721:18;;7714:31;7777:3;7762:19;;7564:223::o;7792:414::-;7994:2;7976:21;;;8033:2;8013:18;;;8006:30;8072:34;8067:2;8052:18;;8045:62;-1:-1:-1;;;8138:2:1;8123:18;;8116:48;8196:3;8181:19;;7966:240::o;8211:402::-;8413:2;8395:21;;;8452:2;8432:18;;;8425:30;8491:34;8486:2;8471:18;;8464:62;-1:-1:-1;;;8557:2:1;8542:18;;8535:36;8603:3;8588:19;;8385:228::o;8618:352::-;8820:2;8802:21;;;8859:2;8839:18;;;8832:30;8898;8893:2;8878:18;;8871:58;8961:2;8946:18;;8792:178::o;8975:400::-;9177:2;9159:21;;;9216:2;9196:18;;;9189:30;9255:34;9250:2;9235:18;;9228:62;-1:-1:-1;;;9321:2:1;9306:18;;9299:34;9365:3;9350:19;;9149:226::o;9380:349::-;9582:2;9564:21;;;9621:2;9601:18;;;9594:30;9660:27;9655:2;9640:18;;9633:55;9720:2;9705:18;;9554:175::o;9734:332::-;9936:2;9918:21;;;9975:1;9955:18;;;9948:29;-1:-1:-1;;;10008:2:1;9993:18;;9986:39;10057:2;10042:18;;9908:158::o;10071:342::-;10273:2;10255:21;;;10312:2;10292:18;;;10285:30;-1:-1:-1;;;10346:2:1;10331:18;;10324:48;10404:2;10389:18;;10245:168::o;10418:408::-;10620:2;10602:21;;;10659:2;10639:18;;;10632:30;10698:34;10693:2;10678:18;;10671:62;-1:-1:-1;;;10764:2:1;10749:18;;10742:42;10816:3;10801:19;;10592:234::o;10831:420::-;11033:2;11015:21;;;11072:2;11052:18;;;11045:30;11111:34;11106:2;11091:18;;11084:62;11182:26;11177:2;11162:18;;11155:54;11241:3;11226:19;;11005:246::o;11256:354::-;11458:2;11440:21;;;11497:2;11477:18;;;11470:30;11536:32;11531:2;11516:18;;11509:60;11601:2;11586:18;;11430:180::o;11615:406::-;11817:2;11799:21;;;11856:2;11836:18;;;11829:30;11895:34;11890:2;11875:18;;11868:62;-1:-1:-1;;;11961:2:1;11946:18;;11939:40;12011:3;11996:19;;11789:232::o;12026:405::-;12228:2;12210:21;;;12267:2;12247:18;;;12240:30;12306:34;12301:2;12286:18;;12279:62;-1:-1:-1;;;12372:2:1;12357:18;;12350:39;12421:3;12406:19;;12200:231::o;12436:341::-;12638:2;12620:21;;;12677:2;12657:18;;;12650:30;-1:-1:-1;;;12711:2:1;12696:18;;12689:47;12768:2;12753:18;;12610:167::o;12782:356::-;12984:2;12966:21;;;13003:18;;;12996:30;13062:34;13057:2;13042:18;;13035:62;13129:2;13114:18;;12956:182::o;13143:408::-;13345:2;13327:21;;;13384:2;13364:18;;;13357:30;13423:34;13418:2;13403:18;;13396:62;-1:-1:-1;;;13489:2:1;13474:18;;13467:42;13541:3;13526:19;;13317:234::o;13556:339::-;13758:2;13740:21;;;13797:2;13777:18;;;13770:30;-1:-1:-1;;;13831:2:1;13816:18;;13809:45;13886:2;13871:18;;13730:165::o;13900:356::-;14102:2;14084:21;;;14121:18;;;14114:30;14180:34;14175:2;14160:18;;14153:62;14247:2;14232:18;;14074:182::o;14261:405::-;14463:2;14445:21;;;14502:2;14482:18;;;14475:30;14541:34;14536:2;14521:18;;14514:62;-1:-1:-1;;;14607:2:1;14592:18;;14585:39;14656:3;14641:19;;14435:231::o;14671:351::-;14873:2;14855:21;;;14912:2;14892:18;;;14885:30;14951:29;14946:2;14931:18;;14924:57;15013:2;14998:18;;14845:177::o;15027:341::-;15229:2;15211:21;;;15268:2;15248:18;;;15241:30;-1:-1:-1;;;15302:2:1;15287:18;;15280:47;15359:2;15344:18;;15201:167::o;15373:346::-;15575:2;15557:21;;;15614:2;15594:18;;;15587:30;-1:-1:-1;;;15648:2:1;15633:18;;15626:52;15710:2;15695:18;;15547:172::o;15724:347::-;15926:2;15908:21;;;15965:2;15945:18;;;15938:30;16004:25;15999:2;15984:18;;15977:53;16062:2;16047:18;;15898:173::o;16076:397::-;16278:2;16260:21;;;16317:2;16297:18;;;16290:30;16356:34;16351:2;16336:18;;16329:62;-1:-1:-1;;;16422:2:1;16407:18;;16400:31;16463:3;16448:19;;16250:223::o;16478:413::-;16680:2;16662:21;;;16719:2;16699:18;;;16692:30;16758:34;16753:2;16738:18;;16731:62;-1:-1:-1;;;16824:2:1;16809:18;;16802:47;16881:3;16866:19;;16652:239::o;16896:397::-;17098:2;17080:21;;;17137:2;17117:18;;;17110:30;17176:34;17171:2;17156:18;;17149:62;-1:-1:-1;;;17242:2:1;17227:18;;17220:31;17283:3;17268:19;;17070:223::o;17298:340::-;17500:2;17482:21;;;17539:2;17519:18;;;17512:30;-1:-1:-1;;;17573:2:1;17558:18;;17551:46;17629:2;17614:18;;17472:166::o;17643:177::-;17789:25;;;17777:2;17762:18;;17744:76::o;17825:128::-;;17896:1;17892:6;17889:1;17886:13;17883:2;;;17902:18;;:::i;:::-;-1:-1:-1;17938:9:1;;17873:80::o;17958:120::-;;18024:1;18014:2;;18029:18;;:::i;:::-;-1:-1:-1;18063:9:1;;18004:74::o;18083:168::-;;18189:1;18185;18181:6;18177:14;18174:1;18171:21;18166:1;18159:9;18152:17;18148:45;18145:2;;;18196:18;;:::i;:::-;-1:-1:-1;18236:9:1;;18135:116::o;18256:125::-;;18324:1;18321;18318:8;18315:2;;;18329:18;;:::i;:::-;-1:-1:-1;18366:9:1;;18305:76::o;18386:258::-;18458:1;18468:113;18482:6;18479:1;18476:13;18468:113;;;18558:11;;;18552:18;18539:11;;;18532:39;18504:2;18497:10;18468:113;;;18599:6;18596:1;18593:13;18590:2;;;-1:-1:-1;;18634:1:1;18616:16;;18609:27;18439:205::o;18649:380::-;18734:1;18724:12;;18781:1;18771:12;;;18792:2;;18846:4;18838:6;18834:17;18824:27;;18792:2;18899;18891:6;18888:14;18868:18;18865:38;18862:2;;;18945:10;18940:3;18936:20;18933:1;18926:31;18980:4;18977:1;18970:15;19008:4;19005:1;18998:15;18862:2;;18704:325;;;:::o;19034:135::-;;-1:-1:-1;;19094:17:1;;19091:2;;;19114:18;;:::i;:::-;-1:-1:-1;19161:1:1;19150:13;;19081:88::o;19174:112::-;;19232:1;19222:2;;19237:18;;:::i;:::-;-1:-1:-1;19271:9:1;;19212:74::o;19291:127::-;19352:10;19347:3;19343:20;19340:1;19333:31;19383:4;19380:1;19373:15;19407:4;19404:1;19397:15;19423:127;19484:10;19479:3;19475:20;19472:1;19465:31;19515:4;19512:1;19505:15;19539:4;19536:1;19529:15;19555:127;19616:10;19611:3;19607:20;19604:1;19597:31;19647:4;19644:1;19637:15;19671:4;19668:1;19661:15;19687:133;-1:-1:-1;;;;;;19763:32:1;;19753:43;;19743:2;;19810:1;19807;19800:12
Swarm Source
ipfs://0723fef47259e30357ad626d6db6638a4200418a79b516025b6a8186a50192b0
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.