Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 26 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Set Approval For... | 16776033 | 703 days ago | IN | 0 ETH | 0.00106435 | ||||
Safe Transfer Fr... | 16641410 | 722 days ago | IN | 0 ETH | 0.00207627 | ||||
Safe Transfer Fr... | 16388883 | 758 days ago | IN | 0 ETH | 0.00113431 | ||||
Release | 16270993 | 774 days ago | IN | 0 ETH | 0.00070469 | ||||
Release | 16270991 | 774 days ago | IN | 0 ETH | 0.00065817 | ||||
Set Approval For... | 16253529 | 777 days ago | IN | 0 ETH | 0.00052376 | ||||
Release | 16221827 | 781 days ago | IN | 0 ETH | 0.00098325 | ||||
Release | 16221824 | 781 days ago | IN | 0 ETH | 0.00145676 | ||||
Mint | 16194637 | 785 days ago | IN | 0.5 ETH | 0.00130722 | ||||
Mint | 16190014 | 785 days ago | IN | 1 ETH | 0.00130669 | ||||
Mint | 16184262 | 786 days ago | IN | 0.5 ETH | 0.00134895 | ||||
Mint | 16178121 | 787 days ago | IN | 0.5 ETH | 0.00120869 | ||||
Mint | 16155313 | 790 days ago | IN | 0.5 ETH | 0.00136793 | ||||
Release | 16146965 | 791 days ago | IN | 0 ETH | 0.00110684 | ||||
Release | 16146953 | 791 days ago | IN | 0 ETH | 0.00115888 | ||||
Release | 16146707 | 791 days ago | IN | 0 ETH | 0.00139822 | ||||
Mint | 16145876 | 792 days ago | IN | 0.5 ETH | 0.00206556 | ||||
Mint | 16145875 | 792 days ago | IN | 0.5 ETH | 0.00261777 | ||||
Set Base URI | 16134820 | 793 days ago | IN | 0 ETH | 0.00093829 | ||||
Safe Transfer Fr... | 16133985 | 793 days ago | IN | 0 ETH | 0.00106062 | ||||
Transfer Ownersh... | 16133969 | 793 days ago | IN | 0 ETH | 0.00047766 | ||||
Set Cost | 16133959 | 793 days ago | IN | 0 ETH | 0.00070027 | ||||
Mint | 16133954 | 793 days ago | IN | 0 ETH | 0.00120196 | ||||
Set Cost | 16133952 | 793 days ago | IN | 0 ETH | 0.00036958 | ||||
Set Base URI | 16133949 | 793 days ago | IN | 0 ETH | 0.00143793 |
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
WildVerseNFT
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-10-17 */ // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC20/extensions/draft-IERC20Permit.sol // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/draft-IERC20Permit.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612]. * * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't * need to send a transaction, and thus is not required to hold Ether at all. */ interface IERC20Permit { /** * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens, * given ``owner``'s signed approval. * * IMPORTANT: The same issues {IERC20-approve} has related to transaction * ordering also apply here. * * Emits an {Approval} event. * * Requirements: * * - `spender` cannot be the zero address. * - `deadline` must be a timestamp in the future. * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner` * over the EIP712-formatted function arguments. * - the signature must use ``owner``'s current nonce (see {nonces}). * * For more information on the signature format, see the * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP * section]. */ function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; /** * @dev Returns the current nonce for `owner`. This value must be * included whenever a signature is generated for {permit}. * * Every successful call to {permit} increases ``owner``'s nonce by one. This * prevents a signature from being used multiple times. */ function nonces(address owner) external view returns (uint256); /** * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}. */ // solhint-disable-next-line func-name-mixedcase function DOMAIN_SEPARATOR() external view returns (bytes32); } // File: @openzeppelin/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @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); /** * @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 `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, 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 `from` to `to` 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 from, address to, uint256 amount ) external returns (bool); } // File: @openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/utils/SafeERC20.sol) pragma solidity ^0.8.0; /** * @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)); } } function safePermit( IERC20Permit token, address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) internal { uint256 nonceBefore = token.nonces(owner); token.permit(owner, spender, value, deadline, v, r, s); uint256 nonceAfter = token.nonces(owner); require(nonceAfter == nonceBefore + 1, "SafeERC20: permit did not succeed"); } /** * @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"); } } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts (last updated v4.7.0) (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; uint8 private constant _ADDRESS_LENGTH = 20; /** * @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); } /** * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal representation. */ function toHexString(address addr) internal pure returns (string memory) { return toHexString(uint256(uint160(addr)), _ADDRESS_LENGTH); } } // File: @openzeppelin/contracts/utils/Context.sol // 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; } } // File: @openzeppelin/contracts/finance/PaymentSplitter.sol // OpenZeppelin Contracts (last updated v4.7.0) (finance/PaymentSplitter.sol) pragma solidity ^0.8.0; /** * @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. The distribution of shares is set at the * time of contract deployment and can't be updated thereafter. * * `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 Getter for the amount of payee's releasable Ether. */ function releasable(address account) public view returns (uint256) { uint256 totalReceived = address(this).balance + totalReleased(); return _pendingPayment(account, totalReceived, released(account)); } /** * @dev Getter for the amount of payee's releasable `token` tokens. `token` should be the address of an * IERC20 contract. */ function releasable(IERC20 token, address account) public view returns (uint256) { uint256 totalReceived = token.balanceOf(address(this)) + totalReleased(token); return _pendingPayment(account, totalReceived, released(token, account)); } /** * @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 payment = releasable(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 payment = releasable(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_); } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { 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); } } // File: erc721a/contracts/IERC721A.sol // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721A. */ interface IERC721A { /** * The caller must own the token or be an approved operator. */ error ApprovalCallerNotOwnerNorApproved(); /** * The token does not exist. */ error ApprovalQueryForNonexistentToken(); /** * Cannot query the balance for the zero address. */ error BalanceQueryForZeroAddress(); /** * Cannot mint to the zero address. */ error MintToZeroAddress(); /** * The quantity of tokens minted must be more than zero. */ error MintZeroQuantity(); /** * The token does not exist. */ error OwnerQueryForNonexistentToken(); /** * The caller must own the token or be an approved operator. */ error TransferCallerNotOwnerNorApproved(); /** * The token must be owned by `from`. */ error TransferFromIncorrectOwner(); /** * Cannot safely transfer to a contract that does not implement the * ERC721Receiver interface. */ error TransferToNonERC721ReceiverImplementer(); /** * Cannot transfer to the zero address. */ error TransferToZeroAddress(); /** * The token does not exist. */ error URIQueryForNonexistentToken(); /** * The `quantity` minted with ERC2309 exceeds the safety limit. */ error MintERC2309QuantityExceedsLimit(); /** * The `extraData` cannot be set on an unintialized ownership slot. */ error OwnershipNotInitializedForExtraData(); // ============================================================= // STRUCTS // ============================================================= struct TokenOwnership { // The address of the owner. address addr; // Stores the start time of ownership with minimal overhead for tokenomics. uint64 startTimestamp; // Whether the token has been burned. bool burned; // Arbitrary data similar to `startTimestamp` that can be set via {_extraData}. uint24 extraData; } // ============================================================= // TOKEN COUNTERS // ============================================================= /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() external view returns (uint256); // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); // ============================================================= // IERC721 // ============================================================= /** * @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, bytes calldata data ) external payable; /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external payable; /** * @dev Transfers `tokenId` 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 payable; /** * @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 payable; /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} * for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) external view returns (bool); // ============================================================= // IERC721Metadata // ============================================================= /** * @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); // ============================================================= // IERC2309 // ============================================================= /** * @dev Emitted when tokens in `fromTokenId` to `toTokenId` * (inclusive) is transferred from `from` to `to`, as defined in the * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard. * * See {_mintERC2309} for more details. */ event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to); } // File: erc721a/contracts/ERC721A.sol // ERC721A Contracts v4.2.3 // Creator: Chiru Labs pragma solidity ^0.8.4; /** * @dev Interface of ERC721 token receiver. */ interface ERC721A__IERC721Receiver { function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } /** * @title ERC721A * * @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721) * Non-Fungible Token Standard, including the Metadata extension. * Optimized for lower gas during batch mints. * * Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...) * starting from `_startTokenId()`. * * Assumptions: * * - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply. * - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256). */ contract ERC721A is IERC721A { // Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364). struct TokenApprovalRef { address value; } // ============================================================= // CONSTANTS // ============================================================= // Mask of an entry in packed address data. uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1; // The bit position of `numberMinted` in packed address data. uint256 private constant _BITPOS_NUMBER_MINTED = 64; // The bit position of `numberBurned` in packed address data. uint256 private constant _BITPOS_NUMBER_BURNED = 128; // The bit position of `aux` in packed address data. uint256 private constant _BITPOS_AUX = 192; // Mask of all 256 bits in packed address data except the 64 bits for `aux`. uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1; // The bit position of `startTimestamp` in packed ownership. uint256 private constant _BITPOS_START_TIMESTAMP = 160; // The bit mask of the `burned` bit in packed ownership. uint256 private constant _BITMASK_BURNED = 1 << 224; // The bit position of the `nextInitialized` bit in packed ownership. uint256 private constant _BITPOS_NEXT_INITIALIZED = 225; // The bit mask of the `nextInitialized` bit in packed ownership. uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225; // The bit position of `extraData` in packed ownership. uint256 private constant _BITPOS_EXTRA_DATA = 232; // Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`. uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1; // The mask of the lower 160 bits for addresses. uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1; // The maximum `quantity` that can be minted with {_mintERC2309}. // This limit is to prevent overflows on the address data entries. // For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309} // is required to cause an overflow, which is unrealistic. uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000; // The `Transfer` event signature is given by: // `keccak256(bytes("Transfer(address,address,uint256)"))`. bytes32 private constant _TRANSFER_EVENT_SIGNATURE = 0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef; // ============================================================= // STORAGE // ============================================================= // The next token ID to be minted. uint256 private _currentIndex; // The number of tokens burned. uint256 private _burnCounter; // 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 {_packedOwnershipOf} implementation for details. // // Bits Layout: // - [0..159] `addr` // - [160..223] `startTimestamp` // - [224] `burned` // - [225] `nextInitialized` // - [232..255] `extraData` mapping(uint256 => uint256) private _packedOwnerships; // Mapping owner address to address data. // // Bits Layout: // - [0..63] `balance` // - [64..127] `numberMinted` // - [128..191] `numberBurned` // - [192..255] `aux` mapping(address => uint256) private _packedAddressData; // Mapping from token ID to approved address. mapping(uint256 => TokenApprovalRef) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; // ============================================================= // CONSTRUCTOR // ============================================================= constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; _currentIndex = _startTokenId(); } // ============================================================= // TOKEN COUNTING OPERATIONS // ============================================================= /** * @dev Returns the starting token ID. * To change the starting token ID, please override this function. */ function _startTokenId() internal view virtual returns (uint256) { return 0; } /** * @dev Returns the next token ID to be minted. */ function _nextTokenId() internal view virtual returns (uint256) { return _currentIndex; } /** * @dev Returns the total number of tokens in existence. * Burned tokens will reduce the count. * To get the total number of tokens minted, please see {_totalMinted}. */ function totalSupply() public view virtual override returns (uint256) { // Counter underflow is impossible as _burnCounter cannot be incremented // more than `_currentIndex - _startTokenId()` times. unchecked { return _currentIndex - _burnCounter - _startTokenId(); } } /** * @dev Returns the total amount of tokens minted in the contract. */ function _totalMinted() internal view virtual returns (uint256) { // Counter underflow is impossible as `_currentIndex` does not decrement, // and it is initialized to `_startTokenId()`. unchecked { return _currentIndex - _startTokenId(); } } /** * @dev Returns the total number of tokens burned. */ function _totalBurned() internal view virtual returns (uint256) { return _burnCounter; } // ============================================================= // ADDRESS DATA OPERATIONS // ============================================================= /** * @dev Returns the number of tokens in `owner`'s account. */ function balanceOf(address owner) public view virtual override returns (uint256) { if (owner == address(0)) revert BalanceQueryForZeroAddress(); return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens minted by `owner`. */ function _numberMinted(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the number of tokens burned by or on behalf of `owner`. */ function _numberBurned(address owner) internal view returns (uint256) { return (_packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) & _BITMASK_ADDRESS_DATA_ENTRY; } /** * Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). */ function _getAux(address owner) internal view returns (uint64) { return uint64(_packedAddressData[owner] >> _BITPOS_AUX); } /** * Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used). * If there are multiple variables, please pack them into a uint64. */ function _setAux(address owner, uint64 aux) internal virtual { uint256 packed = _packedAddressData[owner]; uint256 auxCasted; // Cast `aux` with assembly to avoid redundant masking. assembly { auxCasted := aux } packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX); _packedAddressData[owner] = packed; } // ============================================================= // IERC165 // ============================================================= /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified) * to learn more about how these ids are created. * * This function call must use less than 30000 gas. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { // The interface IDs are constants representing the first 4 bytes // of the XOR of all function selectors in the interface. // See: [ERC165](https://eips.ethereum.org/EIPS/eip-165) // (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`) return interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165. interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721. interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata. } // ============================================================= // IERC721Metadata // ============================================================= /** * @dev Returns the token collection name. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the token collection symbol. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { if (!_exists(tokenId)) revert URIQueryForNonexistentToken(); string memory baseURI = _baseURI(); return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : ''; } /** * @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, it can be overridden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ''; } // ============================================================= // OWNERSHIPS OPERATIONS // ============================================================= /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { return address(uint160(_packedOwnershipOf(tokenId))); } /** * @dev Gas spent here starts off proportional to the maximum mint batch size. * It gradually moves to O(1) as tokens get transferred around over time. */ function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnershipOf(tokenId)); } /** * @dev Returns the unpacked `TokenOwnership` struct at `index`. */ function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) { return _unpackedOwnership(_packedOwnerships[index]); } /** * @dev Initializes the ownership slot minted at `index` for efficiency purposes. */ function _initializeOwnershipAt(uint256 index) internal virtual { if (_packedOwnerships[index] == 0) { _packedOwnerships[index] = _packedOwnershipOf(index); } } /** * Returns the packed ownership data of `tokenId`. */ function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) { uint256 curr = tokenId; unchecked { if (_startTokenId() <= curr) if (curr < _currentIndex) { uint256 packed = _packedOwnerships[curr]; // If not burned. if (packed & _BITMASK_BURNED == 0) { // Invariant: // There will always be an initialized ownership slot // (i.e. `ownership.addr != address(0) && ownership.burned == false`) // before an unintialized ownership slot // (i.e. `ownership.addr == address(0) && ownership.burned == false`) // Hence, `curr` will not underflow. // // We can directly compare the packed value. // If the address is zero, packed will be zero. while (packed == 0) { packed = _packedOwnerships[--curr]; } return packed; } } } revert OwnerQueryForNonexistentToken(); } /** * @dev Returns the unpacked `TokenOwnership` struct from `packed`. */ function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) { ownership.addr = address(uint160(packed)); ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP); ownership.burned = packed & _BITMASK_BURNED != 0; ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA); } /** * @dev Packs ownership data into a single uint256. */ function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`. result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags)) } } /** * @dev Returns the `nextInitialized` flag set if `quantity` equals 1. */ function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) { // For branchless setting of the `nextInitialized` flag. assembly { // `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`. result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1)) } } // ============================================================= // APPROVAL OPERATIONS // ============================================================= /** * @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) public payable virtual override { address owner = ownerOf(tokenId); if (_msgSenderERC721A() != owner) if (!isApprovedForAll(owner, _msgSenderERC721A())) { revert ApprovalCallerNotOwnerNorApproved(); } _tokenApprovals[tokenId].value = to; emit Approval(owner, to, tokenId); } /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken(); return _tokenApprovals[tokenId].value; } /** * @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) public virtual override { _operatorApprovals[_msgSenderERC721A()][operator] = approved; emit ApprovalForAll(_msgSenderERC721A(), operator, approved); } /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @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. See {_mint}. */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _startTokenId() <= tokenId && tokenId < _currentIndex && // If within bounds, _packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned. } /** * @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`. */ function _isSenderApprovedOrOwner( address approvedAddress, address owner, address msgSender ) private pure returns (bool result) { assembly { // Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean. owner := and(owner, _BITMASK_ADDRESS) // Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean. msgSender := and(msgSender, _BITMASK_ADDRESS) // `msgSender == owner || msgSender == approvedAddress`. result := or(eq(msgSender, owner), eq(msgSender, approvedAddress)) } } /** * @dev Returns the storage slot and value for the approved address of `tokenId`. */ function _getApprovedSlotAndAddress(uint256 tokenId) private view returns (uint256 approvedAddressSlot, address approvedAddress) { TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId]; // The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`. assembly { approvedAddressSlot := tokenApproval.slot approvedAddress := sload(approvedAddressSlot) } } // ============================================================= // TRANSFER OPERATIONS // ============================================================= /** * @dev Transfers `tokenId` from `from` to `to`. * * 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 ) public payable virtual override { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner(); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); if (to == address(0)) revert TransferToZeroAddress(); _beforeTokenTransfers(from, to, tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // We can directly increment and decrement the balances. --_packedAddressData[from]; // Updates: `balance -= 1`. ++_packedAddressData[to]; // Updates: `balance += 1`. // Updates: // - `address` to the next owner. // - `startTimestamp` to the timestamp of transfering. // - `burned` to `false`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( to, _BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, to, tokenId); _afterTokenTransfers(from, to, tokenId, 1); } /** * @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public payable virtual override { safeTransferFrom(from, to, tokenId, ''); } /** * @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 memory _data ) public payable virtual override { transferFrom(from, to, tokenId); if (to.code.length != 0) if (!_checkContractOnERC721Received(from, to, tokenId, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } /** * @dev Hook that is called before a set of serially-ordered token IDs * are about to be transferred. This includes minting. * And also called before burning one token. * * `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`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ 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. * And also called after one token has been burned. * * `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` has been * transferred to `to`. * - When `from` is zero, `tokenId` has been minted for `to`. * - When `to` is zero, `tokenId` has been burned by `from`. * - `from` and `to` are never both zero. */ function _afterTokenTransfers( address from, address to, uint256 startTokenId, uint256 quantity ) internal virtual {} /** * @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract. * * `from` - Previous owner of the given token ID. * `to` - Target address that will receive the token. * `tokenId` - Token ID to be transferred. * `_data` - Optional data to send along with the call. * * Returns whether the call correctly returned the expected magic value. */ function _checkContractOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns ( bytes4 retval ) { return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert TransferToNonERC721ReceiverImplementer(); } else { assembly { revert(add(32, reason), mload(reason)) } } } } // ============================================================= // MINT OPERATIONS // ============================================================= /** * @dev Mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {Transfer} event for each mint. */ function _mint(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (quantity == 0) revert MintZeroQuantity(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are incredibly unrealistic. // `balance` and `numberMinted` have a maximum limit of 2**64. // `tokenId` has a maximum limit of 2**256. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); uint256 toMasked; uint256 end = startTokenId + quantity; // Use assembly to loop and emit the `Transfer` event for gas savings. // The duplicated `log4` removes an extra check and reduces stack juggling. // The assembly, together with the surrounding Solidity code, have been // delicately arranged to nudge the compiler into producing optimized opcodes. assembly { // Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean. toMasked := and(to, _BITMASK_ADDRESS) // Emit the `Transfer` event. log4( 0, // Start of data (0, since no data). 0, // End of data (0, since no data). _TRANSFER_EVENT_SIGNATURE, // Signature. 0, // `address(0)`. toMasked, // `to`. startTokenId // `tokenId`. ) // The `iszero(eq(,))` check ensures that large values of `quantity` // that overflows uint256 will make the loop run out of gas. // The compiler will optimize the `iszero` away for performance. for { let tokenId := add(startTokenId, 1) } iszero(eq(tokenId, end)) { tokenId := add(tokenId, 1) } { // Emit the `Transfer` event. Similar to above. log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId) } } if (toMasked == 0) revert MintToZeroAddress(); _currentIndex = end; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Mints `quantity` tokens and transfers them to `to`. * * This function is intended for efficient minting only during contract creation. * * It emits only one {ConsecutiveTransfer} as defined in * [ERC2309](https://eips.ethereum.org/EIPS/eip-2309), * instead of a sequence of {Transfer} event(s). * * Calling this function outside of contract creation WILL make your contract * non-compliant with the ERC721 standard. * For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309 * {ConsecutiveTransfer} event is only permissible during contract creation. * * Requirements: * * - `to` cannot be the zero address. * - `quantity` must be greater than 0. * * Emits a {ConsecutiveTransfer} event. */ function _mintERC2309(address to, uint256 quantity) internal virtual { uint256 startTokenId = _currentIndex; if (to == address(0)) revert MintToZeroAddress(); if (quantity == 0) revert MintZeroQuantity(); if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit(); _beforeTokenTransfers(address(0), to, startTokenId, quantity); // Overflows are unrealistic due to the above check for `quantity` to be below the limit. unchecked { // Updates: // - `balance += quantity`. // - `numberMinted += quantity`. // // We can directly add to the `balance` and `numberMinted`. _packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1); // Updates: // - `address` to the owner. // - `startTimestamp` to the timestamp of minting. // - `burned` to `false`. // - `nextInitialized` to `quantity == 1`. _packedOwnerships[startTokenId] = _packOwnershipData( to, _nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0) ); emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to); _currentIndex = startTokenId + quantity; } _afterTokenTransfers(address(0), to, startTokenId, quantity); } /** * @dev Safely mints `quantity` tokens and transfers them to `to`. * * Requirements: * * - If `to` refers to a smart contract, it must implement * {IERC721Receiver-onERC721Received}, which is called for each safe transfer. * - `quantity` must be greater than 0. * * See {_mint}. * * Emits a {Transfer} event for each mint. */ function _safeMint( address to, uint256 quantity, bytes memory _data ) internal virtual { _mint(to, quantity); unchecked { if (to.code.length != 0) { uint256 end = _currentIndex; uint256 index = end - quantity; do { if (!_checkContractOnERC721Received(address(0), to, index++, _data)) { revert TransferToNonERC721ReceiverImplementer(); } } while (index < end); // Reentrancy protection. if (_currentIndex != end) revert(); } } } /** * @dev Equivalent to `_safeMint(to, quantity, '')`. */ function _safeMint(address to, uint256 quantity) internal virtual { _safeMint(to, quantity, ''); } // ============================================================= // BURN OPERATIONS // ============================================================= /** * @dev Equivalent to `_burn(tokenId, false)`. */ function _burn(uint256 tokenId) internal virtual { _burn(tokenId, false); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId, bool approvalCheck) internal virtual { uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId); address from = address(uint160(prevOwnershipPacked)); (uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId); if (approvalCheck) { // The nested ifs save around 20+ gas over a compound boolean condition. if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A())) if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved(); } _beforeTokenTransfers(from, address(0), tokenId, 1); // Clear approvals from the previous owner. assembly { if approvedAddress { // This is equivalent to `delete _tokenApprovals[tokenId]`. sstore(approvedAddressSlot, 0) } } // Underflow of the sender's balance is impossible because we check for // ownership above and the recipient's balance can't realistically overflow. // Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256. unchecked { // Updates: // - `balance -= 1`. // - `numberBurned += 1`. // // We can directly decrement the balance, and increment the number burned. // This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`. _packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1; // Updates: // - `address` to the last owner. // - `startTimestamp` to the timestamp of burning. // - `burned` to `true`. // - `nextInitialized` to `true`. _packedOwnerships[tokenId] = _packOwnershipData( from, (_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked) ); // If the next slot may not have been initialized (i.e. `nextInitialized == false`) . if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) { uint256 nextTokenId = tokenId + 1; // If the next slot's address is zero and not burned (i.e. packed value is zero). if (_packedOwnerships[nextTokenId] == 0) { // If the next slot is within bounds. if (nextTokenId != _currentIndex) { // Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`. _packedOwnerships[nextTokenId] = prevOwnershipPacked; } } } } emit Transfer(from, address(0), tokenId); _afterTokenTransfers(from, address(0), tokenId, 1); // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times. unchecked { _burnCounter++; } } // ============================================================= // EXTRA DATA OPERATIONS // ============================================================= /** * @dev Directly sets the extra data for the ownership data `index`. */ function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual { uint256 packed = _packedOwnerships[index]; if (packed == 0) revert OwnershipNotInitializedForExtraData(); uint256 extraDataCasted; // Cast `extraData` with assembly to avoid redundant masking. assembly { extraDataCasted := extraData } packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA); _packedOwnerships[index] = packed; } /** * @dev Called during each token transfer to set the 24bit `extraData` field. * Intended to be overridden by the cosumer contract. * * `previousExtraData` - the value of `extraData` before transfer. * * 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`. * - When `to` is zero, `tokenId` will be burned by `from`. * - `from` and `to` are never both zero. */ function _extraData( address from, address to, uint24 previousExtraData ) internal view virtual returns (uint24) {} /** * @dev Returns the next extra data for the packed ownership data. * The returned result is shifted into position. */ function _nextExtraData( address from, address to, uint256 prevOwnershipPacked ) private view returns (uint256) { uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA); return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA; } // ============================================================= // OTHER OPERATIONS // ============================================================= /** * @dev Returns the message sender (defaults to `msg.sender`). * * If you are writing GSN compatible contracts, you need to override this function. */ function _msgSenderERC721A() internal view virtual returns (address) { return msg.sender; } /** * @dev Converts a uint256 to its ASCII string decimal representation. */ function _toString(uint256 value) internal pure virtual returns (string memory str) { assembly { // The maximum value of a uint256 contains 78 digits (1 byte per digit), but // we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned. // We will need 1 word for the trailing zeros padding, 1 word for the length, // and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0. let m := add(mload(0x40), 0xa0) // Update the free memory pointer to allocate. mstore(0x40, m) // Assign the `str` to the end. str := sub(m, 0x20) // Zeroize the slot after the string. mstore(str, 0) // Cache the end of the memory to calculate the length later. let end := str // We write the string from rightmost digit to leftmost digit. // The following is essentially a do-while loop that also handles the zero case. // prettier-ignore for { let temp := value } 1 {} { str := sub(str, 1) // Write the character to the pointer. // The ASCII index of the '0' character is 48. mstore8(str, add(48, mod(temp, 10))) // Keep dividing `temp` until zero. temp := div(temp, 10) // prettier-ignore if iszero(temp) { break } } let length := sub(end, str) // Move the pointer 32 bytes leftwards to make room for the length. str := sub(str, 0x20) // Store the length. mstore(str, length) } } } // File: contracts/WildVerse.sol pragma solidity >=0.8.0; /** * @dev contract module which defines Cannaverse NFT Collection * and all the interactions it uses */ contract WildVerseNFT is ERC721A, Ownable, PaymentSplitter { // using Strings for uint256; //@dev Attributes for NFT configuration string internal baseURI; uint256 public cost = 0.5 ether; uint256 public maxSupply = 150; uint256 public maxMintAmount = 10; mapping(uint256 => string) private _tokenURIs; function _startTokenId() internal view virtual override returns (uint256) { return 1; } /** * @dev Create an instance of Couch Heroes contract */ constructor(address[] memory _payees, uint256[] memory _shares) ERC721A("Wildverse NFT", "WV") PaymentSplitter(_payees, _shares) {} /** * @dev get base URI for NFT metadata */ function _baseURI() internal view virtual override returns (string memory) { return baseURI; } /** * @dev Mint edition to a wallet * @param _to wallet receiving the edition(s). * @param _mintAmount number of editions to mint. */ function mint(address _to, uint256 _mintAmount) public payable { uint256 supply = totalSupply(); require( supply + _mintAmount <= maxSupply, "Not enough mintable editions !" ); require(msg.value == cost * _mintAmount, "Incorrect ETH value"); _safeMint(_to, _mintAmount); } /** * @dev change cost of NFT * @param _newCost new cost of each edition */ function setCost(uint256 _newCost) external onlyOwner { cost = _newCost; } /** * @dev restrict max mintable amount of edition at a time * @param _newmaxMintAmount new max mintable amount */ function setmaxMintAmount(uint256 _newmaxMintAmount) external onlyOwner { maxMintAmount = _newmaxMintAmount; } /** * @dev change metadata uri * @param _newBaseURI new URI for metadata */ function setBaseURI(string memory _newBaseURI) external onlyOwner { baseURI = _newBaseURI; } /** * @dev Get token URI * @param tokenId ID of the token to retrieve */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "URI query for nonexistent token"); if (bytes(_tokenURIs[tokenId]).length == 0) { string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string( abi.encodePacked( currentBaseURI, Strings.toString(tokenId), ".json" ) ) : ""; } else return _tokenURIs[tokenId]; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address[]","name":"_payees","type":"address[]"},{"internalType":"uint256[]","name":"_shares","type":"uint256[]"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"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":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","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":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"payee","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"releasable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"address","name":"account","type":"address"}],"name":"releasable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"payable","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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMintAmount","type":"uint256"}],"name":"setmaxMintAmount","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":"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":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60806040526706f05b59d3b200006011556096601255600a6013553480156200002757600080fd5b5060405162004bf738038062004bf783398181016040528101906200004d919062000778565b81816040518060400160405280600d81526020017f57696c647665727365204e4654000000000000000000000000000000000000008152506040518060400160405280600281526020017f57560000000000000000000000000000000000000000000000000000000000008152508160029080519060200190620000d39291906200053e565b508060039080519060200190620000ec9291906200053e565b50620000fd6200022d60201b60201c565b600081905550505062000125620001196200023660201b60201c565b6200023e60201b60201c565b80518251146200016c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001639062000931565b60405180910390fd5b6000825111620001b3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001aa9062000975565b60405180910390fd5b60005b825181101562000222576200020c838281518110620001da57620001d962000c04565b5b6020026020010151838381518110620001f857620001f762000c04565b5b60200260200101516200030460201b60201c565b8080620002199062000b58565b915050620001b6565b505050505062000dfa565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000377576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200036e906200090f565b60405180910390fd5b60008111620003bd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003b49062000997565b60405180910390fd5b6000600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541462000442576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004399062000953565b60405180910390fd5b600d829080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600b60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080600954620004f9919062000a51565b6009819055507f40c340f65e17194d14ddddb073d3c9f888e3cb52b5aae0c6c7706b4fbc905fac828260405162000532929190620008e2565b60405180910390a15050565b8280546200054c9062000aec565b90600052602060002090601f016020900481019282620005705760008555620005bc565b82601f106200058b57805160ff1916838001178555620005bc565b82800160010185558215620005bc579182015b82811115620005bb5782518255916020019190600101906200059e565b5b509050620005cb9190620005cf565b5090565b5b80821115620005ea576000816000905550600101620005d0565b5090565b600062000605620005ff84620009e2565b620009b9565b905080838252602082019050828560208602820111156200062b576200062a62000c67565b5b60005b858110156200065f5781620006448882620006e4565b8452602084019350602083019250506001810190506200062e565b5050509392505050565b6000620006806200067a8462000a11565b620009b9565b90508083825260208201905082856020860282011115620006a657620006a562000c67565b5b60005b85811015620006da5781620006bf888262000761565b845260208401935060208301925050600181019050620006a9565b5050509392505050565b600081519050620006f58162000dc6565b92915050565b600082601f83011262000713576200071262000c62565b5b815162000725848260208601620005ee565b91505092915050565b600082601f83011262000746576200074562000c62565b5b81516200075884826020860162000669565b91505092915050565b600081519050620007728162000de0565b92915050565b6000806040838503121562000792576200079162000c71565b5b600083015167ffffffffffffffff811115620007b357620007b262000c6c565b5b620007c185828601620006fb565b925050602083015167ffffffffffffffff811115620007e557620007e462000c6c565b5b620007f3858286016200072e565b9150509250929050565b620008088162000aae565b82525050565b60006200081d602c8362000a40565b91506200082a8262000c87565b604082019050919050565b60006200084460328362000a40565b9150620008518262000cd6565b604082019050919050565b60006200086b602b8362000a40565b9150620008788262000d25565b604082019050919050565b600062000892601a8362000a40565b91506200089f8262000d74565b602082019050919050565b6000620008b9601d8362000a40565b9150620008c68262000d9d565b602082019050919050565b620008dc8162000ae2565b82525050565b6000604082019050620008f96000830185620007fd565b620009086020830184620008d1565b9392505050565b600060208201905081810360008301526200092a816200080e565b9050919050565b600060208201905081810360008301526200094c8162000835565b9050919050565b600060208201905081810360008301526200096e816200085c565b9050919050565b60006020820190508181036000830152620009908162000883565b9050919050565b60006020820190508181036000830152620009b281620008aa565b9050919050565b6000620009c5620009d8565b9050620009d3828262000b22565b919050565b6000604051905090565b600067ffffffffffffffff82111562000a0057620009ff62000c33565b5b602082029050602081019050919050565b600067ffffffffffffffff82111562000a2f5762000a2e62000c33565b5b602082029050602081019050919050565b600082825260208201905092915050565b600062000a5e8262000ae2565b915062000a6b8362000ae2565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000aa35762000aa262000ba6565b5b828201905092915050565b600062000abb8262000ac2565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000600282049050600182168062000b0557607f821691505b6020821081141562000b1c5762000b1b62000bd5565b5b50919050565b62000b2d8262000c76565b810181811067ffffffffffffffff8211171562000b4f5762000b4e62000c33565b5b80604052505050565b600062000b658262000ae2565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141562000b9b5762000b9a62000ba6565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f5061796d656e7453706c69747465723a206163636f756e74206973207468652060008201527f7a65726f20616464726573730000000000000000000000000000000000000000602082015250565b7f5061796d656e7453706c69747465723a2070617965657320616e64207368617260008201527f6573206c656e677468206d69736d617463680000000000000000000000000000602082015250565b7f5061796d656e7453706c69747465723a206163636f756e7420616c726561647960008201527f2068617320736861726573000000000000000000000000000000000000000000602082015250565b7f5061796d656e7453706c69747465723a206e6f20706179656573000000000000600082015250565b7f5061796d656e7453706c69747465723a20736861726573206172652030000000600082015250565b62000dd18162000aae565b811462000ddd57600080fd5b50565b62000deb8162000ae2565b811462000df757600080fd5b50565b613ded8062000e0a6000396000f3fe6080604052600436106102085760003560e01c806370a0823111610118578063b88d4fde116100a0578063d5abeb011161006f578063d5abeb01146107b9578063d79779b2146107e4578063e33b7de314610821578063e985e9c51461084c578063f2fde38b146108895761024f565b8063b88d4fde146106e6578063c45ac05014610702578063c87b56dd1461073f578063ce7c2ac21461077c5761024f565b80638da5cb5b116100e75780638da5cb5b146105ed57806395d89b41146106185780639852595c14610643578063a22cb46514610680578063a3f8eace146106a95761024f565b806370a0823114610533578063715018a6146105705780637f00c7a6146105875780638b83209b146105b05761024f565b806323b872dd1161019b57806342842e0e1161016a57806342842e0e1461045f57806344a0d68a1461047b57806348b75044146104a457806355f804b3146104cd5780636352211e146104f65761024f565b806323b872dd146103bf5780633a98ef39146103db578063406072a91461040657806340c10f19146104435761024f565b806313faede6116101d757806313faede61461031557806318160ddd14610340578063191655871461036b578063239c70ae146103945761024f565b806301ffc9a71461025457806306fdde0314610291578063081812fc146102bc578063095ea7b3146102f95761024f565b3661024f577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be7706102366108b2565b34604051610245929190613349565b60405180910390a1005b600080fd5b34801561026057600080fd5b5061027b60048036038101906102769190612dfa565b6108ba565b6040516102889190613372565b60405180910390f35b34801561029d57600080fd5b506102a661094c565b6040516102b3919061338d565b60405180910390f35b3480156102c857600080fd5b506102e360048036038101906102de9190612f0a565b6109de565b6040516102f091906132b9565b60405180910390f35b610313600480360381019061030e9190612d8d565b610a5d565b005b34801561032157600080fd5b5061032a610ba1565b604051610337919061352f565b60405180910390f35b34801561034c57600080fd5b50610355610ba7565b604051610362919061352f565b60405180910390f35b34801561037757600080fd5b50610392600480360381019061038d9190612c0a565b610bbe565b005b3480156103a057600080fd5b506103a9610d47565b6040516103b6919061352f565b60405180910390f35b6103d960048036038101906103d49190612c77565b610d4d565b005b3480156103e757600080fd5b506103f0611072565b6040516103fd919061352f565b60405180910390f35b34801561041257600080fd5b5061042d60048036038101906104289190612e81565b61107c565b60405161043a919061352f565b60405180910390f35b61045d60048036038101906104589190612d8d565b611103565b005b61047960048036038101906104749190612c77565b6111bd565b005b34801561048757600080fd5b506104a2600480360381019061049d9190612f0a565b6111dd565b005b3480156104b057600080fd5b506104cb60048036038101906104c69190612e81565b6111ef565b005b3480156104d957600080fd5b506104f460048036038101906104ef9190612ec1565b61140c565b005b34801561050257600080fd5b5061051d60048036038101906105189190612f0a565b61142e565b60405161052a91906132b9565b60405180910390f35b34801561053f57600080fd5b5061055a60048036038101906105559190612bdd565b611440565b604051610567919061352f565b60405180910390f35b34801561057c57600080fd5b506105856114f9565b005b34801561059357600080fd5b506105ae60048036038101906105a99190612f0a565b61150d565b005b3480156105bc57600080fd5b506105d760048036038101906105d29190612f0a565b61151f565b6040516105e491906132b9565b60405180910390f35b3480156105f957600080fd5b50610602611567565b60405161060f91906132b9565b60405180910390f35b34801561062457600080fd5b5061062d611591565b60405161063a919061338d565b60405180910390f35b34801561064f57600080fd5b5061066a60048036038101906106659190612bdd565b611623565b604051610677919061352f565b60405180910390f35b34801561068c57600080fd5b506106a760048036038101906106a29190612d4d565b61166c565b005b3480156106b557600080fd5b506106d060048036038101906106cb9190612bdd565b611777565b6040516106dd919061352f565b60405180910390f35b61070060048036038101906106fb9190612cca565b6117aa565b005b34801561070e57600080fd5b5061072960048036038101906107249190612e81565b61181d565b604051610736919061352f565b60405180910390f35b34801561074b57600080fd5b5061076660048036038101906107619190612f0a565b6118db565b604051610773919061338d565b60405180910390f35b34801561078857600080fd5b506107a3600480360381019061079e9190612bdd565b611a4e565b6040516107b0919061352f565b60405180910390f35b3480156107c557600080fd5b506107ce611a97565b6040516107db919061352f565b60405180910390f35b3480156107f057600080fd5b5061080b60048036038101906108069190612e54565b611a9d565b604051610818919061352f565b60405180910390f35b34801561082d57600080fd5b50610836611ae6565b604051610843919061352f565b60405180910390f35b34801561085857600080fd5b50610873600480360381019061086e9190612c37565b611af0565b6040516108809190613372565b60405180910390f35b34801561089557600080fd5b506108b060048036038101906108ab9190612bdd565b611b84565b005b600033905090565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061091557506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109455750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461095b90613844565b80601f016020809104026020016040519081016040528092919081815260200182805461098790613844565b80156109d45780601f106109a9576101008083540402835291602001916109d4565b820191906000526020600020905b8154815290600101906020018083116109b757829003601f168201915b5050505050905090565b60006109e982611c08565b610a1f576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a688261142e565b90508073ffffffffffffffffffffffffffffffffffffffff16610a89611c67565b73ffffffffffffffffffffffffffffffffffffffff1614610aec57610ab581610ab0611c67565b611af0565b610aeb576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60115481565b6000610bb1611c6f565b6001546000540303905090565b6000600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411610c40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c37906133ef565b60405180910390fd5b6000610c4b82611777565b90506000811415610c91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c889061346f565b60405180910390fd5b80600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610ce0919061361f565b9250508190555080600a6000828254610cf9919061361f565b92505081905550610d0a8282611c78565b7fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b0568282604051610d3b9291906132d4565b60405180910390a15050565b60135481565b6000610d5882611d6c565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610dbf576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610dcb84611e3a565b91509150610de18187610ddc611c67565b611e61565b610e2d57610df686610df1611c67565b611af0565b610e2c576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610e94576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ea18686866001611ea5565b8015610eac57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610f7a85610f56888887611eab565b7c020000000000000000000000000000000000000000000000000000000017611ed3565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415611002576000600185019050600060046000838152602001908152602001600020541415611000576000548114610fff578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461106a8686866001611efe565b505050505050565b6000600954905090565b6000600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600061110d610ba7565b9050601254828261111e919061361f565b111561115f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611156906134af565b60405180910390fd5b8160115461116d91906136a6565b34146111ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a59061350f565b60405180910390fd5b6111b88383611f04565b505050565b6111d8838383604051806020016040528060008152506117aa565b505050565b6111e5611f22565b8060118190555050565b6000600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411611271576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611268906133ef565b60405180910390fd5b600061127d838361181d565b905060008114156112c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ba9061346f565b60405180910390fd5b80600f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461134f919061361f565b9250508190555080600e60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546113a5919061361f565b925050819055506113b7838383611fa0565b8273ffffffffffffffffffffffffffffffffffffffff167f3be5b7a71e84ed12875d241991c70855ac5817d847039e17a9d895c1ceb0f18a83836040516113ff929190613349565b60405180910390a2505050565b611414611f22565b806010908051906020019061142a92919061299d565b5050565b600061143982611d6c565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114a8576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611501611f22565b61150b6000612026565b565b611515611f22565b8060138190555050565b6000600d8281548110611535576115346139ae565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546115a090613844565b80601f01602080910402602001604051908101604052809291908181526020018280546115cc90613844565b80156116195780601f106115ee57610100808354040283529160200191611619565b820191906000526020600020905b8154815290600101906020018083116115fc57829003601f168201915b5050505050905090565b6000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b8060076000611679611c67565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611726611c67565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161176b9190613372565b60405180910390a35050565b600080611782611ae6565b4761178d919061361f565b90506117a2838261179d86611623565b6120ec565b915050919050565b6117b5848484610d4d565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611817576117e08484848461215a565b611816576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60008061182984611a9d565b8473ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161186291906132b9565b60206040518083038186803b15801561187a57600080fd5b505afa15801561188e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118b29190612f37565b6118bc919061361f565b90506118d283826118cd878761107c565b6120ec565b91505092915050565b60606118e682611c08565b611925576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191c906133af565b60405180910390fd5b600060146000848152602001908152602001600020805461194590613844565b905014156119aa5760006119576122ba565b9050600081511161197757604051806020016040528060008152506119a2565b806119818461234c565b604051602001611992929190613275565b6040516020818303038152906040525b915050611a49565b6014600083815260200190815260200160002080546119c890613844565b80601f01602080910402602001604051908101604052809291908181526020018280546119f490613844565b8015611a415780601f10611a1657610100808354040283529160200191611a41565b820191906000526020600020905b815481529060010190602001808311611a2457829003601f168201915b505050505090505b919050565b6000600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60125481565b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000600a54905090565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611b8c611f22565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611bfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf3906133cf565b60405180910390fd5b611c0581612026565b50565b600081611c13611c6f565b11158015611c22575060005482105b8015611c60575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b80471015611cbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb29061342f565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051611ce1906132a4565b60006040518083038185875af1925050503d8060008114611d1e576040519150601f19603f3d011682016040523d82523d6000602084013e611d23565b606091505b5050905080611d67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5e9061340f565b60405180910390fd5b505050565b60008082905080611d7b611c6f565b11611e0357600054811015611e025760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611e00575b6000811415611df6576004600083600190039350838152602001908152602001600020549050611dcb565b8092505050611e35565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611ec28686846124ad565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611f1e8282604051806020016040528060008152506124b6565b5050565b611f2a6108b2565b73ffffffffffffffffffffffffffffffffffffffff16611f48611567565b73ffffffffffffffffffffffffffffffffffffffff1614611f9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f959061348f565b60405180910390fd5b565b6120218363a9059cbb60e01b8484604051602401611fbf929190613349565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050612553565b505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081600954600b60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548561213d91906136a6565b6121479190613675565b6121519190613700565b90509392505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612180611c67565b8786866040518563ffffffff1660e01b81526004016121a294939291906132fd565b602060405180830381600087803b1580156121bc57600080fd5b505af19250505080156121ed57506040513d601f19601f820116820180604052508101906121ea9190612e27565b60015b612267573d806000811461221d576040519150601f19603f3d011682016040523d82523d6000602084013e612222565b606091505b5060008151141561225f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060601080546122c990613844565b80601f01602080910402602001604051908101604052809291908181526020018280546122f590613844565b80156123425780601f1061231757610100808354040283529160200191612342565b820191906000526020600020905b81548152906001019060200180831161232557829003601f168201915b5050505050905090565b60606000821415612394576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506124a8565b600082905060005b600082146123c65780806123af906138a7565b915050600a826123bf9190613675565b915061239c565b60008167ffffffffffffffff8111156123e2576123e16139dd565b5b6040519080825280601f01601f1916602001820160405280156124145781602001600182028036833780820191505090505b5090505b600085146124a15760018261242d9190613700565b9150600a8561243c91906138f0565b6030612448919061361f565b60f81b81838151811061245e5761245d6139ae565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561249a9190613675565b9450612418565b8093505050505b919050565b60009392505050565b6124c0838361261a565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461254e57600080549050600083820390505b612500600086838060010194508661215a565b612536576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106124ed57816000541461254b57600080fd5b50505b505050565b60006125b5826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff166127d79092919063ffffffff16565b905060008151111561261557808060200190518101906125d59190612dcd565b612614576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161260b906134ef565b60405180910390fd5b5b505050565b600080549050600082141561265b576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6126686000848385611ea5565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506126df836126d06000866000611eab565b6126d9856127ef565b17611ed3565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461278057808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612745565b5060008214156127bc576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506127d26000848385611efe565b505050565b60606127e684846000856127ff565b90509392505050565b60006001821460e11b9050919050565b606082471015612844576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161283b9061344f565b60405180910390fd5b61284d85612913565b61288c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612883906134cf565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff1685876040516128b5919061325e565b60006040518083038185875af1925050503d80600081146128f2576040519150601f19603f3d011682016040523d82523d6000602084013e6128f7565b606091505b5091509150612907828286612936565b92505050949350505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6060831561294657829050612996565b6000835111156129595782518084602001fd5b816040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161298d919061338d565b60405180910390fd5b9392505050565b8280546129a990613844565b90600052602060002090601f0160209004810192826129cb5760008555612a12565b82601f106129e457805160ff1916838001178555612a12565b82800160010185558215612a12579182015b82811115612a115782518255916020019190600101906129f6565b5b509050612a1f9190612a23565b5090565b5b80821115612a3c576000816000905550600101612a24565b5090565b6000612a53612a4e8461356f565b61354a565b905082815260208101848484011115612a6f57612a6e613a11565b5b612a7a848285613802565b509392505050565b6000612a95612a90846135a0565b61354a565b905082815260208101848484011115612ab157612ab0613a11565b5b612abc848285613802565b509392505050565b600081359050612ad381613d2d565b92915050565b600081359050612ae881613d44565b92915050565b600081359050612afd81613d5b565b92915050565b600081519050612b1281613d5b565b92915050565b600081359050612b2781613d72565b92915050565b600081519050612b3c81613d72565b92915050565b600082601f830112612b5757612b56613a0c565b5b8135612b67848260208601612a40565b91505092915050565b600081359050612b7f81613d89565b92915050565b600082601f830112612b9a57612b99613a0c565b5b8135612baa848260208601612a82565b91505092915050565b600081359050612bc281613da0565b92915050565b600081519050612bd781613da0565b92915050565b600060208284031215612bf357612bf2613a1b565b5b6000612c0184828501612ac4565b91505092915050565b600060208284031215612c2057612c1f613a1b565b5b6000612c2e84828501612ad9565b91505092915050565b60008060408385031215612c4e57612c4d613a1b565b5b6000612c5c85828601612ac4565b9250506020612c6d85828601612ac4565b9150509250929050565b600080600060608486031215612c9057612c8f613a1b565b5b6000612c9e86828701612ac4565b9350506020612caf86828701612ac4565b9250506040612cc086828701612bb3565b9150509250925092565b60008060008060808587031215612ce457612ce3613a1b565b5b6000612cf287828801612ac4565b9450506020612d0387828801612ac4565b9350506040612d1487828801612bb3565b925050606085013567ffffffffffffffff811115612d3557612d34613a16565b5b612d4187828801612b42565b91505092959194509250565b60008060408385031215612d6457612d63613a1b565b5b6000612d7285828601612ac4565b9250506020612d8385828601612aee565b9150509250929050565b60008060408385031215612da457612da3613a1b565b5b6000612db285828601612ac4565b9250506020612dc385828601612bb3565b9150509250929050565b600060208284031215612de357612de2613a1b565b5b6000612df184828501612b03565b91505092915050565b600060208284031215612e1057612e0f613a1b565b5b6000612e1e84828501612b18565b91505092915050565b600060208284031215612e3d57612e3c613a1b565b5b6000612e4b84828501612b2d565b91505092915050565b600060208284031215612e6a57612e69613a1b565b5b6000612e7884828501612b70565b91505092915050565b60008060408385031215612e9857612e97613a1b565b5b6000612ea685828601612b70565b9250506020612eb785828601612ac4565b9150509250929050565b600060208284031215612ed757612ed6613a1b565b5b600082013567ffffffffffffffff811115612ef557612ef4613a16565b5b612f0184828501612b85565b91505092915050565b600060208284031215612f2057612f1f613a1b565b5b6000612f2e84828501612bb3565b91505092915050565b600060208284031215612f4d57612f4c613a1b565b5b6000612f5b84828501612bc8565b91505092915050565b612f6d816137cc565b82525050565b612f7c81613734565b82525050565b612f8b81613758565b82525050565b6000612f9c826135d1565b612fa681856135e7565b9350612fb6818560208601613811565b612fbf81613a20565b840191505092915050565b6000612fd5826135d1565b612fdf81856135f8565b9350612fef818560208601613811565b80840191505092915050565b6000613006826135dc565b6130108185613603565b9350613020818560208601613811565b61302981613a20565b840191505092915050565b600061303f826135dc565b6130498185613614565b9350613059818560208601613811565b80840191505092915050565b6000613072601f83613603565b915061307d82613a31565b602082019050919050565b6000613095602683613603565b91506130a082613a5a565b604082019050919050565b60006130b8602683613603565b91506130c382613aa9565b604082019050919050565b60006130db603a83613603565b91506130e682613af8565b604082019050919050565b60006130fe601d83613603565b915061310982613b47565b602082019050919050565b6000613121602683613603565b915061312c82613b70565b604082019050919050565b6000613144602b83613603565b915061314f82613bbf565b604082019050919050565b6000613167600583613614565b915061317282613c0e565b600582019050919050565b600061318a602083613603565b915061319582613c37565b602082019050919050565b60006131ad601e83613603565b91506131b882613c60565b602082019050919050565b60006131d06000836135f8565b91506131db82613c89565b600082019050919050565b60006131f3601d83613603565b91506131fe82613c8c565b602082019050919050565b6000613216602a83613603565b915061322182613cb5565b604082019050919050565b6000613239601383613603565b915061324482613d04565b602082019050919050565b613258816137c2565b82525050565b600061326a8284612fca565b915081905092915050565b60006132818285613034565b915061328d8284613034565b91506132988261315a565b91508190509392505050565b60006132af826131c3565b9150819050919050565b60006020820190506132ce6000830184612f73565b92915050565b60006040820190506132e96000830185612f64565b6132f6602083018461324f565b9392505050565b60006080820190506133126000830187612f73565b61331f6020830186612f73565b61332c604083018561324f565b818103606083015261333e8184612f91565b905095945050505050565b600060408201905061335e6000830185612f73565b61336b602083018461324f565b9392505050565b60006020820190506133876000830184612f82565b92915050565b600060208201905081810360008301526133a78184612ffb565b905092915050565b600060208201905081810360008301526133c881613065565b9050919050565b600060208201905081810360008301526133e881613088565b9050919050565b60006020820190508181036000830152613408816130ab565b9050919050565b60006020820190508181036000830152613428816130ce565b9050919050565b60006020820190508181036000830152613448816130f1565b9050919050565b6000602082019050818103600083015261346881613114565b9050919050565b6000602082019050818103600083015261348881613137565b9050919050565b600060208201905081810360008301526134a88161317d565b9050919050565b600060208201905081810360008301526134c8816131a0565b9050919050565b600060208201905081810360008301526134e8816131e6565b9050919050565b6000602082019050818103600083015261350881613209565b9050919050565b600060208201905081810360008301526135288161322c565b9050919050565b6000602082019050613544600083018461324f565b92915050565b6000613554613565565b90506135608282613876565b919050565b6000604051905090565b600067ffffffffffffffff82111561358a576135896139dd565b5b61359382613a20565b9050602081019050919050565b600067ffffffffffffffff8211156135bb576135ba6139dd565b5b6135c482613a20565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061362a826137c2565b9150613635836137c2565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561366a57613669613921565b5b828201905092915050565b6000613680826137c2565b915061368b836137c2565b92508261369b5761369a613950565b5b828204905092915050565b60006136b1826137c2565b91506136bc836137c2565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156136f5576136f4613921565b5b828202905092915050565b600061370b826137c2565b9150613716836137c2565b92508282101561372957613728613921565b5b828203905092915050565b600061373f826137a2565b9050919050565b6000613751826137a2565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061379b82613734565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006137d7826137de565b9050919050565b60006137e9826137f0565b9050919050565b60006137fb826137a2565b9050919050565b82818337600083830152505050565b60005b8381101561382f578082015181840152602081019050613814565b8381111561383e576000848401525b50505050565b6000600282049050600182168061385c57607f821691505b602082108114156138705761386f61397f565b5b50919050565b61387f82613a20565b810181811067ffffffffffffffff8211171561389e5761389d6139dd565b5b80604052505050565b60006138b2826137c2565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156138e5576138e4613921565b5b600182019050919050565b60006138fb826137c2565b9150613906836137c2565b92508261391657613915613950565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e00600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060008201527f7368617265730000000000000000000000000000000000000000000000000000602082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f416464726573733a20696e73756666696369656e742062616c616e636520666f60008201527f722063616c6c0000000000000000000000000000000000000000000000000000602082015250565b7f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060008201527f647565207061796d656e74000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4e6f7420656e6f756768206d696e7461626c652065646974696f6e7320210000600082015250565b50565b7f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000600082015250565b7f5361666545524332303a204552433230206f7065726174696f6e20646964206e60008201527f6f74207375636365656400000000000000000000000000000000000000000000602082015250565b7f496e636f7272656374204554482076616c756500000000000000000000000000600082015250565b613d3681613734565b8114613d4157600080fd5b50565b613d4d81613746565b8114613d5857600080fd5b50565b613d6481613758565b8114613d6f57600080fd5b50565b613d7b81613764565b8114613d8657600080fd5b50565b613d9281613790565b8114613d9d57600080fd5b50565b613da9816137c2565b8114613db457600080fd5b5056fea2646970667358221220fcf9610ecf8e78beb2dd5602293d187688dabbb40406ee70171b2d48f3472a8d64736f6c63430008070033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000004000000000000000000000000371a499d45015699d166705d60ef877a22e3295f0000000000000000000000000fd8ef3211536c0077a5a1bc51129c10484de8ab000000000000000000000000df6f75a8d2be479fbe7453ae463b678b2da6c478000000000000000000000000433e557b2c086f7986538bf07639b3312071ccb1000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000001130000000000000000000000000000000000000000000000000000000000000113000000000000000000000000000000000000000000000000000000000000015e0000000000000000000000000000000000000000000000000000000000000064
Deployed Bytecode
0x6080604052600436106102085760003560e01c806370a0823111610118578063b88d4fde116100a0578063d5abeb011161006f578063d5abeb01146107b9578063d79779b2146107e4578063e33b7de314610821578063e985e9c51461084c578063f2fde38b146108895761024f565b8063b88d4fde146106e6578063c45ac05014610702578063c87b56dd1461073f578063ce7c2ac21461077c5761024f565b80638da5cb5b116100e75780638da5cb5b146105ed57806395d89b41146106185780639852595c14610643578063a22cb46514610680578063a3f8eace146106a95761024f565b806370a0823114610533578063715018a6146105705780637f00c7a6146105875780638b83209b146105b05761024f565b806323b872dd1161019b57806342842e0e1161016a57806342842e0e1461045f57806344a0d68a1461047b57806348b75044146104a457806355f804b3146104cd5780636352211e146104f65761024f565b806323b872dd146103bf5780633a98ef39146103db578063406072a91461040657806340c10f19146104435761024f565b806313faede6116101d757806313faede61461031557806318160ddd14610340578063191655871461036b578063239c70ae146103945761024f565b806301ffc9a71461025457806306fdde0314610291578063081812fc146102bc578063095ea7b3146102f95761024f565b3661024f577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be7706102366108b2565b34604051610245929190613349565b60405180910390a1005b600080fd5b34801561026057600080fd5b5061027b60048036038101906102769190612dfa565b6108ba565b6040516102889190613372565b60405180910390f35b34801561029d57600080fd5b506102a661094c565b6040516102b3919061338d565b60405180910390f35b3480156102c857600080fd5b506102e360048036038101906102de9190612f0a565b6109de565b6040516102f091906132b9565b60405180910390f35b610313600480360381019061030e9190612d8d565b610a5d565b005b34801561032157600080fd5b5061032a610ba1565b604051610337919061352f565b60405180910390f35b34801561034c57600080fd5b50610355610ba7565b604051610362919061352f565b60405180910390f35b34801561037757600080fd5b50610392600480360381019061038d9190612c0a565b610bbe565b005b3480156103a057600080fd5b506103a9610d47565b6040516103b6919061352f565b60405180910390f35b6103d960048036038101906103d49190612c77565b610d4d565b005b3480156103e757600080fd5b506103f0611072565b6040516103fd919061352f565b60405180910390f35b34801561041257600080fd5b5061042d60048036038101906104289190612e81565b61107c565b60405161043a919061352f565b60405180910390f35b61045d60048036038101906104589190612d8d565b611103565b005b61047960048036038101906104749190612c77565b6111bd565b005b34801561048757600080fd5b506104a2600480360381019061049d9190612f0a565b6111dd565b005b3480156104b057600080fd5b506104cb60048036038101906104c69190612e81565b6111ef565b005b3480156104d957600080fd5b506104f460048036038101906104ef9190612ec1565b61140c565b005b34801561050257600080fd5b5061051d60048036038101906105189190612f0a565b61142e565b60405161052a91906132b9565b60405180910390f35b34801561053f57600080fd5b5061055a60048036038101906105559190612bdd565b611440565b604051610567919061352f565b60405180910390f35b34801561057c57600080fd5b506105856114f9565b005b34801561059357600080fd5b506105ae60048036038101906105a99190612f0a565b61150d565b005b3480156105bc57600080fd5b506105d760048036038101906105d29190612f0a565b61151f565b6040516105e491906132b9565b60405180910390f35b3480156105f957600080fd5b50610602611567565b60405161060f91906132b9565b60405180910390f35b34801561062457600080fd5b5061062d611591565b60405161063a919061338d565b60405180910390f35b34801561064f57600080fd5b5061066a60048036038101906106659190612bdd565b611623565b604051610677919061352f565b60405180910390f35b34801561068c57600080fd5b506106a760048036038101906106a29190612d4d565b61166c565b005b3480156106b557600080fd5b506106d060048036038101906106cb9190612bdd565b611777565b6040516106dd919061352f565b60405180910390f35b61070060048036038101906106fb9190612cca565b6117aa565b005b34801561070e57600080fd5b5061072960048036038101906107249190612e81565b61181d565b604051610736919061352f565b60405180910390f35b34801561074b57600080fd5b5061076660048036038101906107619190612f0a565b6118db565b604051610773919061338d565b60405180910390f35b34801561078857600080fd5b506107a3600480360381019061079e9190612bdd565b611a4e565b6040516107b0919061352f565b60405180910390f35b3480156107c557600080fd5b506107ce611a97565b6040516107db919061352f565b60405180910390f35b3480156107f057600080fd5b5061080b60048036038101906108069190612e54565b611a9d565b604051610818919061352f565b60405180910390f35b34801561082d57600080fd5b50610836611ae6565b604051610843919061352f565b60405180910390f35b34801561085857600080fd5b50610873600480360381019061086e9190612c37565b611af0565b6040516108809190613372565b60405180910390f35b34801561089557600080fd5b506108b060048036038101906108ab9190612bdd565b611b84565b005b600033905090565b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061091557506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806109455750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461095b90613844565b80601f016020809104026020016040519081016040528092919081815260200182805461098790613844565b80156109d45780601f106109a9576101008083540402835291602001916109d4565b820191906000526020600020905b8154815290600101906020018083116109b757829003601f168201915b5050505050905090565b60006109e982611c08565b610a1f576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a688261142e565b90508073ffffffffffffffffffffffffffffffffffffffff16610a89611c67565b73ffffffffffffffffffffffffffffffffffffffff1614610aec57610ab581610ab0611c67565b611af0565b610aeb576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60115481565b6000610bb1611c6f565b6001546000540303905090565b6000600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411610c40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c37906133ef565b60405180910390fd5b6000610c4b82611777565b90506000811415610c91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c889061346f565b60405180910390fd5b80600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610ce0919061361f565b9250508190555080600a6000828254610cf9919061361f565b92505081905550610d0a8282611c78565b7fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b0568282604051610d3b9291906132d4565b60405180910390a15050565b60135481565b6000610d5882611d6c565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610dbf576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600080610dcb84611e3a565b91509150610de18187610ddc611c67565b611e61565b610e2d57610df686610df1611c67565b611af0565b610e2c576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415610e94576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ea18686866001611ea5565b8015610eac57600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550610f7a85610f56888887611eab565b7c020000000000000000000000000000000000000000000000000000000017611ed3565b600460008681526020019081526020016000208190555060007c020000000000000000000000000000000000000000000000000000000084161415611002576000600185019050600060046000838152602001908152602001600020541415611000576000548114610fff578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461106a8686866001611efe565b505050505050565b6000600954905090565b6000600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600061110d610ba7565b9050601254828261111e919061361f565b111561115f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611156906134af565b60405180910390fd5b8160115461116d91906136a6565b34146111ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a59061350f565b60405180910390fd5b6111b88383611f04565b505050565b6111d8838383604051806020016040528060008152506117aa565b505050565b6111e5611f22565b8060118190555050565b6000600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411611271576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611268906133ef565b60405180910390fd5b600061127d838361181d565b905060008114156112c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ba9061346f565b60405180910390fd5b80600f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461134f919061361f565b9250508190555080600e60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546113a5919061361f565b925050819055506113b7838383611fa0565b8273ffffffffffffffffffffffffffffffffffffffff167f3be5b7a71e84ed12875d241991c70855ac5817d847039e17a9d895c1ceb0f18a83836040516113ff929190613349565b60405180910390a2505050565b611414611f22565b806010908051906020019061142a92919061299d565b5050565b600061143982611d6c565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114a8576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b611501611f22565b61150b6000612026565b565b611515611f22565b8060138190555050565b6000600d8281548110611535576115346139ae565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600380546115a090613844565b80601f01602080910402602001604051908101604052809291908181526020018280546115cc90613844565b80156116195780601f106115ee57610100808354040283529160200191611619565b820191906000526020600020905b8154815290600101906020018083116115fc57829003601f168201915b5050505050905090565b6000600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b8060076000611679611c67565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611726611c67565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161176b9190613372565b60405180910390a35050565b600080611782611ae6565b4761178d919061361f565b90506117a2838261179d86611623565b6120ec565b915050919050565b6117b5848484610d4d565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611817576117e08484848461215a565b611816576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60008061182984611a9d565b8473ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161186291906132b9565b60206040518083038186803b15801561187a57600080fd5b505afa15801561188e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118b29190612f37565b6118bc919061361f565b90506118d283826118cd878761107c565b6120ec565b91505092915050565b60606118e682611c08565b611925576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191c906133af565b60405180910390fd5b600060146000848152602001908152602001600020805461194590613844565b905014156119aa5760006119576122ba565b9050600081511161197757604051806020016040528060008152506119a2565b806119818461234c565b604051602001611992929190613275565b6040516020818303038152906040525b915050611a49565b6014600083815260200190815260200160002080546119c890613844565b80601f01602080910402602001604051908101604052809291908181526020018280546119f490613844565b8015611a415780601f10611a1657610100808354040283529160200191611a41565b820191906000526020600020905b815481529060010190602001808311611a2457829003601f168201915b505050505090505b919050565b6000600b60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60125481565b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000600a54905090565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611b8c611f22565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611bfc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bf3906133cf565b60405180910390fd5b611c0581612026565b50565b600081611c13611c6f565b11158015611c22575060005482105b8015611c60575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b600033905090565b60006001905090565b80471015611cbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cb29061342f565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051611ce1906132a4565b60006040518083038185875af1925050503d8060008114611d1e576040519150601f19603f3d011682016040523d82523d6000602084013e611d23565b606091505b5050905080611d67576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d5e9061340f565b60405180910390fd5b505050565b60008082905080611d7b611c6f565b11611e0357600054811015611e025760006004600083815260200190815260200160002054905060007c010000000000000000000000000000000000000000000000000000000082161415611e00575b6000811415611df6576004600083600190039350838152602001908152602001600020549050611dcb565b8092505050611e35565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611ec28686846124ad565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b611f1e8282604051806020016040528060008152506124b6565b5050565b611f2a6108b2565b73ffffffffffffffffffffffffffffffffffffffff16611f48611567565b73ffffffffffffffffffffffffffffffffffffffff1614611f9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f959061348f565b60405180910390fd5b565b6120218363a9059cbb60e01b8484604051602401611fbf929190613349565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050612553565b505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081600954600b60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020548561213d91906136a6565b6121479190613675565b6121519190613700565b90509392505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612180611c67565b8786866040518563ffffffff1660e01b81526004016121a294939291906132fd565b602060405180830381600087803b1580156121bc57600080fd5b505af19250505080156121ed57506040513d601f19601f820116820180604052508101906121ea9190612e27565b60015b612267573d806000811461221d576040519150601f19603f3d011682016040523d82523d6000602084013e612222565b606091505b5060008151141561225f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060601080546122c990613844565b80601f01602080910402602001604051908101604052809291908181526020018280546122f590613844565b80156123425780601f1061231757610100808354040283529160200191612342565b820191906000526020600020905b81548152906001019060200180831161232557829003601f168201915b5050505050905090565b60606000821415612394576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506124a8565b600082905060005b600082146123c65780806123af906138a7565b915050600a826123bf9190613675565b915061239c565b60008167ffffffffffffffff8111156123e2576123e16139dd565b5b6040519080825280601f01601f1916602001820160405280156124145781602001600182028036833780820191505090505b5090505b600085146124a15760018261242d9190613700565b9150600a8561243c91906138f0565b6030612448919061361f565b60f81b81838151811061245e5761245d6139ae565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561249a9190613675565b9450612418565b8093505050505b919050565b60009392505050565b6124c0838361261a565b60008373ffffffffffffffffffffffffffffffffffffffff163b1461254e57600080549050600083820390505b612500600086838060010194508661215a565b612536576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8181106124ed57816000541461254b57600080fd5b50505b505050565b60006125b5826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff166127d79092919063ffffffff16565b905060008151111561261557808060200190518101906125d59190612dcd565b612614576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161260b906134ef565b60405180910390fd5b5b505050565b600080549050600082141561265b576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6126686000848385611ea5565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055506126df836126d06000866000611eab565b6126d9856127ef565b17611ed3565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b81811461278057808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050612745565b5060008214156127bc576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060008190555050506127d26000848385611efe565b505050565b60606127e684846000856127ff565b90509392505050565b60006001821460e11b9050919050565b606082471015612844576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161283b9061344f565b60405180910390fd5b61284d85612913565b61288c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612883906134cf565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff1685876040516128b5919061325e565b60006040518083038185875af1925050503d80600081146128f2576040519150601f19603f3d011682016040523d82523d6000602084013e6128f7565b606091505b5091509150612907828286612936565b92505050949350505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b6060831561294657829050612996565b6000835111156129595782518084602001fd5b816040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161298d919061338d565b60405180910390fd5b9392505050565b8280546129a990613844565b90600052602060002090601f0160209004810192826129cb5760008555612a12565b82601f106129e457805160ff1916838001178555612a12565b82800160010185558215612a12579182015b82811115612a115782518255916020019190600101906129f6565b5b509050612a1f9190612a23565b5090565b5b80821115612a3c576000816000905550600101612a24565b5090565b6000612a53612a4e8461356f565b61354a565b905082815260208101848484011115612a6f57612a6e613a11565b5b612a7a848285613802565b509392505050565b6000612a95612a90846135a0565b61354a565b905082815260208101848484011115612ab157612ab0613a11565b5b612abc848285613802565b509392505050565b600081359050612ad381613d2d565b92915050565b600081359050612ae881613d44565b92915050565b600081359050612afd81613d5b565b92915050565b600081519050612b1281613d5b565b92915050565b600081359050612b2781613d72565b92915050565b600081519050612b3c81613d72565b92915050565b600082601f830112612b5757612b56613a0c565b5b8135612b67848260208601612a40565b91505092915050565b600081359050612b7f81613d89565b92915050565b600082601f830112612b9a57612b99613a0c565b5b8135612baa848260208601612a82565b91505092915050565b600081359050612bc281613da0565b92915050565b600081519050612bd781613da0565b92915050565b600060208284031215612bf357612bf2613a1b565b5b6000612c0184828501612ac4565b91505092915050565b600060208284031215612c2057612c1f613a1b565b5b6000612c2e84828501612ad9565b91505092915050565b60008060408385031215612c4e57612c4d613a1b565b5b6000612c5c85828601612ac4565b9250506020612c6d85828601612ac4565b9150509250929050565b600080600060608486031215612c9057612c8f613a1b565b5b6000612c9e86828701612ac4565b9350506020612caf86828701612ac4565b9250506040612cc086828701612bb3565b9150509250925092565b60008060008060808587031215612ce457612ce3613a1b565b5b6000612cf287828801612ac4565b9450506020612d0387828801612ac4565b9350506040612d1487828801612bb3565b925050606085013567ffffffffffffffff811115612d3557612d34613a16565b5b612d4187828801612b42565b91505092959194509250565b60008060408385031215612d6457612d63613a1b565b5b6000612d7285828601612ac4565b9250506020612d8385828601612aee565b9150509250929050565b60008060408385031215612da457612da3613a1b565b5b6000612db285828601612ac4565b9250506020612dc385828601612bb3565b9150509250929050565b600060208284031215612de357612de2613a1b565b5b6000612df184828501612b03565b91505092915050565b600060208284031215612e1057612e0f613a1b565b5b6000612e1e84828501612b18565b91505092915050565b600060208284031215612e3d57612e3c613a1b565b5b6000612e4b84828501612b2d565b91505092915050565b600060208284031215612e6a57612e69613a1b565b5b6000612e7884828501612b70565b91505092915050565b60008060408385031215612e9857612e97613a1b565b5b6000612ea685828601612b70565b9250506020612eb785828601612ac4565b9150509250929050565b600060208284031215612ed757612ed6613a1b565b5b600082013567ffffffffffffffff811115612ef557612ef4613a16565b5b612f0184828501612b85565b91505092915050565b600060208284031215612f2057612f1f613a1b565b5b6000612f2e84828501612bb3565b91505092915050565b600060208284031215612f4d57612f4c613a1b565b5b6000612f5b84828501612bc8565b91505092915050565b612f6d816137cc565b82525050565b612f7c81613734565b82525050565b612f8b81613758565b82525050565b6000612f9c826135d1565b612fa681856135e7565b9350612fb6818560208601613811565b612fbf81613a20565b840191505092915050565b6000612fd5826135d1565b612fdf81856135f8565b9350612fef818560208601613811565b80840191505092915050565b6000613006826135dc565b6130108185613603565b9350613020818560208601613811565b61302981613a20565b840191505092915050565b600061303f826135dc565b6130498185613614565b9350613059818560208601613811565b80840191505092915050565b6000613072601f83613603565b915061307d82613a31565b602082019050919050565b6000613095602683613603565b91506130a082613a5a565b604082019050919050565b60006130b8602683613603565b91506130c382613aa9565b604082019050919050565b60006130db603a83613603565b91506130e682613af8565b604082019050919050565b60006130fe601d83613603565b915061310982613b47565b602082019050919050565b6000613121602683613603565b915061312c82613b70565b604082019050919050565b6000613144602b83613603565b915061314f82613bbf565b604082019050919050565b6000613167600583613614565b915061317282613c0e565b600582019050919050565b600061318a602083613603565b915061319582613c37565b602082019050919050565b60006131ad601e83613603565b91506131b882613c60565b602082019050919050565b60006131d06000836135f8565b91506131db82613c89565b600082019050919050565b60006131f3601d83613603565b91506131fe82613c8c565b602082019050919050565b6000613216602a83613603565b915061322182613cb5565b604082019050919050565b6000613239601383613603565b915061324482613d04565b602082019050919050565b613258816137c2565b82525050565b600061326a8284612fca565b915081905092915050565b60006132818285613034565b915061328d8284613034565b91506132988261315a565b91508190509392505050565b60006132af826131c3565b9150819050919050565b60006020820190506132ce6000830184612f73565b92915050565b60006040820190506132e96000830185612f64565b6132f6602083018461324f565b9392505050565b60006080820190506133126000830187612f73565b61331f6020830186612f73565b61332c604083018561324f565b818103606083015261333e8184612f91565b905095945050505050565b600060408201905061335e6000830185612f73565b61336b602083018461324f565b9392505050565b60006020820190506133876000830184612f82565b92915050565b600060208201905081810360008301526133a78184612ffb565b905092915050565b600060208201905081810360008301526133c881613065565b9050919050565b600060208201905081810360008301526133e881613088565b9050919050565b60006020820190508181036000830152613408816130ab565b9050919050565b60006020820190508181036000830152613428816130ce565b9050919050565b60006020820190508181036000830152613448816130f1565b9050919050565b6000602082019050818103600083015261346881613114565b9050919050565b6000602082019050818103600083015261348881613137565b9050919050565b600060208201905081810360008301526134a88161317d565b9050919050565b600060208201905081810360008301526134c8816131a0565b9050919050565b600060208201905081810360008301526134e8816131e6565b9050919050565b6000602082019050818103600083015261350881613209565b9050919050565b600060208201905081810360008301526135288161322c565b9050919050565b6000602082019050613544600083018461324f565b92915050565b6000613554613565565b90506135608282613876565b919050565b6000604051905090565b600067ffffffffffffffff82111561358a576135896139dd565b5b61359382613a20565b9050602081019050919050565b600067ffffffffffffffff8211156135bb576135ba6139dd565b5b6135c482613a20565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061362a826137c2565b9150613635836137c2565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561366a57613669613921565b5b828201905092915050565b6000613680826137c2565b915061368b836137c2565b92508261369b5761369a613950565b5b828204905092915050565b60006136b1826137c2565b91506136bc836137c2565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156136f5576136f4613921565b5b828202905092915050565b600061370b826137c2565b9150613716836137c2565b92508282101561372957613728613921565b5b828203905092915050565b600061373f826137a2565b9050919050565b6000613751826137a2565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061379b82613734565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006137d7826137de565b9050919050565b60006137e9826137f0565b9050919050565b60006137fb826137a2565b9050919050565b82818337600083830152505050565b60005b8381101561382f578082015181840152602081019050613814565b8381111561383e576000848401525b50505050565b6000600282049050600182168061385c57607f821691505b602082108114156138705761386f61397f565b5b50919050565b61387f82613a20565b810181811067ffffffffffffffff8211171561389e5761389d6139dd565b5b80604052505050565b60006138b2826137c2565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156138e5576138e4613921565b5b600182019050919050565b60006138fb826137c2565b9150613906836137c2565b92508261391657613915613950565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e00600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060008201527f7368617265730000000000000000000000000000000000000000000000000000602082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f416464726573733a20696e73756666696369656e742062616c616e636520666f60008201527f722063616c6c0000000000000000000000000000000000000000000000000000602082015250565b7f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060008201527f647565207061796d656e74000000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4e6f7420656e6f756768206d696e7461626c652065646974696f6e7320210000600082015250565b50565b7f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000600082015250565b7f5361666545524332303a204552433230206f7065726174696f6e20646964206e60008201527f6f74207375636365656400000000000000000000000000000000000000000000602082015250565b7f496e636f7272656374204554482076616c756500000000000000000000000000600082015250565b613d3681613734565b8114613d4157600080fd5b50565b613d4d81613746565b8114613d5857600080fd5b50565b613d6481613758565b8114613d6f57600080fd5b50565b613d7b81613764565b8114613d8657600080fd5b50565b613d9281613790565b8114613d9d57600080fd5b50565b613da9816137c2565b8114613db457600080fd5b5056fea2646970667358221220fcf9610ecf8e78beb2dd5602293d187688dabbb40406ee70171b2d48f3472a8d64736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000004000000000000000000000000371a499d45015699d166705d60ef877a22e3295f0000000000000000000000000fd8ef3211536c0077a5a1bc51129c10484de8ab000000000000000000000000df6f75a8d2be479fbe7453ae463b678b2da6c478000000000000000000000000433e557b2c086f7986538bf07639b3312071ccb1000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000001130000000000000000000000000000000000000000000000000000000000000113000000000000000000000000000000000000000000000000000000000000015e0000000000000000000000000000000000000000000000000000000000000064
-----Decoded View---------------
Arg [0] : _payees (address[]): 0x371A499d45015699D166705D60Ef877a22E3295f,0x0FD8Ef3211536C0077a5a1bc51129C10484de8aB,0xdF6f75A8D2BE479fBe7453ae463B678b2da6C478,0x433E557B2C086f7986538BF07639b3312071CCB1
Arg [1] : _shares (uint256[]): 275,275,350,100
-----Encoded View---------------
12 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [3] : 000000000000000000000000371a499d45015699d166705d60ef877a22e3295f
Arg [4] : 0000000000000000000000000fd8ef3211536c0077a5a1bc51129c10484de8ab
Arg [5] : 000000000000000000000000df6f75a8d2be479fbe7453ae463b678b2da6c478
Arg [6] : 000000000000000000000000433e557b2c086f7986538bf07639b3312071ccb1
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000113
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000113
Arg [10] : 000000000000000000000000000000000000000000000000000000000000015e
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000064
Deployed Bytecode Sourcemap
84233:2892:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25056:40;25072:12;:10;:12::i;:::-;25086:9;25056:40;;;;;;;:::i;:::-;;;;;;;;84233:2892;;;;;51014:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51916:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58407:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57840:408;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;84411:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47667:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27577:453;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;84486:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;62046:2825;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25187:91;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26316:135;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;85249:350;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;64967:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;85706:88;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28298:514;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;86171:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53309:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48851:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31793:103;;;;;;;;;;;;;:::i;:::-;;85940:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26542:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31145:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52092:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26038:109;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58965:234;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26732:225;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;65758:407;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27117:260;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;86381:733;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25834:105;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;84449:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25624:119;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25372:95;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59356:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32051:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21477:98;21530:7;21557:10;21550:17;;21477:98;:::o;51014:639::-;51099:4;51438:10;51423:25;;:11;:25;;;;:102;;;;51515:10;51500:25;;:11;:25;;;;51423:102;:179;;;;51592:10;51577:25;;:11;:25;;;;51423:179;51403:199;;51014:639;;;:::o;51916:100::-;51970:13;52003:5;51996:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51916:100;:::o;58407:218::-;58483:7;58508:16;58516:7;58508;:16::i;:::-;58503:64;;58533:34;;;;;;;;;;;;;;58503:64;58587:15;:24;58603:7;58587:24;;;;;;;;;;;:30;;;;;;;;;;;;58580:37;;58407:218;;;:::o;57840:408::-;57929:13;57945:16;57953:7;57945;:16::i;:::-;57929:32;;58001:5;57978:28;;:19;:17;:19::i;:::-;:28;;;57974:175;;58026:44;58043:5;58050:19;:17;:19::i;:::-;58026:16;:44::i;:::-;58021:128;;58098:35;;;;;;;;;;;;;;58021:128;57974:175;58194:2;58161:15;:24;58177:7;58161:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;58232:7;58228:2;58212:28;;58221:5;58212:28;;;;;;;;;;;;57918:330;57840:408;;:::o;84411:31::-;;;;:::o;47667:323::-;47728:7;47956:15;:13;:15::i;:::-;47941:12;;47925:13;;:28;:46;47918:53;;47667:323;:::o;27577:453::-;27672:1;27653:7;:16;27661:7;27653:16;;;;;;;;;;;;;;;;:20;27645:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;27729:15;27747:19;27758:7;27747:10;:19::i;:::-;27729:37;;27798:1;27787:7;:12;;27779:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;27882:7;27860:9;:18;27870:7;27860:18;;;;;;;;;;;;;;;;:29;;;;;;;:::i;:::-;;;;;;;;27918:7;27900:14;;:25;;;;;;;:::i;:::-;;;;;;;;27938:35;27956:7;27965;27938:17;:35::i;:::-;27989:33;28005:7;28014;27989:33;;;;;;;:::i;:::-;;;;;;;;27634:396;27577:453;:::o;84486:33::-;;;;:::o;62046:2825::-;62188:27;62218;62237:7;62218:18;:27::i;:::-;62188:57;;62303:4;62262:45;;62278:19;62262:45;;;62258:86;;62316:28;;;;;;;;;;;;;;62258:86;62358:27;62387:23;62414:35;62441:7;62414:26;:35::i;:::-;62357:92;;;;62549:68;62574:15;62591:4;62597:19;:17;:19::i;:::-;62549:24;:68::i;:::-;62544:180;;62637:43;62654:4;62660:19;:17;:19::i;:::-;62637:16;:43::i;:::-;62632:92;;62689:35;;;;;;;;;;;;;;62632:92;62544:180;62755:1;62741:16;;:2;:16;;;62737:52;;;62766:23;;;;;;;;;;;;;;62737:52;62802:43;62824:4;62830:2;62834:7;62843:1;62802:21;:43::i;:::-;62938:15;62935:160;;;63078:1;63057:19;63050:30;62935:160;63475:18;:24;63494:4;63475:24;;;;;;;;;;;;;;;;63473:26;;;;;;;;;;;;63544:18;:22;63563:2;63544:22;;;;;;;;;;;;;;;;63542:24;;;;;;;;;;;63866:146;63903:2;63952:45;63967:4;63973:2;63977:19;63952:14;:45::i;:::-;44066:8;63924:73;63866:18;:146::i;:::-;63837:17;:26;63855:7;63837:26;;;;;;;;;;;:175;;;;64183:1;44066:8;64132:19;:47;:52;64128:627;;;64205:19;64237:1;64227:7;:11;64205:33;;64394:1;64360:17;:30;64378:11;64360:30;;;;;;;;;;;;:35;64356:384;;;64498:13;;64483:11;:28;64479:242;;64678:19;64645:17;:30;64663:11;64645:30;;;;;;;;;;;:52;;;;64479:242;64356:384;64186:569;64128:627;64802:7;64798:2;64783:27;;64792:4;64783:27;;;;;;;;;;;;64821:42;64842:4;64848:2;64852:7;64861:1;64821:20;:42::i;:::-;62177:2694;;;62046:2825;;;:::o;25187:91::-;25231:7;25258:12;;25251:19;;25187:91;:::o;26316:135::-;26386:7;26413:14;:21;26428:5;26413:21;;;;;;;;;;;;;;;:30;26435:7;26413:30;;;;;;;;;;;;;;;;26406:37;;26316:135;;;;:::o;85249:350::-;85323:14;85340:13;:11;:13::i;:::-;85323:30;;85410:9;;85395:11;85386:6;:20;;;;:::i;:::-;:33;;85364:113;;;;;;;;;;;;:::i;:::-;;;;;;;;;85518:11;85511:4;;:18;;;;:::i;:::-;85498:9;:31;85490:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;85564:27;85574:3;85579:11;85564:9;:27::i;:::-;85312:287;85249:350;;:::o;64967:193::-;65113:39;65130:4;65136:2;65140:7;65113:39;;;;;;;;;;;;:16;:39::i;:::-;64967:193;;;:::o;85706:88::-;31031:13;:11;:13::i;:::-;85778:8:::1;85771:4;:15;;;;85706:88:::0;:::o;28298:514::-;28399:1;28380:7;:16;28388:7;28380:16;;;;;;;;;;;;;;;;:20;28372:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;28456:15;28474:26;28485:5;28492:7;28474:10;:26::i;:::-;28456:44;;28532:1;28521:7;:12;;28513:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;28628:7;28594:14;:21;28609:5;28594:21;;;;;;;;;;;;;;;:30;28616:7;28594:30;;;;;;;;;;;;;;;;:41;;;;;;;:::i;:::-;;;;;;;;28676:7;28646:19;:26;28666:5;28646:26;;;;;;;;;;;;;;;;:37;;;;;;;:::i;:::-;;;;;;;;28696:47;28719:5;28726:7;28735;28696:22;:47::i;:::-;28780:5;28759:45;;;28787:7;28796;28759:45;;;;;;;:::i;:::-;;;;;;;;28361:451;28298:514;;:::o;86171:106::-;31031:13;:11;:13::i;:::-;86258:11:::1;86248:7;:21;;;;;;;;;;;;:::i;:::-;;86171:106:::0;:::o;53309:152::-;53381:7;53424:27;53443:7;53424:18;:27::i;:::-;53401:52;;53309:152;;;:::o;48851:233::-;48923:7;48964:1;48947:19;;:5;:19;;;48943:60;;;48975:28;;;;;;;;;;;;;;48943:60;43010:13;49021:18;:25;49040:5;49021:25;;;;;;;;;;;;;;;;:55;49014:62;;48851:233;;;:::o;31793:103::-;31031:13;:11;:13::i;:::-;31858:30:::1;31885:1;31858:18;:30::i;:::-;31793:103::o:0;85940:124::-;31031:13;:11;:13::i;:::-;86039:17:::1;86023:13;:33;;;;85940:124:::0;:::o;26542:100::-;26593:7;26620;26628:5;26620:14;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;26613:21;;26542:100;;;:::o;31145:87::-;31191:7;31218:6;;;;;;;;;;;31211:13;;31145:87;:::o;52092:104::-;52148:13;52181:7;52174:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52092:104;:::o;26038:109::-;26094:7;26121:9;:18;26131:7;26121:18;;;;;;;;;;;;;;;;26114:25;;26038:109;;;:::o;58965:234::-;59112:8;59060:18;:39;59079:19;:17;:19::i;:::-;59060:39;;;;;;;;;;;;;;;:49;59100:8;59060:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;59172:8;59136:55;;59151:19;:17;:19::i;:::-;59136:55;;;59182:8;59136:55;;;;;;:::i;:::-;;;;;;;;58965:234;;:::o;26732:225::-;26790:7;26810:21;26858:15;:13;:15::i;:::-;26834:21;:39;;;;:::i;:::-;26810:63;;26891:58;26907:7;26916:13;26931:17;26940:7;26931:8;:17::i;:::-;26891:15;:58::i;:::-;26884:65;;;26732:225;;;:::o;65758:407::-;65933:31;65946:4;65952:2;65956:7;65933:12;:31::i;:::-;65997:1;65979:2;:14;;;:19;65975:183;;66018:56;66049:4;66055:2;66059:7;66068:5;66018:30;:56::i;:::-;66013:145;;66102:40;;;;;;;;;;;;;;66013:145;65975:183;65758:407;;;;:::o;27117:260::-;27189:7;27209:21;27266:20;27280:5;27266:13;:20::i;:::-;27233:5;:15;;;27257:4;27233:30;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:53;;;;:::i;:::-;27209:77;;27304:65;27320:7;27329:13;27344:24;27353:5;27360:7;27344:8;:24::i;:::-;27304:15;:65::i;:::-;27297:72;;;27117:260;;;;:::o;86381:733::-;86499:13;86538:16;86546:7;86538;:16::i;:::-;86530:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;86644:1;86613:10;:19;86624:7;86613:19;;;;;;;;;;;86607:33;;;;;:::i;:::-;;;:38;86603:503;;;86662:28;86693:10;:8;:10::i;:::-;86662:41;;86773:1;86748:14;86742:28;:32;:320;;;;;;;;;;;;;;;;;86878:14;86923:25;86940:7;86923:16;:25::i;:::-;86831:182;;;;;;;;;:::i;:::-;;;;;;;;;;;;;86742:320;86718:344;;;;;86603:503;87087:10;:19;87098:7;87087:19;;;;;;;;;;;87080:26;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;86381:733;;;;:::o;25834:105::-;25888:7;25915;:16;25923:7;25915:16;;;;;;;;;;;;;;;;25908:23;;25834:105;;;:::o;84449:30::-;;;;:::o;25624:119::-;25682:7;25709:19;:26;25729:5;25709:26;;;;;;;;;;;;;;;;25702:33;;25624:119;;;:::o;25372:95::-;25418:7;25445:14;;25438:21;;25372:95;:::o;59356:164::-;59453:4;59477:18;:25;59496:5;59477:25;;;;;;;;;;;;;;;:35;59503:8;59477:35;;;;;;;;;;;;;;;;;;;;;;;;;59470:42;;59356:164;;;;:::o;32051:201::-;31031:13;:11;:13::i;:::-;32160:1:::1;32140:22;;:8;:22;;;;32132:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;32216:28;32235:8;32216:18;:28::i;:::-;32051:201:::0;:::o;59778:282::-;59843:4;59899:7;59880:15;:13;:15::i;:::-;:26;;:66;;;;;59933:13;;59923:7;:23;59880:66;:153;;;;;60032:1;43786:8;59984:17;:26;60002:7;59984:26;;;;;;;;;;;;:44;:49;59880:153;59860:173;;59778:282;;;:::o;82086:105::-;82146:7;82173:10;82166:17;;82086:105;:::o;84580:101::-;84645:7;84672:1;84665:8;;84580:101;:::o;2494:317::-;2609:6;2584:21;:31;;2576:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2663:12;2681:9;:14;;2703:6;2681:33;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2662:52;;;2733:7;2725:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;2565:246;2494:317;;:::o;54464:1275::-;54531:7;54551:12;54566:7;54551:22;;54634:4;54615:15;:13;:15::i;:::-;:23;54611:1061;;54668:13;;54661:4;:20;54657:1015;;;54706:14;54723:17;:23;54741:4;54723:23;;;;;;;;;;;;54706:40;;54840:1;43786:8;54812:6;:24;:29;54808:845;;;55477:113;55494:1;55484:6;:11;55477:113;;;55537:17;:25;55555:6;;;;;;;55537:25;;;;;;;;;;;;55528:34;;55477:113;;;55623:6;55616:13;;;;;;54808:845;54683:989;54657:1015;54611:1061;55700:31;;;;;;;;;;;;;;54464:1275;;;;:::o;60941:485::-;61043:27;61072:23;61113:38;61154:15;:24;61170:7;61154:24;;;;;;;;;;;61113:65;;61331:18;61308:41;;61388:19;61382:26;61363:45;;61293:126;60941:485;;;:::o;60169:659::-;60318:11;60483:16;60476:5;60472:28;60463:37;;60643:16;60632:9;60628:32;60615:45;;60793:15;60782:9;60779:30;60771:5;60760:9;60757:20;60754:56;60744:66;;60169:659;;;;;:::o;66827:159::-;;;;;:::o;81395:311::-;81530:7;81550:16;44190:3;81576:19;:41;;81550:68;;44190:3;81644:31;81655:4;81661:2;81665:9;81644:10;:31::i;:::-;81636:40;;:62;;81629:69;;;81395:311;;;;;:::o;56287:450::-;56367:14;56535:16;56528:5;56524:28;56515:37;;56712:5;56698:11;56673:23;56669:41;56666:52;56659:5;56656:63;56646:73;;56287:450;;;;:::o;67651:158::-;;;;;:::o;75918:112::-;75995:27;76005:2;76009:8;75995:27;;;;;;;;;;;;:9;:27::i;:::-;75918:112;;:::o;31310:132::-;31385:12;:10;:12::i;:::-;31374:23;;:7;:5;:7::i;:::-;:23;;;31366:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;31310:132::o;14511:211::-;14628:86;14648:5;14678:23;;;14703:2;14707:5;14655:58;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14628:19;:86::i;:::-;14511:211;;;:::o;32412:191::-;32486:16;32505:6;;;;;;;;;;;32486:25;;32531:8;32522:6;;:17;;;;;;;;;;;;;;;;;;32586:8;32555:40;;32576:8;32555:40;;;;;;;;;;;;32475:128;32412:191;:::o;28990:248::-;29136:7;29215:15;29200:12;;29180:7;:16;29188:7;29180:16;;;;;;;;;;;;;;;;29164:13;:32;;;;:::i;:::-;29163:49;;;;:::i;:::-;:67;;;;:::i;:::-;29156:74;;28990:248;;;;;:::o;68249:716::-;68412:4;68458:2;68433:45;;;68479:19;:17;:19::i;:::-;68500:4;68506:7;68515:5;68433:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;68429:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68733:1;68716:6;:13;:18;68712:235;;;68762:40;;;;;;;;;;;;;;68712:235;68905:6;68899:13;68890:6;68886:2;68882:15;68875:38;68429:529;68602:54;;;68592:64;;;:6;:64;;;;68585:71;;;68249:716;;;;;;:::o;84970:108::-;85030:13;85063:7;85056:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;84970:108;:::o;18731:723::-;18787:13;19017:1;19008:5;:10;19004:53;;;19035:10;;;;;;;;;;;;;;;;;;;;;19004:53;19067:12;19082:5;19067:20;;19098:14;19123:78;19138:1;19130:4;:9;19123:78;;19156:8;;;;;:::i;:::-;;;;19187:2;19179:10;;;;;:::i;:::-;;;19123:78;;;19211:19;19243:6;19233:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19211:39;;19261:154;19277:1;19268:5;:10;19261:154;;19305:1;19295:11;;;;;:::i;:::-;;;19372:2;19364:5;:10;;;;:::i;:::-;19351:2;:24;;;;:::i;:::-;19338:39;;19321:6;19328;19321:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;19401:2;19392:11;;;;;:::i;:::-;;;19261:154;;;19439:6;19425:21;;;;;18731:723;;;;:::o;81096:147::-;81233:6;81096:147;;;;;:::o;75145:689::-;75276:19;75282:2;75286:8;75276:5;:19::i;:::-;75355:1;75337:2;:14;;;:19;75333:483;;75377:11;75391:13;;75377:27;;75423:13;75445:8;75439:3;:14;75423:30;;75472:233;75503:62;75542:1;75546:2;75550:7;;;;;;75559:5;75503:30;:62::i;:::-;75498:167;;75601:40;;;;;;;;;;;;;;75498:167;75700:3;75692:5;:11;75472:233;;75787:3;75770:13;;:20;75766:34;;75792:8;;;75766:34;75358:458;;75333:483;75145:689;;;:::o;17578:716::-;18002:23;18028:69;18056:4;18028:69;;;;;;;;;;;;;;;;;18036:5;18028:27;;;;:69;;;;;:::i;:::-;18002:95;;18132:1;18112:10;:17;:21;18108:179;;;18209:10;18198:30;;;;;;;;;;;;:::i;:::-;18190:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;18108:179;17648:646;17578:716;;:::o;69427:2966::-;69500:20;69523:13;;69500:36;;69563:1;69551:8;:13;69547:44;;;69573:18;;;;;;;;;;;;;;69547:44;69604:61;69634:1;69638:2;69642:12;69656:8;69604:21;:61::i;:::-;70148:1;43148:2;70118:1;:26;;70117:32;70105:8;:45;70079:18;:22;70098:2;70079:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;70427:139;70464:2;70518:33;70541:1;70545:2;70549:1;70518:14;:33::i;:::-;70485:30;70506:8;70485:20;:30::i;:::-;:66;70427:18;:139::i;:::-;70393:17;:31;70411:12;70393:31;;;;;;;;;;;:173;;;;70583:16;70614:11;70643:8;70628:12;:23;70614:37;;71164:16;71160:2;71156:25;71144:37;;71536:12;71496:8;71455:1;71393:25;71334:1;71273;71246:335;71907:1;71893:12;71889:20;71847:346;71948:3;71939:7;71936:16;71847:346;;72166:7;72156:8;72153:1;72126:25;72123:1;72120;72115:59;72001:1;71992:7;71988:15;71977:26;;71847:346;;;71851:77;72238:1;72226:8;:13;72222:45;;;72248:19;;;;;;;;;;;;;;72222:45;72300:3;72284:13;:19;;;;69853:2462;;72325:60;72354:1;72358:2;72362:12;72376:8;72325:20;:60::i;:::-;69489:2904;69427:2966;;:::o;3978:229::-;4115:12;4147:52;4169:6;4177:4;4183:1;4186:12;4147:21;:52::i;:::-;4140:59;;3978:229;;;;;:::o;56839:324::-;56909:14;57142:1;57132:8;57129:15;57103:24;57099:46;57089:56;;56839:324;;;:::o;5098:510::-;5268:12;5326:5;5301:21;:30;;5293:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;5393:18;5404:6;5393:10;:18::i;:::-;5385:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;5459:12;5473:23;5500:6;:11;;5519:5;5526:4;5500:31;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5458:73;;;;5549:51;5566:7;5575:10;5587:12;5549:16;:51::i;:::-;5542:58;;;;5098:510;;;;;;:::o;1233:326::-;1293:4;1550:1;1528:7;:19;;;:23;1521:30;;1233:326;;;:::o;7784:762::-;7934:12;7963:7;7959:580;;;7994:10;7987:17;;;;7959:580;8128:1;8108:10;:17;:21;8104:424;;;8356:10;8350:17;8417:15;8404:10;8400:2;8396:19;8389:44;8104:424;8499:12;8492:20;;;;;;;;;;;:::i;:::-;;;;;;;;7784:762;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:155::-;1040:5;1078:6;1065:20;1056:29;;1094:41;1129:5;1094:41;:::i;:::-;986:155;;;;:::o;1147:133::-;1190:5;1228:6;1215:20;1206:29;;1244:30;1268:5;1244:30;:::i;:::-;1147:133;;;;:::o;1286:137::-;1340:5;1371:6;1365:13;1356:22;;1387:30;1411:5;1387:30;:::i;:::-;1286:137;;;;:::o;1429:::-;1474:5;1512:6;1499:20;1490:29;;1528:32;1554:5;1528:32;:::i;:::-;1429:137;;;;:::o;1572:141::-;1628:5;1659:6;1653:13;1644:22;;1675:32;1701:5;1675:32;:::i;:::-;1572:141;;;;:::o;1732:338::-;1787:5;1836:3;1829:4;1821:6;1817:17;1813:27;1803:122;;1844:79;;:::i;:::-;1803:122;1961:6;1948:20;1986:78;2060:3;2052:6;2045:4;2037:6;2033:17;1986:78;:::i;:::-;1977:87;;1793:277;1732:338;;;;:::o;2076:167::-;2136:5;2174:6;2161:20;2152:29;;2190:47;2231:5;2190:47;:::i;:::-;2076:167;;;;:::o;2263:340::-;2319:5;2368:3;2361:4;2353:6;2349:17;2345:27;2335:122;;2376:79;;:::i;:::-;2335:122;2493:6;2480:20;2518:79;2593:3;2585:6;2578:4;2570:6;2566:17;2518:79;:::i;:::-;2509:88;;2325:278;2263:340;;;;:::o;2609:139::-;2655:5;2693:6;2680:20;2671:29;;2709:33;2736:5;2709:33;:::i;:::-;2609:139;;;;:::o;2754:143::-;2811:5;2842:6;2836:13;2827:22;;2858:33;2885:5;2858:33;:::i;:::-;2754:143;;;;:::o;2903:329::-;2962:6;3011:2;2999:9;2990:7;2986:23;2982:32;2979:119;;;3017:79;;:::i;:::-;2979:119;3137:1;3162:53;3207:7;3198:6;3187:9;3183:22;3162:53;:::i;:::-;3152:63;;3108:117;2903:329;;;;:::o;3238:345::-;3305:6;3354:2;3342:9;3333:7;3329:23;3325:32;3322:119;;;3360:79;;:::i;:::-;3322:119;3480:1;3505:61;3558:7;3549:6;3538:9;3534:22;3505:61;:::i;:::-;3495:71;;3451:125;3238:345;;;;:::o;3589:474::-;3657:6;3665;3714:2;3702:9;3693:7;3689:23;3685:32;3682:119;;;3720:79;;:::i;:::-;3682:119;3840:1;3865:53;3910:7;3901:6;3890:9;3886:22;3865:53;:::i;:::-;3855:63;;3811:117;3967:2;3993:53;4038:7;4029:6;4018:9;4014:22;3993:53;:::i;:::-;3983:63;;3938:118;3589:474;;;;;:::o;4069:619::-;4146:6;4154;4162;4211:2;4199:9;4190:7;4186:23;4182:32;4179:119;;;4217:79;;:::i;:::-;4179:119;4337:1;4362:53;4407:7;4398:6;4387:9;4383:22;4362:53;:::i;:::-;4352:63;;4308:117;4464:2;4490:53;4535:7;4526:6;4515:9;4511:22;4490:53;:::i;:::-;4480:63;;4435:118;4592:2;4618:53;4663:7;4654:6;4643:9;4639:22;4618:53;:::i;:::-;4608:63;;4563:118;4069:619;;;;;:::o;4694:943::-;4789:6;4797;4805;4813;4862:3;4850:9;4841:7;4837:23;4833:33;4830:120;;;4869:79;;:::i;:::-;4830:120;4989:1;5014:53;5059:7;5050:6;5039:9;5035:22;5014:53;:::i;:::-;5004:63;;4960:117;5116:2;5142:53;5187:7;5178:6;5167:9;5163:22;5142:53;:::i;:::-;5132:63;;5087:118;5244:2;5270:53;5315:7;5306:6;5295:9;5291:22;5270:53;:::i;:::-;5260:63;;5215:118;5400:2;5389:9;5385:18;5372:32;5431:18;5423:6;5420:30;5417:117;;;5453:79;;:::i;:::-;5417:117;5558:62;5612:7;5603:6;5592:9;5588:22;5558:62;:::i;:::-;5548:72;;5343:287;4694:943;;;;;;;:::o;5643:468::-;5708:6;5716;5765:2;5753:9;5744:7;5740:23;5736:32;5733:119;;;5771:79;;:::i;:::-;5733:119;5891:1;5916:53;5961:7;5952:6;5941:9;5937:22;5916:53;:::i;:::-;5906:63;;5862:117;6018:2;6044:50;6086:7;6077:6;6066:9;6062:22;6044:50;:::i;:::-;6034:60;;5989:115;5643:468;;;;;:::o;6117:474::-;6185:6;6193;6242:2;6230:9;6221:7;6217:23;6213:32;6210:119;;;6248:79;;:::i;:::-;6210:119;6368:1;6393:53;6438:7;6429:6;6418:9;6414:22;6393:53;:::i;:::-;6383:63;;6339:117;6495:2;6521:53;6566:7;6557:6;6546:9;6542:22;6521:53;:::i;:::-;6511:63;;6466:118;6117:474;;;;;:::o;6597:345::-;6664:6;6713:2;6701:9;6692:7;6688:23;6684:32;6681:119;;;6719:79;;:::i;:::-;6681:119;6839:1;6864:61;6917:7;6908:6;6897:9;6893:22;6864:61;:::i;:::-;6854:71;;6810:125;6597:345;;;;:::o;6948:327::-;7006:6;7055:2;7043:9;7034:7;7030:23;7026:32;7023:119;;;7061:79;;:::i;:::-;7023:119;7181:1;7206:52;7250:7;7241:6;7230:9;7226:22;7206:52;:::i;:::-;7196:62;;7152:116;6948:327;;;;:::o;7281:349::-;7350:6;7399:2;7387:9;7378:7;7374:23;7370:32;7367:119;;;7405:79;;:::i;:::-;7367:119;7525:1;7550:63;7605:7;7596:6;7585:9;7581:22;7550:63;:::i;:::-;7540:73;;7496:127;7281:349;;;;:::o;7636:357::-;7709:6;7758:2;7746:9;7737:7;7733:23;7729:32;7726:119;;;7764:79;;:::i;:::-;7726:119;7884:1;7909:67;7968:7;7959:6;7948:9;7944:22;7909:67;:::i;:::-;7899:77;;7855:131;7636:357;;;;:::o;7999:502::-;8081:6;8089;8138:2;8126:9;8117:7;8113:23;8109:32;8106:119;;;8144:79;;:::i;:::-;8106:119;8264:1;8289:67;8348:7;8339:6;8328:9;8324:22;8289:67;:::i;:::-;8279:77;;8235:131;8405:2;8431:53;8476:7;8467:6;8456:9;8452:22;8431:53;:::i;:::-;8421:63;;8376:118;7999:502;;;;;:::o;8507:509::-;8576:6;8625:2;8613:9;8604:7;8600:23;8596:32;8593:119;;;8631:79;;:::i;:::-;8593:119;8779:1;8768:9;8764:17;8751:31;8809:18;8801:6;8798:30;8795:117;;;8831:79;;:::i;:::-;8795:117;8936:63;8991:7;8982:6;8971:9;8967:22;8936:63;:::i;:::-;8926:73;;8722:287;8507:509;;;;:::o;9022:329::-;9081:6;9130:2;9118:9;9109:7;9105:23;9101:32;9098:119;;;9136:79;;:::i;:::-;9098:119;9256:1;9281:53;9326:7;9317:6;9306:9;9302:22;9281:53;:::i;:::-;9271:63;;9227:117;9022:329;;;;:::o;9357:351::-;9427:6;9476:2;9464:9;9455:7;9451:23;9447:32;9444:119;;;9482:79;;:::i;:::-;9444:119;9602:1;9627:64;9683:7;9674:6;9663:9;9659:22;9627:64;:::i;:::-;9617:74;;9573:128;9357:351;;;;:::o;9714:147::-;9809:45;9848:5;9809:45;:::i;:::-;9804:3;9797:58;9714:147;;:::o;9867:118::-;9954:24;9972:5;9954:24;:::i;:::-;9949:3;9942:37;9867:118;;:::o;9991:109::-;10072:21;10087:5;10072:21;:::i;:::-;10067:3;10060:34;9991:109;;:::o;10106:360::-;10192:3;10220:38;10252:5;10220:38;:::i;:::-;10274:70;10337:6;10332:3;10274:70;:::i;:::-;10267:77;;10353:52;10398:6;10393:3;10386:4;10379:5;10375:16;10353:52;:::i;:::-;10430:29;10452:6;10430:29;:::i;:::-;10425:3;10421:39;10414:46;;10196:270;10106:360;;;;:::o;10472:373::-;10576:3;10604:38;10636:5;10604:38;:::i;:::-;10658:88;10739:6;10734:3;10658:88;:::i;:::-;10651:95;;10755:52;10800:6;10795:3;10788:4;10781:5;10777:16;10755:52;:::i;:::-;10832:6;10827:3;10823:16;10816:23;;10580:265;10472:373;;;;:::o;10851:364::-;10939:3;10967:39;11000:5;10967:39;:::i;:::-;11022:71;11086:6;11081:3;11022:71;:::i;:::-;11015:78;;11102:52;11147:6;11142:3;11135:4;11128:5;11124:16;11102:52;:::i;:::-;11179:29;11201:6;11179:29;:::i;:::-;11174:3;11170:39;11163:46;;10943:272;10851:364;;;;:::o;11221:377::-;11327:3;11355:39;11388:5;11355:39;:::i;:::-;11410:89;11492:6;11487:3;11410:89;:::i;:::-;11403:96;;11508:52;11553:6;11548:3;11541:4;11534:5;11530:16;11508:52;:::i;:::-;11585:6;11580:3;11576:16;11569:23;;11331:267;11221:377;;;;:::o;11604:366::-;11746:3;11767:67;11831:2;11826:3;11767:67;:::i;:::-;11760:74;;11843:93;11932:3;11843:93;:::i;:::-;11961:2;11956:3;11952:12;11945:19;;11604:366;;;:::o;11976:::-;12118:3;12139:67;12203:2;12198:3;12139:67;:::i;:::-;12132:74;;12215:93;12304:3;12215:93;:::i;:::-;12333:2;12328:3;12324:12;12317:19;;11976:366;;;:::o;12348:::-;12490:3;12511:67;12575:2;12570:3;12511:67;:::i;:::-;12504:74;;12587:93;12676:3;12587:93;:::i;:::-;12705:2;12700:3;12696:12;12689:19;;12348:366;;;:::o;12720:::-;12862:3;12883:67;12947:2;12942:3;12883:67;:::i;:::-;12876:74;;12959:93;13048:3;12959:93;:::i;:::-;13077:2;13072:3;13068:12;13061:19;;12720:366;;;:::o;13092:::-;13234:3;13255:67;13319:2;13314:3;13255:67;:::i;:::-;13248:74;;13331:93;13420:3;13331:93;:::i;:::-;13449:2;13444:3;13440:12;13433:19;;13092:366;;;:::o;13464:::-;13606:3;13627:67;13691:2;13686:3;13627:67;:::i;:::-;13620:74;;13703:93;13792:3;13703:93;:::i;:::-;13821:2;13816:3;13812:12;13805:19;;13464:366;;;:::o;13836:::-;13978:3;13999:67;14063:2;14058:3;13999:67;:::i;:::-;13992:74;;14075:93;14164:3;14075:93;:::i;:::-;14193:2;14188:3;14184:12;14177:19;;13836:366;;;:::o;14208:400::-;14368:3;14389:84;14471:1;14466:3;14389:84;:::i;:::-;14382:91;;14482:93;14571:3;14482:93;:::i;:::-;14600:1;14595:3;14591:11;14584:18;;14208:400;;;:::o;14614:366::-;14756:3;14777:67;14841:2;14836:3;14777:67;:::i;:::-;14770:74;;14853:93;14942:3;14853:93;:::i;:::-;14971:2;14966:3;14962:12;14955:19;;14614:366;;;:::o;14986:::-;15128:3;15149:67;15213:2;15208:3;15149:67;:::i;:::-;15142:74;;15225:93;15314:3;15225:93;:::i;:::-;15343:2;15338:3;15334:12;15327:19;;14986:366;;;:::o;15358:398::-;15517:3;15538:83;15619:1;15614:3;15538:83;:::i;:::-;15531:90;;15630:93;15719:3;15630:93;:::i;:::-;15748:1;15743:3;15739:11;15732:18;;15358:398;;;:::o;15762:366::-;15904:3;15925:67;15989:2;15984:3;15925:67;:::i;:::-;15918:74;;16001:93;16090:3;16001:93;:::i;:::-;16119:2;16114:3;16110:12;16103:19;;15762:366;;;:::o;16134:::-;16276:3;16297:67;16361:2;16356:3;16297:67;:::i;:::-;16290:74;;16373:93;16462:3;16373:93;:::i;:::-;16491:2;16486:3;16482:12;16475:19;;16134:366;;;:::o;16506:::-;16648:3;16669:67;16733:2;16728:3;16669:67;:::i;:::-;16662:74;;16745:93;16834:3;16745:93;:::i;:::-;16863:2;16858:3;16854:12;16847:19;;16506:366;;;:::o;16878:118::-;16965:24;16983:5;16965:24;:::i;:::-;16960:3;16953:37;16878:118;;:::o;17002:271::-;17132:3;17154:93;17243:3;17234:6;17154:93;:::i;:::-;17147:100;;17264:3;17257:10;;17002:271;;;;:::o;17279:701::-;17560:3;17582:95;17673:3;17664:6;17582:95;:::i;:::-;17575:102;;17694:95;17785:3;17776:6;17694:95;:::i;:::-;17687:102;;17806:148;17950:3;17806:148;:::i;:::-;17799:155;;17971:3;17964:10;;17279:701;;;;;:::o;17986:379::-;18170:3;18192:147;18335:3;18192:147;:::i;:::-;18185:154;;18356:3;18349:10;;17986:379;;;:::o;18371:222::-;18464:4;18502:2;18491:9;18487:18;18479:26;;18515:71;18583:1;18572:9;18568:17;18559:6;18515:71;:::i;:::-;18371:222;;;;:::o;18599:348::-;18728:4;18766:2;18755:9;18751:18;18743:26;;18779:79;18855:1;18844:9;18840:17;18831:6;18779:79;:::i;:::-;18868:72;18936:2;18925:9;18921:18;18912:6;18868:72;:::i;:::-;18599:348;;;;;:::o;18953:640::-;19148:4;19186:3;19175:9;19171:19;19163:27;;19200:71;19268:1;19257:9;19253:17;19244:6;19200:71;:::i;:::-;19281:72;19349:2;19338:9;19334:18;19325:6;19281:72;:::i;:::-;19363;19431:2;19420:9;19416:18;19407:6;19363:72;:::i;:::-;19482:9;19476:4;19472:20;19467:2;19456:9;19452:18;19445:48;19510:76;19581:4;19572:6;19510:76;:::i;:::-;19502:84;;18953:640;;;;;;;:::o;19599:332::-;19720:4;19758:2;19747:9;19743:18;19735:26;;19771:71;19839:1;19828:9;19824:17;19815:6;19771:71;:::i;:::-;19852:72;19920:2;19909:9;19905:18;19896:6;19852:72;:::i;:::-;19599:332;;;;;:::o;19937:210::-;20024:4;20062:2;20051:9;20047:18;20039:26;;20075:65;20137:1;20126:9;20122:17;20113:6;20075:65;:::i;:::-;19937:210;;;;:::o;20153:313::-;20266:4;20304:2;20293:9;20289:18;20281:26;;20353:9;20347:4;20343:20;20339:1;20328:9;20324:17;20317:47;20381:78;20454:4;20445:6;20381:78;:::i;:::-;20373:86;;20153:313;;;;:::o;20472:419::-;20638:4;20676:2;20665:9;20661:18;20653:26;;20725:9;20719:4;20715:20;20711:1;20700:9;20696:17;20689:47;20753:131;20879:4;20753:131;:::i;:::-;20745:139;;20472:419;;;:::o;20897:::-;21063:4;21101:2;21090:9;21086:18;21078:26;;21150:9;21144:4;21140:20;21136:1;21125:9;21121:17;21114:47;21178:131;21304:4;21178:131;:::i;:::-;21170:139;;20897:419;;;:::o;21322:::-;21488:4;21526:2;21515:9;21511:18;21503:26;;21575:9;21569:4;21565:20;21561:1;21550:9;21546:17;21539:47;21603:131;21729:4;21603:131;:::i;:::-;21595:139;;21322:419;;;:::o;21747:::-;21913:4;21951:2;21940:9;21936:18;21928:26;;22000:9;21994:4;21990:20;21986:1;21975:9;21971:17;21964:47;22028:131;22154:4;22028:131;:::i;:::-;22020:139;;21747:419;;;:::o;22172:::-;22338:4;22376:2;22365:9;22361:18;22353:26;;22425:9;22419:4;22415:20;22411:1;22400:9;22396:17;22389:47;22453:131;22579:4;22453:131;:::i;:::-;22445:139;;22172:419;;;:::o;22597:::-;22763:4;22801:2;22790:9;22786:18;22778:26;;22850:9;22844:4;22840:20;22836:1;22825:9;22821:17;22814:47;22878:131;23004:4;22878:131;:::i;:::-;22870:139;;22597:419;;;:::o;23022:::-;23188:4;23226:2;23215:9;23211:18;23203:26;;23275:9;23269:4;23265:20;23261:1;23250:9;23246:17;23239:47;23303:131;23429:4;23303:131;:::i;:::-;23295:139;;23022:419;;;:::o;23447:::-;23613:4;23651:2;23640:9;23636:18;23628:26;;23700:9;23694:4;23690:20;23686:1;23675:9;23671:17;23664:47;23728:131;23854:4;23728:131;:::i;:::-;23720:139;;23447:419;;;:::o;23872:::-;24038:4;24076:2;24065:9;24061:18;24053:26;;24125:9;24119:4;24115:20;24111:1;24100:9;24096:17;24089:47;24153:131;24279:4;24153:131;:::i;:::-;24145:139;;23872:419;;;:::o;24297:::-;24463:4;24501:2;24490:9;24486:18;24478:26;;24550:9;24544:4;24540:20;24536:1;24525:9;24521:17;24514:47;24578:131;24704:4;24578:131;:::i;:::-;24570:139;;24297:419;;;:::o;24722:::-;24888:4;24926:2;24915:9;24911:18;24903:26;;24975:9;24969:4;24965:20;24961:1;24950:9;24946:17;24939:47;25003:131;25129:4;25003:131;:::i;:::-;24995:139;;24722:419;;;:::o;25147:::-;25313:4;25351:2;25340:9;25336:18;25328:26;;25400:9;25394:4;25390:20;25386:1;25375:9;25371:17;25364:47;25428:131;25554:4;25428:131;:::i;:::-;25420:139;;25147:419;;;:::o;25572:222::-;25665:4;25703:2;25692:9;25688:18;25680:26;;25716:71;25784:1;25773:9;25769:17;25760:6;25716:71;:::i;:::-;25572:222;;;;:::o;25800:129::-;25834:6;25861:20;;:::i;:::-;25851:30;;25890:33;25918:4;25910:6;25890:33;:::i;:::-;25800:129;;;:::o;25935:75::-;25968:6;26001:2;25995:9;25985:19;;25935:75;:::o;26016:307::-;26077:4;26167:18;26159:6;26156:30;26153:56;;;26189:18;;:::i;:::-;26153:56;26227:29;26249:6;26227:29;:::i;:::-;26219:37;;26311:4;26305;26301:15;26293:23;;26016:307;;;:::o;26329:308::-;26391:4;26481:18;26473:6;26470:30;26467:56;;;26503:18;;:::i;:::-;26467:56;26541:29;26563:6;26541:29;:::i;:::-;26533:37;;26625:4;26619;26615:15;26607:23;;26329:308;;;:::o;26643:98::-;26694:6;26728:5;26722:12;26712:22;;26643:98;;;:::o;26747:99::-;26799:6;26833:5;26827:12;26817:22;;26747:99;;;:::o;26852:168::-;26935:11;26969:6;26964:3;26957:19;27009:4;27004:3;27000:14;26985:29;;26852:168;;;;:::o;27026:147::-;27127:11;27164:3;27149:18;;27026:147;;;;:::o;27179:169::-;27263:11;27297:6;27292:3;27285:19;27337:4;27332:3;27328:14;27313:29;;27179:169;;;;:::o;27354:148::-;27456:11;27493:3;27478:18;;27354:148;;;;:::o;27508:305::-;27548:3;27567:20;27585:1;27567:20;:::i;:::-;27562:25;;27601:20;27619:1;27601:20;:::i;:::-;27596:25;;27755:1;27687:66;27683:74;27680:1;27677:81;27674:107;;;27761:18;;:::i;:::-;27674:107;27805:1;27802;27798:9;27791:16;;27508:305;;;;:::o;27819:185::-;27859:1;27876:20;27894:1;27876:20;:::i;:::-;27871:25;;27910:20;27928:1;27910:20;:::i;:::-;27905:25;;27949:1;27939:35;;27954:18;;:::i;:::-;27939:35;27996:1;27993;27989:9;27984:14;;27819:185;;;;:::o;28010:348::-;28050:7;28073:20;28091:1;28073:20;:::i;:::-;28068:25;;28107:20;28125:1;28107:20;:::i;:::-;28102:25;;28295:1;28227:66;28223:74;28220:1;28217:81;28212:1;28205:9;28198:17;28194:105;28191:131;;;28302:18;;:::i;:::-;28191:131;28350:1;28347;28343:9;28332:20;;28010:348;;;;:::o;28364:191::-;28404:4;28424:20;28442:1;28424:20;:::i;:::-;28419:25;;28458:20;28476:1;28458:20;:::i;:::-;28453:25;;28497:1;28494;28491:8;28488:34;;;28502:18;;:::i;:::-;28488:34;28547:1;28544;28540:9;28532:17;;28364:191;;;;:::o;28561:96::-;28598:7;28627:24;28645:5;28627:24;:::i;:::-;28616:35;;28561:96;;;:::o;28663:104::-;28708:7;28737:24;28755:5;28737:24;:::i;:::-;28726:35;;28663:104;;;:::o;28773:90::-;28807:7;28850:5;28843:13;28836:21;28825:32;;28773:90;;;:::o;28869:149::-;28905:7;28945:66;28938:5;28934:78;28923:89;;28869:149;;;:::o;29024:110::-;29075:7;29104:24;29122:5;29104:24;:::i;:::-;29093:35;;29024:110;;;:::o;29140:126::-;29177:7;29217:42;29210:5;29206:54;29195:65;;29140:126;;;:::o;29272:77::-;29309:7;29338:5;29327:16;;29272:77;;;:::o;29355:134::-;29413:9;29446:37;29477:5;29446:37;:::i;:::-;29433:50;;29355:134;;;:::o;29495:126::-;29545:9;29578:37;29609:5;29578:37;:::i;:::-;29565:50;;29495:126;;;:::o;29627:113::-;29677:9;29710:24;29728:5;29710:24;:::i;:::-;29697:37;;29627:113;;;:::o;29746:154::-;29830:6;29825:3;29820;29807:30;29892:1;29883:6;29878:3;29874:16;29867:27;29746:154;;;:::o;29906:307::-;29974:1;29984:113;29998:6;29995:1;29992:13;29984:113;;;30083:1;30078:3;30074:11;30068:18;30064:1;30059:3;30055:11;30048:39;30020:2;30017:1;30013:10;30008:15;;29984:113;;;30115:6;30112:1;30109:13;30106:101;;;30195:1;30186:6;30181:3;30177:16;30170:27;30106:101;29955:258;29906:307;;;:::o;30219:320::-;30263:6;30300:1;30294:4;30290:12;30280:22;;30347:1;30341:4;30337:12;30368:18;30358:81;;30424:4;30416:6;30412:17;30402:27;;30358:81;30486:2;30478:6;30475:14;30455:18;30452:38;30449:84;;;30505:18;;:::i;:::-;30449:84;30270:269;30219:320;;;:::o;30545:281::-;30628:27;30650:4;30628:27;:::i;:::-;30620:6;30616:40;30758:6;30746:10;30743:22;30722:18;30710:10;30707:34;30704:62;30701:88;;;30769:18;;:::i;:::-;30701:88;30809:10;30805:2;30798:22;30588:238;30545:281;;:::o;30832:233::-;30871:3;30894:24;30912:5;30894:24;:::i;:::-;30885:33;;30940:66;30933:5;30930:77;30927:103;;;31010:18;;:::i;:::-;30927:103;31057:1;31050:5;31046:13;31039:20;;30832:233;;;:::o;31071:176::-;31103:1;31120:20;31138:1;31120:20;:::i;:::-;31115:25;;31154:20;31172:1;31154:20;:::i;:::-;31149:25;;31193:1;31183:35;;31198:18;;:::i;:::-;31183:35;31239:1;31236;31232:9;31227:14;;31071:176;;;;:::o;31253:180::-;31301:77;31298:1;31291:88;31398:4;31395:1;31388:15;31422:4;31419:1;31412:15;31439:180;31487:77;31484:1;31477:88;31584:4;31581:1;31574:15;31608:4;31605:1;31598:15;31625:180;31673:77;31670:1;31663:88;31770:4;31767:1;31760:15;31794:4;31791:1;31784:15;31811:180;31859:77;31856:1;31849:88;31956:4;31953:1;31946:15;31980:4;31977:1;31970:15;31997:180;32045:77;32042:1;32035:88;32142:4;32139:1;32132:15;32166:4;32163:1;32156:15;32183:117;32292:1;32289;32282:12;32306:117;32415:1;32412;32405:12;32429:117;32538:1;32535;32528:12;32552:117;32661:1;32658;32651:12;32675:102;32716:6;32767:2;32763:7;32758:2;32751:5;32747:14;32743:28;32733:38;;32675:102;;;:::o;32783:181::-;32923:33;32919:1;32911:6;32907:14;32900:57;32783:181;:::o;32970:225::-;33110:34;33106:1;33098:6;33094:14;33087:58;33179:8;33174:2;33166:6;33162:15;33155:33;32970:225;:::o;33201:::-;33341:34;33337:1;33329:6;33325:14;33318:58;33410:8;33405:2;33397:6;33393:15;33386:33;33201:225;:::o;33432:245::-;33572:34;33568:1;33560:6;33556:14;33549:58;33641:28;33636:2;33628:6;33624:15;33617:53;33432:245;:::o;33683:179::-;33823:31;33819:1;33811:6;33807:14;33800:55;33683:179;:::o;33868:225::-;34008:34;34004:1;33996:6;33992:14;33985:58;34077:8;34072:2;34064:6;34060:15;34053:33;33868:225;:::o;34099:230::-;34239:34;34235:1;34227:6;34223:14;34216:58;34308:13;34303:2;34295:6;34291:15;34284:38;34099:230;:::o;34335:155::-;34475:7;34471:1;34463:6;34459:14;34452:31;34335:155;:::o;34496:182::-;34636:34;34632:1;34624:6;34620:14;34613:58;34496:182;:::o;34684:180::-;34824:32;34820:1;34812:6;34808:14;34801:56;34684:180;:::o;34870:114::-;;:::o;34990:179::-;35130:31;35126:1;35118:6;35114:14;35107:55;34990:179;:::o;35175:229::-;35315:34;35311:1;35303:6;35299:14;35292:58;35384:12;35379:2;35371:6;35367:15;35360:37;35175:229;:::o;35410:169::-;35550:21;35546:1;35538:6;35534:14;35527:45;35410:169;:::o;35585:122::-;35658:24;35676:5;35658:24;:::i;:::-;35651:5;35648:35;35638:63;;35697:1;35694;35687:12;35638:63;35585:122;:::o;35713:138::-;35794:32;35820:5;35794:32;:::i;:::-;35787:5;35784:43;35774:71;;35841:1;35838;35831:12;35774:71;35713:138;:::o;35857:116::-;35927:21;35942:5;35927:21;:::i;:::-;35920:5;35917:32;35907:60;;35963:1;35960;35953:12;35907:60;35857:116;:::o;35979:120::-;36051:23;36068:5;36051:23;:::i;:::-;36044:5;36041:34;36031:62;;36089:1;36086;36079:12;36031:62;35979:120;:::o;36105:150::-;36192:38;36224:5;36192:38;:::i;:::-;36185:5;36182:49;36172:77;;36245:1;36242;36235:12;36172:77;36105:150;:::o;36261:122::-;36334:24;36352:5;36334:24;:::i;:::-;36327:5;36324:35;36314:63;;36373:1;36370;36363:12;36314:63;36261:122;:::o
Swarm Source
ipfs://fcf9610ecf8e78beb2dd5602293d187688dabbb40406ee70171b2d48f3472a8d
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.