ERC-721
Overview
Max Total Supply
2,604 BUTTS
Holders
482
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
17 BUTTSLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
ButtPunks
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "erc721a/contracts/ERC721A.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/finance/PaymentSplitter.sol"; contract ButtPunks is ERC721A, Ownable, PaymentSplitter { using SafeMath for uint256; string public constant PROVENANCE = "a40233bd0f418ee109ee63b79cfdb230346e3bdab3a630f993c43b688e6beb79"; address[] private PAY_LIST = [ 0xD1aDe89F8826d122F0a3Ab953Bc293E144042539, 0x4a4F584cA801192D459aFDF93BE3aE2C627FF8a2, 0x67E4C81A94506727a4bd57826EB5EE974cfC1AD8 ]; uint256[] private PAY_SHARES = [45, 45, 10]; uint256 public constant TOKEN_PRICE = 0.01 ether; uint128 public constant MAX_SUPPLY = 6969; uint128 public constant MAX_PURCHASE = 20; uint128 public constant RESERVED_TOKENS = 69; uint128 public saleStatus = 0; // 0 = off, 1 = presale, 2 = public sale string private baseTokenUri; mapping(address => uint256) public presaleList; constructor(string memory initialBaseTokenUri) ERC721A("ButtPunks", "BUTTS") PaymentSplitter(PAY_LIST, PAY_SHARES) { baseTokenUri = initialBaseTokenUri; } modifier callerIsUser() { require(tx.origin == msg.sender, "The caller is another contract"); _; } function presaleMint(uint256 numberOfTokens) public payable callerIsUser { require( presaleList[msg.sender] > 0, "Wallet not eligible for pre-sale mint" ); require( saleStatus > 0, "Pre-sale must be active in order to mint a token" ); require( numberOfTokens <= MAX_PURCHASE, "Each wallet can only mint 20 tokens at a time" ); require( totalSupply().add(numberOfTokens) <= MAX_SUPPLY, "Purchase would exceed max supply of tokens" ); uint256 totalCost = TOKEN_PRICE.mul(numberOfTokens); require(totalCost <= msg.value, "Ether value sent is too low"); _safeMint(msg.sender, numberOfTokens); presaleList[msg.sender]--; // Send eth back if over-paid if (msg.value > totalCost) { payable(msg.sender).transfer(msg.value - totalCost); } } function publicSaleMint(uint256 numberOfTokens) public payable callerIsUser { require( saleStatus > 1, "Public sale must be active in order to mint a token" ); require( numberOfTokens <= MAX_PURCHASE, "Each wallet can only mint 20 tokens at a time" ); require( totalSupply().add(numberOfTokens) <= MAX_SUPPLY, "Purchase would exceed max supply of tokens" ); uint256 totalCost = TOKEN_PRICE.mul(numberOfTokens); require(totalCost <= msg.value, "Ether value sent is too low"); _safeMint(msg.sender, numberOfTokens); // Send eth back if over-paid if (msg.value > totalCost) { payable(msg.sender).transfer(msg.value - totalCost); } } function _baseURI() internal view virtual override returns (string memory) { return baseTokenUri; } function setBaseURI(string calldata baseURI) external onlyOwner { baseTokenUri = baseURI; } function setSaleStatus(uint128 newSaleStatus) external onlyOwner { saleStatus = newSaleStatus; } function seedPresaleList( address[] memory addressList, uint256[] memory numSlots ) external onlyOwner { require( addressList.length == numSlots.length, "addressList does not match numSlots length" ); for (uint256 i = 0; i < addressList.length; i++) { presaleList[addressList[i]] = numSlots[i]; } } // for giveaways, marketing, etc function devMint(uint256 numberOfTokens) external onlyOwner { require( totalSupply().add(numberOfTokens) <= RESERVED_TOKENS, "Minting would exceed reserved tokens quantity" ); _safeMint(msg.sender, numberOfTokens); } }
// SPDX-License-Identifier: MIT // Creator: Chiru Labs pragma solidity ^0.8.0; import '@openzeppelin/contracts/token/ERC721/IERC721.sol'; import '@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol'; import '@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol'; import '@openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol'; import '@openzeppelin/contracts/utils/Address.sol'; import '@openzeppelin/contracts/utils/Context.sol'; import '@openzeppelin/contracts/utils/Strings.sol'; import '@openzeppelin/contracts/utils/introspection/ERC165.sol'; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints. * * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..). * * Does not support burning tokens to address(0). * * Assumes that an owner cannot have more than the 2**128 (max value of uint128) of supply */ contract ERC721A is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable { using Address for address; using Strings for uint256; struct TokenOwnership { address addr; uint64 startTimestamp; } struct AddressData { uint128 balance; uint128 numberMinted; } uint256 internal currentIndex = 0; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to ownership details // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details. mapping(uint256 => TokenOwnership) internal _ownerships; // Mapping owner address to address data mapping(address => AddressData) private _addressData; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view override returns (uint256) { return currentIndex; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view override returns (uint256) { require(index < totalSupply(), 'ERC721A: global index out of bounds'); return index; } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first. * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256) { require(index < balanceOf(owner), 'ERC721A: owner index out of bounds'); uint256 numMintedSoFar = totalSupply(); uint256 tokenIdsIdx = 0; address currOwnershipAddr = address(0); for (uint256 i = 0; i < numMintedSoFar; i++) { TokenOwnership memory ownership = _ownerships[i]; if (ownership.addr != address(0)) { currOwnershipAddr = ownership.addr; } if (currOwnershipAddr == owner) { if (tokenIdsIdx == index) { return i; } tokenIdsIdx++; } } revert('ERC721A: unable to get token of owner by index'); } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view override returns (uint256) { require(owner != address(0), 'ERC721A: balance query for the zero address'); return uint256(_addressData[owner].balance); } function _numberMinted(address owner) internal view returns (uint256) { require(owner != address(0), 'ERC721A: number minted query for the zero address'); return uint256(_addressData[owner].numberMinted); } function ownershipOf(uint256 tokenId) internal view returns (TokenOwnership memory) { require(_exists(tokenId), 'ERC721A: owner query for nonexistent token'); for (uint256 curr = tokenId; ; curr--) { TokenOwnership memory ownership = _ownerships[curr]; if (ownership.addr != address(0)) { return ownership; } } revert('ERC721A: unable to determine the owner of token'); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view override returns (address) { return ownershipOf(tokenId).addr; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), 'ERC721Metadata: URI query for nonexistent token'); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ''; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public override { address owner = ERC721A.ownerOf(tokenId); require(to != owner, 'ERC721A: approval to current owner'); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), 'ERC721A: approve caller is not owner nor approved for all' ); _approve(to, tokenId, owner); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view override returns (address) { require(_exists(tokenId), 'ERC721A: approved query for nonexistent token'); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public override { require(operator != _msgSender(), 'ERC721A: approve to caller'); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public override { _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public override { safeTransferFrom(from, to, tokenId, ''); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public override { _transfer(from, to, tokenId); require( _checkOnERC721Received(from, to, tokenId, _data), 'ERC721A: transfer to non ERC721Receiver implementer' ); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), */ function _exists(uint256 tokenId) internal view returns (bool) { return tokenId < currentIndex; } function _safeMint(address to, uint256 quantity) internal { _safeMint(to, quantity, ''); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` cannot be larger than the max batch size. * * Emits a {Transfer} event. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal { uint256 startTokenId = currentIndex; require(to != address(0), 'ERC721A: mint to the zero address'); // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering. require(!_exists(startTokenId), 'ERC721A: token already minted'); require(quantity > 0, 'ERC721A: quantity must be greater 0'); _beforeTokenTransfers(address(0), to, startTokenId, quantity); AddressData memory addressData = _addressData[to]; _addressData[to] = AddressData( addressData.balance + uint128(quantity), addressData.numberMinted + uint128(quantity) ); _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp)); uint256 updatedIndex = startTokenId; for (uint256 i = 0; i < quantity; i++) { emit Transfer(address(0), to, updatedIndex); require( _checkOnERC721Received(address(0), to, updatedIndex, _data), 'ERC721A: transfer to non ERC721Receiver implementer' ); updatedIndex++; } currentIndex = updatedIndex; _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Transfers `tokenId` from `from` to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) private { TokenOwnership memory prevOwnership = ownershipOf(tokenId); bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr || getApproved(tokenId) == _msgSender() || isApprovedForAll(prevOwnership.addr, _msgSender())); require(isApprovedOrOwner, 'ERC721A: transfer caller is not owner nor approved'); require(prevOwnership.addr == from, 'ERC721A: transfer from incorrect owner'); require(to != address(0), 'ERC721A: transfer to the zero address'); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner _approve(address(0), tokenId, prevOwnership.addr); // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. unchecked { _addressData[from].balance -= 1; _addressData[to].balance += 1; } _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp)); // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it. // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls. uint256 nextTokenId = tokenId + 1; if (_ownerships[nextTokenId].addr == address(0)) { if (_exists(nextTokenId)) { _ownerships[nextTokenId] = TokenOwnership(prevOwnership.addr, prevOwnership.startTimestamp); } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve( address to, uint256 tokenId, address owner ) private { _tokenApprovals[tokenId] = to; emit Approval(owner, to, tokenId); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert('ERC721A: transfer to non ERC721Receiver implementer'); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. */ function _beforeTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes * minting. * * startTokenId - the first token id to be transferred * quantity - the amount to be transferred * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol) pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (finance/PaymentSplitter.sol) pragma solidity ^0.8.0; import "../token/ERC20/utils/SafeERC20.sol"; import "../utils/Address.sol"; import "../utils/Context.sol"; /** * @title PaymentSplitter * @dev This contract allows to split Ether payments among a group of accounts. The sender does not need to be aware * that the Ether will be split in this way, since it is handled transparently by the contract. * * The split can be in equal parts or in any other arbitrary proportion. The way this is specified is by assigning each * account to a number of shares. Of all the Ether that this contract receives, each account will then be able to claim * an amount proportional to the percentage of total shares they were assigned. * * `PaymentSplitter` follows a _pull payment_ model. This means that payments are not automatically forwarded to the * accounts but kept in this contract, and the actual transfer is triggered as a separate step by calling the {release} * function. * * NOTE: This contract assumes that ERC20 tokens will behave similarly to native tokens (Ether). Rebasing tokens, and * tokens that apply fees during transfers, are likely to not be supported as expected. If in doubt, we encourage you * to run tests before sending real value to this contract. */ contract PaymentSplitter is Context { event PayeeAdded(address account, uint256 shares); event PaymentReleased(address to, uint256 amount); event ERC20PaymentReleased(IERC20 indexed token, address to, uint256 amount); event PaymentReceived(address from, uint256 amount); uint256 private _totalShares; uint256 private _totalReleased; mapping(address => uint256) private _shares; mapping(address => uint256) private _released; address[] private _payees; mapping(IERC20 => uint256) private _erc20TotalReleased; mapping(IERC20 => mapping(address => uint256)) private _erc20Released; /** * @dev Creates an instance of `PaymentSplitter` where each account in `payees` is assigned the number of shares at * the matching position in the `shares` array. * * All addresses in `payees` must be non-zero. Both arrays must have the same non-zero length, and there must be no * duplicates in `payees`. */ constructor(address[] memory payees, uint256[] memory shares_) payable { require(payees.length == shares_.length, "PaymentSplitter: payees and shares length mismatch"); require(payees.length > 0, "PaymentSplitter: no payees"); for (uint256 i = 0; i < payees.length; i++) { _addPayee(payees[i], shares_[i]); } } /** * @dev The Ether received will be logged with {PaymentReceived} events. Note that these events are not fully * reliable: it's possible for a contract to receive Ether without triggering this function. This only affects the * reliability of the events, and not the actual splitting of Ether. * * To learn more about this see the Solidity documentation for * https://solidity.readthedocs.io/en/latest/contracts.html#fallback-function[fallback * functions]. */ receive() external payable virtual { emit PaymentReceived(_msgSender(), msg.value); } /** * @dev Getter for the total shares held by payees. */ function totalShares() public view returns (uint256) { return _totalShares; } /** * @dev Getter for the total amount of Ether already released. */ function totalReleased() public view returns (uint256) { return _totalReleased; } /** * @dev Getter for the total amount of `token` already released. `token` should be the address of an IERC20 * contract. */ function totalReleased(IERC20 token) public view returns (uint256) { return _erc20TotalReleased[token]; } /** * @dev Getter for the amount of shares held by an account. */ function shares(address account) public view returns (uint256) { return _shares[account]; } /** * @dev Getter for the amount of Ether already released to a payee. */ function released(address account) public view returns (uint256) { return _released[account]; } /** * @dev Getter for the amount of `token` tokens already released to a payee. `token` should be the address of an * IERC20 contract. */ function released(IERC20 token, address account) public view returns (uint256) { return _erc20Released[token][account]; } /** * @dev Getter for the address of the payee number `index`. */ function payee(uint256 index) public view returns (address) { return _payees[index]; } /** * @dev Triggers a transfer to `account` of the amount of Ether they are owed, according to their percentage of the * total shares and their previous withdrawals. */ function release(address payable account) public virtual { require(_shares[account] > 0, "PaymentSplitter: account has no shares"); uint256 totalReceived = address(this).balance + totalReleased(); uint256 payment = _pendingPayment(account, totalReceived, released(account)); require(payment != 0, "PaymentSplitter: account is not due payment"); _released[account] += payment; _totalReleased += payment; Address.sendValue(account, payment); emit PaymentReleased(account, payment); } /** * @dev Triggers a transfer to `account` of the amount of `token` tokens they are owed, according to their * percentage of the total shares and their previous withdrawals. `token` must be the address of an IERC20 * contract. */ function release(IERC20 token, address account) public virtual { require(_shares[account] > 0, "PaymentSplitter: account has no shares"); uint256 totalReceived = token.balanceOf(address(this)) + totalReleased(token); uint256 payment = _pendingPayment(account, totalReceived, released(token, account)); require(payment != 0, "PaymentSplitter: account is not due payment"); _erc20Released[token][account] += payment; _erc20TotalReleased[token] += payment; SafeERC20.safeTransfer(token, account, payment); emit ERC20PaymentReleased(token, account, payment); } /** * @dev internal logic for computing the pending payment of an `account` given the token historical balances and * already released amounts. */ function _pendingPayment( address account, uint256 totalReceived, uint256 alreadyReleased ) private view returns (uint256) { return (totalReceived * _shares[account]) / _totalShares - alreadyReleased; } /** * @dev Add a new payee to the contract. * @param account The address of the payee to add. * @param shares_ The number of shares owned by the payee. */ function _addPayee(address account, uint256 shares_) private { require(account != address(0), "PaymentSplitter: account is the zero address"); require(shares_ > 0, "PaymentSplitter: shares are 0"); require(_shares[account] == 0, "PaymentSplitter: account already has shares"); _payees.push(account); _shares[account] = shares_; _totalShares = _totalShares + shares_; emit PayeeAdded(account, shares_); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; import "../../utils/introspection/IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; import "../IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Address.sol) pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/utils/SafeERC20.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; import "../../../utils/Address.sol"; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using Address for address; function safeTransfer( IERC20 token, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom( IERC20 token, address from, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove( IERC20 token, address spender, uint256 value ) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' require( (value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance( IERC20 token, address spender, uint256 value ) internal { uint256 newAllowance = token.allowance(address(this), spender) + value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance( IERC20 token, address spender, uint256 value ) internal { unchecked { uint256 oldAllowance = token.allowance(address(this), spender); require(oldAllowance >= value, "SafeERC20: decreased allowance below zero"); uint256 newAllowance = oldAllowance - value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); if (returndata.length > 0) { // Return data is optional require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); }
{ "optimizer": { "enabled": true, "runs": 500 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"initialBaseTokenUri","type":"string"}],"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":"contract IERC20","name":"token","type":"address"},{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ERC20PaymentReleased","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":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"PayeeAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReceived","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReleased","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":"MAX_PURCHASE","outputs":[{"internalType":"uint128","name":"","type":"uint128"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint128","name":"","type":"uint128"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PROVENANCE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RESERVED_TOKENS","outputs":[{"internalType":"uint128","name":"","type":"uint128"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"TOKEN_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"devMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"payee","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"presaleList","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"presaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"publicSaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address payable","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"account","type":"address"}],"name":"released","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"released","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleStatus","outputs":[{"internalType":"uint128","name":"","type":"uint128"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addressList","type":"address[]"},{"internalType":"uint256[]","name":"numSlots","type":"uint256[]"}],"name":"seedPresaleList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint128","name":"newSaleStatus","type":"uint128"}],"name":"setSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"shares","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":"","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":"contract IERC20","name":"token","type":"address"}],"name":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalShares","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"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
6000805560e060405273d1ade89f8826d122f0a3ab953bc293e1440425396080908152734a4f584ca801192d459afdf93be3ae2c627ff8a260a0527367e4c81a94506727a4bd57826eb5ee974cfc1ad860c0526200006290600f90600362000599565b5060408051606081018252602d8082526020820152600a918101919091526200009090601090600362000603565b50601180546001600160801b0319169055348015620000ae57600080fd5b5060405162003c3038038062003c30833981016040819052620000d191620006da565b600f8054806020026020016040519081016040528092919081815260200182805480156200012957602002820191906000526020600020905b81546001600160a01b031681526001909101906020018083116200010a575b505050505060108054806020026020016040519081016040528092919081815260200182805480156200017c57602002820191906000526020600020905b81548152602001906001019080831162000167575b505060408051808201825260098152684275747450756e6b7360b81b602080830191825283518085019094526005845264425554545360d81b908401528151919550919350620001d192506001919062000646565b508051620001e790600290602084019062000646565b50505062000204620001fe6200035560201b60201c565b62000359565b8051825114620002765760405162461bcd60e51b815260206004820152603260248201527f5061796d656e7453706c69747465723a2070617965657320616e6420736861726044820152710cae640d8cadccee8d040dad2e6dac2e8c6d60731b60648201526084015b60405180910390fd5b6000825111620002c95760405162461bcd60e51b815260206004820152601a60248201527f5061796d656e7453706c69747465723a206e6f2070617965657300000000000060448201526064016200026d565b60005b8251811015620003355762000320838281518110620002ef57620002ef62000842565b60200260200101518383815181106200030c576200030c62000842565b6020026020010151620003ab60201b60201c565b806200032c816200080e565b915050620002cc565b505081516200034d9150601290602084019062000646565b50506200086e565b3390565b600780546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620004185760405162461bcd60e51b815260206004820152602c60248201527f5061796d656e7453706c69747465723a206163636f756e74206973207468652060448201526b7a65726f206164647265737360a01b60648201526084016200026d565b600081116200046a5760405162461bcd60e51b815260206004820152601d60248201527f5061796d656e7453706c69747465723a2073686172657320617265203000000060448201526064016200026d565b6001600160a01b0382166000908152600a602052604090205415620004e65760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e7420616c726561647960448201526a206861732073686172657360a81b60648201526084016200026d565b600c8054600181019091557fdf6966c971051c3d54ec59162606531493a51404a002842f56009d7e5cf4a8c70180546001600160a01b0319166001600160a01b0384169081179091556000908152600a6020526040902081905560085462000550908290620007b6565b600855604080516001600160a01b0384168152602081018390527f40c340f65e17194d14ddddb073d3c9f888e3cb52b5aae0c6c7706b4fbc905fac910160405180910390a15050565b828054828255906000526020600020908101928215620005f1579160200282015b82811115620005f157825182546001600160a01b0319166001600160a01b03909116178255602090920191600190910190620005ba565b50620005ff929150620006c3565b5090565b828054828255906000526020600020908101928215620005f1579160200282015b82811115620005f1578251829060ff1690559160200191906001019062000624565b8280546200065490620007d1565b90600052602060002090601f016020900481019282620006785760008555620005f1565b82601f106200069357805160ff1916838001178555620005f1565b82800160010185558215620005f1579182015b82811115620005f1578251825591602001919060010190620006a6565b5b80821115620005ff5760008155600101620006c4565b60006020808385031215620006ee57600080fd5b82516001600160401b03808211156200070657600080fd5b818501915085601f8301126200071b57600080fd5b81518181111562000730576200073062000858565b604051601f8201601f19908116603f011681019083821181831017156200075b576200075b62000858565b8160405282815288868487010111156200077457600080fd5b600093505b8284101562000798578484018601518185018701529285019262000779565b82841115620007aa5760008684830101525b98975050505050505050565b60008219821115620007cc57620007cc6200082c565b500190565b600181811c90821680620007e657607f821691505b602082108114156200080857634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156200082557620008256200082c565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6133b2806200087e6000396000f3fe60806040526004361061025a5760003560e01c806368fc68c711610149578063b88d4fde116100c6578063d79779b21161008a578063e985e9c511610064578063e985e9c5146107b1578063f2fde38b146107fa578063f9020e331461081a57600080fd5b8063d79779b214610746578063e33b7de31461077c578063e4eacda31461079157600080fd5b8063b88d4fde146106a2578063c87b56dd146106c2578063c9b298f1146106e2578063ce7c2ac2146106f5578063d2d8cb671461072b57600080fd5b80638da5cb5b1161010d5780638da5cb5b1461060657806395d89b41146106245780639852595c14610639578063a22cb4651461066f578063b3ab66b01461068f57600080fd5b806368fc68c71461058757806370a082311461059c5780637146bd08146105bc578063715018a6146105d15780638b83209b146105e657600080fd5b8063375a069a116101d75780634f6ccce71161019b5780634f6ccce7146104f25780634fa34d201461051257806355f804b3146105325780636352211e146105525780636373a6b11461057257600080fd5b8063375a069a146104375780633a98ef3914610457578063406072a91461046c57806342842e0e146104b257806348b75044146104d257600080fd5b806318160ddd1161021e57806318160ddd1461039457806319165587146103a957806323b872dd146103c95780632f745c59146103e957806332cb6b0c1461040957600080fd5b806301ffc9a7146102a857806306fdde03146102dd578063081812fc146102ff578063095ea7b31461033757806312fb92e01461035957600080fd5b366102a3577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be77033604080516001600160a01b0390921682523460208301520160405180910390a1005b600080fd5b3480156102b457600080fd5b506102c86102c3366004612f58565b61083a565b60405190151581526020015b60405180910390f35b3480156102e957600080fd5b506102f26108a7565b6040516102d49190613112565b34801561030b57600080fd5b5061031f61031a36600461302d565b610939565b6040516001600160a01b0390911681526020016102d4565b34801561034357600080fd5b50610357610352366004612e46565b6109c9565b005b34801561036557600080fd5b50610386610374366004612cbd565b60136020526000908152604090205481565b6040519081526020016102d4565b3480156103a057600080fd5b50600054610386565b3480156103b557600080fd5b506103576103c4366004612cbd565b610ae1565b3480156103d557600080fd5b506103576103e4366004612d13565b610c92565b3480156103f557600080fd5b50610386610404366004612e46565b610c9d565b34801561041557600080fd5b5061041f611b3981565b6040516001600160801b0390911681526020016102d4565b34801561044357600080fd5b5061035761045236600461302d565b610e1a565b34801561046357600080fd5b50600854610386565b34801561047857600080fd5b50610386610487366004612cda565b6001600160a01b039182166000908152600e6020908152604080832093909416825291909152205490565b3480156104be57600080fd5b506103576104cd366004612d13565b610efa565b3480156104de57600080fd5b506103576104ed366004612cda565b610f15565b3480156104fe57600080fd5b5061038661050d36600461302d565b611180565b34801561051e57600080fd5b5061035761052d366004612e72565b6111e2565b34801561053e57600080fd5b5061035761054d366004612f92565b61131b565b34801561055e57600080fd5b5061031f61056d36600461302d565b611381565b34801561057e57600080fd5b506102f2611393565b34801561059357600080fd5b5061041f604581565b3480156105a857600080fd5b506103866105b7366004612cbd565b6113af565b3480156105c857600080fd5b5061041f601481565b3480156105dd57600080fd5b50610357611440565b3480156105f257600080fd5b5061031f61060136600461302d565b6114a6565b34801561061257600080fd5b506007546001600160a01b031661031f565b34801561063057600080fd5b506102f26114d6565b34801561064557600080fd5b50610386610654366004612cbd565b6001600160a01b03166000908152600b602052604090205490565b34801561067b57600080fd5b5061035761068a366004612e18565b6114e5565b61035761069d36600461302d565b6115aa565b3480156106ae57600080fd5b506103576106bd366004612d54565b611805565b3480156106ce57600080fd5b506102f26106dd36600461302d565b61188a565b6103576106f036600461302d565b611965565b34801561070157600080fd5b50610386610710366004612cbd565b6001600160a01b03166000908152600a602052604090205490565b34801561073757600080fd5b50610386662386f26fc1000081565b34801561075257600080fd5b50610386610761366004612cbd565b6001600160a01b03166000908152600d602052604090205490565b34801561078857600080fd5b50600954610386565b34801561079d57600080fd5b506103576107ac366004613004565b611c19565b3480156107bd57600080fd5b506102c86107cc366004612cda565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561080657600080fd5b50610357610815366004612cbd565b611c9e565b34801561082657600080fd5b5060115461041f906001600160801b031681565b60006001600160e01b031982166380ac58cd60e01b148061086b57506001600160e01b03198216635b5e139f60e01b145b8061088657506001600160e01b0319821663780e9d6360e01b145b806108a157506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546108b690613241565b80601f01602080910402602001604051908101604052809291908181526020018280546108e290613241565b801561092f5780601f106109045761010080835404028352916020019161092f565b820191906000526020600020905b81548152906001019060200180831161091257829003601f168201915b5050505050905090565b6000610946826000541190565b6109ad5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006109d482611381565b9050806001600160a01b0316836001600160a01b03161415610a435760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b60648201526084016109a4565b336001600160a01b0382161480610a5f5750610a5f81336107cc565b610ad15760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016109a4565b610adc838383611d66565b505050565b6001600160a01b0381166000908152600a6020526040902054610b555760405162461bcd60e51b815260206004820152602660248201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060448201526573686172657360d01b60648201526084016109a4565b6000610b6060095490565b610b6a904761319c565b90506000610b978383610b92866001600160a01b03166000908152600b602052604090205490565b611dcf565b905080610bfa5760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060448201526a191d59481c185e5b595b9d60aa1b60648201526084016109a4565b6001600160a01b0383166000908152600b602052604081208054839290610c2290849061319c565b925050819055508060096000828254610c3b919061319c565b90915550610c4b90508382611e15565b604080516001600160a01b0385168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a1505050565b610adc838383611f2e565b6000610ca8836113af565b8210610d015760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016109a4565b600080549080805b83811015610dab576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610d5c57805192505b876001600160a01b0316836001600160a01b03161415610d985786841415610d8a575093506108a192505050565b83610d948161327c565b9450505b5080610da38161327c565b915050610d09565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201527f6f776e657220627920696e64657800000000000000000000000000000000000060648201526084016109a4565b6007546001600160a01b03163314610e745760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109a4565b6045610e8982610e8360005490565b90612280565b1115610eed5760405162461bcd60e51b815260206004820152602d60248201527f4d696e74696e6720776f756c642065786365656420726573657276656420746f60448201526c6b656e73207175616e7469747960981b60648201526084016109a4565b610ef7338261228c565b50565b610adc83838360405180602001604052806000815250611805565b6001600160a01b0381166000908152600a6020526040902054610f895760405162461bcd60e51b815260206004820152602660248201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060448201526573686172657360d01b60648201526084016109a4565b6001600160a01b0382166000908152600d60205260408120546040516370a0823160e01b81523060048201526001600160a01b038516906370a082319060240160206040518083038186803b158015610fe157600080fd5b505afa158015610ff5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110199190613046565b611023919061319c565b9050600061105c8383610b9287876001600160a01b039182166000908152600e6020908152604080832093909416825291909152205490565b9050806110bf5760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060448201526a191d59481c185e5b595b9d60aa1b60648201526084016109a4565b6001600160a01b038085166000908152600e60209081526040808320938716835292905290812080548392906110f690849061319c565b90915550506001600160a01b0384166000908152600d60205260408120805483929061112390849061319c565b9091555061113490508484836122a6565b604080516001600160a01b038581168252602082018490528616917f3be5b7a71e84ed12875d241991c70855ac5817d847039e17a9d895c1ceb0f18a910160405180910390a250505050565b6000805482106111de5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b60648201526084016109a4565b5090565b6007546001600160a01b0316331461123c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109a4565b80518251146112a05760405162461bcd60e51b815260206004820152602a60248201527f616464726573734c69737420646f6573206e6f74206d61746368206e756d536c6044820152690dee8e640d8cadccee8d60b31b60648201526084016109a4565b60005b8251811015610adc578181815181106112be576112be6132d7565b6020026020010151601360008584815181106112dc576112dc6132d7565b60200260200101516001600160a01b03166001600160a01b031681526020019081526020016000208190555080806113139061327c565b9150506112a3565b6007546001600160a01b031633146113755760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109a4565b610adc60128383612bbb565b600061138c8261230d565b5192915050565b60405180606001604052806040815260200161333d6040913981565b60006001600160a01b03821661141b5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084016109a4565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b0316331461149a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109a4565b6114a460006123ed565b565b6000600c82815481106114bb576114bb6132d7565b6000918252602090912001546001600160a01b031692915050565b6060600280546108b690613241565b6001600160a01b03821633141561153e5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016109a4565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b3233146115f95760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e7472616374000060448201526064016109a4565b60115460016001600160801b039091161161167c5760405162461bcd60e51b815260206004820152603360248201527f5075626c69632073616c65206d7573742062652061637469766520696e206f7260448201527f64657220746f206d696e74206120746f6b656e0000000000000000000000000060648201526084016109a4565b60148111156116e35760405162461bcd60e51b815260206004820152602d60248201527f456163682077616c6c65742063616e206f6e6c79206d696e7420323020746f6b60448201526c656e7320617420612074696d6560981b60648201526084016109a4565b611b396116f382610e8360005490565b11156117545760405162461bcd60e51b815260206004820152602a60248201527f507572636861736520776f756c6420657863656564206d617820737570706c79604482015269206f6620746f6b656e7360b01b60648201526084016109a4565b6000611767662386f26fc100008361244c565b9050348111156117b95760405162461bcd60e51b815260206004820152601b60248201527f45746865722076616c75652073656e7420697320746f6f206c6f77000000000060448201526064016109a4565b6117c3338361228c565b8034111561180157336108fc6117d983346131e7565b6040518115909202916000818181858888f19350505050158015610adc573d6000803e3d6000fd5b5050565b611810848484611f2e565b61181c84848484612458565b6118845760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b60648201526084016109a4565b50505050565b6060611897826000541190565b6119095760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e000000000000000000000000000000000060648201526084016109a4565b60006119136125b1565b90506000815111611933576040518060200160405280600081525061195e565b8061193d846125c0565b60405160200161194e9291906130a7565b6040516020818303038152906040525b9392505050565b3233146119b45760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e7472616374000060448201526064016109a4565b33600090815260136020526040902054611a1e5760405162461bcd60e51b815260206004820152602560248201527f57616c6c6574206e6f7420656c696769626c6520666f72207072652d73616c65604482015264081b5a5b9d60da1b60648201526084016109a4565b6011546001600160801b0316611a9c5760405162461bcd60e51b815260206004820152603060248201527f5072652d73616c65206d7573742062652061637469766520696e206f7264657260448201527f20746f206d696e74206120746f6b656e0000000000000000000000000000000060648201526084016109a4565b6014811115611b035760405162461bcd60e51b815260206004820152602d60248201527f456163682077616c6c65742063616e206f6e6c79206d696e7420323020746f6b60448201526c656e7320617420612074696d6560981b60648201526084016109a4565b611b39611b1382610e8360005490565b1115611b745760405162461bcd60e51b815260206004820152602a60248201527f507572636861736520776f756c6420657863656564206d617820737570706c79604482015269206f6620746f6b656e7360b01b60648201526084016109a4565b6000611b87662386f26fc100008361244c565b905034811115611bd95760405162461bcd60e51b815260206004820152601b60248201527f45746865722076616c75652073656e7420697320746f6f206c6f77000000000060448201526064016109a4565b611be3338361228c565b336000908152601360205260408120805491611bfe8361322a565b91905055508034111561180157336108fc6117d983346131e7565b6007546001600160a01b03163314611c735760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109a4565b601180546fffffffffffffffffffffffffffffffff19166001600160801b0392909216919091179055565b6007546001600160a01b03163314611cf85760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109a4565b6001600160a01b038116611d5d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109a4565b610ef7816123ed565b600082815260056020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6008546001600160a01b0384166000908152600a602052604081205490918391611df990866131c8565b611e0391906131b4565b611e0d91906131e7565b949350505050565b80471015611e655760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e636500000060448201526064016109a4565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611eb2576040519150601f19603f3d011682016040523d82523d6000602084013e611eb7565b606091505b5050905080610adc5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d6179206861766520726576657274656400000000000060648201526084016109a4565b6000611f398261230d565b80519091506000906001600160a01b0316336001600160a01b03161480611f70575033611f6584610939565b6001600160a01b0316145b80611f8257508151611f8290336107cc565b905080611ff75760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f742060448201527f6f776e6572206e6f7220617070726f766564000000000000000000000000000060648201526084016109a4565b846001600160a01b031682600001516001600160a01b03161461206b5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b60648201526084016109a4565b6001600160a01b0384166120cf5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016109a4565b6120df6000848460000151611d66565b6001600160a01b03858116600090815260046020908152604080832080546fffffffffffffffffffffffffffffffff198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255825180840184529182524267ffffffffffffffff9081168386019081528a8752600390955292852091518254945196166001600160e01b031990941693909317600160a01b959092169490940217909255906121a490859061319c565b6000818152600360205260409020549091506001600160a01b0316612236576121ce816000541190565b156122365760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b600061195e828461319c565b6118018282604051806020016040528060008152506126d6565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1663a9059cbb60e01b179052610adc9084906129de565b604080518082019091526000808252602082015261232c826000541190565b61238b5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b60648201526084016109a4565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156123da579392505050565b50806123e58161322a565b91505061238d565b600780546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600061195e82846131c8565b60006001600160a01b0384163b156125a657604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061249c9033908990889088906004016130d6565b602060405180830381600087803b1580156124b657600080fd5b505af19250505080156124e6575060408051601f3d908101601f191682019092526124e391810190612f75565b60015b61258c573d808015612514576040519150601f19603f3d011682016040523d82523d6000602084013e612519565b606091505b5080516125845760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b60648201526084016109a4565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611e0d565b506001949350505050565b6060601280546108b690613241565b6060816125e45750506040805180820190915260018152600360fc1b602082015290565b8160005b811561260e57806125f88161327c565b91506126079050600a836131b4565b91506125e8565b60008167ffffffffffffffff811115612629576126296132ed565b6040519080825280601f01601f191660200182016040528015612653576020820181803683370190505b5090505b8415611e0d576126686001836131e7565b9150612675600a86613297565b61268090603061319c565b60f81b818381518110612695576126956132d7565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506126cf600a866131b4565b9450612657565b6000546001600160a01b0384166127395760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016109a4565b612744816000541190565b156127915760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e74656400000060448201526064016109a4565b600083116127ed5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a207175616e74697479206d7573742062652067726561746560448201526207220360ec1b60648201526084016109a4565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b909104169181019190915281518083019092528051909190819061284990879061317a565b6001600160801b03168152602001858360200151612867919061317a565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156129d35760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461294b6000888488612458565b6129b35760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b60648201526084016109a4565b816129bd8161327c565b92505080806129cb9061327c565b9150506128fe565b506000819055612278565b6000612a33826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316612ab09092919063ffffffff16565b805190915015610adc5780806020019051810190612a519190612f3b565b610adc5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b60648201526084016109a4565b6060611e0d848460008585843b612b095760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016109a4565b600080866001600160a01b03168587604051612b25919061308b565b60006040518083038185875af1925050503d8060008114612b62576040519150601f19603f3d011682016040523d82523d6000602084013e612b67565b606091505b5091509150612b77828286612b82565b979650505050505050565b60608315612b9157508161195e565b825115612ba15782518084602001fd5b8160405162461bcd60e51b81526004016109a49190613112565b828054612bc790613241565b90600052602060002090601f016020900481019282612be95760008555612c2f565b82601f10612c025782800160ff19823516178555612c2f565b82800160010185558215612c2f579182015b82811115612c2f578235825591602001919060010190612c14565b506111de9291505b808211156111de5760008155600101612c37565b600082601f830112612c5c57600080fd5b81356020612c71612c6c83613156565b613125565b80838252828201915082860187848660051b8901011115612c9157600080fd5b60005b85811015612cb057813584529284019290840190600101612c94565b5090979650505050505050565b600060208284031215612ccf57600080fd5b813561195e81613303565b60008060408385031215612ced57600080fd5b8235612cf881613303565b91506020830135612d0881613303565b809150509250929050565b600080600060608486031215612d2857600080fd5b8335612d3381613303565b92506020840135612d4381613303565b929592945050506040919091013590565b60008060008060808587031215612d6a57600080fd5b8435612d7581613303565b9350602085810135612d8681613303565b935060408601359250606086013567ffffffffffffffff80821115612daa57600080fd5b818801915088601f830112612dbe57600080fd5b813581811115612dd057612dd06132ed565b612de2601f8201601f19168501613125565b91508082528984828501011115612df857600080fd5b808484018584013760008482840101525080935050505092959194509250565b60008060408385031215612e2b57600080fd5b8235612e3681613303565b91506020830135612d0881613318565b60008060408385031215612e5957600080fd5b8235612e6481613303565b946020939093013593505050565b60008060408385031215612e8557600080fd5b823567ffffffffffffffff80821115612e9d57600080fd5b818501915085601f830112612eb157600080fd5b81356020612ec1612c6c83613156565b8083825282820191508286018a848660051b8901011115612ee157600080fd5b600096505b84871015612f0d578035612ef981613303565b835260019690960195918301918301612ee6565b5096505086013592505080821115612f2457600080fd5b50612f3185828601612c4b565b9150509250929050565b600060208284031215612f4d57600080fd5b815161195e81613318565b600060208284031215612f6a57600080fd5b813561195e81613326565b600060208284031215612f8757600080fd5b815161195e81613326565b60008060208385031215612fa557600080fd5b823567ffffffffffffffff80821115612fbd57600080fd5b818501915085601f830112612fd157600080fd5b813581811115612fe057600080fd5b866020828501011115612ff257600080fd5b60209290920196919550909350505050565b60006020828403121561301657600080fd5b81356001600160801b038116811461195e57600080fd5b60006020828403121561303f57600080fd5b5035919050565b60006020828403121561305857600080fd5b5051919050565b600081518084526130778160208601602086016131fe565b601f01601f19169290920160200192915050565b6000825161309d8184602087016131fe565b9190910192915050565b600083516130b98184602088016131fe565b8351908301906130cd8183602088016131fe565b01949350505050565b60006001600160a01b03808716835280861660208401525083604083015260806060830152613108608083018461305f565b9695505050505050565b60208152600061195e602083018461305f565b604051601f8201601f1916810167ffffffffffffffff8111828210171561314e5761314e6132ed565b604052919050565b600067ffffffffffffffff821115613170576131706132ed565b5060051b60200190565b60006001600160801b038083168185168083038211156130cd576130cd6132ab565b600082198211156131af576131af6132ab565b500190565b6000826131c3576131c36132c1565b500490565b60008160001904831182151516156131e2576131e26132ab565b500290565b6000828210156131f9576131f96132ab565b500390565b60005b83811015613219578181015183820152602001613201565b838111156118845750506000910152565b600081613239576132396132ab565b506000190190565b600181811c9082168061325557607f821691505b6020821081141561327657634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415613290576132906132ab565b5060010190565b6000826132a6576132a66132c1565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610ef757600080fd5b8015158114610ef757600080fd5b6001600160e01b031981168114610ef757600080fdfe61343032333362643066343138656531303965653633623739636664623233303334366533626461623361363330663939336334336236383865366265623739a2646970667358221220b3e03c863cf87167cb6911cc34c93fea9f2486240a633527a0a2080ddf13417564736f6c634300080700330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002f68747470733a2f2f73746f726167652e676f6f676c65617069732e636f6d2f6275747470756e6b732f6d6574612f2f0000000000000000000000000000000000
Deployed Bytecode
0x60806040526004361061025a5760003560e01c806368fc68c711610149578063b88d4fde116100c6578063d79779b21161008a578063e985e9c511610064578063e985e9c5146107b1578063f2fde38b146107fa578063f9020e331461081a57600080fd5b8063d79779b214610746578063e33b7de31461077c578063e4eacda31461079157600080fd5b8063b88d4fde146106a2578063c87b56dd146106c2578063c9b298f1146106e2578063ce7c2ac2146106f5578063d2d8cb671461072b57600080fd5b80638da5cb5b1161010d5780638da5cb5b1461060657806395d89b41146106245780639852595c14610639578063a22cb4651461066f578063b3ab66b01461068f57600080fd5b806368fc68c71461058757806370a082311461059c5780637146bd08146105bc578063715018a6146105d15780638b83209b146105e657600080fd5b8063375a069a116101d75780634f6ccce71161019b5780634f6ccce7146104f25780634fa34d201461051257806355f804b3146105325780636352211e146105525780636373a6b11461057257600080fd5b8063375a069a146104375780633a98ef3914610457578063406072a91461046c57806342842e0e146104b257806348b75044146104d257600080fd5b806318160ddd1161021e57806318160ddd1461039457806319165587146103a957806323b872dd146103c95780632f745c59146103e957806332cb6b0c1461040957600080fd5b806301ffc9a7146102a857806306fdde03146102dd578063081812fc146102ff578063095ea7b31461033757806312fb92e01461035957600080fd5b366102a3577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be77033604080516001600160a01b0390921682523460208301520160405180910390a1005b600080fd5b3480156102b457600080fd5b506102c86102c3366004612f58565b61083a565b60405190151581526020015b60405180910390f35b3480156102e957600080fd5b506102f26108a7565b6040516102d49190613112565b34801561030b57600080fd5b5061031f61031a36600461302d565b610939565b6040516001600160a01b0390911681526020016102d4565b34801561034357600080fd5b50610357610352366004612e46565b6109c9565b005b34801561036557600080fd5b50610386610374366004612cbd565b60136020526000908152604090205481565b6040519081526020016102d4565b3480156103a057600080fd5b50600054610386565b3480156103b557600080fd5b506103576103c4366004612cbd565b610ae1565b3480156103d557600080fd5b506103576103e4366004612d13565b610c92565b3480156103f557600080fd5b50610386610404366004612e46565b610c9d565b34801561041557600080fd5b5061041f611b3981565b6040516001600160801b0390911681526020016102d4565b34801561044357600080fd5b5061035761045236600461302d565b610e1a565b34801561046357600080fd5b50600854610386565b34801561047857600080fd5b50610386610487366004612cda565b6001600160a01b039182166000908152600e6020908152604080832093909416825291909152205490565b3480156104be57600080fd5b506103576104cd366004612d13565b610efa565b3480156104de57600080fd5b506103576104ed366004612cda565b610f15565b3480156104fe57600080fd5b5061038661050d36600461302d565b611180565b34801561051e57600080fd5b5061035761052d366004612e72565b6111e2565b34801561053e57600080fd5b5061035761054d366004612f92565b61131b565b34801561055e57600080fd5b5061031f61056d36600461302d565b611381565b34801561057e57600080fd5b506102f2611393565b34801561059357600080fd5b5061041f604581565b3480156105a857600080fd5b506103866105b7366004612cbd565b6113af565b3480156105c857600080fd5b5061041f601481565b3480156105dd57600080fd5b50610357611440565b3480156105f257600080fd5b5061031f61060136600461302d565b6114a6565b34801561061257600080fd5b506007546001600160a01b031661031f565b34801561063057600080fd5b506102f26114d6565b34801561064557600080fd5b50610386610654366004612cbd565b6001600160a01b03166000908152600b602052604090205490565b34801561067b57600080fd5b5061035761068a366004612e18565b6114e5565b61035761069d36600461302d565b6115aa565b3480156106ae57600080fd5b506103576106bd366004612d54565b611805565b3480156106ce57600080fd5b506102f26106dd36600461302d565b61188a565b6103576106f036600461302d565b611965565b34801561070157600080fd5b50610386610710366004612cbd565b6001600160a01b03166000908152600a602052604090205490565b34801561073757600080fd5b50610386662386f26fc1000081565b34801561075257600080fd5b50610386610761366004612cbd565b6001600160a01b03166000908152600d602052604090205490565b34801561078857600080fd5b50600954610386565b34801561079d57600080fd5b506103576107ac366004613004565b611c19565b3480156107bd57600080fd5b506102c86107cc366004612cda565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b34801561080657600080fd5b50610357610815366004612cbd565b611c9e565b34801561082657600080fd5b5060115461041f906001600160801b031681565b60006001600160e01b031982166380ac58cd60e01b148061086b57506001600160e01b03198216635b5e139f60e01b145b8061088657506001600160e01b0319821663780e9d6360e01b145b806108a157506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600180546108b690613241565b80601f01602080910402602001604051908101604052809291908181526020018280546108e290613241565b801561092f5780601f106109045761010080835404028352916020019161092f565b820191906000526020600020905b81548152906001019060200180831161091257829003601f168201915b5050505050905090565b6000610946826000541190565b6109ad5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b60006109d482611381565b9050806001600160a01b0316836001600160a01b03161415610a435760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b60648201526084016109a4565b336001600160a01b0382161480610a5f5750610a5f81336107cc565b610ad15760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c0000000000000060648201526084016109a4565b610adc838383611d66565b505050565b6001600160a01b0381166000908152600a6020526040902054610b555760405162461bcd60e51b815260206004820152602660248201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060448201526573686172657360d01b60648201526084016109a4565b6000610b6060095490565b610b6a904761319c565b90506000610b978383610b92866001600160a01b03166000908152600b602052604090205490565b611dcf565b905080610bfa5760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060448201526a191d59481c185e5b595b9d60aa1b60648201526084016109a4565b6001600160a01b0383166000908152600b602052604081208054839290610c2290849061319c565b925050819055508060096000828254610c3b919061319c565b90915550610c4b90508382611e15565b604080516001600160a01b0385168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a1505050565b610adc838383611f2e565b6000610ca8836113af565b8210610d015760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b60648201526084016109a4565b600080549080805b83811015610dab576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610d5c57805192505b876001600160a01b0316836001600160a01b03161415610d985786841415610d8a575093506108a192505050565b83610d948161327c565b9450505b5080610da38161327c565b915050610d09565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201527f6f776e657220627920696e64657800000000000000000000000000000000000060648201526084016109a4565b6007546001600160a01b03163314610e745760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109a4565b6045610e8982610e8360005490565b90612280565b1115610eed5760405162461bcd60e51b815260206004820152602d60248201527f4d696e74696e6720776f756c642065786365656420726573657276656420746f60448201526c6b656e73207175616e7469747960981b60648201526084016109a4565b610ef7338261228c565b50565b610adc83838360405180602001604052806000815250611805565b6001600160a01b0381166000908152600a6020526040902054610f895760405162461bcd60e51b815260206004820152602660248201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060448201526573686172657360d01b60648201526084016109a4565b6001600160a01b0382166000908152600d60205260408120546040516370a0823160e01b81523060048201526001600160a01b038516906370a082319060240160206040518083038186803b158015610fe157600080fd5b505afa158015610ff5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110199190613046565b611023919061319c565b9050600061105c8383610b9287876001600160a01b039182166000908152600e6020908152604080832093909416825291909152205490565b9050806110bf5760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060448201526a191d59481c185e5b595b9d60aa1b60648201526084016109a4565b6001600160a01b038085166000908152600e60209081526040808320938716835292905290812080548392906110f690849061319c565b90915550506001600160a01b0384166000908152600d60205260408120805483929061112390849061319c565b9091555061113490508484836122a6565b604080516001600160a01b038581168252602082018490528616917f3be5b7a71e84ed12875d241991c70855ac5817d847039e17a9d895c1ceb0f18a910160405180910390a250505050565b6000805482106111de5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b60648201526084016109a4565b5090565b6007546001600160a01b0316331461123c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109a4565b80518251146112a05760405162461bcd60e51b815260206004820152602a60248201527f616464726573734c69737420646f6573206e6f74206d61746368206e756d536c6044820152690dee8e640d8cadccee8d60b31b60648201526084016109a4565b60005b8251811015610adc578181815181106112be576112be6132d7565b6020026020010151601360008584815181106112dc576112dc6132d7565b60200260200101516001600160a01b03166001600160a01b031681526020019081526020016000208190555080806113139061327c565b9150506112a3565b6007546001600160a01b031633146113755760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109a4565b610adc60128383612bbb565b600061138c8261230d565b5192915050565b60405180606001604052806040815260200161333d6040913981565b60006001600160a01b03821661141b5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b60648201526084016109a4565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b6007546001600160a01b0316331461149a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109a4565b6114a460006123ed565b565b6000600c82815481106114bb576114bb6132d7565b6000918252602090912001546001600160a01b031692915050565b6060600280546108b690613241565b6001600160a01b03821633141561153e5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c657200000000000060448201526064016109a4565b3360008181526006602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b3233146115f95760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e7472616374000060448201526064016109a4565b60115460016001600160801b039091161161167c5760405162461bcd60e51b815260206004820152603360248201527f5075626c69632073616c65206d7573742062652061637469766520696e206f7260448201527f64657220746f206d696e74206120746f6b656e0000000000000000000000000060648201526084016109a4565b60148111156116e35760405162461bcd60e51b815260206004820152602d60248201527f456163682077616c6c65742063616e206f6e6c79206d696e7420323020746f6b60448201526c656e7320617420612074696d6560981b60648201526084016109a4565b611b396116f382610e8360005490565b11156117545760405162461bcd60e51b815260206004820152602a60248201527f507572636861736520776f756c6420657863656564206d617820737570706c79604482015269206f6620746f6b656e7360b01b60648201526084016109a4565b6000611767662386f26fc100008361244c565b9050348111156117b95760405162461bcd60e51b815260206004820152601b60248201527f45746865722076616c75652073656e7420697320746f6f206c6f77000000000060448201526064016109a4565b6117c3338361228c565b8034111561180157336108fc6117d983346131e7565b6040518115909202916000818181858888f19350505050158015610adc573d6000803e3d6000fd5b5050565b611810848484611f2e565b61181c84848484612458565b6118845760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b60648201526084016109a4565b50505050565b6060611897826000541190565b6119095760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201527f6e6578697374656e7420746f6b656e000000000000000000000000000000000060648201526084016109a4565b60006119136125b1565b90506000815111611933576040518060200160405280600081525061195e565b8061193d846125c0565b60405160200161194e9291906130a7565b6040516020818303038152906040525b9392505050565b3233146119b45760405162461bcd60e51b815260206004820152601e60248201527f5468652063616c6c657220697320616e6f7468657220636f6e7472616374000060448201526064016109a4565b33600090815260136020526040902054611a1e5760405162461bcd60e51b815260206004820152602560248201527f57616c6c6574206e6f7420656c696769626c6520666f72207072652d73616c65604482015264081b5a5b9d60da1b60648201526084016109a4565b6011546001600160801b0316611a9c5760405162461bcd60e51b815260206004820152603060248201527f5072652d73616c65206d7573742062652061637469766520696e206f7264657260448201527f20746f206d696e74206120746f6b656e0000000000000000000000000000000060648201526084016109a4565b6014811115611b035760405162461bcd60e51b815260206004820152602d60248201527f456163682077616c6c65742063616e206f6e6c79206d696e7420323020746f6b60448201526c656e7320617420612074696d6560981b60648201526084016109a4565b611b39611b1382610e8360005490565b1115611b745760405162461bcd60e51b815260206004820152602a60248201527f507572636861736520776f756c6420657863656564206d617820737570706c79604482015269206f6620746f6b656e7360b01b60648201526084016109a4565b6000611b87662386f26fc100008361244c565b905034811115611bd95760405162461bcd60e51b815260206004820152601b60248201527f45746865722076616c75652073656e7420697320746f6f206c6f77000000000060448201526064016109a4565b611be3338361228c565b336000908152601360205260408120805491611bfe8361322a565b91905055508034111561180157336108fc6117d983346131e7565b6007546001600160a01b03163314611c735760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109a4565b601180546fffffffffffffffffffffffffffffffff19166001600160801b0392909216919091179055565b6007546001600160a01b03163314611cf85760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016109a4565b6001600160a01b038116611d5d5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109a4565b610ef7816123ed565b600082815260056020526040808220805473ffffffffffffffffffffffffffffffffffffffff19166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6008546001600160a01b0384166000908152600a602052604081205490918391611df990866131c8565b611e0391906131b4565b611e0d91906131e7565b949350505050565b80471015611e655760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e636500000060448201526064016109a4565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114611eb2576040519150601f19603f3d011682016040523d82523d6000602084013e611eb7565b606091505b5050905080610adc5760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d6179206861766520726576657274656400000000000060648201526084016109a4565b6000611f398261230d565b80519091506000906001600160a01b0316336001600160a01b03161480611f70575033611f6584610939565b6001600160a01b0316145b80611f8257508151611f8290336107cc565b905080611ff75760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f742060448201527f6f776e6572206e6f7220617070726f766564000000000000000000000000000060648201526084016109a4565b846001600160a01b031682600001516001600160a01b03161461206b5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b60648201526084016109a4565b6001600160a01b0384166120cf5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b60648201526084016109a4565b6120df6000848460000151611d66565b6001600160a01b03858116600090815260046020908152604080832080546fffffffffffffffffffffffffffffffff198082166001600160801b03928316600019018316179092558986168086528386208054938416938316600190810190931693909317909255825180840184529182524267ffffffffffffffff9081168386019081528a8752600390955292852091518254945196166001600160e01b031990941693909317600160a01b959092169490940217909255906121a490859061319c565b6000818152600360205260409020549091506001600160a01b0316612236576121ce816000541190565b156122365760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600390935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b600061195e828461319c565b6118018282604051806020016040528060008152506126d6565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1663a9059cbb60e01b179052610adc9084906129de565b604080518082019091526000808252602082015261232c826000541190565b61238b5760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b60648201526084016109a4565b815b6000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156123da579392505050565b50806123e58161322a565b91505061238d565b600780546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600061195e82846131c8565b60006001600160a01b0384163b156125a657604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061249c9033908990889088906004016130d6565b602060405180830381600087803b1580156124b657600080fd5b505af19250505080156124e6575060408051601f3d908101601f191682019092526124e391810190612f75565b60015b61258c573d808015612514576040519150601f19603f3d011682016040523d82523d6000602084013e612519565b606091505b5080516125845760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b60648201526084016109a4565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611e0d565b506001949350505050565b6060601280546108b690613241565b6060816125e45750506040805180820190915260018152600360fc1b602082015290565b8160005b811561260e57806125f88161327c565b91506126079050600a836131b4565b91506125e8565b60008167ffffffffffffffff811115612629576126296132ed565b6040519080825280601f01601f191660200182016040528015612653576020820181803683370190505b5090505b8415611e0d576126686001836131e7565b9150612675600a86613297565b61268090603061319c565b60f81b818381518110612695576126956132d7565b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053506126cf600a866131b4565b9450612657565b6000546001600160a01b0384166127395760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b60648201526084016109a4565b612744816000541190565b156127915760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e74656400000060448201526064016109a4565b600083116127ed5760405162461bcd60e51b815260206004820152602360248201527f455243373231413a207175616e74697479206d7573742062652067726561746560448201526207220360ec1b60648201526084016109a4565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b909104169181019190915281518083019092528051909190819061284990879061317a565b6001600160801b03168152602001858360200151612867919061317a565b6001600160801b039081169091526001600160a01b0380881660008181526004602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526003909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b858110156129d35760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461294b6000888488612458565b6129b35760405162461bcd60e51b815260206004820152603360248201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260448201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b60648201526084016109a4565b816129bd8161327c565b92505080806129cb9061327c565b9150506128fe565b506000819055612278565b6000612a33826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316612ab09092919063ffffffff16565b805190915015610adc5780806020019051810190612a519190612f3b565b610adc5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b60648201526084016109a4565b6060611e0d848460008585843b612b095760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016109a4565b600080866001600160a01b03168587604051612b25919061308b565b60006040518083038185875af1925050503d8060008114612b62576040519150601f19603f3d011682016040523d82523d6000602084013e612b67565b606091505b5091509150612b77828286612b82565b979650505050505050565b60608315612b9157508161195e565b825115612ba15782518084602001fd5b8160405162461bcd60e51b81526004016109a49190613112565b828054612bc790613241565b90600052602060002090601f016020900481019282612be95760008555612c2f565b82601f10612c025782800160ff19823516178555612c2f565b82800160010185558215612c2f579182015b82811115612c2f578235825591602001919060010190612c14565b506111de9291505b808211156111de5760008155600101612c37565b600082601f830112612c5c57600080fd5b81356020612c71612c6c83613156565b613125565b80838252828201915082860187848660051b8901011115612c9157600080fd5b60005b85811015612cb057813584529284019290840190600101612c94565b5090979650505050505050565b600060208284031215612ccf57600080fd5b813561195e81613303565b60008060408385031215612ced57600080fd5b8235612cf881613303565b91506020830135612d0881613303565b809150509250929050565b600080600060608486031215612d2857600080fd5b8335612d3381613303565b92506020840135612d4381613303565b929592945050506040919091013590565b60008060008060808587031215612d6a57600080fd5b8435612d7581613303565b9350602085810135612d8681613303565b935060408601359250606086013567ffffffffffffffff80821115612daa57600080fd5b818801915088601f830112612dbe57600080fd5b813581811115612dd057612dd06132ed565b612de2601f8201601f19168501613125565b91508082528984828501011115612df857600080fd5b808484018584013760008482840101525080935050505092959194509250565b60008060408385031215612e2b57600080fd5b8235612e3681613303565b91506020830135612d0881613318565b60008060408385031215612e5957600080fd5b8235612e6481613303565b946020939093013593505050565b60008060408385031215612e8557600080fd5b823567ffffffffffffffff80821115612e9d57600080fd5b818501915085601f830112612eb157600080fd5b81356020612ec1612c6c83613156565b8083825282820191508286018a848660051b8901011115612ee157600080fd5b600096505b84871015612f0d578035612ef981613303565b835260019690960195918301918301612ee6565b5096505086013592505080821115612f2457600080fd5b50612f3185828601612c4b565b9150509250929050565b600060208284031215612f4d57600080fd5b815161195e81613318565b600060208284031215612f6a57600080fd5b813561195e81613326565b600060208284031215612f8757600080fd5b815161195e81613326565b60008060208385031215612fa557600080fd5b823567ffffffffffffffff80821115612fbd57600080fd5b818501915085601f830112612fd157600080fd5b813581811115612fe057600080fd5b866020828501011115612ff257600080fd5b60209290920196919550909350505050565b60006020828403121561301657600080fd5b81356001600160801b038116811461195e57600080fd5b60006020828403121561303f57600080fd5b5035919050565b60006020828403121561305857600080fd5b5051919050565b600081518084526130778160208601602086016131fe565b601f01601f19169290920160200192915050565b6000825161309d8184602087016131fe565b9190910192915050565b600083516130b98184602088016131fe565b8351908301906130cd8183602088016131fe565b01949350505050565b60006001600160a01b03808716835280861660208401525083604083015260806060830152613108608083018461305f565b9695505050505050565b60208152600061195e602083018461305f565b604051601f8201601f1916810167ffffffffffffffff8111828210171561314e5761314e6132ed565b604052919050565b600067ffffffffffffffff821115613170576131706132ed565b5060051b60200190565b60006001600160801b038083168185168083038211156130cd576130cd6132ab565b600082198211156131af576131af6132ab565b500190565b6000826131c3576131c36132c1565b500490565b60008160001904831182151516156131e2576131e26132ab565b500290565b6000828210156131f9576131f96132ab565b500390565b60005b83811015613219578181015183820152602001613201565b838111156118845750506000910152565b600081613239576132396132ab565b506000190190565b600181811c9082168061325557607f821691505b6020821081141561327657634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415613290576132906132ab565b5060010190565b6000826132a6576132a66132c1565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b0381168114610ef757600080fd5b8015158114610ef757600080fd5b6001600160e01b031981168114610ef757600080fdfe61343032333362643066343138656531303965653633623739636664623233303334366533626461623361363330663939336334336236383865366265623739a2646970667358221220b3e03c863cf87167cb6911cc34c93fea9f2486240a633527a0a2080ddf13417564736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002f68747470733a2f2f73746f726167652e676f6f676c65617069732e636f6d2f6275747470756e6b732f6d6574612f2f0000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : initialBaseTokenUri (string): https://storage.googleapis.com/buttpunks/meta//
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 000000000000000000000000000000000000000000000000000000000000002f
Arg [2] : 68747470733a2f2f73746f726167652e676f6f676c65617069732e636f6d2f62
Arg [3] : 75747470756e6b732f6d6574612f2f0000000000000000000000000000000000
Deployed Bytecode Sourcemap
272:3996:14:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3249:40:1;719:10:9;3249:40:1;;;-1:-1:-1;;;;;9470:55:16;;;9452:74;;3279:9:1;9557:2:16;9542:18;;9535:34;9425:18;3249:40:1;;;;;;;272:3996:14;;;;;3761:366:15;;;;;;;;;;-1:-1:-1;3761:366:15;;;;;:::i;:::-;;:::i;:::-;;;10563:14:16;;10556:22;10538:41;;10526:2;10511:18;3761:366:15;;;;;;;;5344:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;6857:210::-;;;;;;;;;;-1:-1:-1;6857:210:15;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;9203:55:16;;;9185:74;;9173:2;9158:18;6857:210:15;9039:226:16;6393:403:15;;;;;;;;;;-1:-1:-1;6393:403:15;;;;;:::i;:::-;;:::i;:::-;;1036:46:14;;;;;;;;;;-1:-1:-1;1036:46:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;25630:25:16;;;25618:2;25603:18;1036:46:14;25484:177:16;2242:98:15;;;;;;;;;;-1:-1:-1;2295:7:15;2321:12;2242:98;;4977:553:1;;;;;;;;;;-1:-1:-1;4977:553:1;;;;;:::i;:::-;;:::i;7707:156:15:-;;;;;;;;;;-1:-1:-1;7707:156:15;;;;;:::i;:::-;;:::i;2889:805::-;;;;;;;;;;-1:-1:-1;2889:805:15;;;;;:::i;:::-;;:::i;783:41:14:-;;;;;;;;;;;;820:4;783:41;;;;;-1:-1:-1;;;;;25425:47:16;;;25407:66;;25395:2;25380:18;783:41:14;25261:218:16;3998:268:14;;;;;;;;;;-1:-1:-1;3998:268:14;;;;;:::i;:::-;;:::i;3374:89:1:-;;;;;;;;;;-1:-1:-1;3444:12:1;;3374:89;;4466:133;;;;;;;;;;-1:-1:-1;4466:133:1;;;;;:::i;:::-;-1:-1:-1;;;;;4562:21:1;;;4536:7;4562:21;;;:14;:21;;;;;;;;:30;;;;;;;;;;;;;4466:133;7929:171:15;;;;;;;;;;-1:-1:-1;7929:171:15;;;;;:::i;:::-;;:::i;5791:628:1:-;;;;;;;;;;-1:-1:-1;5791:628:1;;;;;:::i;:::-;;:::i;2412:184:15:-;;;;;;;;;;-1:-1:-1;2412:184:15;;;;;:::i;:::-;;:::i;3565:390:14:-;;;;;;;;;;-1:-1:-1;3565:390:14;;;;;:::i;:::-;;:::i;3342:103::-;;;;;;;;;;-1:-1:-1;3342:103:14;;;;;:::i;:::-;;:::i;5160:122:15:-;;;;;;;;;;-1:-1:-1;5160:122:15;;;;;:::i;:::-;;:::i;367:110:14:-;;;;;;;;;;;;;:::i;877:44::-;;;;;;;;;;;;919:2;877:44;;4186:218:15;;;;;;;;;;-1:-1:-1;4186:218:15;;;;;:::i;:::-;;:::i;830:41:14:-;;;;;;;;;;;;869:2;830:41;;1668:101:0;;;;;;;;;;;;;:::i;4685:98:1:-;;;;;;;;;;-1:-1:-1;4685:98:1;;;;;:::i;:::-;;:::i;1036:85:0:-;;;;;;;;;;-1:-1:-1;1108:6:0;;-1:-1:-1;;;;;1108:6:0;1036:85;;5506:102:15;;;;;;;;;;;;;:::i;4196:107:1:-;;;;;;;;;;-1:-1:-1;4196:107:1;;;;;:::i;:::-;-1:-1:-1;;;;;4278:18:1;4252:7;4278:18;;;:9;:18;;;;;;;4196:107;7134:283:15;;;;;;;;;;-1:-1:-1;7134:283:15;;;;;:::i;:::-;;:::i;2376:843:14:-;;;;;;:::i;:::-;;:::i;8166:344:15:-;;;;;;;;;;-1:-1:-1;8166:344:15;;;;;:::i;:::-;;:::i;5674:329::-;;;;;;;;;;-1:-1:-1;5674:329:15;;;;;:::i;:::-;;:::i;1405:965:14:-;;;;;;:::i;:::-;;:::i;3999:103:1:-;;;;;;;;;;-1:-1:-1;3999:103:1;;;;;:::i;:::-;-1:-1:-1;;;;;4079:16:1;4053:7;4079:16;;;:7;:16;;;;;;;3999:103;729:48:14;;;;;;;;;;;;767:10;729:48;;3796:117:1;;;;;;;;;;-1:-1:-1;3796:117:1;;;;;:::i;:::-;-1:-1:-1;;;;;3880:26:1;3854:7;3880:26;;;:19;:26;;;;;;;3796:117;3552:93;;;;;;;;;;-1:-1:-1;3624:14:1;;3552:93;;3451:108:14;;;;;;;;;;-1:-1:-1;3451:108:14;;;;;:::i;:::-;;:::i;7483:162:15:-;;;;;;;;;;-1:-1:-1;7483:162:15;;;;;:::i;:::-;-1:-1:-1;;;;;7603:25:15;;;7580:4;7603:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;7483:162;1918:198:0;;;;;;;;;;-1:-1:-1;1918:198:0;;;;;:::i;:::-;;:::i;927:29:14:-;;;;;;;;;;-1:-1:-1;927:29:14;;;;-1:-1:-1;;;;;927:29:14;;;3761:366:15;3863:4;-1:-1:-1;;;;;;3898:40:15;;-1:-1:-1;;;3898:40:15;;:104;;-1:-1:-1;;;;;;;3954:48:15;;-1:-1:-1;;;3954:48:15;3898:104;:170;;;-1:-1:-1;;;;;;;4018:50:15;;-1:-1:-1;;;4018:50:15;3898:170;:222;;;-1:-1:-1;;;;;;;;;;937:40:11;;;4084:36:15;3879:241;3761:366;-1:-1:-1;;3761:366:15:o;5344:98::-;5398:13;5430:5;5423:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5344:98;:::o;6857:210::-;6925:7;6952:16;6960:7;8813:4;8846:12;-1:-1:-1;8836:22:15;8756:109;6952:16;6944:74;;;;-1:-1:-1;;;6944:74:15;;25049:2:16;6944:74:15;;;25031:21:16;25088:2;25068:18;;;25061:30;25127:34;25107:18;;;25100:62;-1:-1:-1;;;25178:18:16;;;25171:43;25231:19;;6944:74:15;;;;;;;;;-1:-1:-1;7036:24:15;;;;:15;:24;;;;;;-1:-1:-1;;;;;7036:24:15;;6857:210::o;6393:403::-;6465:13;6481:24;6497:7;6481:15;:24::i;:::-;6465:40;;6529:5;-1:-1:-1;;;;;6523:11:15;:2;-1:-1:-1;;;;;6523:11:15;;;6515:58;;;;-1:-1:-1;;;6515:58:15;;21462:2:16;6515:58:15;;;21444:21:16;21501:2;21481:18;;;21474:30;21540:34;21520:18;;;21513:62;-1:-1:-1;;;21591:18:16;;;21584:32;21633:19;;6515:58:15;21260:398:16;6515:58:15;719:10:9;-1:-1:-1;;;;;6605:21:15;;;;:62;;-1:-1:-1;6630:37:15;6647:5;719:10:9;7483:162:15;:::i;6630:37::-;6584:166;;;;-1:-1:-1;;;6584:166:15;;17899:2:16;6584:166:15;;;17881:21:16;17938:2;17918:18;;;17911:30;17977:34;17957:18;;;17950:62;18048:27;18028:18;;;18021:55;18093:19;;6584:166:15;17697:421:16;6584:166:15;6761:28;6770:2;6774:7;6783:5;6761:8;:28::i;:::-;6455:341;6393:403;;:::o;4977:553:1:-;-1:-1:-1;;;;;5052:16:1;;5071:1;5052:16;;;:7;:16;;;;;;5044:71;;;;-1:-1:-1;;;5044:71:1;;14292:2:16;5044:71:1;;;14274:21:16;14331:2;14311:18;;;14304:30;14370:34;14350:18;;;14343:62;-1:-1:-1;;;14421:18:16;;;14414:36;14467:19;;5044:71:1;14090:402:16;5044:71:1;5126:21;5174:15;3624:14;;;3552:93;5174:15;5150:39;;:21;:39;:::i;:::-;5126:63;;5199:15;5217:58;5233:7;5242:13;5257:17;5266:7;-1:-1:-1;;;;;4278:18:1;4252:7;4278:18;;;:9;:18;;;;;;;4196:107;5257:17;5217:15;:58::i;:::-;5199:76;-1:-1:-1;5294:12:1;5286:68;;;;-1:-1:-1;;;5286:68:1;;17128:2:16;5286:68:1;;;17110:21:16;17167:2;17147:18;;;17140:30;17206:34;17186:18;;;17179:62;-1:-1:-1;;;17257:18:16;;;17250:41;17308:19;;5286:68:1;16926:407:16;5286:68:1;-1:-1:-1;;;;;5365:18:1;;;;;;:9;:18;;;;;:29;;5387:7;;5365:18;:29;;5387:7;;5365:29;:::i;:::-;;;;;;;;5422:7;5404:14;;:25;;;;;;;:::i;:::-;;;;-1:-1:-1;5440:35:1;;-1:-1:-1;5458:7:1;5467;5440:17;:35::i;:::-;5490:33;;;-1:-1:-1;;;;;9470:55:16;;9452:74;;9557:2;9542:18;;9535:34;;;5490:33:1;;9425:18:16;5490:33:1;;;;;;;5034:496;;4977:553;:::o;7707:156:15:-;7828:28;7838:4;7844:2;7848:7;7828:9;:28::i;2889:805::-;2978:7;3013:16;3023:5;3013:9;:16::i;:::-;3005:5;:24;2997:71;;;;-1:-1:-1;;;2997:71:15;;11016:2:16;2997:71:15;;;10998:21:16;11055:2;11035:18;;;11028:30;11094:34;11074:18;;;11067:62;-1:-1:-1;;;11145:18:16;;;11138:32;11187:19;;2997:71:15;10814:398:16;2997:71:15;3078:22;2321:12;;;3078:22;;3207:415;3231:14;3227:1;:18;3207:415;;;3266:31;3300:14;;;:11;:14;;;;;;;;;3266:48;;;;;;;;;-1:-1:-1;;;;;3266:48:15;;;;;-1:-1:-1;;;3266:48:15;;;;;;;;;;;;3332:28;3328:101;;3400:14;;;-1:-1:-1;3328:101:15;3467:5;-1:-1:-1;;;;;3446:26:15;:17;-1:-1:-1;;;;;3446:26:15;;3442:170;;;3511:5;3496:11;:20;3492:75;;;-1:-1:-1;3547:1:15;-1:-1:-1;3540:8:15;;-1:-1:-1;;;3540:8:15;3492:75;3584:13;;;;:::i;:::-;;;;3442:170;-1:-1:-1;3247:3:15;;;;:::i;:::-;;;;3207:415;;;-1:-1:-1;3631:56:15;;-1:-1:-1;;;3631:56:15;;24218:2:16;3631:56:15;;;24200:21:16;24257:2;24237:18;;;24230:30;24296:34;24276:18;;;24269:62;24367:16;24347:18;;;24340:44;24401:19;;3631:56:15;24016:410:16;3998:268:14;1108:6:0;;-1:-1:-1;;;;;1108:6:0;719:10:9;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;19911:2:16;1240:68:0;;;19893:21:16;;;19930:18;;;19923:30;19989:34;19969:18;;;19962:62;20041:18;;1240:68:0;19709:356:16;1240:68:0;919:2:14::1;4089:33;4107:14:::0;4089:13:::1;2295:7:15::0;2321:12;;2242:98;4089:13:14::1;:17:::0;::::1;:33::i;:::-;:52;;4068:144;;;::::0;-1:-1:-1;;;4068:144:14;;11825:2:16;4068:144:14::1;::::0;::::1;11807:21:16::0;11864:2;11844:18;;;11837:30;11903:34;11883:18;;;11876:62;-1:-1:-1;;;11954:18:16;;;11947:43;12007:19;;4068:144:14::1;11623:409:16::0;4068:144:14::1;4222:37;4232:10;4244:14;4222:9;:37::i;:::-;3998:268:::0;:::o;7929:171:15:-;8054:39;8071:4;8077:2;8081:7;8054:39;;;;;;;;;;;;:16;:39::i;5791:628:1:-;-1:-1:-1;;;;;5872:16:1;;5891:1;5872:16;;;:7;:16;;;;;;5864:71;;;;-1:-1:-1;;;5864:71:1;;14292:2:16;5864:71:1;;;14274:21:16;14331:2;14311:18;;;14304:30;14370:34;14350:18;;;14343:62;-1:-1:-1;;;14421:18:16;;;14414:36;14467:19;;5864:71:1;14090:402:16;5864:71:1;-1:-1:-1;;;;;3880:26:1;;5946:21;3880:26;;;:19;:26;;;;;;5970:30;;-1:-1:-1;;;5970:30:1;;5994:4;5970:30;;;9185:74:16;-1:-1:-1;;;;;5970:15:1;;;;;9158:18:16;;5970:30:1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:53;;;;:::i;:::-;5946:77;;6033:15;6051:65;6067:7;6076:13;6091:24;6100:5;6107:7;-1:-1:-1;;;;;4562:21:1;;;4536:7;4562:21;;;:14;:21;;;;;;;;:30;;;;;;;;;;;;;4466:133;6051:65;6033:83;-1:-1:-1;6135:12:1;6127:68;;;;-1:-1:-1;;;6127:68:1;;17128:2:16;6127:68:1;;;17110:21:16;17167:2;17147:18;;;17140:30;17206:34;17186:18;;;17179:62;-1:-1:-1;;;17257:18:16;;;17250:41;17308:19;;6127:68:1;16926:407:16;6127:68:1;-1:-1:-1;;;;;6206:21:1;;;;;;;:14;:21;;;;;;;;:30;;;;;;;;;;;:41;;6240:7;;6206:21;:41;;6240:7;;6206:41;:::i;:::-;;;;-1:-1:-1;;;;;;;6257:26:1;;;;;;:19;:26;;;;;:37;;6287:7;;6257:26;:37;;6287:7;;6257:37;:::i;:::-;;;;-1:-1:-1;6305:47:1;;-1:-1:-1;6328:5:1;6335:7;6344;6305:22;:47::i;:::-;6367:45;;;-1:-1:-1;;;;;9470:55:16;;;9452:74;;9557:2;9542:18;;9535:34;;;6367:45:1;;;;;9425:18:16;6367:45:1;;;;;;;5854:565;;5791:628;;:::o;2412:184:15:-;2479:7;2321:12;;2506:5;:21;2498:69;;;;-1:-1:-1;;;2498:69:15;;13888:2:16;2498:69:15;;;13870:21:16;13927:2;13907:18;;;13900:30;13966:34;13946:18;;;13939:62;-1:-1:-1;;;14017:18:16;;;14010:33;14060:19;;2498:69:15;13686:399:16;2498:69:15;-1:-1:-1;2584:5:15;2412:184::o;3565:390:14:-;1108:6:0;;-1:-1:-1;;;;;1108:6:0;719:10:9;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;19911:2:16;1240:68:0;;;19893:21:16;;;19930:18;;;19923:30;19989:34;19969:18;;;19962:62;20041:18;;1240:68:0;19709:356:16;1240:68:0;3741:8:14::1;:15;3719:11;:18;:37;3698:126;;;::::0;-1:-1:-1;;;3698:126:14;;15119:2:16;3698:126:14::1;::::0;::::1;15101:21:16::0;15158:2;15138:18;;;15131:30;15197:34;15177:18;;;15170:62;-1:-1:-1;;;15248:18:16;;;15241:40;15298:19;;3698:126:14::1;14917:406:16::0;3698:126:14::1;3839:9;3834:115;3858:11;:18;3854:1;:22;3834:115;;;3927:8;3936:1;3927:11;;;;;;;;:::i;:::-;;;;;;;3897;:27;3909:11;3921:1;3909:14;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;3897:27:14::1;-1:-1:-1::0;;;;;3897:27:14::1;;;;;;;;;;;;:41;;;;3878:3;;;;;:::i;:::-;;;;3834:115;;3342:103:::0;1108:6:0;;-1:-1:-1;;;;;1108:6:0;719:10:9;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;19911:2:16;1240:68:0;;;19893:21:16;;;19930:18;;;19923:30;19989:34;19969:18;;;19962:62;20041:18;;1240:68:0;19709:356:16;1240:68:0;3416:22:14::1;:12;3431:7:::0;;3416:22:::1;:::i;5160:122:15:-:0;5224:7;5250:20;5262:7;5250:11;:20::i;:::-;:25;;5160:122;-1:-1:-1;;5160:122:15:o;367:110:14:-;;;;;;;;;;;;;;;;;;;:::o;4186:218:15:-;4250:7;-1:-1:-1;;;;;4277:19:15;;4269:75;;;;-1:-1:-1;;;4269:75:15;;18736:2:16;4269:75:15;;;18718:21:16;18775:2;18755:18;;;18748:30;18814:34;18794:18;;;18787:62;-1:-1:-1;;;18865:18:16;;;18858:41;18916:19;;4269:75:15;18534:407:16;4269:75:15;-1:-1:-1;;;;;;4369:19:15;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;4369:27:15;;4186:218::o;1668:101:0:-;1108:6;;-1:-1:-1;;;;;1108:6:0;719:10:9;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;19911:2:16;1240:68:0;;;19893:21:16;;;19930:18;;;19923:30;19989:34;19969:18;;;19962:62;20041:18;;1240:68:0;19709:356:16;1240:68:0;1732:30:::1;1759:1;1732:18;:30::i;:::-;1668:101::o:0;4685:98:1:-;4736:7;4762;4770:5;4762:14;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;4762:14:1;;4685:98;-1:-1:-1;;4685:98:1:o;5506:102:15:-;5562:13;5594:7;5587:14;;;;;:::i;7134:283::-;-1:-1:-1;;;;;7228:24:15;;719:10:9;7228:24:15;;7220:63;;;;-1:-1:-1;;;7220:63:15;;20688:2:16;7220:63:15;;;20670:21:16;20727:2;20707:18;;;20700:30;20766:28;20746:18;;;20739:56;20812:18;;7220:63:15;20486:350:16;7220:63:15;719:10:9;7294:32:15;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;7294:42:15;;;;;;;;;;;;:53;;-1:-1:-1;;7294:53:15;;;;;;;;;;7362:48;;10538:41:16;;;7294:42:15;;719:10:9;7362:48:15;;10511:18:16;7362:48:15;;;;;;;7134:283;;:::o;2376:843:14:-;1323:9;1336:10;1323:23;1315:66;;;;-1:-1:-1;;;1315:66:14;;17540:2:16;1315:66:14;;;17522:21:16;17579:2;17559:18;;;17552:30;17618:32;17598:18;;;17591:60;17668:18;;1315:66:14;17338:354:16;1315:66:14;2511:10:::1;::::0;2524:1:::1;-1:-1:-1::0;;;;;2511:10:14;;::::1;:14;2490:112;;;::::0;-1:-1:-1;;;2490:112:14;;14699:2:16;2490:112:14::1;::::0;::::1;14681:21:16::0;14738:2;14718:18;;;14711:30;14777:34;14757:18;;;14750:62;14848:21;14828:18;;;14821:49;14887:19;;2490:112:14::1;14497:415:16::0;2490:112:14::1;869:2;2633:30:::0;::::1;;2612:122;;;::::0;-1:-1:-1;;;2612:122:14;;13474:2:16;2612:122:14::1;::::0;::::1;13456:21:16::0;13513:2;13493:18;;;13486:30;13552:34;13532:18;;;13525:62;-1:-1:-1;;;13603:18:16;;;13596:43;13656:19;;2612:122:14::1;13272:409:16::0;2612:122:14::1;820:4;2765:33;2783:14:::0;2765:13:::1;2295:7:15::0;2321:12;;2242:98;2765:33:14::1;:47;;2744:136;;;::::0;-1:-1:-1;;;2744:136:14;;18325:2:16;2744:136:14::1;::::0;::::1;18307:21:16::0;18364:2;18344:18;;;18337:30;18403:34;18383:18;;;18376:62;-1:-1:-1;;;18454:18:16;;;18447:40;18504:19;;2744:136:14::1;18123:406:16::0;2744:136:14::1;2890:17;2910:31;767:10;2926:14:::0;2910:15:::1;:31::i;:::-;2890:51;;2972:9;2959;:22;;2951:62;;;::::0;-1:-1:-1;;;2951:62:14;;19148:2:16;2951:62:14::1;::::0;::::1;19130:21:16::0;19187:2;19167:18;;;19160:30;19226:29;19206:18;;;19199:57;19273:18;;2951:62:14::1;18946:351:16::0;2951:62:14::1;3024:37;3034:10;3046:14;3024:9;:37::i;:::-;3126:9;3114;:21;3110:103;;;3159:10;3151:51;3180:21;3192:9:::0;3180::::1;:21;:::i;:::-;3151:51;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;3110:103;2480:739;2376:843:::0;:::o;8166:344:15:-;8319:28;8329:4;8335:2;8339:7;8319:9;:28::i;:::-;8378:48;8401:4;8407:2;8411:7;8420:5;8378:22;:48::i;:::-;8357:146;;;;-1:-1:-1;;;8357:146:15;;22269:2:16;8357:146:15;;;22251:21:16;22308:2;22288:18;;;22281:30;22347:34;22327:18;;;22320:62;-1:-1:-1;;;22398:18:16;;;22391:49;22457:19;;8357:146:15;22067:415:16;8357:146:15;8166:344;;;;:::o;5674:329::-;5747:13;5780:16;5788:7;8813:4;8846:12;-1:-1:-1;8836:22:15;8756:109;5780:16;5772:76;;;;-1:-1:-1;;;5772:76:15;;20272:2:16;5772:76:15;;;20254:21:16;20311:2;20291:18;;;20284:30;20350:34;20330:18;;;20323:62;20421:17;20401:18;;;20394:45;20456:19;;5772:76:15;20070:411:16;5772:76:15;5859:21;5883:10;:8;:10::i;:::-;5859:34;;5934:1;5916:7;5910:21;:25;:86;;;;;;;;;;;;;;;;;5962:7;5971:18;:7;:16;:18::i;:::-;5945:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;5910:86;5903:93;5674:329;-1:-1:-1;;;5674:329:15:o;1405:965:14:-;1323:9;1336:10;1323:23;1315:66;;;;-1:-1:-1;;;1315:66:14;;17540:2:16;1315:66:14;;;17522:21:16;17579:2;17559:18;;;17552:30;17618:32;17598:18;;;17591:60;17668:18;;1315:66:14;17338:354:16;1315:66:14;1521:10:::1;1535:1;1509:23:::0;;;:11:::1;:23;::::0;;;;;1488:111:::1;;;::::0;-1:-1:-1;;;1488:111:14;;11419:2:16;1488:111:14::1;::::0;::::1;11401:21:16::0;11458:2;11438:18;;;11431:30;11497:34;11477:18;;;11470:62;-1:-1:-1;;;11548:18:16;;;11541:35;11593:19;;1488:111:14::1;11217:401:16::0;1488:111:14::1;1630:10;::::0;-1:-1:-1;;;;;1630:10:14::1;1609:109;;;::::0;-1:-1:-1;;;1609:109:14;;12239:2:16;1609:109:14::1;::::0;::::1;12221:21:16::0;12278:2;12258:18;;;12251:30;12317:34;12297:18;;;12290:62;12388:18;12368;;;12361:46;12424:19;;1609:109:14::1;12037:412:16::0;1609:109:14::1;869:2;1749:30:::0;::::1;;1728:122;;;::::0;-1:-1:-1;;;1728:122:14;;13474:2:16;1728:122:14::1;::::0;::::1;13456:21:16::0;13513:2;13493:18;;;13486:30;13552:34;13532:18;;;13525:62;-1:-1:-1;;;13603:18:16;;;13596:43;13656:19;;1728:122:14::1;13272:409:16::0;1728:122:14::1;820:4;1881:33;1899:14:::0;1881:13:::1;2295:7:15::0;2321:12;;2242:98;1881:33:14::1;:47;;1860:136;;;::::0;-1:-1:-1;;;1860:136:14;;18325:2:16;1860:136:14::1;::::0;::::1;18307:21:16::0;18364:2;18344:18;;;18337:30;18403:34;18383:18;;;18376:62;-1:-1:-1;;;18454:18:16;;;18447:40;18504:19;;1860:136:14::1;18123:406:16::0;1860:136:14::1;2006:17;2026:31;767:10;2042:14:::0;2026:15:::1;:31::i;:::-;2006:51;;2088:9;2075;:22;;2067:62;;;::::0;-1:-1:-1;;;2067:62:14;;19148:2:16;2067:62:14::1;::::0;::::1;19130:21:16::0;19187:2;19167:18;;;19160:30;19226:29;19206:18;;;19199:57;19273:18;;2067:62:14::1;18946:351:16::0;2067:62:14::1;2140:37;2150:10;2162:14;2140:9;:37::i;:::-;2199:10;2187:23;::::0;;;:11:::1;:23;::::0;;;;:25;;;::::1;::::0;::::1;:::i;:::-;;;;;;2277:9;2265;:21;2261:103;;;2310:10;2302:51;2331:21;2343:9:::0;2331::::1;:21;:::i;3451:108::-:0;1108:6:0;;-1:-1:-1;;;;;1108:6:0;719:10:9;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;19911:2:16;1240:68:0;;;19893:21:16;;;19930:18;;;19923:30;19989:34;19969:18;;;19962:62;20041:18;;1240:68:0;19709:356:16;1240:68:0;3526:10:14::1;:26:::0;;-1:-1:-1;;3526:26:14::1;-1:-1:-1::0;;;;;3526:26:14;;;::::1;::::0;;;::::1;::::0;;3451:108::o;1918:198:0:-;1108:6;;-1:-1:-1;;;;;1108:6:0;719:10:9;1248:23:0;1240:68;;;;-1:-1:-1;;;1240:68:0;;19911:2:16;1240:68:0;;;19893:21:16;;;19930:18;;;19923:30;19989:34;19969:18;;;19962:62;20041:18;;1240:68:0;19709:356:16;1240:68:0;-1:-1:-1;;;;;2006:22:0;::::1;1998:73;;;::::0;-1:-1:-1;;;1998:73:0;;12656:2:16;1998:73:0::1;::::0;::::1;12638:21:16::0;12695:2;12675:18;;;12668:30;12734:34;12714:18;;;12707:62;-1:-1:-1;;;12785:18:16;;;12778:36;12831:19;;1998:73:0::1;12454:402:16::0;1998:73:0::1;2081:28;2100:8;2081:18;:28::i;12689:189:15:-:0;12799:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;12799:29:15;-1:-1:-1;;;;;12799:29:15;;;;;;;;;12843:28;;12799:24;;12843:28;;;;;;;12689:189;;;:::o;6591:242:1:-;6796:12;;-1:-1:-1;;;;;6776:16:1;;6733:7;6776:16;;;:7;:16;;;;;;6733:7;;6811:15;;6760:32;;:13;:32;:::i;:::-;6759:49;;;;:::i;:::-;:67;;;;:::i;:::-;6752:74;6591:242;-1:-1:-1;;;;6591:242:1:o;2065:312:8:-;2179:6;2154:21;:31;;2146:73;;;;-1:-1:-1;;;2146:73:8;;16363:2:16;2146:73:8;;;16345:21:16;16402:2;16382:18;;;16375:30;16441:31;16421:18;;;16414:59;16490:18;;2146:73:8;16161:353:16;2146:73:8;2231:12;2249:9;-1:-1:-1;;;;;2249:14:8;2271:6;2249:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2230:52;;;2300:7;2292:78;;;;-1:-1:-1;;;2292:78:8;;15936:2:16;2292:78:8;;;15918:21:16;15975:2;15955:18;;;15948:30;16014:34;15994:18;;;15987:62;16085:28;16065:18;;;16058:56;16131:19;;2292:78:8;15734:422:16;10836:1742:15;10946:35;10984:20;10996:7;10984:11;:20::i;:::-;11057:18;;10946:58;;-1:-1:-1;11015:22:15;;-1:-1:-1;;;;;11041:34:15;719:10:9;-1:-1:-1;;;;;11041:34:15;;:86;;;-1:-1:-1;719:10:9;11091:20:15;11103:7;11091:11;:20::i;:::-;-1:-1:-1;;;;;11091:36:15;;11041:86;:152;;;-1:-1:-1;11160:18:15;;11143:50;;719:10:9;7483:162:15;:::i;11143:50::-;11015:179;;11213:17;11205:80;;;;-1:-1:-1;;;11205:80:15;;21043:2:16;11205:80:15;;;21025:21:16;21082:2;21062:18;;;21055:30;21121:34;21101:18;;;21094:62;21192:20;21172:18;;;21165:48;21230:19;;11205:80:15;20841:414:16;11205:80:15;11326:4;-1:-1:-1;;;;;11304:26:15;:13;:18;;;-1:-1:-1;;;;;11304:26:15;;11296:77;;;;-1:-1:-1;;;11296:77:15;;19504:2:16;11296:77:15;;;19486:21:16;19543:2;19523:18;;;19516:30;19582:34;19562:18;;;19555:62;-1:-1:-1;;;19633:18:16;;;19626:36;19679:19;;11296:77:15;19302:402:16;11296:77:15;-1:-1:-1;;;;;11391:16:15;;11383:66;;;;-1:-1:-1;;;11383:66:15;;15530:2:16;11383:66:15;;;15512:21:16;15569:2;15549:18;;;15542:30;15608:34;15588:18;;;15581:62;-1:-1:-1;;;15659:18:16;;;15652:35;15704:19;;11383:66:15;15328:401:16;11383:66:15;11565:49;11582:1;11586:7;11595:13;:18;;;11565:8;:49::i;:::-;-1:-1:-1;;;;;11814:18:15;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;11814:31:15;;;-1:-1:-1;;;;;11814:31:15;;;-1:-1:-1;;11814:31:15;;;;;;;11859:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;11859:29:15;;;;;;;;;;;;;11932:43;;;;;;;;;;11958:15;11932:43;;;;;;;;;;11909:20;;;:11;:20;;;;;;:66;;;;;;;;-1:-1:-1;;;;;;11909:66:15;;;;;;;-1:-1:-1;;;11909:66:15;;;;;;;;;;;;11814:18;12233:11;;11909:20;;12233:11;:::i;:::-;12299:1;12258:24;;;:11;:24;;;;;:29;12211:33;;-1:-1:-1;;;;;;12258:29:15;12254:223;;12321:20;12329:11;8813:4;8846:12;-1:-1:-1;8836:22:15;8756:109;12321:20;12317:150;;;12388:64;;;;;;;;12403:18;;-1:-1:-1;;;;;12388:64:15;;;;;;12423:28;;;;12388:64;;;;;;;;;;-1:-1:-1;12361:24:15;;;:11;:24;;;;;;;:91;;;;;;;;;-1:-1:-1;;;12361:91:15;-1:-1:-1;;;;;;12361:91:15;;;;;;;;;;;;12317:150;12511:7;12507:2;-1:-1:-1;;;;;12492:27:15;12501:4;-1:-1:-1;;;;;12492:27:15;;;;;;;;;;;12529:42;10936:1642;;;10836:1742;;;:::o;2741:96:13:-;2799:7;2825:5;2829:1;2825;:5;:::i;8871:102:15:-;8939:27;8949:2;8953:8;8939:27;;;;;;;;;;;;:9;:27::i;701:205:3:-;840:58;;;-1:-1:-1;;;;;9470:55:16;;840:58:3;;;9452:74:16;9542:18;;;;9535:34;;;840:58:3;;;;;;;;;;9425:18:16;;;;840:58:3;;;;;;;;;;-1:-1:-1;;;840:58:3;;;813:86;;833:5;;813:19;:86::i;4642:461:15:-;-1:-1:-1;;;;;;;;;;;;;;;;;4744:16:15;4752:7;8813:4;8846:12;-1:-1:-1;8836:22:15;8756:109;4744:16;4736:71;;;;-1:-1:-1;;;4736:71:15;;13063:2:16;4736:71:15;;;13045:21:16;13102:2;13082:18;;;13075:30;13141:34;13121:18;;;13114:62;-1:-1:-1;;;13192:18:16;;;13185:40;13242:19;;4736:71:15;12861:406:16;4736:71:15;4838:7;4818:211;4871:31;4905:17;;;:11;:17;;;;;;;;;4871:51;;;;;;;;;-1:-1:-1;;;;;4871:51:15;;;;;-1:-1:-1;;;4871:51:15;;;;;;;;;;;;4940:28;4936:83;;4995:9;4642:461;-1:-1:-1;;;4642:461:15:o;4936:83::-;-1:-1:-1;4849:6:15;;;;:::i;:::-;;;;4818:211;;2270:187:0;2362:6;;;-1:-1:-1;;;;;2378:17:0;;;-1:-1:-1;;2378:17:0;;;;;;;2410:40;;2362:6;;;2378:17;2362:6;;2410:40;;2343:16;;2410:40;2333:124;2270:187;:::o;3451:96:13:-;3509:7;3535:5;3539:1;3535;:5;:::i;13431:783:15:-;13581:4;-1:-1:-1;;;;;13601:13:15;;1087:20:8;1133:8;13597:611:15;;13636:72;;-1:-1:-1;;;13636:72:15;;-1:-1:-1;;;;;13636:36:15;;;;;:72;;719:10:9;;13687:4:15;;13693:7;;13702:5;;13636:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;13636:72:15;;;;;;;;-1:-1:-1;;13636:72:15;;;;;;;;;;;;:::i;:::-;;;13632:524;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;13879:13:15;;13875:267;;13921:61;;-1:-1:-1;;;13921:61:15;;22269:2:16;13921:61:15;;;22251:21:16;22308:2;22288:18;;;22281:30;22347:34;22327:18;;;22320:62;-1:-1:-1;;;22398:18:16;;;22391:49;22457:19;;13921:61:15;22067:415:16;13875:267:15;14094:6;14088:13;14079:6;14075:2;14071:15;14064:38;13632:524;-1:-1:-1;;;;;;13758:55:15;-1:-1:-1;;;13758:55:15;;-1:-1:-1;13751:62:15;;13597:611;-1:-1:-1;14193:4:15;13431:783;;;;;;:::o;3225:111:14:-;3285:13;3317:12;3310:19;;;;;:::i;328:703:10:-;384:13;601:10;597:51;;-1:-1:-1;;627:10:10;;;;;;;;;;;;-1:-1:-1;;;627:10:10;;;;;328:703::o;597:51::-;672:5;657:12;711:75;718:9;;711:75;;743:8;;;;:::i;:::-;;-1:-1:-1;765:10:10;;-1:-1:-1;773:2:10;765:10;;:::i;:::-;;;711:75;;;795:19;827:6;817:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;817:17:10;;795:39;;844:150;851:10;;844:150;;877:11;887:1;877:11;;:::i;:::-;;-1:-1:-1;945:10:10;953:2;945:5;:10;:::i;:::-;932:24;;:2;:24;:::i;:::-;919:39;;902:6;909;902:14;;;;;;;;:::i;:::-;;;;:56;;;;;;;;;;-1:-1:-1;972:11:10;981:2;972:11;;:::i;:::-;;;844:150;;9238:1356:15;9356:20;9379:12;-1:-1:-1;;;;;9409:16:15;;9401:62;;;;-1:-1:-1;;;9401:62:15;;23405:2:16;9401:62:15;;;23387:21:16;23444:2;23424:18;;;23417:30;23483:34;23463:18;;;23456:62;-1:-1:-1;;;23534:18:16;;;23527:31;23575:19;;9401:62:15;23203:397:16;9401:62:15;9606:21;9614:12;8813:4;8846:12;-1:-1:-1;8836:22:15;8756:109;9606:21;9605:22;9597:64;;;;-1:-1:-1;;;9597:64:15;;22689:2:16;9597:64:15;;;22671:21:16;22728:2;22708:18;;;22701:30;22767:31;22747:18;;;22740:59;22816:18;;9597:64:15;22487:353:16;9597:64:15;9690:1;9679:8;:12;9671:60;;;;-1:-1:-1;;;9671:60:15;;21865:2:16;9671:60:15;;;21847:21:16;21904:2;21884:18;;;21877:30;21943:34;21923:18;;;21916:62;-1:-1:-1;;;21994:18:16;;;21987:33;22037:19;;9671:60:15;21663:399:16;9671:60:15;-1:-1:-1;;;;;9847:16:15;;9814:30;9847:16;;;:12;:16;;;;;;;;;9814:49;;;;;;;;;-1:-1:-1;;;;;9814:49:15;;;;;-1:-1:-1;;;9814:49:15;;;;;;;;;;;9892:132;;;;;;;;9917:19;;9814:49;;9892:132;;;9917:39;;9947:8;;9917:39;:::i;:::-;-1:-1:-1;;;;;9892:132:15;;;;;10005:8;9970:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;9892:132:15;;;;;;-1:-1:-1;;;;;9873:16:15;;;;;;;:12;:16;;;;;;;;:151;;;;;;;;-1:-1:-1;;;9873:151:15;;;;;;;;;;;;10062:43;;;;;;;;;;;10088:15;10062:43;;;;;;;;10034:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;10034:71:15;-1:-1:-1;;;;;;10034:71:15;;;;;;;;;;;;;;;;;;10046:12;;10162:318;10186:8;10182:1;:12;10162:318;;;10220:38;;10245:12;;-1:-1:-1;;;;;10220:38:15;;;10237:1;;10220:38;;10237:1;;10220:38;10297:59;10328:1;10332:2;10336:12;10350:5;10297:22;:59::i;:::-;10272:169;;;;-1:-1:-1;;;10272:169:15;;22269:2:16;10272:169:15;;;22251:21:16;22308:2;22288:18;;;22281:30;22347:34;22327:18;;;22320:62;-1:-1:-1;;;22398:18:16;;;22391:49;22457:19;;10272:169:15;22067:415:16;10272:169:15;10455:14;;;;:::i;:::-;;;;10196:3;;;;;:::i;:::-;;;;10162:318;;;-1:-1:-1;10490:12:15;:27;;;10527:60;8166:344;3207:706:3;3626:23;3652:69;3680:4;3652:69;;;;;;;;;;;;;;;;;3660:5;-1:-1:-1;;;;;3652:27:3;;;:69;;;;;:::i;:::-;3735:17;;3626:95;;-1:-1:-1;3735:21:3;3731:176;;3830:10;3819:30;;;;;;;;;;;;:::i;:::-;3811:85;;;;-1:-1:-1;;;3811:85:3;;23807:2:16;3811:85:3;;;23789:21:16;23846:2;23826:18;;;23819:30;23885:34;23865:18;;;23858:62;-1:-1:-1;;;23936:18:16;;;23929:40;23986:19;;3811:85:3;23605:406:16;3514:223:8;3647:12;3678:52;3700:6;3708:4;3714:1;3717:12;3647;1087:20;;4881:60;;;;-1:-1:-1;;;4881:60:8;;23047:2:16;4881:60:8;;;23029:21:16;23086:2;23066:18;;;23059:30;23125:31;23105:18;;;23098:59;23174:18;;4881:60:8;22845:353:16;4881:60:8;4953:12;4967:23;4994:6;-1:-1:-1;;;;;4994:11:8;5013:5;5020:4;4994:31;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4952:73;;;;5042:51;5059:7;5068:10;5080:12;5042:16;:51::i;:::-;5035:58;4601:499;-1:-1:-1;;;;;;;4601:499:8:o;7214:692::-;7360:12;7388:7;7384:516;;;-1:-1:-1;7418:10:8;7411:17;;7384:516;7529:17;;:21;7525:365;;7723:10;7717:17;7783:15;7770:10;7766:2;7762:19;7755:44;7525:365;7862:12;7855:20;;-1:-1:-1;;;7855:20:8;;;;;;;;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:673:16;68:5;121:3;114:4;106:6;102:17;98:27;88:55;;139:1;136;129:12;88:55;175:6;162:20;201:4;225:60;241:43;281:2;241:43;:::i;:::-;225:60;:::i;:::-;307:3;331:2;326:3;319:15;359:2;354:3;350:12;343:19;;394:2;386:6;382:15;446:3;441:2;435;432:1;428:10;420:6;416:23;412:32;409:41;406:61;;;463:1;460;453:12;406:61;485:1;495:163;509:2;506:1;503:9;495:163;;;566:17;;554:30;;604:12;;;;636;;;;527:1;520:9;495:163;;;-1:-1:-1;676:5:16;;14:673;-1:-1:-1;;;;;;;14:673:16:o;692:247::-;751:6;804:2;792:9;783:7;779:23;775:32;772:52;;;820:1;817;810:12;772:52;859:9;846:23;878:31;903:5;878:31;:::i;1204:388::-;1272:6;1280;1333:2;1321:9;1312:7;1308:23;1304:32;1301:52;;;1349:1;1346;1339:12;1301:52;1388:9;1375:23;1407:31;1432:5;1407:31;:::i;:::-;1457:5;-1:-1:-1;1514:2:16;1499:18;;1486:32;1527:33;1486:32;1527:33;:::i;:::-;1579:7;1569:17;;;1204:388;;;;;:::o;1597:456::-;1674:6;1682;1690;1743:2;1731:9;1722:7;1718:23;1714:32;1711:52;;;1759:1;1756;1749:12;1711:52;1798:9;1785:23;1817:31;1842:5;1817:31;:::i;:::-;1867:5;-1:-1:-1;1924:2:16;1909:18;;1896:32;1937:33;1896:32;1937:33;:::i;:::-;1597:456;;1989:7;;-1:-1:-1;;;2043:2:16;2028:18;;;;2015:32;;1597:456::o;2058:1108::-;2153:6;2161;2169;2177;2230:3;2218:9;2209:7;2205:23;2201:33;2198:53;;;2247:1;2244;2237:12;2198:53;2286:9;2273:23;2305:31;2330:5;2305:31;:::i;:::-;2355:5;-1:-1:-1;2379:2:16;2418:18;;;2405:32;2446:33;2405:32;2446:33;:::i;:::-;2498:7;-1:-1:-1;2552:2:16;2537:18;;2524:32;;-1:-1:-1;2607:2:16;2592:18;;2579:32;2630:18;2660:14;;;2657:34;;;2687:1;2684;2677:12;2657:34;2725:6;2714:9;2710:22;2700:32;;2770:7;2763:4;2759:2;2755:13;2751:27;2741:55;;2792:1;2789;2782:12;2741:55;2828:2;2815:16;2850:2;2846;2843:10;2840:36;;;2856:18;;:::i;:::-;2898:53;2941:2;2922:13;;-1:-1:-1;;2918:27:16;2914:36;;2898:53;:::i;:::-;2885:66;;2974:2;2967:5;2960:17;3014:7;3009:2;3004;3000;2996:11;2992:20;2989:33;2986:53;;;3035:1;3032;3025:12;2986:53;3090:2;3085;3081;3077:11;3072:2;3065:5;3061:14;3048:45;3134:1;3129:2;3124;3117:5;3113:14;3109:23;3102:34;;3155:5;3145:15;;;;;2058:1108;;;;;;;:::o;3171:382::-;3236:6;3244;3297:2;3285:9;3276:7;3272:23;3268:32;3265:52;;;3313:1;3310;3303:12;3265:52;3352:9;3339:23;3371:31;3396:5;3371:31;:::i;:::-;3421:5;-1:-1:-1;3478:2:16;3463:18;;3450:32;3491:30;3450:32;3491:30;:::i;3558:315::-;3626:6;3634;3687:2;3675:9;3666:7;3662:23;3658:32;3655:52;;;3703:1;3700;3693:12;3655:52;3742:9;3729:23;3761:31;3786:5;3761:31;:::i;:::-;3811:5;3863:2;3848:18;;;;3835:32;;-1:-1:-1;;;3558:315:16:o;3878:1226::-;3996:6;4004;4057:2;4045:9;4036:7;4032:23;4028:32;4025:52;;;4073:1;4070;4063:12;4025:52;4113:9;4100:23;4142:18;4183:2;4175:6;4172:14;4169:34;;;4199:1;4196;4189:12;4169:34;4237:6;4226:9;4222:22;4212:32;;4282:7;4275:4;4271:2;4267:13;4263:27;4253:55;;4304:1;4301;4294:12;4253:55;4340:2;4327:16;4362:4;4386:60;4402:43;4442:2;4402:43;:::i;4386:60::-;4468:3;4492:2;4487:3;4480:15;4520:2;4515:3;4511:12;4504:19;;4551:2;4547;4543:11;4599:7;4594:2;4588;4585:1;4581:10;4577:2;4573:19;4569:28;4566:41;4563:61;;;4620:1;4617;4610:12;4563:61;4642:1;4633:10;;4652:238;4666:2;4663:1;4660:9;4652:238;;;4737:3;4724:17;4754:31;4779:5;4754:31;:::i;:::-;4798:18;;4684:1;4677:9;;;;;4836:12;;;;4868;;4652:238;;;-1:-1:-1;4909:5:16;-1:-1:-1;;4952:18:16;;4939:32;;-1:-1:-1;;4983:16:16;;;4980:36;;;5012:1;5009;5002:12;4980:36;;5035:63;5090:7;5079:8;5068:9;5064:24;5035:63;:::i;:::-;5025:73;;;3878:1226;;;;;:::o;5109:245::-;5176:6;5229:2;5217:9;5208:7;5204:23;5200:32;5197:52;;;5245:1;5242;5235:12;5197:52;5277:9;5271:16;5296:28;5318:5;5296:28;:::i;5359:245::-;5417:6;5470:2;5458:9;5449:7;5445:23;5441:32;5438:52;;;5486:1;5483;5476:12;5438:52;5525:9;5512:23;5544:30;5568:5;5544:30;:::i;5609:249::-;5678:6;5731:2;5719:9;5710:7;5706:23;5702:32;5699:52;;;5747:1;5744;5737:12;5699:52;5779:9;5773:16;5798:30;5822:5;5798:30;:::i;6536:592::-;6607:6;6615;6668:2;6656:9;6647:7;6643:23;6639:32;6636:52;;;6684:1;6681;6674:12;6636:52;6724:9;6711:23;6753:18;6794:2;6786:6;6783:14;6780:34;;;6810:1;6807;6800:12;6780:34;6848:6;6837:9;6833:22;6823:32;;6893:7;6886:4;6882:2;6878:13;6874:27;6864:55;;6915:1;6912;6905:12;6864:55;6955:2;6942:16;6981:2;6973:6;6970:14;6967:34;;;6997:1;6994;6987:12;6967:34;7042:7;7037:2;7028:6;7024:2;7020:15;7016:24;7013:37;7010:57;;;7063:1;7060;7053:12;7010:57;7094:2;7086:11;;;;;7116:6;;-1:-1:-1;6536:592:16;;-1:-1:-1;;;;6536:592:16:o;7133:301::-;7192:6;7245:2;7233:9;7224:7;7220:23;7216:32;7213:52;;;7261:1;7258;7251:12;7213:52;7300:9;7287:23;-1:-1:-1;;;;;7343:5:16;7339:46;7332:5;7329:57;7319:85;;7400:1;7397;7390:12;7439:180;7498:6;7551:2;7539:9;7530:7;7526:23;7522:32;7519:52;;;7567:1;7564;7557:12;7519:52;-1:-1:-1;7590:23:16;;7439:180;-1:-1:-1;7439:180:16:o;7624:184::-;7694:6;7747:2;7735:9;7726:7;7722:23;7718:32;7715:52;;;7763:1;7760;7753:12;7715:52;-1:-1:-1;7786:16:16;;7624:184;-1:-1:-1;7624:184:16:o;7813:257::-;7854:3;7892:5;7886:12;7919:6;7914:3;7907:19;7935:63;7991:6;7984:4;7979:3;7975:14;7968:4;7961:5;7957:16;7935:63;:::i;:::-;8052:2;8031:15;-1:-1:-1;;8027:29:16;8018:39;;;;8059:4;8014:50;;7813:257;-1:-1:-1;;7813:257:16:o;8075:274::-;8204:3;8242:6;8236:13;8258:53;8304:6;8299:3;8292:4;8284:6;8280:17;8258:53;:::i;:::-;8327:16;;;;;8075:274;-1:-1:-1;;8075:274:16:o;8354:470::-;8533:3;8571:6;8565:13;8587:53;8633:6;8628:3;8621:4;8613:6;8609:17;8587:53;:::i;:::-;8703:13;;8662:16;;;;8725:57;8703:13;8662:16;8759:4;8747:17;;8725:57;:::i;:::-;8798:20;;8354:470;-1:-1:-1;;;;8354:470:16:o;9580:511::-;9774:4;-1:-1:-1;;;;;9884:2:16;9876:6;9872:15;9861:9;9854:34;9936:2;9928:6;9924:15;9919:2;9908:9;9904:18;9897:43;;9976:6;9971:2;9960:9;9956:18;9949:34;10019:3;10014:2;10003:9;9999:18;9992:31;10040:45;10080:3;10069:9;10065:19;10057:6;10040:45;:::i;:::-;10032:53;9580:511;-1:-1:-1;;;;;;9580:511:16:o;10590:219::-;10739:2;10728:9;10721:21;10702:4;10759:44;10799:2;10788:9;10784:18;10776:6;10759:44;:::i;25666:275::-;25737:2;25731:9;25802:2;25783:13;;-1:-1:-1;;25779:27:16;25767:40;;25837:18;25822:34;;25858:22;;;25819:62;25816:88;;;25884:18;;:::i;:::-;25920:2;25913:22;25666:275;;-1:-1:-1;25666:275:16:o;25946:183::-;26006:4;26039:18;26031:6;26028:30;26025:56;;;26061:18;;:::i;:::-;-1:-1:-1;26106:1:16;26102:14;26118:4;26098:25;;25946:183::o;26134:253::-;26174:3;-1:-1:-1;;;;;26263:2:16;26260:1;26256:10;26293:2;26290:1;26286:10;26324:3;26320:2;26316:12;26311:3;26308:21;26305:47;;;26332:18;;:::i;26392:128::-;26432:3;26463:1;26459:6;26456:1;26453:13;26450:39;;;26469:18;;:::i;:::-;-1:-1:-1;26505:9:16;;26392:128::o;26525:120::-;26565:1;26591;26581:35;;26596:18;;:::i;:::-;-1:-1:-1;26630:9:16;;26525:120::o;26650:168::-;26690:7;26756:1;26752;26748:6;26744:14;26741:1;26738:21;26733:1;26726:9;26719:17;26715:45;26712:71;;;26763:18;;:::i;:::-;-1:-1:-1;26803:9:16;;26650:168::o;26823:125::-;26863:4;26891:1;26888;26885:8;26882:34;;;26896:18;;:::i;:::-;-1:-1:-1;26933:9:16;;26823:125::o;26953:258::-;27025:1;27035:113;27049:6;27046:1;27043:13;27035:113;;;27125:11;;;27119:18;27106:11;;;27099:39;27071:2;27064:10;27035:113;;;27166:6;27163:1;27160:13;27157:48;;;-1:-1:-1;;27201:1:16;27183:16;;27176:27;26953:258::o;27216:136::-;27255:3;27283:5;27273:39;;27292:18;;:::i;:::-;-1:-1:-1;;;27328:18:16;;27216:136::o;27357:380::-;27436:1;27432:12;;;;27479;;;27500:61;;27554:4;27546:6;27542:17;27532:27;;27500:61;27607:2;27599:6;27596:14;27576:18;27573:38;27570:161;;;27653:10;27648:3;27644:20;27641:1;27634:31;27688:4;27685:1;27678:15;27716:4;27713:1;27706:15;27570:161;;27357:380;;;:::o;27742:135::-;27781:3;-1:-1:-1;;27802:17:16;;27799:43;;;27822:18;;:::i;:::-;-1:-1:-1;27869:1:16;27858:13;;27742:135::o;27882:112::-;27914:1;27940;27930:35;;27945:18;;:::i;:::-;-1:-1:-1;27979:9:16;;27882:112::o;27999:127::-;28060:10;28055:3;28051:20;28048:1;28041:31;28091:4;28088:1;28081:15;28115:4;28112:1;28105:15;28131:127;28192:10;28187:3;28183:20;28180:1;28173:31;28223:4;28220:1;28213:15;28247:4;28244:1;28237:15;28263:127;28324:10;28319:3;28315:20;28312:1;28305:31;28355:4;28352:1;28345:15;28379:4;28376:1;28369:15;28395:127;28456:10;28451:3;28447:20;28444:1;28437:31;28487:4;28484:1;28477:15;28511:4;28508:1;28501:15;28527:154;-1:-1:-1;;;;;28606:5:16;28602:54;28595:5;28592:65;28582:93;;28671:1;28668;28661:12;28686:118;28772:5;28765:13;28758:21;28751:5;28748:32;28738:60;;28794:1;28791;28784:12;28809:131;-1:-1:-1;;;;;;28883:32:16;;28873:43;;28863:71;;28930:1;28927;28920:12
Swarm Source
ipfs://b3e03c863cf87167cb6911cc34c93fea9f2486240a633527a0a2080ddf134175
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.