ERC-721
Overview
Max Total Supply
360 SKC
Holders
180
Market
Volume (24H)
N/A
Min Price (24H)
N/A
Max Price (24H)
N/A
Other Info
Token Contract
Balance
1 SKCLoading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
SpaceKidsClub
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-03-07 */ // File: @openzeppelin/contracts/utils/Counters.sol // OpenZeppelin Contracts v4.4.1 (utils/Counters.sol) pragma solidity ^0.8.0; /** * @title Counters * @author Matt Condon (@shrugs) * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number * of elements in a mapping, issuing ERC721 ids, or counting request ids. * * Include with `using Counters for Counters.Counter;` */ library Counters { struct Counter { // This variable should never be directly accessed by users of the library: interactions must be restricted to // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add // this feature: see https://github.com/ethereum/solidity/issues/4637 uint256 _value; // default: 0 } function current(Counter storage counter) internal view returns (uint256) { return counter._value; } function increment(Counter storage counter) internal { unchecked { counter._value += 1; } } function decrement(Counter storage counter) internal { uint256 value = counter._value; require(value > 0, "Counter: decrement overflow"); unchecked { counter._value = value - 1; } } function reset(Counter storage counter) internal { counter._value = 0; } } // File: @openzeppelin/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `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); /** * @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); } // File: @openzeppelin/contracts/security/ReentrancyGuard.sol // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } } // File: @openzeppelin/contracts/utils/Strings.sol // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } } // 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/security/Pausable.sol // OpenZeppelin Contracts v4.4.1 (security/Pausable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!paused(), "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { require(paused(), "Pausable: not paused"); _; } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts v4.4.1 (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 Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/utils/Address.sol // OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File: @openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol // OpenZeppelin Contracts v4.4.1 (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)); } } /** * @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/finance/PaymentSplitter.sol // OpenZeppelin Contracts v4.4.1 (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. * * `PaymentSplitter` follows a _pull payment_ model. This means that payments are not automatically forwarded to the * accounts but kept in this contract, and the actual transfer is triggered as a separate step by calling the {release} * function. * * NOTE: This contract assumes that ERC20 tokens will behave similarly to native tokens (Ether). Rebasing tokens, and * tokens that apply fees during transfers, are likely to not be supported as expected. If in doubt, we encourage you * to run tests before sending real value to this contract. */ contract PaymentSplitter is Context { event PayeeAdded(address account, uint256 shares); event PaymentReleased(address to, uint256 amount); event ERC20PaymentReleased(IERC20 indexed token, address to, uint256 amount); event PaymentReceived(address from, uint256 amount); uint256 private _totalShares; uint256 private _totalReleased; mapping(address => uint256) private _shares; mapping(address => uint256) private _released; address[] private _payees; mapping(IERC20 => uint256) private _erc20TotalReleased; mapping(IERC20 => mapping(address => uint256)) private _erc20Released; /** * @dev Creates an instance of `PaymentSplitter` where each account in `payees` is assigned the number of shares at * the matching position in the `shares` array. * * All addresses in `payees` must be non-zero. Both arrays must have the same non-zero length, and there must be no * duplicates in `payees`. */ constructor(address[] memory payees, uint256[] memory shares_) payable { require(payees.length == shares_.length, "PaymentSplitter: payees and shares length mismatch"); require(payees.length > 0, "PaymentSplitter: no payees"); for (uint256 i = 0; i < payees.length; i++) { _addPayee(payees[i], shares_[i]); } } /** * @dev The Ether received will be logged with {PaymentReceived} events. Note that these events are not fully * reliable: it's possible for a contract to receive Ether without triggering this function. This only affects the * reliability of the events, and not the actual splitting of Ether. * * To learn more about this see the Solidity documentation for * https://solidity.readthedocs.io/en/latest/contracts.html#fallback-function[fallback * functions]. */ receive() external payable virtual { emit PaymentReceived(_msgSender(), msg.value); } /** * @dev Getter for the total shares held by payees. */ function totalShares() public view returns (uint256) { return _totalShares; } /** * @dev Getter for the total amount of Ether already released. */ function totalReleased() public view returns (uint256) { return _totalReleased; } /** * @dev Getter for the total amount of `token` already released. `token` should be the address of an IERC20 * contract. */ function totalReleased(IERC20 token) public view returns (uint256) { return _erc20TotalReleased[token]; } /** * @dev Getter for the amount of shares held by an account. */ function shares(address account) public view returns (uint256) { return _shares[account]; } /** * @dev Getter for the amount of Ether already released to a payee. */ function released(address account) public view returns (uint256) { return _released[account]; } /** * @dev Getter for the amount of `token` tokens already released to a payee. `token` should be the address of an * IERC20 contract. */ function released(IERC20 token, address account) public view returns (uint256) { return _erc20Released[token][account]; } /** * @dev Getter for the address of the payee number `index`. */ function payee(uint256 index) public view returns (address) { return _payees[index]; } /** * @dev Triggers a transfer to `account` of the amount of Ether they are owed, according to their percentage of the * total shares and their previous withdrawals. */ function release(address payable account) public virtual { require(_shares[account] > 0, "PaymentSplitter: account has no shares"); uint256 totalReceived = address(this).balance + totalReleased(); uint256 payment = _pendingPayment(account, totalReceived, released(account)); require(payment != 0, "PaymentSplitter: account is not due payment"); _released[account] += payment; _totalReleased += payment; Address.sendValue(account, payment); emit PaymentReleased(account, payment); } /** * @dev Triggers a transfer to `account` of the amount of `token` tokens they are owed, according to their * percentage of the total shares and their previous withdrawals. `token` must be the address of an IERC20 * contract. */ function release(IERC20 token, address account) public virtual { require(_shares[account] > 0, "PaymentSplitter: account has no shares"); uint256 totalReceived = token.balanceOf(address(this)) + totalReleased(token); uint256 payment = _pendingPayment(account, totalReceived, released(token, account)); require(payment != 0, "PaymentSplitter: account is not due payment"); _erc20Released[token][account] += payment; _erc20TotalReleased[token] += payment; SafeERC20.safeTransfer(token, account, payment); emit ERC20PaymentReleased(token, account, payment); } /** * @dev internal logic for computing the pending payment of an `account` given the token historical balances and * already released amounts. */ function _pendingPayment( address account, uint256 totalReceived, uint256 alreadyReleased ) private view returns (uint256) { return (totalReceived * _shares[account]) / _totalShares - alreadyReleased; } /** * @dev Add a new payee to the contract. * @param account The address of the payee to add. * @param shares_ The number of shares owned by the payee. */ function _addPayee(address account, uint256 shares_) private { require(account != address(0), "PaymentSplitter: account is the zero address"); require(shares_ > 0, "PaymentSplitter: shares are 0"); require(_shares[account] == 0, "PaymentSplitter: account already has shares"); _payees.push(account); _shares[account] = shares_; _totalShares = _totalShares + shares_; emit PayeeAdded(account, shares_); } } // File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol) pragma solidity ^0.8.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received( address operator, address from, uint256 tokenId, bytes calldata data ) external returns (bytes4); } // File: @openzeppelin/contracts/utils/introspection/IERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); } // File: @openzeppelin/contracts/utils/introspection/ERC165.sol // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } } // File: @openzeppelin/contracts/token/ERC721/IERC721.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol) pragma solidity ^0.8.0; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 tokenId ) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes calldata data ) external; } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); } // File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol) pragma solidity ^0.8.0; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); } // File: @openzeppelin/contracts/token/ERC721/ERC721.sol // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/ERC721.sol) pragma solidity ^0.8.0; /** * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including * the Metadata extension, but not including the Enumerable extension, which is available separately as * {ERC721Enumerable}. */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata { using Address for address; using Strings for uint256; // Token name string private _name; // Token symbol string private _symbol; // Mapping from token ID to owner address mapping(uint256 => address) private _owners; // Mapping owner address to token count mapping(address => uint256) private _balances; // Mapping from token ID to approved address mapping(uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping(address => mapping(address => bool)) private _operatorApprovals; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) { return interfaceId == type(IERC721).interfaceId || interfaceId == type(IERC721Metadata).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _balances[owner]; } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { address owner = _owners[tokenId]; require(owner != address(0), "ERC721: owner query for nonexistent token"); return owner; } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory baseURI = _baseURI(); return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : ""; } /** * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each * token will be the concatenation of the `baseURI` and the `tokenId`. Empty * by default, can be overriden in child contracts. */ function _baseURI() internal view virtual returns (string memory) { return ""; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require( _msgSender() == owner || isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { _setApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom( address from, address to, uint256 tokenId ) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId ) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom( address from, address to, uint256 tokenId, bytes memory _data ) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @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. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer( address from, address to, uint256 tokenId, bytes memory _data ) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _owners[tokenId] != address(0); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: * * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint( address to, uint256 tokenId, bytes memory _data ) internal virtual { _mint(to, tokenId); require( _checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer" ); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _balances[to] += 1; _owners[tokenId] = to; emit Transfer(address(0), to, tokenId); _afterTokenTransfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); _balances[owner] -= 1; delete _owners[tokenId]; emit Transfer(owner, address(0), tokenId); _afterTokenTransfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer( address from, address to, uint256 tokenId ) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer from incorrect owner"); require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _balances[from] -= 1; _balances[to] += 1; _owners[tokenId] = to; emit Transfer(from, to, tokenId); _afterTokenTransfer(from, to, tokenId); } /** * @dev Approve `to` to operate on `tokenId` * * Emits a {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); } /** * @dev Approve `operator` to operate on all of `owner` tokens * * Emits a {ApprovalForAll} event. */ function _setApprovalForAll( address owner, address operator, bool approved ) internal virtual { require(owner != operator, "ERC721: approve to caller"); _operatorApprovals[owner][operator] = approved; emit ApprovalForAll(owner, operator, approved); } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received( address from, address to, uint256 tokenId, bytes memory _data ) private returns (bool) { if (to.isContract()) { try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) { return retval == IERC721Receiver.onERC721Received.selector; } catch (bytes memory reason) { if (reason.length == 0) { revert("ERC721: transfer to non ERC721Receiver implementer"); } else { assembly { revert(add(32, reason), mload(reason)) } } } } else { return true; } } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * 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, ``from``'s `tokenId` will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 tokenId ) internal virtual {} } // File: @openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol // OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/ERC721Enumerable.sol) pragma solidity ^0.8.0; /** * @dev This implements an optional extension of {ERC721} defined in the EIP that adds * enumerability of all the token ids in the contract as well as all token ids owned by each * account. */ abstract contract ERC721Enumerable is ERC721, IERC721Enumerable { // Mapping from owner to list of owned token IDs mapping(address => mapping(uint256 => uint256)) private _ownedTokens; // Mapping from token ID to index of the owner tokens list mapping(uint256 => uint256) private _ownedTokensIndex; // Array with all token ids, used for enumeration uint256[] private _allTokens; // Mapping from token id to position in the allTokens array mapping(uint256 => uint256) private _allTokensIndex; /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721) returns (bool) { return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId); } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds"); return _ownedTokens[owner][index]; } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _allTokens.length; } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds"); return _allTokens[index]; } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * 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, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal virtual override { super._beforeTokenTransfer(from, to, tokenId); if (from == address(0)) { _addTokenToAllTokensEnumeration(tokenId); } else if (from != to) { _removeTokenFromOwnerEnumeration(from, tokenId); } if (to == address(0)) { _removeTokenFromAllTokensEnumeration(tokenId); } else if (to != from) { _addTokenToOwnerEnumeration(to, tokenId); } } /** * @dev Private function to add a token to this extension's ownership-tracking data structures. * @param to address representing the new owner of the given token ID * @param tokenId uint256 ID of the token to be added to the tokens list of the given address */ function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private { uint256 length = ERC721.balanceOf(to); _ownedTokens[to][length] = tokenId; _ownedTokensIndex[tokenId] = length; } /** * @dev Private function to add a token to this extension's token tracking data structures. * @param tokenId uint256 ID of the token to be added to the tokens list */ function _addTokenToAllTokensEnumeration(uint256 tokenId) private { _allTokensIndex[tokenId] = _allTokens.length; _allTokens.push(tokenId); } /** * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for * gas optimizations e.g. when performing a transfer operation (avoiding double writes). * This has O(1) time complexity, but alters the order of the _ownedTokens array. * @param from address representing the previous owner of the given token ID * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address */ function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private { // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = ERC721.balanceOf(from) - 1; uint256 tokenIndex = _ownedTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary if (tokenIndex != lastTokenIndex) { uint256 lastTokenId = _ownedTokens[from][lastTokenIndex]; _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index } // This also deletes the contents at the last position of the array delete _ownedTokensIndex[tokenId]; delete _ownedTokens[from][lastTokenIndex]; } /** * @dev Private function to remove a token from this extension's token tracking data structures. * This has O(1) time complexity, but alters the order of the _allTokens array. * @param tokenId uint256 ID of the token to be removed from the tokens list */ function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private { // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and // then delete the last slot (swap and pop). uint256 lastTokenIndex = _allTokens.length - 1; uint256 tokenIndex = _allTokensIndex[tokenId]; // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding // an 'if' statement (like in _removeTokenFromOwnerEnumeration) uint256 lastTokenId = _allTokens[lastTokenIndex]; _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index // This also deletes the contents at the last position of the array delete _allTokensIndex[tokenId]; _allTokens.pop(); } } // File: contracts/SpaceKidsClub.sol pragma solidity ^0.8.7; /// @custom:security-contact [email protected] contract SpaceKidsClub is ERC721, ERC721Enumerable, Pausable, Ownable, ReentrancyGuard, PaymentSplitter { using Counters for Counters.Counter; using Strings for uint256; //Max NFT supply uint256 public maxSupply = 3500; uint256 public preSaleSupply = 100; uint256 public whitelistSupply = preSaleSupply + 1000; //ID of the next NFT to mint Counters.Counter private nftIdCounter; //Maximum mint quantity uint256 public maxMintPresale = 5; uint256 public maxMintWhitelist = 5; uint256 public maxMintQuantity = 5; //The different prices uint256 public presalePrice = 0.08 ether; uint256 public whitelistPrice = 0.14 ether; uint256 public salePrice = 0.16 ether; //URI of the NFTs when revealed string public baseURI; //URI of the NFTs when not revealed string public unrevealedURI; //Are the NFTs revealed yet bool public revealed = false; //The statuses of the collection enum Status { Before, Presale, WhitelistSale, Sale, SoldOut, Reveal } Status public status = Status.Before; //Events event ChangeBaseURI(string _baseURI); event GiftMint(address indexed _recipient, uint256 _amount); event PresaleMint(address indexed _minter, uint256 _amount, uint256 _price); event WhitelistMint( address indexed _minter, uint256 _amount, uint256 _price ); event SaleMint(address indexed _minter, uint256 _amount, uint256 _price); event StatusChange(Status _previousStatus, Status _newStatus); event PauseMint(); event UnpauseMint(); event Revealed(bool _revealed); //Owner of the smart contract address private _owner; //Keep a track of the number of tokens per address mapping(address => uint256) nftsPerWalletPresale; mapping(address => uint256) nftsPerWalletWhitelist; mapping(address => uint256) nftsPerWallet; //Addresses of all the members of the team address[] private _team = [0xc4b5909C3F4C6dA2fbeb9c73E9CA273f029Ba887]; //Shares of all the members of the team uint256[] private _teamShares = [100]; constructor( string memory _newBaseURI, string memory _unrevealedURI ) ERC721("SpaceKidsClub", "SKC") PaymentSplitter(_team, _teamShares) { baseURI = _newBaseURI; unrevealedURI = _unrevealedURI; } /** * @notice Pauses mint operations **/ function pause() public onlyOwner { _pause(); emit PauseMint(); } /** * @notice Unpauses mint operations **/ function unpause() public onlyOwner { _unpause(); emit UnpauseMint(); } /** * @notice Change the number of NFTs that an address can mint * * @param _maxMintAllowed The number of NFTs that an address can mint **/ function changeMaxMint(uint256 _maxMintAllowed) external onlyOwner { maxMintQuantity = _maxMintAllowed; } /** * @notice Change the number of NFTs that an address can mint during presale * * @param _maxMintAllowed The number of NFTs that an address can mint **/ function changeMaxMintPresale(uint256 _maxMintAllowed) external onlyOwner { maxMintPresale = _maxMintAllowed; } /** * @notice Change the number of NFTs that an address can mint during whitelist * * @param _maxMintAllowed The number of NFTs that an address can mint **/ function changeMaxMintWhitelist(uint256 _maxMintAllowed) external onlyOwner { maxMintWhitelist = _maxMintAllowed; } /** * @notice Change the number of NFTs that can be minted * * @param _maxSupply The number of NFT that can me minted **/ function changeMaxSupply(uint256 _maxSupply) external onlyOwner { maxSupply = _maxSupply; } /** * @notice Change the price of one NFT for the presale and whitelist sale * * @param _pricePresale The new price of one NFT for the presale and whitelist sale **/ function changePricePresale(uint256 _pricePresale) external onlyOwner { presalePrice = _pricePresale; } /** * @notice Change the price of one NFT for the presale and whitelist sale * * @param _whitelistPrice The new price of one NFT for the presale and whitelist sale **/ function changePriceWhitelist(uint256 _whitelistPrice) external onlyOwner { whitelistPrice = _whitelistPrice; } /** * @notice Change the price of one NFT for the sale * * @param _priceSale The new price of one NFT for the sale **/ function changePriceSale(uint256 _priceSale) external onlyOwner { salePrice = _priceSale; } /** * @notice Change the base URI * * @param _newBaseURI The new base URI **/ function setBaseUri(string memory _newBaseURI) external onlyOwner { baseURI = _newBaseURI; emit ChangeBaseURI(_newBaseURI); } /** * @notice Change the not revealed URI * * @param _unrevealedURI The new not revealed URI **/ function setNotRevealURI(string memory _unrevealedURI) external onlyOwner { unrevealedURI = _unrevealedURI; } /** * @notice Allows to set the revealed variable to true **/ function reveal() external onlyOwner { revealed = true; emit Revealed(true); } /** * @notice Return URI of the NFTs when revealed * * @return The URI of the NFTs when revealed **/ function _baseURI() internal view override returns (string memory) { return baseURI; } /** * @notice Allows to change the status to Presale **/ function setupPresale() external onlyOwner { require( status == Status.Before, "The collection is not in the right status to set up presale" ); status = Status.Presale; emit StatusChange(Status.Before, status); } /** * @notice Allows to change the status to Whitelist **/ function setupWhitelistPresale() external onlyOwner { require( status == Status.Presale, "The collection is not in the right status to set up whitelist sale" ); status = Status.WhitelistSale; emit StatusChange(Status.Presale, status); } /** * @notice Allows to change the status to Sale **/ function setupSale() external onlyOwner { require( status == Status.WhitelistSale, "The collection is not in the right status to set up sale" ); status = Status.Sale; emit StatusChange(Status.WhitelistSale, status); } /** * @notice Allows to mint NFTs * * @param _amount The amount of NFT to mint **/ function presaleMint(uint256 _amount) external payable whenNotPaused nonReentrant { //Number of NFT sold uint256 supply = totalSupply(); //If Sale didn't start yet require(status == Status.Presale, "Sorry, sale has not started yet."); //Has user paid enough Ethers require(msg.value >= presalePrice * _amount, "Insufficent funds."); //The user can only mint max 5 NFTs require( _amount <= maxMintPresale, "You can't mint more tokens" ); require(nftsPerWalletPresale[msg.sender] <= maxMintPresale, "You cannot mint more tokens."); //If the user try to mint any non-existent token require( supply + _amount <= preSaleSupply, "Sale is almost done and we don't have enough NFTs left." ); //Add the ammount of NFTs minted by the user to the total he minted nftsPerWalletPresale[msg.sender] += _amount; //Minting all the account NFTs for (uint256 i = 0; i < _amount; i++) { _safeMint(msg.sender, nftIdCounter.current()); nftIdCounter.increment(); } } /** * @notice Allows to mint one NFT if whitelisted for presale * * @param _amount amount of NFTs to mint **/ function whitelistMint(uint256 _amount) external payable whenNotPaused nonReentrant { //Number of NFT sold uint256 supply = totalSupply(); //If Sale didn't start yet require(status == Status.WhitelistSale, "Sorry, sale has not started yet."); //Has user paid enough Ethers require(msg.value >= whitelistPrice * _amount, "Insufficent funds."); //The user can only mint max 5 NFTs require( _amount <= maxMintWhitelist, "You can't mint more tokens" ); //If the user try to mint any non-existent token require( supply + _amount <= whitelistSupply, "Sale is almost done and we don't have enough NFTs left." ); //Add the ammount of NFTs minted by the user to the total he minted nftsPerWalletWhitelist[msg.sender] += _amount; //Minting all the account NFTs for (uint256 i = 0; i < _amount; i++) { _safeMint(msg.sender, nftIdCounter.current()); //Increment the Id of the next NFT to mint nftIdCounter.increment(); } } /** * @notice Allows to mint NFTs * * @param _amount The ammount of NFTs the user wants to mint **/ function saleMint(uint256 _amount) external payable whenNotPaused nonReentrant { //Number of NFT sold uint256 supply = totalSupply(); //If everything has been bought require(status != Status.SoldOut, "Sorry, no NFTs left."); //If Sale didn't start yet require(status == Status.Sale, "Sorry, sale has not started yet."); //Has user paid enough Ethers require(msg.value >= salePrice * _amount, "Insufficent funds."); //The user can only mint max 5 NFTs require( _amount <= maxMintQuantity, "You can't mint more tokens" ); //If the user try to mint any non-existent token require( supply + _amount <= maxSupply, "Sale is almost done and we don't have enough NFTs left." ); //Add the ammount of NFTs minted by the user to the total he minted nftsPerWallet[msg.sender] += _amount; //If this account minted the last NFTs available if (supply + _amount == maxSupply) { status = Status.SoldOut; } //Minting all the account NFTs for (uint256 i = 0; i < _amount; i++) { _safeMint(msg.sender, nftIdCounter.current()); nftIdCounter.increment(); } } /** * @notice Allows to gift one NFT to an address * * @param _account The account of the new owner of one NFT **/ function gift(address _account) external onlyOwner { _safeMint(_account, nftIdCounter.current()); nftIdCounter.increment(); } /** * @notice Allows to get the complete URI of a specific NFT by his ID * * @param _nftId The id of the NFT * * @return The token URI of the NFT which has _nftId Id **/ function tokenURI(uint256 _nftId) public view override(ERC721) returns (string memory) { require(_exists(_nftId), "This NFT doesn't exist."); if (revealed == false) { return unrevealedURI; } string memory currentBaseURI = _baseURI(); return bytes(currentBaseURI).length > 0 ? string( abi.encodePacked(currentBaseURI, _nftId.toString(), ".json") ) : ""; } // The following functions are overrides required by Solidity. function _beforeTokenTransfer( address from, address to, uint256 tokenId ) internal override(ERC721, ERC721Enumerable) whenNotPaused { super._beforeTokenTransfer(from, to, tokenId); } function supportsInterface(bytes4 interfaceId) public view override(ERC721, ERC721Enumerable) returns (bool) { return super.supportsInterface(interfaceId); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"},{"internalType":"string","name":"_unrevealedURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"_baseURI","type":"string"}],"name":"ChangeBaseURI","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":"_recipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"GiftMint","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":[],"name":"PauseMint","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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":"_minter","type":"address"},{"indexed":false,"internalType":"uint256","name":"_amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_price","type":"uint256"}],"name":"PresaleMint","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"_revealed","type":"bool"}],"name":"Revealed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_minter","type":"address"},{"indexed":false,"internalType":"uint256","name":"_amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_price","type":"uint256"}],"name":"SaleMint","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"enum SpaceKidsClub.Status","name":"_previousStatus","type":"uint8"},{"indexed":false,"internalType":"enum SpaceKidsClub.Status","name":"_newStatus","type":"uint8"}],"name":"StatusChange","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"},{"anonymous":false,"inputs":[],"name":"UnpauseMint","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_minter","type":"address"},{"indexed":false,"internalType":"uint256","name":"_amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_price","type":"uint256"}],"name":"WhitelistMint","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAllowed","type":"uint256"}],"name":"changeMaxMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAllowed","type":"uint256"}],"name":"changeMaxMintPresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAllowed","type":"uint256"}],"name":"changeMaxMintWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxSupply","type":"uint256"}],"name":"changeMaxSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_pricePresale","type":"uint256"}],"name":"changePricePresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_priceSale","type":"uint256"}],"name":"changePriceSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_whitelistPrice","type":"uint256"}],"name":"changePriceWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"gift","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintPresale","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintQuantity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintWhitelist","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"payee","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preSaleSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"presaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"presalePrice","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":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"saleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"salePrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_unrevealedURI","type":"string"}],"name":"setNotRevealURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setupPresale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setupSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setupWhitelistPresale","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":[],"name":"status","outputs":[{"internalType":"enum SpaceKidsClub.Status","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_nftId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"}],"name":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalShares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unrevealedURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"whitelistPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whitelistSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
6080604052610dac601355606460148190556200001f906103e86200082a565b60155560056017819055601881905560195567011c37937e080000601a556701f161421c8e0000601b556702386f26fc100000601c55601f805461ffff19169055604080516020810190915273c4b5909c3f4c6da2fbeb9c73e9ca273f029ba887815262000092906023906001620005c8565b50604080516020810190915260648152620000b290602490600162000632565b50348015620000c057600080fd5b50604051620044a4380380620044a4833981016040819052620000e391620007c0565b60238054806020026020016040519081016040528092919081815260200182805480156200013b57602002820191906000526020600020905b81546001600160a01b031681526001909101906020018083116200011c575b505050505060248054806020026020016040519081016040528092919081815260200182805480156200018e57602002820191906000526020600020905b81548152602001906001019080831162000179575b5050604080518082018252600d81526c29b830b1b2a5b4b239a1b63ab160991b602080830191825283518085019094526003845262534b4360e81b908401528151919550919350620001e592506000919062000675565b508051620001fb90600190602084019062000675565b5050600a805460ff1916905550620002133362000380565b6001600b5580518251146200028a5760405162461bcd60e51b815260206004820152603260248201527f5061796d656e7453706c69747465723a2070617965657320616e6420736861726044820152710cae640d8cadccee8d040dad2e6dac2e8c6d60731b60648201526084015b60405180910390fd5b6000825111620002dd5760405162461bcd60e51b815260206004820152601a60248201527f5061796d656e7453706c69747465723a206e6f20706179656573000000000000604482015260640162000281565b60005b8251811015620003495762000334838281518110620003035762000303620008b6565b6020026020010151838381518110620003205762000320620008b6565b6020026020010151620003da60201b60201c565b80620003408162000882565b915050620002e0565b50508251620003619150601d90602085019062000675565b5080516200037790601e90602084019062000675565b505050620008e2565b600a80546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620004475760405162461bcd60e51b815260206004820152602c60248201527f5061796d656e7453706c69747465723a206163636f756e74206973207468652060448201526b7a65726f206164647265737360a01b606482015260840162000281565b60008111620004995760405162461bcd60e51b815260206004820152601d60248201527f5061796d656e7453706c69747465723a20736861726573206172652030000000604482015260640162000281565b6001600160a01b0382166000908152600e602052604090205415620005155760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e7420616c726561647960448201526a206861732073686172657360a81b606482015260840162000281565b60108054600181019091557f1b6847dc741a1b0cd08d278845f9d819d87b734759afb55fe2de5cb82a9ae6720180546001600160a01b0319166001600160a01b0384169081179091556000908152600e60205260409020819055600c546200057f9082906200082a565b600c55604080516001600160a01b0384168152602081018390527f40c340f65e17194d14ddddb073d3c9f888e3cb52b5aae0c6c7706b4fbc905fac910160405180910390a15050565b82805482825590600052602060002090810192821562000620579160200282015b828111156200062057825182546001600160a01b0319166001600160a01b03909116178255602090920191600190910190620005e9565b506200062e929150620006f2565b5090565b82805482825590600052602060002090810192821562000620579160200282015b8281111562000620578251829060ff1690559160200191906001019062000653565b828054620006839062000845565b90600052602060002090601f016020900481019282620006a7576000855562000620565b82601f10620006c257805160ff191683800117855562000620565b8280016001018555821562000620579182015b8281111562000620578251825591602001919060010190620006d5565b5b808211156200062e5760008155600101620006f3565b600082601f8301126200071b57600080fd5b81516001600160401b0380821115620007385762000738620008cc565b604051601f8301601f19908116603f01168101908282118183101715620007635762000763620008cc565b816040528381526020925086838588010111156200078057600080fd5b600091505b83821015620007a4578582018301518183018401529082019062000785565b83821115620007b65760008385830101525b9695505050505050565b60008060408385031215620007d457600080fd5b82516001600160401b0380821115620007ec57600080fd5b620007fa8683870162000709565b935060208501519150808211156200081157600080fd5b50620008208582860162000709565b9150509250929050565b60008219821115620008405762000840620008a0565b500190565b600181811c908216806200085a57607f821691505b602082108114156200087c57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415620008995762000899620008a0565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b613bb280620008f26000396000f3fe6080604052600436106103a55760003560e01c80638456cb59116101e7578063b88d4fde1161010d578063e0c3d2d7116100a0578063f2fde38b1161006f578063f2fde38b14610af2578063f51f96dd14610b12578063fc1a1c3614610b28578063ffcd55a814610b3e57600080fd5b8063e0c3d2d714610a5f578063e33b7de314610a74578063e8ee06e314610a89578063e985e9c514610aa957600080fd5b8063cbfc4bce116100dc578063cbfc4bce146109bd578063ce7c2ac2146109dd578063d5abeb0114610a13578063d79779b214610a2957600080fd5b8063b88d4fde14610955578063ba336c0914610975578063c87b56dd1461098a578063c9b298f1146109aa57600080fd5b80639852595c11610185578063a475b5dd11610154578063a475b5dd146108f4578063a4a6d57b14610909578063a759a7c814610929578063ae9aea6d1461093f57600080fd5b80639852595c1461085e578063993a14fd14610894578063a0bcfc7f146108b4578063a22cb465146108d457600080fd5b80638ca887ca116101c15780638ca887ca146107fe5780638da5cb5b1461081157806392f745c31461083457806395d89b411461084957600080fd5b80638456cb59146107b6578063868ff4a2146107cb5780638b83209b146107de57600080fd5b80633f4ba83a116102cc578063518302271161026a5780636c0360eb116102395780636c0360eb146107575780637035bf181461076c57806370a0823114610781578063715018a6146107a157600080fd5b806351830227146106e55780635accac99146106ff5780635c975abb1461071f5780636352211e1461073757600080fd5b8063406072a9116102a6578063406072a91461063f57806342842e0e1461068557806348b75044146106a55780634f6ccce7146106c557600080fd5b80633f4ba83a146105ea5780633f5fbad0146105ff578063404c7cdd1461061f57600080fd5b80631dcfab39116103445780632e055bcc116103135780632e055bcc146105895780632f745c591461059f57806333e61413146105bf5780633a98ef39146105d557600080fd5b80631dcfab39146104fd578063200d2ed21461051d57806320c63e3b1461054957806323b872dd1461056957600080fd5b8063081812fc11610380578063081812fc1461046e578063095ea7b3146104a657806318160ddd146104c857806319165587146104dd57600080fd5b80620e7fa8146103f357806301ffc9a71461041c57806306fdde031461044c57600080fd5b366103ee577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be77033604080516001600160a01b0390921682523460208301520160405180910390a1005b600080fd5b3480156103ff57600080fd5b50610409601a5481565b6040519081526020015b60405180910390f35b34801561042857600080fd5b5061043c610437366004613531565b610b54565b6040519015158152602001610413565b34801561045857600080fd5b50610461610b65565b60405161041391906136f5565b34801561047a57600080fd5b5061048e6104893660046135b4565b610bf7565b6040516001600160a01b039091168152602001610413565b3480156104b257600080fd5b506104c66104c13660046134e8565b610c91565b005b3480156104d457600080fd5b50600854610409565b3480156104e957600080fd5b506104c66104f83660046133a3565b610da7565b34801561050957600080fd5b506104c66105183660046135b4565b610ed5565b34801561052957600080fd5b50601f5461053c90610100900460ff1681565b60405161041391906136cc565b34801561055557600080fd5b506104c66105643660046135b4565b610f0a565b34801561057557600080fd5b506104c66105843660046133f9565b610f3f565b34801561059557600080fd5b5061040960145481565b3480156105ab57600080fd5b506104096105ba3660046134e8565b610f70565b3480156105cb57600080fd5b5061040960155481565b3480156105e157600080fd5b50600c54610409565b3480156105f657600080fd5b506104c6611006565b34801561060b57600080fd5b506104c661061a3660046135b4565b611069565b34801561062b57600080fd5b506104c661063a3660046135b4565b61109e565b34801561064b57600080fd5b5061040961065a3660046133c0565b6001600160a01b03918216600090815260126020908152604080832093909416825291909152205490565b34801561069157600080fd5b506104c66106a03660046133f9565b6110d3565b3480156106b157600080fd5b506104c66106c03660046133c0565b6110ee565b3480156106d157600080fd5b506104096106e03660046135b4565b6112d6565b3480156106f157600080fd5b50601f5461043c9060ff1681565b34801561070b57600080fd5b506104c661071a36600461356b565b611369565b34801561072b57600080fd5b50600a5460ff1661043c565b34801561074357600080fd5b5061048e6107523660046135b4565b6113b0565b34801561076357600080fd5b50610461611427565b34801561077857600080fd5b506104616114b5565b34801561078d57600080fd5b5061040961079c3660046133a3565b6114c2565b3480156107ad57600080fd5b506104c6611549565b3480156107c257600080fd5b506104c6611585565b6104c66107d93660046135b4565b6115e8565b3480156107ea57600080fd5b5061048e6107f93660046135b4565b611761565b6104c661080c3660046135b4565b611791565b34801561081d57600080fd5b50600a5461010090046001600160a01b031661048e565b34801561084057600080fd5b506104c6611980565b34801561085557600080fd5b50610461611a95565b34801561086a57600080fd5b506104096108793660046133a3565b6001600160a01b03166000908152600f602052604090205490565b3480156108a057600080fd5b506104c66108af3660046135b4565b611aa4565b3480156108c057600080fd5b506104c66108cf36600461356b565b611ad9565b3480156108e057600080fd5b506104c66108ef3660046134ba565b611b57565b34801561090057600080fd5b506104c6611b62565b34801561091557600080fd5b506104c66109243660046135b4565b611bd2565b34801561093557600080fd5b5061040960185481565b34801561094b57600080fd5b5061040960195481565b34801561096157600080fd5b506104c661097036600461343a565b611c07565b34801561098157600080fd5b506104c6611c3f565b34801561099657600080fd5b506104616109a53660046135b4565b611d4b565b6104c66109b83660046135b4565b611eaa565b3480156109c957600080fd5b506104c66109d83660046133a3565b612073565b3480156109e957600080fd5b506104096109f83660046133a3565b6001600160a01b03166000908152600e602052604090205490565b348015610a1f57600080fd5b5061040960135481565b348015610a3557600080fd5b50610409610a443660046133a3565b6001600160a01b031660009081526011602052604090205490565b348015610a6b57600080fd5b506104c66120c1565b348015610a8057600080fd5b50600d54610409565b348015610a9557600080fd5b506104c6610aa43660046135b4565b6121d8565b348015610ab557600080fd5b5061043c610ac43660046133c0565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b348015610afe57600080fd5b506104c6610b0d3660046133a3565b61220d565b348015610b1e57600080fd5b50610409601c5481565b348015610b3457600080fd5b50610409601b5481565b348015610b4a57600080fd5b5061040960175481565b6000610b5f826122ab565b92915050565b606060008054610b7490613a55565b80601f0160208091040260200160405190810160405280929190818152602001828054610ba090613a55565b8015610bed5780601f10610bc257610100808354040283529160200191610bed565b820191906000526020600020905b815481529060010190602001808311610bd057829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610c755760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610c9c826113b0565b9050806001600160a01b0316836001600160a01b03161415610d0a5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610c6c565b336001600160a01b0382161480610d265750610d268133610ac4565b610d985760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610c6c565b610da283836122d0565b505050565b6001600160a01b0381166000908152600e6020526040902054610ddc5760405162461bcd60e51b8152600401610c6c9061375a565b6000610de7600d5490565b610df190476139c7565b90506000610e1e8383610e19866001600160a01b03166000908152600f602052604090205490565b61233e565b905080610e3d5760405162461bcd60e51b8152600401610c6c90613803565b6001600160a01b0383166000908152600f602052604081208054839290610e659084906139c7565b9250508190555080600d6000828254610e7e91906139c7565b90915550610e8e90508382612384565b604080516001600160a01b0385168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a1505050565b600a546001600160a01b03610100909104163314610f055760405162461bcd60e51b8152600401610c6c906138d5565b601c55565b600a546001600160a01b03610100909104163314610f3a5760405162461bcd60e51b8152600401610c6c906138d5565b601955565b610f49338261249d565b610f655760405162461bcd60e51b8152600401610c6c9061390a565b610da2838383612593565b6000610f7b836114c2565b8210610fdd5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610c6c565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b036101009091041633146110365760405162461bcd60e51b8152600401610c6c906138d5565b61103e61273a565b6040517fb990237e5cb8641541a3a2433884191ecc99769cc76a908e26184d91d222d9ff90600090a1565b600a546001600160a01b036101009091041633146110995760405162461bcd60e51b8152600401610c6c906138d5565b601a55565b600a546001600160a01b036101009091041633146110ce5760405162461bcd60e51b8152600401610c6c906138d5565b601355565b610da283838360405180602001604052806000815250611c07565b6001600160a01b0381166000908152600e60205260409020546111235760405162461bcd60e51b8152600401610c6c9061375a565b6001600160a01b0382166000908152601160205260408120546040516370a0823160e01b81523060048201526001600160a01b038516906370a082319060240160206040518083038186803b15801561117b57600080fd5b505afa15801561118f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111b391906135cd565b6111bd91906139c7565b905060006111f68383610e1987876001600160a01b03918216600090815260126020908152604080832093909416825291909152205490565b9050806112155760405162461bcd60e51b8152600401610c6c90613803565b6001600160a01b0380851660009081526012602090815260408083209387168352929052908120805483929061124c9084906139c7565b90915550506001600160a01b038416600090815260116020526040812080548392906112799084906139c7565b9091555061128a90508484836127c8565b604080516001600160a01b038581168252602082018490528616917f3be5b7a71e84ed12875d241991c70855ac5817d847039e17a9d895c1ceb0f18a910160405180910390a250505050565b60006112e160085490565b82106113445760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610c6c565b6008828154811061135757611357613b17565b90600052602060002001549050919050565b600a546001600160a01b036101009091041633146113995760405162461bcd60e51b8152600401610c6c906138d5565b80516113ac90601e906020840190613294565b5050565b6000818152600260205260408120546001600160a01b031680610b5f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610c6c565b601d805461143490613a55565b80601f016020809104026020016040519081016040528092919081815260200182805461146090613a55565b80156114ad5780601f10611482576101008083540402835291602001916114ad565b820191906000526020600020905b81548152906001019060200180831161149057829003601f168201915b505050505081565b601e805461143490613a55565b60006001600160a01b03821661152d5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610c6c565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b036101009091041633146115795760405162461bcd60e51b8152600401610c6c906138d5565b611583600061281a565b565b600a546001600160a01b036101009091041633146115b55760405162461bcd60e51b8152600401610c6c906138d5565b6115bd612874565b6040517f481298826863446c7b7161e72d607dc275b106116e7f653d413350f9b5d0c02990600090a1565b600a5460ff161561160b5760405162461bcd60e51b8152600401610c6c9061384e565b6002600b54141561162e5760405162461bcd60e51b8152600401610c6c9061395b565b6002600b55600061163e60085490565b90506002601f54610100900460ff16600581111561165e5761165e613aeb565b1461167b5760405162461bcd60e51b8152600401610c6c90613992565b81601b5461168991906139f3565b3410156116a85760405162461bcd60e51b8152600401610c6c906137d7565b6018548211156116ca5760405162461bcd60e51b8152600401610c6c906137a0565b6015546116d783836139c7565b11156116f55760405162461bcd60e51b8152600401610c6c90613878565b33600090815260216020526040812080548492906117149084906139c7565b90915550600090505b82811015611757576117373361173260165490565b6128cc565b611745601680546001019055565b8061174f81613a90565b91505061171d565b50506001600b5550565b60006010828154811061177657611776613b17565b6000918252602090912001546001600160a01b031692915050565b600a5460ff16156117b45760405162461bcd60e51b8152600401610c6c9061384e565b6002600b5414156117d75760405162461bcd60e51b8152600401610c6c9061395b565b6002600b5560006117e760085490565b90506004601f54610100900460ff16600581111561180757611807613aeb565b141561184c5760405162461bcd60e51b815260206004820152601460248201527329b7b9393c961037379027232a39903632b33a1760611b6044820152606401610c6c565b6003601f54610100900460ff16600581111561186a5761186a613aeb565b146118875760405162461bcd60e51b8152600401610c6c90613992565b81601c5461189591906139f3565b3410156118b45760405162461bcd60e51b8152600401610c6c906137d7565b6019548211156118d65760405162461bcd60e51b8152600401610c6c906137a0565b6013546118e383836139c7565b11156119015760405162461bcd60e51b8152600401610c6c90613878565b33600090815260226020526040812080548492906119209084906139c7565b909155505060135461193283836139c7565b141561194857601f805461ff0019166104001790555b60005b82811015611757576119603361173260165490565b61196e601680546001019055565b8061197881613a90565b91505061194b565b600a546001600160a01b036101009091041633146119b05760405162461bcd60e51b8152600401610c6c906138d5565b6000601f54610100900460ff1660058111156119ce576119ce613aeb565b14611a415760405162461bcd60e51b815260206004820152603b60248201527f54686520636f6c6c656374696f6e206973206e6f7420696e207468652072696760448201527f68742073746174757320746f207365742075702070726573616c6500000000006064820152608401610c6c565b601f805461ff001916610100908117918290556040517feadbfbf31058a12c180f3384935534d5073c83d5377c1a3fdd849afe203a082892611a8b92600092910460ff16906136da565b60405180910390a1565b606060018054610b7490613a55565b600a546001600160a01b03610100909104163314611ad45760405162461bcd60e51b8152600401610c6c906138d5565b601b55565b600a546001600160a01b03610100909104163314611b095760405162461bcd60e51b8152600401610c6c906138d5565b8051611b1c90601d906020840190613294565b507f8a274cdd629b9aae599b13d8bfee3ee4a15350b0386a9b64087a393db009376781604051611b4c91906136f5565b60405180910390a150565b6113ac3383836128e6565b600a546001600160a01b03610100909104163314611b925760405162461bcd60e51b8152600401610c6c906138d5565b601f805460ff191660019081179091556040519081527f20a5b4e05b29089957b31c76110692167d828e9ecb1be33824e11609370e802190602001611a8b565b600a546001600160a01b03610100909104163314611c025760405162461bcd60e51b8152600401610c6c906138d5565b601755565b611c11338361249d565b611c2d5760405162461bcd60e51b8152600401610c6c9061390a565b611c39848484846129b5565b50505050565b600a546001600160a01b03610100909104163314611c6f5760405162461bcd60e51b8152600401610c6c906138d5565b6002601f54610100900460ff166005811115611c8d57611c8d613aeb565b14611d005760405162461bcd60e51b815260206004820152603860248201527f54686520636f6c6c656374696f6e206973206e6f7420696e207468652072696760448201527f68742073746174757320746f207365742075702073616c6500000000000000006064820152608401610c6c565b601f805461ff00191661030017908190556040517feadbfbf31058a12c180f3384935534d5073c83d5377c1a3fdd849afe203a082891611a8b91600291610100900460ff16906136da565b6000818152600260205260409020546060906001600160a01b0316611db25760405162461bcd60e51b815260206004820152601760248201527f54686973204e465420646f65736e27742065786973742e0000000000000000006044820152606401610c6c565b601f5460ff16611e4e57601e8054611dc990613a55565b80601f0160208091040260200160405190810160405280929190818152602001828054611df590613a55565b8015611e425780601f10611e1757610100808354040283529160200191611e42565b820191906000526020600020905b815481529060010190602001808311611e2557829003601f168201915b50505050509050919050565b6000611e586129e8565b90506000815111611e785760405180602001604052806000815250611ea3565b80611e82846129f7565b604051602001611e93929190613650565b6040516020818303038152906040525b9392505050565b600a5460ff1615611ecd5760405162461bcd60e51b8152600401610c6c9061384e565b6002600b541415611ef05760405162461bcd60e51b8152600401610c6c9061395b565b6002600b556000611f0060085490565b90506001601f54610100900460ff166005811115611f2057611f20613aeb565b14611f3d5760405162461bcd60e51b8152600401610c6c90613992565b81601a54611f4b91906139f3565b341015611f6a5760405162461bcd60e51b8152600401610c6c906137d7565b601754821115611f8c5760405162461bcd60e51b8152600401610c6c906137a0565b6017543360009081526020805260409020541115611fec5760405162461bcd60e51b815260206004820152601c60248201527f596f752063616e6e6f74206d696e74206d6f726520746f6b656e732e000000006044820152606401610c6c565b601454611ff983836139c7565b11156120175760405162461bcd60e51b8152600401610c6c90613878565b336000908152602080526040812080548492906120359084906139c7565b90915550600090505b82811015611757576120533361173260165490565b612061601680546001019055565b8061206b81613a90565b91505061203e565b600a546001600160a01b036101009091041633146120a35760405162461bcd60e51b8152600401610c6c906138d5565b6120b08161173260165490565b6120be601680546001019055565b50565b600a546001600160a01b036101009091041633146120f15760405162461bcd60e51b8152600401610c6c906138d5565b6001601f54610100900460ff16600581111561210f5761210f613aeb565b1461218d5760405162461bcd60e51b815260206004820152604260248201527f54686520636f6c6c656374696f6e206973206e6f7420696e207468652072696760448201527f68742073746174757320746f207365742075702077686974656c6973742073616064820152616c6560f01b608482015260a401610c6c565b601f805461ff00191661020017908190556040517feadbfbf31058a12c180f3384935534d5073c83d5377c1a3fdd849afe203a082891611a8b91600191610100900460ff16906136da565b600a546001600160a01b036101009091041633146122085760405162461bcd60e51b8152600401610c6c906138d5565b601855565b600a546001600160a01b0361010090910416331461223d5760405162461bcd60e51b8152600401610c6c906138d5565b6001600160a01b0381166122a25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610c6c565b6120be8161281a565b60006001600160e01b0319821663780e9d6360e01b1480610b5f5750610b5f82612af5565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190612305826113b0565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600c546001600160a01b0384166000908152600e60205260408120549091839161236890866139f3565b61237291906139df565b61237c9190613a12565b949350505050565b804710156123d45760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610c6c565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114612421576040519150601f19603f3d011682016040523d82523d6000602084013e612426565b606091505b5050905080610da25760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610c6c565b6000818152600260205260408120546001600160a01b03166125165760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610c6c565b6000612521836113b0565b9050806001600160a01b0316846001600160a01b0316148061255c5750836001600160a01b031661255184610bf7565b6001600160a01b0316145b8061237c57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff16949350505050565b826001600160a01b03166125a6826113b0565b6001600160a01b03161461260a5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610c6c565b6001600160a01b03821661266c5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610c6c565b612677838383612b45565b6126826000826122d0565b6001600160a01b03831660009081526003602052604081208054600192906126ab908490613a12565b90915550506001600160a01b03821660009081526003602052604081208054600192906126d99084906139c7565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a5460ff166127835760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610c6c565b600a805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b039091168152602001611a8b565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052610da2908490612b73565b600a80546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a5460ff16156128975760405162461bcd60e51b8152600401610c6c9061384e565b600a805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586127b03390565b6113ac828260405180602001604052806000815250612c45565b816001600160a01b0316836001600160a01b031614156129485760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610c6c565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6129c0848484612593565b6129cc84848484612c78565b611c395760405162461bcd60e51b8152600401610c6c90613708565b6060601d8054610b7490613a55565b606081612a1b5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612a455780612a2f81613a90565b9150612a3e9050600a836139df565b9150612a1f565b60008167ffffffffffffffff811115612a6057612a60613b2d565b6040519080825280601f01601f191660200182016040528015612a8a576020820181803683370190505b5090505b841561237c57612a9f600183613a12565b9150612aac600a86613aab565b612ab79060306139c7565b60f81b818381518110612acc57612acc613b17565b60200101906001600160f81b031916908160001a905350612aee600a866139df565b9450612a8e565b60006001600160e01b031982166380ac58cd60e01b1480612b2657506001600160e01b03198216635b5e139f60e01b145b80610b5f57506301ffc9a760e01b6001600160e01b0319831614610b5f565b600a5460ff1615612b685760405162461bcd60e51b8152600401610c6c9061384e565b610da2838383612d85565b6000612bc8826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316612e3d9092919063ffffffff16565b805190915015610da25780806020019051810190612be69190613514565b610da25760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610c6c565b612c4f8383612e4c565b612c5c6000848484612c78565b610da25760405162461bcd60e51b8152600401610c6c90613708565b60006001600160a01b0384163b15612d7a57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612cbc90339089908890889060040161368f565b602060405180830381600087803b158015612cd657600080fd5b505af1925050508015612d06575060408051601f3d908101601f19168201909252612d039181019061354e565b60015b612d60573d808015612d34576040519150601f19603f3d011682016040523d82523d6000602084013e612d39565b606091505b508051612d585760405162461bcd60e51b8152600401610c6c90613708565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061237c565b506001949350505050565b6001600160a01b038316612de057612ddb81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612e03565b816001600160a01b0316836001600160a01b031614612e0357612e038382612f9a565b6001600160a01b038216612e1a57610da281613037565b826001600160a01b0316826001600160a01b031614610da257610da282826130e6565b606061237c848460008561312a565b6001600160a01b038216612ea25760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610c6c565b6000818152600260205260409020546001600160a01b031615612f075760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610c6c565b612f1360008383612b45565b6001600160a01b0382166000908152600360205260408120805460019290612f3c9084906139c7565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001612fa7846114c2565b612fb19190613a12565b600083815260076020526040902054909150808214613004576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061304990600190613a12565b6000838152600960205260408120546008805493945090928490811061307157613071613b17565b90600052602060002001549050806008838154811061309257613092613b17565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806130ca576130ca613b01565b6001900381819060005260206000200160009055905550505050565b60006130f1836114c2565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b60608247101561318b5760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b6064820152608401610c6c565b6001600160a01b0385163b6131e25760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610c6c565b600080866001600160a01b031685876040516131fe9190613634565b60006040518083038185875af1925050503d806000811461323b576040519150601f19603f3d011682016040523d82523d6000602084013e613240565b606091505b509150915061325082828661325b565b979650505050505050565b6060831561326a575081611ea3565b82511561327a5782518084602001fd5b8160405162461bcd60e51b8152600401610c6c91906136f5565b8280546132a090613a55565b90600052602060002090601f0160209004810192826132c25760008555613308565b82601f106132db57805160ff1916838001178555613308565b82800160010185558215613308579182015b828111156133085782518255916020019190600101906132ed565b50613314929150613318565b5090565b5b808211156133145760008155600101613319565b600067ffffffffffffffff8084111561334857613348613b2d565b604051601f8501601f19908116603f0116810190828211818310171561337057613370613b2d565b8160405280935085815286868601111561338957600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156133b557600080fd5b8135611ea381613b43565b600080604083850312156133d357600080fd5b82356133de81613b43565b915060208301356133ee81613b43565b809150509250929050565b60008060006060848603121561340e57600080fd5b833561341981613b43565b9250602084013561342981613b43565b929592945050506040919091013590565b6000806000806080858703121561345057600080fd5b843561345b81613b43565b9350602085013561346b81613b43565b925060408501359150606085013567ffffffffffffffff81111561348e57600080fd5b8501601f8101871361349f57600080fd5b6134ae8782356020840161332d565b91505092959194509250565b600080604083850312156134cd57600080fd5b82356134d881613b43565b915060208301356133ee81613b58565b600080604083850312156134fb57600080fd5b823561350681613b43565b946020939093013593505050565b60006020828403121561352657600080fd5b8151611ea381613b58565b60006020828403121561354357600080fd5b8135611ea381613b66565b60006020828403121561356057600080fd5b8151611ea381613b66565b60006020828403121561357d57600080fd5b813567ffffffffffffffff81111561359457600080fd5b8201601f810184136135a557600080fd5b61237c8482356020840161332d565b6000602082840312156135c657600080fd5b5035919050565b6000602082840312156135df57600080fd5b5051919050565b600081518084526135fe816020860160208601613a29565b601f01601f19169290920160200192915050565b6006811061363057634e487b7160e01b600052602160045260246000fd5b9052565b60008251613646818460208701613a29565b9190910192915050565b60008351613662818460208801613a29565b835190830190613676818360208801613a29565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906136c2908301846135e6565b9695505050505050565b60208101610b5f8284613612565b604081016136e88285613612565b611ea36020830184613612565b602081526000611ea360208301846135e6565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060408201526573686172657360d01b606082015260800190565b6020808252601a908201527f596f752063616e2774206d696e74206d6f726520746f6b656e73000000000000604082015260600190565b60208082526012908201527124b739bab33334b1b2b73a10333ab732399760711b604082015260600190565b6020808252602b908201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060408201526a191d59481c185e5b595b9d60aa1b606082015260800190565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b60208082526037908201527f53616c6520697320616c6d6f737420646f6e6520616e6420776520646f6e277460408201527f206861766520656e6f756768204e465473206c6566742e000000000000000000606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b6020808252818101527f536f7272792c2073616c6520686173206e6f742073746172746564207965742e604082015260600190565b600082198211156139da576139da613abf565b500190565b6000826139ee576139ee613ad5565b500490565b6000816000190483118215151615613a0d57613a0d613abf565b500290565b600082821015613a2457613a24613abf565b500390565b60005b83811015613a44578181015183820152602001613a2c565b83811115611c395750506000910152565b600181811c90821680613a6957607f821691505b60208210811415613a8a57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415613aa457613aa4613abf565b5060010190565b600082613aba57613aba613ad5565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b03811681146120be57600080fd5b80151581146120be57600080fd5b6001600160e01b0319811681146120be57600080fdfea264697066735822122017dab9619afd47bae70733cd7189f931d72500a0ae8a83159ce94f5055646af564736f6c63430008070033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5163456e3251516b5162796252445779567a4847387779656743716e64626539594163624d6232716f314b702f000000000000000000000000000000000000000000000000000000000000000000000000000000000044697066733a2f2f516d574a356369696d79636f6a32636f657738594465796239724d796879386631454d567173337a45556e68656d2f756e72657665616c65642e706e6700000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x6080604052600436106103a55760003560e01c80638456cb59116101e7578063b88d4fde1161010d578063e0c3d2d7116100a0578063f2fde38b1161006f578063f2fde38b14610af2578063f51f96dd14610b12578063fc1a1c3614610b28578063ffcd55a814610b3e57600080fd5b8063e0c3d2d714610a5f578063e33b7de314610a74578063e8ee06e314610a89578063e985e9c514610aa957600080fd5b8063cbfc4bce116100dc578063cbfc4bce146109bd578063ce7c2ac2146109dd578063d5abeb0114610a13578063d79779b214610a2957600080fd5b8063b88d4fde14610955578063ba336c0914610975578063c87b56dd1461098a578063c9b298f1146109aa57600080fd5b80639852595c11610185578063a475b5dd11610154578063a475b5dd146108f4578063a4a6d57b14610909578063a759a7c814610929578063ae9aea6d1461093f57600080fd5b80639852595c1461085e578063993a14fd14610894578063a0bcfc7f146108b4578063a22cb465146108d457600080fd5b80638ca887ca116101c15780638ca887ca146107fe5780638da5cb5b1461081157806392f745c31461083457806395d89b411461084957600080fd5b80638456cb59146107b6578063868ff4a2146107cb5780638b83209b146107de57600080fd5b80633f4ba83a116102cc578063518302271161026a5780636c0360eb116102395780636c0360eb146107575780637035bf181461076c57806370a0823114610781578063715018a6146107a157600080fd5b806351830227146106e55780635accac99146106ff5780635c975abb1461071f5780636352211e1461073757600080fd5b8063406072a9116102a6578063406072a91461063f57806342842e0e1461068557806348b75044146106a55780634f6ccce7146106c557600080fd5b80633f4ba83a146105ea5780633f5fbad0146105ff578063404c7cdd1461061f57600080fd5b80631dcfab39116103445780632e055bcc116103135780632e055bcc146105895780632f745c591461059f57806333e61413146105bf5780633a98ef39146105d557600080fd5b80631dcfab39146104fd578063200d2ed21461051d57806320c63e3b1461054957806323b872dd1461056957600080fd5b8063081812fc11610380578063081812fc1461046e578063095ea7b3146104a657806318160ddd146104c857806319165587146104dd57600080fd5b80620e7fa8146103f357806301ffc9a71461041c57806306fdde031461044c57600080fd5b366103ee577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be77033604080516001600160a01b0390921682523460208301520160405180910390a1005b600080fd5b3480156103ff57600080fd5b50610409601a5481565b6040519081526020015b60405180910390f35b34801561042857600080fd5b5061043c610437366004613531565b610b54565b6040519015158152602001610413565b34801561045857600080fd5b50610461610b65565b60405161041391906136f5565b34801561047a57600080fd5b5061048e6104893660046135b4565b610bf7565b6040516001600160a01b039091168152602001610413565b3480156104b257600080fd5b506104c66104c13660046134e8565b610c91565b005b3480156104d457600080fd5b50600854610409565b3480156104e957600080fd5b506104c66104f83660046133a3565b610da7565b34801561050957600080fd5b506104c66105183660046135b4565b610ed5565b34801561052957600080fd5b50601f5461053c90610100900460ff1681565b60405161041391906136cc565b34801561055557600080fd5b506104c66105643660046135b4565b610f0a565b34801561057557600080fd5b506104c66105843660046133f9565b610f3f565b34801561059557600080fd5b5061040960145481565b3480156105ab57600080fd5b506104096105ba3660046134e8565b610f70565b3480156105cb57600080fd5b5061040960155481565b3480156105e157600080fd5b50600c54610409565b3480156105f657600080fd5b506104c6611006565b34801561060b57600080fd5b506104c661061a3660046135b4565b611069565b34801561062b57600080fd5b506104c661063a3660046135b4565b61109e565b34801561064b57600080fd5b5061040961065a3660046133c0565b6001600160a01b03918216600090815260126020908152604080832093909416825291909152205490565b34801561069157600080fd5b506104c66106a03660046133f9565b6110d3565b3480156106b157600080fd5b506104c66106c03660046133c0565b6110ee565b3480156106d157600080fd5b506104096106e03660046135b4565b6112d6565b3480156106f157600080fd5b50601f5461043c9060ff1681565b34801561070b57600080fd5b506104c661071a36600461356b565b611369565b34801561072b57600080fd5b50600a5460ff1661043c565b34801561074357600080fd5b5061048e6107523660046135b4565b6113b0565b34801561076357600080fd5b50610461611427565b34801561077857600080fd5b506104616114b5565b34801561078d57600080fd5b5061040961079c3660046133a3565b6114c2565b3480156107ad57600080fd5b506104c6611549565b3480156107c257600080fd5b506104c6611585565b6104c66107d93660046135b4565b6115e8565b3480156107ea57600080fd5b5061048e6107f93660046135b4565b611761565b6104c661080c3660046135b4565b611791565b34801561081d57600080fd5b50600a5461010090046001600160a01b031661048e565b34801561084057600080fd5b506104c6611980565b34801561085557600080fd5b50610461611a95565b34801561086a57600080fd5b506104096108793660046133a3565b6001600160a01b03166000908152600f602052604090205490565b3480156108a057600080fd5b506104c66108af3660046135b4565b611aa4565b3480156108c057600080fd5b506104c66108cf36600461356b565b611ad9565b3480156108e057600080fd5b506104c66108ef3660046134ba565b611b57565b34801561090057600080fd5b506104c6611b62565b34801561091557600080fd5b506104c66109243660046135b4565b611bd2565b34801561093557600080fd5b5061040960185481565b34801561094b57600080fd5b5061040960195481565b34801561096157600080fd5b506104c661097036600461343a565b611c07565b34801561098157600080fd5b506104c6611c3f565b34801561099657600080fd5b506104616109a53660046135b4565b611d4b565b6104c66109b83660046135b4565b611eaa565b3480156109c957600080fd5b506104c66109d83660046133a3565b612073565b3480156109e957600080fd5b506104096109f83660046133a3565b6001600160a01b03166000908152600e602052604090205490565b348015610a1f57600080fd5b5061040960135481565b348015610a3557600080fd5b50610409610a443660046133a3565b6001600160a01b031660009081526011602052604090205490565b348015610a6b57600080fd5b506104c66120c1565b348015610a8057600080fd5b50600d54610409565b348015610a9557600080fd5b506104c6610aa43660046135b4565b6121d8565b348015610ab557600080fd5b5061043c610ac43660046133c0565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b348015610afe57600080fd5b506104c6610b0d3660046133a3565b61220d565b348015610b1e57600080fd5b50610409601c5481565b348015610b3457600080fd5b50610409601b5481565b348015610b4a57600080fd5b5061040960175481565b6000610b5f826122ab565b92915050565b606060008054610b7490613a55565b80601f0160208091040260200160405190810160405280929190818152602001828054610ba090613a55565b8015610bed5780601f10610bc257610100808354040283529160200191610bed565b820191906000526020600020905b815481529060010190602001808311610bd057829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610c755760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610c9c826113b0565b9050806001600160a01b0316836001600160a01b03161415610d0a5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610c6c565b336001600160a01b0382161480610d265750610d268133610ac4565b610d985760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610c6c565b610da283836122d0565b505050565b6001600160a01b0381166000908152600e6020526040902054610ddc5760405162461bcd60e51b8152600401610c6c9061375a565b6000610de7600d5490565b610df190476139c7565b90506000610e1e8383610e19866001600160a01b03166000908152600f602052604090205490565b61233e565b905080610e3d5760405162461bcd60e51b8152600401610c6c90613803565b6001600160a01b0383166000908152600f602052604081208054839290610e659084906139c7565b9250508190555080600d6000828254610e7e91906139c7565b90915550610e8e90508382612384565b604080516001600160a01b0385168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a1505050565b600a546001600160a01b03610100909104163314610f055760405162461bcd60e51b8152600401610c6c906138d5565b601c55565b600a546001600160a01b03610100909104163314610f3a5760405162461bcd60e51b8152600401610c6c906138d5565b601955565b610f49338261249d565b610f655760405162461bcd60e51b8152600401610c6c9061390a565b610da2838383612593565b6000610f7b836114c2565b8210610fdd5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610c6c565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b036101009091041633146110365760405162461bcd60e51b8152600401610c6c906138d5565b61103e61273a565b6040517fb990237e5cb8641541a3a2433884191ecc99769cc76a908e26184d91d222d9ff90600090a1565b600a546001600160a01b036101009091041633146110995760405162461bcd60e51b8152600401610c6c906138d5565b601a55565b600a546001600160a01b036101009091041633146110ce5760405162461bcd60e51b8152600401610c6c906138d5565b601355565b610da283838360405180602001604052806000815250611c07565b6001600160a01b0381166000908152600e60205260409020546111235760405162461bcd60e51b8152600401610c6c9061375a565b6001600160a01b0382166000908152601160205260408120546040516370a0823160e01b81523060048201526001600160a01b038516906370a082319060240160206040518083038186803b15801561117b57600080fd5b505afa15801561118f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111b391906135cd565b6111bd91906139c7565b905060006111f68383610e1987876001600160a01b03918216600090815260126020908152604080832093909416825291909152205490565b9050806112155760405162461bcd60e51b8152600401610c6c90613803565b6001600160a01b0380851660009081526012602090815260408083209387168352929052908120805483929061124c9084906139c7565b90915550506001600160a01b038416600090815260116020526040812080548392906112799084906139c7565b9091555061128a90508484836127c8565b604080516001600160a01b038581168252602082018490528616917f3be5b7a71e84ed12875d241991c70855ac5817d847039e17a9d895c1ceb0f18a910160405180910390a250505050565b60006112e160085490565b82106113445760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610c6c565b6008828154811061135757611357613b17565b90600052602060002001549050919050565b600a546001600160a01b036101009091041633146113995760405162461bcd60e51b8152600401610c6c906138d5565b80516113ac90601e906020840190613294565b5050565b6000818152600260205260408120546001600160a01b031680610b5f5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610c6c565b601d805461143490613a55565b80601f016020809104026020016040519081016040528092919081815260200182805461146090613a55565b80156114ad5780601f10611482576101008083540402835291602001916114ad565b820191906000526020600020905b81548152906001019060200180831161149057829003601f168201915b505050505081565b601e805461143490613a55565b60006001600160a01b03821661152d5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610c6c565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b036101009091041633146115795760405162461bcd60e51b8152600401610c6c906138d5565b611583600061281a565b565b600a546001600160a01b036101009091041633146115b55760405162461bcd60e51b8152600401610c6c906138d5565b6115bd612874565b6040517f481298826863446c7b7161e72d607dc275b106116e7f653d413350f9b5d0c02990600090a1565b600a5460ff161561160b5760405162461bcd60e51b8152600401610c6c9061384e565b6002600b54141561162e5760405162461bcd60e51b8152600401610c6c9061395b565b6002600b55600061163e60085490565b90506002601f54610100900460ff16600581111561165e5761165e613aeb565b1461167b5760405162461bcd60e51b8152600401610c6c90613992565b81601b5461168991906139f3565b3410156116a85760405162461bcd60e51b8152600401610c6c906137d7565b6018548211156116ca5760405162461bcd60e51b8152600401610c6c906137a0565b6015546116d783836139c7565b11156116f55760405162461bcd60e51b8152600401610c6c90613878565b33600090815260216020526040812080548492906117149084906139c7565b90915550600090505b82811015611757576117373361173260165490565b6128cc565b611745601680546001019055565b8061174f81613a90565b91505061171d565b50506001600b5550565b60006010828154811061177657611776613b17565b6000918252602090912001546001600160a01b031692915050565b600a5460ff16156117b45760405162461bcd60e51b8152600401610c6c9061384e565b6002600b5414156117d75760405162461bcd60e51b8152600401610c6c9061395b565b6002600b5560006117e760085490565b90506004601f54610100900460ff16600581111561180757611807613aeb565b141561184c5760405162461bcd60e51b815260206004820152601460248201527329b7b9393c961037379027232a39903632b33a1760611b6044820152606401610c6c565b6003601f54610100900460ff16600581111561186a5761186a613aeb565b146118875760405162461bcd60e51b8152600401610c6c90613992565b81601c5461189591906139f3565b3410156118b45760405162461bcd60e51b8152600401610c6c906137d7565b6019548211156118d65760405162461bcd60e51b8152600401610c6c906137a0565b6013546118e383836139c7565b11156119015760405162461bcd60e51b8152600401610c6c90613878565b33600090815260226020526040812080548492906119209084906139c7565b909155505060135461193283836139c7565b141561194857601f805461ff0019166104001790555b60005b82811015611757576119603361173260165490565b61196e601680546001019055565b8061197881613a90565b91505061194b565b600a546001600160a01b036101009091041633146119b05760405162461bcd60e51b8152600401610c6c906138d5565b6000601f54610100900460ff1660058111156119ce576119ce613aeb565b14611a415760405162461bcd60e51b815260206004820152603b60248201527f54686520636f6c6c656374696f6e206973206e6f7420696e207468652072696760448201527f68742073746174757320746f207365742075702070726573616c6500000000006064820152608401610c6c565b601f805461ff001916610100908117918290556040517feadbfbf31058a12c180f3384935534d5073c83d5377c1a3fdd849afe203a082892611a8b92600092910460ff16906136da565b60405180910390a1565b606060018054610b7490613a55565b600a546001600160a01b03610100909104163314611ad45760405162461bcd60e51b8152600401610c6c906138d5565b601b55565b600a546001600160a01b03610100909104163314611b095760405162461bcd60e51b8152600401610c6c906138d5565b8051611b1c90601d906020840190613294565b507f8a274cdd629b9aae599b13d8bfee3ee4a15350b0386a9b64087a393db009376781604051611b4c91906136f5565b60405180910390a150565b6113ac3383836128e6565b600a546001600160a01b03610100909104163314611b925760405162461bcd60e51b8152600401610c6c906138d5565b601f805460ff191660019081179091556040519081527f20a5b4e05b29089957b31c76110692167d828e9ecb1be33824e11609370e802190602001611a8b565b600a546001600160a01b03610100909104163314611c025760405162461bcd60e51b8152600401610c6c906138d5565b601755565b611c11338361249d565b611c2d5760405162461bcd60e51b8152600401610c6c9061390a565b611c39848484846129b5565b50505050565b600a546001600160a01b03610100909104163314611c6f5760405162461bcd60e51b8152600401610c6c906138d5565b6002601f54610100900460ff166005811115611c8d57611c8d613aeb565b14611d005760405162461bcd60e51b815260206004820152603860248201527f54686520636f6c6c656374696f6e206973206e6f7420696e207468652072696760448201527f68742073746174757320746f207365742075702073616c6500000000000000006064820152608401610c6c565b601f805461ff00191661030017908190556040517feadbfbf31058a12c180f3384935534d5073c83d5377c1a3fdd849afe203a082891611a8b91600291610100900460ff16906136da565b6000818152600260205260409020546060906001600160a01b0316611db25760405162461bcd60e51b815260206004820152601760248201527f54686973204e465420646f65736e27742065786973742e0000000000000000006044820152606401610c6c565b601f5460ff16611e4e57601e8054611dc990613a55565b80601f0160208091040260200160405190810160405280929190818152602001828054611df590613a55565b8015611e425780601f10611e1757610100808354040283529160200191611e42565b820191906000526020600020905b815481529060010190602001808311611e2557829003601f168201915b50505050509050919050565b6000611e586129e8565b90506000815111611e785760405180602001604052806000815250611ea3565b80611e82846129f7565b604051602001611e93929190613650565b6040516020818303038152906040525b9392505050565b600a5460ff1615611ecd5760405162461bcd60e51b8152600401610c6c9061384e565b6002600b541415611ef05760405162461bcd60e51b8152600401610c6c9061395b565b6002600b556000611f0060085490565b90506001601f54610100900460ff166005811115611f2057611f20613aeb565b14611f3d5760405162461bcd60e51b8152600401610c6c90613992565b81601a54611f4b91906139f3565b341015611f6a5760405162461bcd60e51b8152600401610c6c906137d7565b601754821115611f8c5760405162461bcd60e51b8152600401610c6c906137a0565b6017543360009081526020805260409020541115611fec5760405162461bcd60e51b815260206004820152601c60248201527f596f752063616e6e6f74206d696e74206d6f726520746f6b656e732e000000006044820152606401610c6c565b601454611ff983836139c7565b11156120175760405162461bcd60e51b8152600401610c6c90613878565b336000908152602080526040812080548492906120359084906139c7565b90915550600090505b82811015611757576120533361173260165490565b612061601680546001019055565b8061206b81613a90565b91505061203e565b600a546001600160a01b036101009091041633146120a35760405162461bcd60e51b8152600401610c6c906138d5565b6120b08161173260165490565b6120be601680546001019055565b50565b600a546001600160a01b036101009091041633146120f15760405162461bcd60e51b8152600401610c6c906138d5565b6001601f54610100900460ff16600581111561210f5761210f613aeb565b1461218d5760405162461bcd60e51b815260206004820152604260248201527f54686520636f6c6c656374696f6e206973206e6f7420696e207468652072696760448201527f68742073746174757320746f207365742075702077686974656c6973742073616064820152616c6560f01b608482015260a401610c6c565b601f805461ff00191661020017908190556040517feadbfbf31058a12c180f3384935534d5073c83d5377c1a3fdd849afe203a082891611a8b91600191610100900460ff16906136da565b600a546001600160a01b036101009091041633146122085760405162461bcd60e51b8152600401610c6c906138d5565b601855565b600a546001600160a01b0361010090910416331461223d5760405162461bcd60e51b8152600401610c6c906138d5565b6001600160a01b0381166122a25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610c6c565b6120be8161281a565b60006001600160e01b0319821663780e9d6360e01b1480610b5f5750610b5f82612af5565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190612305826113b0565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b600c546001600160a01b0384166000908152600e60205260408120549091839161236890866139f3565b61237291906139df565b61237c9190613a12565b949350505050565b804710156123d45760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610c6c565b6000826001600160a01b03168260405160006040518083038185875af1925050503d8060008114612421576040519150601f19603f3d011682016040523d82523d6000602084013e612426565b606091505b5050905080610da25760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610c6c565b6000818152600260205260408120546001600160a01b03166125165760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610c6c565b6000612521836113b0565b9050806001600160a01b0316846001600160a01b0316148061255c5750836001600160a01b031661255184610bf7565b6001600160a01b0316145b8061237c57506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff16949350505050565b826001600160a01b03166125a6826113b0565b6001600160a01b03161461260a5760405162461bcd60e51b815260206004820152602560248201527f4552433732313a207472616e736665722066726f6d20696e636f72726563742060448201526437bbb732b960d91b6064820152608401610c6c565b6001600160a01b03821661266c5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610c6c565b612677838383612b45565b6126826000826122d0565b6001600160a01b03831660009081526003602052604081208054600192906126ab908490613a12565b90915550506001600160a01b03821660009081526003602052604081208054600192906126d99084906139c7565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600a5460ff166127835760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610c6c565b600a805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b039091168152602001611a8b565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052610da2908490612b73565b600a80546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600a5460ff16156128975760405162461bcd60e51b8152600401610c6c9061384e565b600a805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586127b03390565b6113ac828260405180602001604052806000815250612c45565b816001600160a01b0316836001600160a01b031614156129485760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610c6c565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6129c0848484612593565b6129cc84848484612c78565b611c395760405162461bcd60e51b8152600401610c6c90613708565b6060601d8054610b7490613a55565b606081612a1b5750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612a455780612a2f81613a90565b9150612a3e9050600a836139df565b9150612a1f565b60008167ffffffffffffffff811115612a6057612a60613b2d565b6040519080825280601f01601f191660200182016040528015612a8a576020820181803683370190505b5090505b841561237c57612a9f600183613a12565b9150612aac600a86613aab565b612ab79060306139c7565b60f81b818381518110612acc57612acc613b17565b60200101906001600160f81b031916908160001a905350612aee600a866139df565b9450612a8e565b60006001600160e01b031982166380ac58cd60e01b1480612b2657506001600160e01b03198216635b5e139f60e01b145b80610b5f57506301ffc9a760e01b6001600160e01b0319831614610b5f565b600a5460ff1615612b685760405162461bcd60e51b8152600401610c6c9061384e565b610da2838383612d85565b6000612bc8826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316612e3d9092919063ffffffff16565b805190915015610da25780806020019051810190612be69190613514565b610da25760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610c6c565b612c4f8383612e4c565b612c5c6000848484612c78565b610da25760405162461bcd60e51b8152600401610c6c90613708565b60006001600160a01b0384163b15612d7a57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612cbc90339089908890889060040161368f565b602060405180830381600087803b158015612cd657600080fd5b505af1925050508015612d06575060408051601f3d908101601f19168201909252612d039181019061354e565b60015b612d60573d808015612d34576040519150601f19603f3d011682016040523d82523d6000602084013e612d39565b606091505b508051612d585760405162461bcd60e51b8152600401610c6c90613708565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061237c565b506001949350505050565b6001600160a01b038316612de057612ddb81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612e03565b816001600160a01b0316836001600160a01b031614612e0357612e038382612f9a565b6001600160a01b038216612e1a57610da281613037565b826001600160a01b0316826001600160a01b031614610da257610da282826130e6565b606061237c848460008561312a565b6001600160a01b038216612ea25760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610c6c565b6000818152600260205260409020546001600160a01b031615612f075760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610c6c565b612f1360008383612b45565b6001600160a01b0382166000908152600360205260408120805460019290612f3c9084906139c7565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001612fa7846114c2565b612fb19190613a12565b600083815260076020526040902054909150808214613004576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b60085460009061304990600190613a12565b6000838152600960205260408120546008805493945090928490811061307157613071613b17565b90600052602060002001549050806008838154811061309257613092613b17565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806130ca576130ca613b01565b6001900381819060005260206000200160009055905550505050565b60006130f1836114c2565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b60608247101561318b5760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b6064820152608401610c6c565b6001600160a01b0385163b6131e25760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610c6c565b600080866001600160a01b031685876040516131fe9190613634565b60006040518083038185875af1925050503d806000811461323b576040519150601f19603f3d011682016040523d82523d6000602084013e613240565b606091505b509150915061325082828661325b565b979650505050505050565b6060831561326a575081611ea3565b82511561327a5782518084602001fd5b8160405162461bcd60e51b8152600401610c6c91906136f5565b8280546132a090613a55565b90600052602060002090601f0160209004810192826132c25760008555613308565b82601f106132db57805160ff1916838001178555613308565b82800160010185558215613308579182015b828111156133085782518255916020019190600101906132ed565b50613314929150613318565b5090565b5b808211156133145760008155600101613319565b600067ffffffffffffffff8084111561334857613348613b2d565b604051601f8501601f19908116603f0116810190828211818310171561337057613370613b2d565b8160405280935085815286868601111561338957600080fd5b858560208301376000602087830101525050509392505050565b6000602082840312156133b557600080fd5b8135611ea381613b43565b600080604083850312156133d357600080fd5b82356133de81613b43565b915060208301356133ee81613b43565b809150509250929050565b60008060006060848603121561340e57600080fd5b833561341981613b43565b9250602084013561342981613b43565b929592945050506040919091013590565b6000806000806080858703121561345057600080fd5b843561345b81613b43565b9350602085013561346b81613b43565b925060408501359150606085013567ffffffffffffffff81111561348e57600080fd5b8501601f8101871361349f57600080fd5b6134ae8782356020840161332d565b91505092959194509250565b600080604083850312156134cd57600080fd5b82356134d881613b43565b915060208301356133ee81613b58565b600080604083850312156134fb57600080fd5b823561350681613b43565b946020939093013593505050565b60006020828403121561352657600080fd5b8151611ea381613b58565b60006020828403121561354357600080fd5b8135611ea381613b66565b60006020828403121561356057600080fd5b8151611ea381613b66565b60006020828403121561357d57600080fd5b813567ffffffffffffffff81111561359457600080fd5b8201601f810184136135a557600080fd5b61237c8482356020840161332d565b6000602082840312156135c657600080fd5b5035919050565b6000602082840312156135df57600080fd5b5051919050565b600081518084526135fe816020860160208601613a29565b601f01601f19169290920160200192915050565b6006811061363057634e487b7160e01b600052602160045260246000fd5b9052565b60008251613646818460208701613a29565b9190910192915050565b60008351613662818460208801613a29565b835190830190613676818360208801613a29565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906136c2908301846135e6565b9695505050505050565b60208101610b5f8284613612565b604081016136e88285613612565b611ea36020830184613612565b602081526000611ea360208301846135e6565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060408201526573686172657360d01b606082015260800190565b6020808252601a908201527f596f752063616e2774206d696e74206d6f726520746f6b656e73000000000000604082015260600190565b60208082526012908201527124b739bab33334b1b2b73a10333ab732399760711b604082015260600190565b6020808252602b908201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060408201526a191d59481c185e5b595b9d60aa1b606082015260800190565b60208082526010908201526f14185d5cd8589b194e881c185d5cd95960821b604082015260600190565b60208082526037908201527f53616c6520697320616c6d6f737420646f6e6520616e6420776520646f6e277460408201527f206861766520656e6f756768204e465473206c6566742e000000000000000000606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b6020808252818101527f536f7272792c2073616c6520686173206e6f742073746172746564207965742e604082015260600190565b600082198211156139da576139da613abf565b500190565b6000826139ee576139ee613ad5565b500490565b6000816000190483118215151615613a0d57613a0d613abf565b500290565b600082821015613a2457613a24613abf565b500390565b60005b83811015613a44578181015183820152602001613a2c565b83811115611c395750506000910152565b600181811c90821680613a6957607f821691505b60208210811415613a8a57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415613aa457613aa4613abf565b5060010190565b600082613aba57613aba613ad5565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b03811681146120be57600080fd5b80151581146120be57600080fd5b6001600160e01b0319811681146120be57600080fdfea264697066735822122017dab9619afd47bae70733cd7189f931d72500a0ae8a83159ce94f5055646af564736f6c63430008070033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5163456e3251516b5162796252445779567a4847387779656743716e64626539594163624d6232716f314b702f000000000000000000000000000000000000000000000000000000000000000000000000000000000044697066733a2f2f516d574a356369696d79636f6a32636f657738594465796239724d796879386631454d567173337a45556e68656d2f756e72657665616c65642e706e6700000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : _newBaseURI (string): ipfs://QmQcEn2QQkQbybRDWyVzHG8wyegCqndbe9YAcbMb2qo1Kp/
Arg [1] : _unrevealedURI (string): ipfs://QmWJ5ciimycoj2coew8YDeyb9rMyhy8f1EMVqs3zEUnhem/unrevealed.png
-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [3] : 697066733a2f2f516d5163456e3251516b5162796252445779567a4847387779
Arg [4] : 656743716e64626539594163624d6232716f314b702f00000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000044
Arg [6] : 697066733a2f2f516d574a356369696d79636f6a32636f657738594465796239
Arg [7] : 724d796879386631454d567173337a45556e68656d2f756e72657665616c6564
Arg [8] : 2e706e6700000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
66614:12808:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30708:40;9986:10;30708:40;;;-1:-1:-1;;;;;7818:32:1;;;7800:51;;30738:9:0;7882:2:1;7867:18;;7860:34;7773:18;30708:40:0;;;;;;;66614:12808;;;;;67263:40;;;;;;;;;;;;;;;;;;;24243:25:1;;;24231:2;24216:18;67263:40:0;;;;;;;;79207:212;;;;;;;;;;-1:-1:-1;79207:212:0;;;;;:::i;:::-;;:::i;:::-;;;8842:14:1;;8835:22;8817:41;;8805:2;8790:18;79207:212:0;8677:187:1;47151:100:0;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;48710:221::-;;;;;;;;;;-1:-1:-1;48710:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7574:32:1;;;7556:51;;7544:2;7529:18;48710:221:0;7410:203:1;48233:411:0;;;;;;;;;;-1:-1:-1;48233:411:0;;;;;:::i;:::-;;:::i;:::-;;60971:113;;;;;;;;;;-1:-1:-1;61059:10:0;:17;60971:113;;32494:566;;;;;;;;;;-1:-1:-1;32494:566:0;;;;;:::i;:::-;;:::i;71461:105::-;;;;;;;;;;-1:-1:-1;71461:105:0;;;;;:::i;:::-;;:::i;67791:36::-;;;;;;;;;;-1:-1:-1;67791:36:0;;;;;;;;;;;;;;;;;;:::i;69632:119::-;;;;;;;;;;-1:-1:-1;69632:119:0;;;;;:::i;:::-;;:::i;49460:339::-;;;;;;;;;;-1:-1:-1;49460:339:0;;;;;:::i;:::-;;:::i;66892:34::-;;;;;;;;;;;;;;;;60639:256;;;;;;;;;;-1:-1:-1;60639:256:0;;;;;:::i;:::-;;:::i;66933:53::-;;;;;;;;;;;;;;;;30839:91;;;;;;;;;;-1:-1:-1;30910:12:0;;30839:91;;69361:94;;;;;;;;;;;;;:::i;70858:117::-;;;;;;;;;;-1:-1:-1;70858:117:0;;;;;:::i;:::-;;:::i;70550:105::-;;;;;;;;;;-1:-1:-1;70550:105:0;;;;;:::i;:::-;;:::i;31968:135::-;;;;;;;;;;-1:-1:-1;31968:135:0;;;;;:::i;:::-;-1:-1:-1;;;;;32065:21:0;;;32038:7;32065:21;;;:14;:21;;;;;;;;:30;;;;;;;;;;;;;31968:135;49870:185;;;;;;;;;;-1:-1:-1;49870:185:0;;;;;:::i;:::-;;:::i;33328:641::-;;;;;;;;;;-1:-1:-1;33328:641:0;;;;;:::i;:::-;;:::i;61161:233::-;;;;;;;;;;-1:-1:-1;61161:233:0;;;;;:::i;:::-;;:::i;67580:28::-;;;;;;;;;;-1:-1:-1;67580:28:0;;;;;;;;71963:123;;;;;;;;;;-1:-1:-1;71963:123:0;;;;;:::i;:::-;;:::i;11252:86::-;;;;;;;;;;-1:-1:-1;11323:7:0;;;;11252:86;;46845:239;;;;;;;;;;-1:-1:-1;46845:239:0;;;;;:::i;:::-;;:::i;67442:21::-;;;;;;;;;;;;;:::i;67511:27::-;;;;;;;;;;;;;:::i;46575:208::-;;;;;;;;;;-1:-1:-1;46575:208:0;;;;;:::i;:::-;;:::i;14151:103::-;;;;;;;;;;;;;:::i;69205:88::-;;;;;;;;;;;;;:::i;75120:1200::-;;;;;;:::i;:::-;;:::i;32194:100::-;;;;;;;;;;-1:-1:-1;32194:100:0;;;;;:::i;:::-;;:::i;76457:1371::-;;;;;;:::i;:::-;;:::i;13500:87::-;;;;;;;;;;-1:-1:-1;13573:6:0;;;;;-1:-1:-1;;;;;13573:6:0;13500:87;;72594:279;;;;;;;;;;;;;:::i;47320:104::-;;;;;;;;;;;;;:::i;31690:109::-;;;;;;;;;;-1:-1:-1;31690:109:0;;;;;:::i;:::-;-1:-1:-1;;;;;31773:18:0;31746:7;31773:18;;;:9;:18;;;;;;;31690:109;71180:125;;;;;;;;;;-1:-1:-1;71180:125:0;;;;;:::i;:::-;;:::i;71681:148::-;;;;;;;;;;-1:-1:-1;71681:148:0;;;;;:::i;:::-;;:::i;49003:155::-;;;;;;;;;;-1:-1:-1;49003:155:0;;;;;:::i;:::-;;:::i;72173:101::-;;;;;;;;;;;;;:::i;69943:125::-;;;;;;;;;;-1:-1:-1;69943:125:0;;;;;:::i;:::-;;:::i;67150:35::-;;;;;;;;;;;;;;;;67192:34;;;;;;;;;;;;;;;;50126:328;;;;;;;;;;-1:-1:-1;50126:328:0;;;;;:::i;:::-;;:::i;73339:284::-;;;;;;;;;;;;;:::i;78347:545::-;;;;;;;;;;-1:-1:-1;78347:545:0;;;;;:::i;:::-;;:::i;73743:1230::-;;;;;;:::i;:::-;;:::i;77980:148::-;;;;;;;;;;-1:-1:-1;77980:148:0;;;;;:::i;:::-;;:::i;31486:105::-;;;;;;;;;;-1:-1:-1;31486:105:0;;;;;:::i;:::-;-1:-1:-1;;;;;31567:16:0;31540:7;31567:16;;;:7;:16;;;;;;;31486:105;66854:31;;;;;;;;;;;;;;;;31276:119;;;;;;;;;;-1:-1:-1;31276:119:0;;;;;:::i;:::-;-1:-1:-1;;;;;31361:26:0;31334:7;31361:26;;;:19;:26;;;;;;;31276:119;72957:303;;;;;;;;;;;;;:::i;31024:95::-;;;;;;;;;;-1:-1:-1;31097:14:0;;31024:95;;70262:129;;;;;;;;;;-1:-1:-1;70262:129:0;;;;;:::i;:::-;;:::i;49229:164::-;;;;;;;;;;-1:-1:-1;49229:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;49350:25:0;;;49326:4;49350:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;49229:164;14409:201;;;;;;;;;;-1:-1:-1;14409:201:0;;;;;:::i;:::-;;:::i;67359:37::-;;;;;;;;;;;;;;;;67310:42;;;;;;;;;;;;;;;;67110:33;;;;;;;;;;;;;;;;79207:212;79346:4;79375:36;79399:11;79375:23;:36::i;:::-;79368:43;79207:212;-1:-1:-1;;79207:212:0:o;47151:100::-;47205:13;47238:5;47231:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47151:100;:::o;48710:221::-;48786:7;52053:16;;;:7;:16;;;;;;-1:-1:-1;;;;;52053:16:0;48806:73;;;;-1:-1:-1;;;48806:73:0;;20453:2:1;48806:73:0;;;20435:21:1;20492:2;20472:18;;;20465:30;20531:34;20511:18;;;20504:62;-1:-1:-1;;;20582:18:1;;;20575:42;20634:19;;48806:73:0;;;;;;;;;-1:-1:-1;48899:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;48899:24:0;;48710:221::o;48233:411::-;48314:13;48330:23;48345:7;48330:14;:23::i;:::-;48314:39;;48378:5;-1:-1:-1;;;;;48372:11:0;:2;-1:-1:-1;;;;;48372:11:0;;;48364:57;;;;-1:-1:-1;;;48364:57:0;;21576:2:1;48364:57:0;;;21558:21:1;21615:2;21595:18;;;21588:30;21654:34;21634:18;;;21627:62;-1:-1:-1;;;21705:18:1;;;21698:31;21746:19;;48364:57:0;21374:397:1;48364:57:0;9986:10;-1:-1:-1;;;;;48456:21:0;;;;:62;;-1:-1:-1;48481:37:0;48498:5;9986:10;49229:164;:::i;48481:37::-;48434:168;;;;-1:-1:-1;;;48434:168:0;;17994:2:1;48434:168:0;;;17976:21:1;18033:2;18013:18;;;18006:30;18072:34;18052:18;;;18045:62;18143:26;18123:18;;;18116:54;18187:19;;48434:168:0;17792:420:1;48434:168:0;48615:21;48624:2;48628:7;48615:8;:21::i;:::-;48303:341;48233:411;;:::o;32494:566::-;-1:-1:-1;;;;;32570:16:0;;32589:1;32570:16;;;:7;:16;;;;;;32562:71;;;;-1:-1:-1;;;32562:71:0;;;;;;;:::i;:::-;32646:21;32694:15;31097:14;;;31024:95;32694:15;32670:39;;:21;:39;:::i;:::-;32646:63;;32720:15;32738:58;32754:7;32763:13;32778:17;32787:7;-1:-1:-1;;;;;31773:18:0;31746:7;31773:18;;;:9;:18;;;;;;;31690:109;32778:17;32738:15;:58::i;:::-;32720:76;-1:-1:-1;32817:12:0;32809:68;;;;-1:-1:-1;;;32809:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;32890:18:0;;;;;;:9;:18;;;;;:29;;32912:7;;32890:18;:29;;32912:7;;32890:29;:::i;:::-;;;;;;;;32948:7;32930:14;;:25;;;;;;;:::i;:::-;;;;-1:-1:-1;32968:35:0;;-1:-1:-1;32986:7:0;32995;32968:17;:35::i;:::-;33019:33;;;-1:-1:-1;;;;;7818:32:1;;7800:51;;7882:2;7867:18;;7860:34;;;33019:33:0;;7773:18:1;33019:33:0;;;;;;;32551:509;;32494:566;:::o;71461:105::-;13573:6;;-1:-1:-1;;;;;13573:6:0;;;;;9986:10;13720:23;13712:68;;;;-1:-1:-1;;;13712:68:0;;;;;;;:::i;:::-;71536:9:::1;:22:::0;71461:105::o;69632:119::-;13573:6;;-1:-1:-1;;;;;13573:6:0;;;;;9986:10;13720:23;13712:68;;;;-1:-1:-1;;;13712:68:0;;;;;;;:::i;:::-;69710:15:::1;:33:::0;69632:119::o;49460:339::-;49655:41;9986:10;49688:7;49655:18;:41::i;:::-;49647:103;;;;-1:-1:-1;;;49647:103:0;;;;;;;:::i;:::-;49763:28;49773:4;49779:2;49783:7;49763:9;:28::i;60639:256::-;60736:7;60772:23;60789:5;60772:16;:23::i;:::-;60764:5;:31;60756:87;;;;-1:-1:-1;;;60756:87:0;;10629:2:1;60756:87:0;;;10611:21:1;10668:2;10648:18;;;10641:30;10707:34;10687:18;;;10680:62;-1:-1:-1;;;10758:18:1;;;10751:41;10809:19;;60756:87:0;10427:407:1;60756:87:0;-1:-1:-1;;;;;;60861:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;60639:256::o;69361:94::-;13573:6;;-1:-1:-1;;;;;13573:6:0;;;;;9986:10;13720:23;13712:68;;;;-1:-1:-1;;;13712:68:0;;;;;;;:::i;:::-;69408:10:::1;:8;:10::i;:::-;69434:13;::::0;::::1;::::0;;;::::1;69361:94::o:0;70858:117::-;13573:6;;-1:-1:-1;;;;;13573:6:0;;;;;9986:10;13720:23;13712:68;;;;-1:-1:-1;;;13712:68:0;;;;;;;:::i;:::-;70939:12:::1;:28:::0;70858:117::o;70550:105::-;13573:6;;-1:-1:-1;;;;;13573:6:0;;;;;9986:10;13720:23;13712:68;;;;-1:-1:-1;;;13712:68:0;;;;;;;:::i;:::-;70625:9:::1;:22:::0;70550:105::o;49870:185::-;50008:39;50025:4;50031:2;50035:7;50008:39;;;;;;;;;;;;:16;:39::i;33328:641::-;-1:-1:-1;;;;;33410:16:0;;33429:1;33410:16;;;:7;:16;;;;;;33402:71;;;;-1:-1:-1;;;33402:71:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;31361:26:0;;33486:21;31361:26;;;:19;:26;;;;;;33510:30;;-1:-1:-1;;;33510:30:0;;33534:4;33510:30;;;7556:51:1;-1:-1:-1;;;;;33510:15:0;;;;;7529:18:1;;33510:30:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:53;;;;:::i;:::-;33486:77;;33574:15;33592:65;33608:7;33617:13;33632:24;33641:5;33648:7;-1:-1:-1;;;;;32065:21:0;;;32038:7;32065:21;;;:14;:21;;;;;;;;:30;;;;;;;;;;;;;31968:135;33592:65;33574:83;-1:-1:-1;33678:12:0;33670:68;;;;-1:-1:-1;;;33670:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;33751:21:0;;;;;;;:14;:21;;;;;;;;:30;;;;;;;;;;;:41;;33785:7;;33751:21;:41;;33785:7;;33751:41;:::i;:::-;;;;-1:-1:-1;;;;;;;33803:26:0;;;;;;:19;:26;;;;;:37;;33833:7;;33803:26;:37;;33833:7;;33803:37;:::i;:::-;;;;-1:-1:-1;33853:47:0;;-1:-1:-1;33876:5:0;33883:7;33892;33853:22;:47::i;:::-;33916:45;;;-1:-1:-1;;;;;7818:32:1;;;7800:51;;7882:2;7867:18;;7860:34;;;33916:45:0;;;;;7773:18:1;33916:45:0;;;;;;;33391:578;;33328:641;;:::o;61161:233::-;61236:7;61272:30;61059:10;:17;;60971:113;61272:30;61264:5;:38;61256:95;;;;-1:-1:-1;;;61256:95:0;;22754:2:1;61256:95:0;;;22736:21:1;22793:2;22773:18;;;22766:30;22832:34;22812:18;;;22805:62;-1:-1:-1;;;22883:18:1;;;22876:42;22935:19;;61256:95:0;22552:408:1;61256:95:0;61369:10;61380:5;61369:17;;;;;;;;:::i;:::-;;;;;;;;;61362:24;;61161:233;;;:::o;71963:123::-;13573:6;;-1:-1:-1;;;;;13573:6:0;;;;;9986:10;13720:23;13712:68;;;;-1:-1:-1;;;13712:68:0;;;;;;;:::i;:::-;72048:30;;::::1;::::0;:13:::1;::::0;:30:::1;::::0;::::1;::::0;::::1;:::i;:::-;;71963:123:::0;:::o;46845:239::-;46917:7;46953:16;;;:7;:16;;;;;;-1:-1:-1;;;;;46953:16:0;46988:19;46980:73;;;;-1:-1:-1;;;46980:73:0;;19258:2:1;46980:73:0;;;19240:21:1;19297:2;19277:18;;;19270:30;19336:34;19316:18;;;19309:62;-1:-1:-1;;;19387:18:1;;;19380:39;19436:19;;46980:73:0;19056:405:1;67442:21:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;67511:27::-;;;;;;;:::i;46575:208::-;46647:7;-1:-1:-1;;;;;46675:19:0;;46667:74;;;;-1:-1:-1;;;46667:74:0;;18419:2:1;46667:74:0;;;18401:21:1;18458:2;18438:18;;;18431:30;18497:34;18477:18;;;18470:62;-1:-1:-1;;;18548:18:1;;;18541:40;18598:19;;46667:74:0;18217:406:1;46667:74:0;-1:-1:-1;;;;;;46759:16:0;;;;;:9;:16;;;;;;;46575:208::o;14151:103::-;13573:6;;-1:-1:-1;;;;;13573:6:0;;;;;9986:10;13720:23;13712:68;;;;-1:-1:-1;;;13712:68:0;;;;;;;:::i;:::-;14216:30:::1;14243:1;14216:18;:30::i;:::-;14151:103::o:0;69205:88::-;13573:6;;-1:-1:-1;;;;;13573:6:0;;;;;9986:10;13720:23;13712:68;;;;-1:-1:-1;;;13712:68:0;;;;;;;:::i;:::-;69250:8:::1;:6;:8::i;:::-;69274:11;::::0;::::1;::::0;;;::::1;69205:88::o:0;75120:1200::-;11323:7;;;;11577:9;11569:38;;;;-1:-1:-1;;;11569:38:0;;;;;;;:::i;:::-;6156:1:::1;6754:7;;:19;;6746:63;;;;-1:-1:-1::0;;;6746:63:0::1;;;;;;;:::i;:::-;6156:1;6887:7;:18:::0;75286:14:::2;75303:13;61059:10:::0;:17;;60971:113;75303:13:::2;75286:30:::0;-1:-1:-1;75381:20:0::2;75371:6;::::0;::::2;::::0;::::2;;;:30;::::0;::::2;;;;;;:::i;:::-;;75363:75;;;;-1:-1:-1::0;;;75363:75:0::2;;;;;;;:::i;:::-;75526:7;75509:14;;:24;;;;:::i;:::-;75496:9;:37;;75488:68;;;;-1:-1:-1::0;;;75488:68:0::2;;;;;;;:::i;:::-;75645:16;;75634:7;:27;;75612:103;;;;-1:-1:-1::0;;;75612:103:0::2;;;;;;;:::i;:::-;75826:15;::::0;75806:16:::2;75815:7:::0;75806:6;:16:::2;:::i;:::-;:35;;75784:140;;;;-1:-1:-1::0;;;75784:140:0::2;;;;;;;:::i;:::-;76035:10;76012:34;::::0;;;:22:::2;:34;::::0;;;;:45;;76050:7;;76012:34;:45:::2;::::0;76050:7;;76012:45:::2;:::i;:::-;::::0;;;-1:-1:-1;76113:9:0::2;::::0;-1:-1:-1;76108:205:0::2;76132:7;76128:1;:11;76108:205;;;76161:45;76171:10;76183:22;:12;964:14:::0;;872:114;76183:22:::2;76161:9;:45::i;:::-;76277:24;:12;1083:19:::0;;1101:1;1083:19;;;994:127;76277:24:::2;76141:3:::0;::::2;::::0;::::2;:::i;:::-;;;;76108:205;;;-1:-1:-1::0;;6112:1:0::1;7066:7;:22:::0;-1:-1:-1;75120:1200:0:o;32194:100::-;32245:7;32272;32280:5;32272:14;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;32272:14:0;;32194:100;-1:-1:-1;;32194:100:0:o;76457:1371::-;11323:7;;;;11577:9;11569:38;;;;-1:-1:-1;;;11569:38:0;;;;;;;:::i;:::-;6156:1:::1;6754:7;;:19;;6746:63;;;;-1:-1:-1::0;;;6746:63:0::1;;;;;;;:::i;:::-;6156:1;6887:7;:18:::0;76618:14:::2;76635:13;61059:10:::0;:17;;60971:113;76635:13:::2;76618:30:::0;-1:-1:-1;76718:14:0::2;76708:6;::::0;::::2;::::0;::::2;;;:24;::::0;::::2;;;;;;:::i;:::-;;;76700:57;;;::::0;-1:-1:-1;;;76700:57:0;;20866:2:1;76700:57:0::2;::::0;::::2;20848:21:1::0;20905:2;20885:18;;;20878:30;-1:-1:-1;;;20924:18:1;;;20917:50;20984:18;;76700:57:0::2;20664:344:1::0;76700:57:0::2;76822:11;76812:6;::::0;::::2;::::0;::::2;;;:21;::::0;::::2;;;;;;:::i;:::-;;76804:66;;;;-1:-1:-1::0;;;76804:66:0::2;;;;;;;:::i;:::-;76953:7;76941:9;;:19;;;;:::i;:::-;76928:9;:32;;76920:63;;;;-1:-1:-1::0;;;76920:63:0::2;;;;;;;:::i;:::-;77072:15;;77061:7;:26;;77039:102;;;;-1:-1:-1::0;;;77039:102:0::2;;;;;;;:::i;:::-;77252:9;::::0;77232:16:::2;77241:7:::0;77232:6;:16:::2;:::i;:::-;:29;;77210:134;;;;-1:-1:-1::0;;;77210:134:0::2;;;;;;;:::i;:::-;77446:10;77432:25;::::0;;;:13:::2;:25;::::0;;;;:36;;77461:7;;77432:25;:36:::2;::::0;77461:7;;77432:36:::2;:::i;:::-;::::0;;;-1:-1:-1;;77561:9:0::2;::::0;77541:16:::2;77550:7:::0;77541:6;:16:::2;:::i;:::-;:29;77537:85;;;77587:6;:23:::0;;-1:-1:-1;;77587:23:0::2;::::0;::::2;::::0;;77537:85:::2;77677:9;77672:149;77696:7;77692:1;:11;77672:149;;;77725:45;77735:10;77747:22;:12;964:14:::0;;872:114;77725:45:::2;77785:24;:12;1083:19:::0;;1101:1;1083:19;;;994:127;77785:24:::2;77705:3:::0;::::2;::::0;::::2;:::i;:::-;;;;77672:149;;72594:279:::0;13573:6;;-1:-1:-1;;;;;13573:6:0;;;;;9986:10;13720:23;13712:68;;;;-1:-1:-1;;;13712:68:0;;;;;;;:::i;:::-;72680:13:::1;72670:6;::::0;::::1;::::0;::::1;;;:23;::::0;::::1;;;;;;:::i;:::-;;72648:132;;;::::0;-1:-1:-1;;;72648:132:0;;18830:2:1;72648:132:0::1;::::0;::::1;18812:21:1::0;18869:2;18849:18;;;18842:30;18908:34;18888:18;;;18881:62;18979:29;18959:18;;;18952:57;19026:19;;72648:132:0::1;18628:423:1::0;72648:132:0::1;72791:6;:23:::0;;-1:-1:-1;;72791:23:0::1;;::::0;;::::1;::::0;;;;72830:35:::1;::::0;::::1;::::0;::::1;::::0;-1:-1:-1;;72858:6:0;::::1;;;::::0;72830:35:::1;:::i;:::-;;;;;;;;72594:279::o:0;47320:104::-;47376:13;47409:7;47402:14;;;;;:::i;71180:125::-;13573:6;;-1:-1:-1;;;;;13573:6:0;;;;;9986:10;13720:23;13712:68;;;;-1:-1:-1;;;13712:68:0;;;;;;;:::i;:::-;71265:14:::1;:32:::0;71180:125::o;71681:148::-;13573:6;;-1:-1:-1;;;;;13573:6:0;;;;;9986:10;13720:23;13712:68;;;;-1:-1:-1;;;13712:68:0;;;;;;;:::i;:::-;71758:21;;::::1;::::0;:7:::1;::::0;:21:::1;::::0;::::1;::::0;::::1;:::i;:::-;;71795:26;71809:11;71795:26;;;;;;:::i;:::-;;;;;;;;71681:148:::0;:::o;49003:155::-;49098:52;9986:10;49131:8;49141;49098:18;:52::i;72173:101::-;13573:6;;-1:-1:-1;;;;;13573:6:0;;;;;9986:10;13720:23;13712:68;;;;-1:-1:-1;;;13712:68:0;;;;;;;:::i;:::-;72221:8:::1;:15:::0;;-1:-1:-1;;72221:15:0::1;72232:4;72221:15:::0;;::::1;::::0;;;72252:14:::1;::::0;8817:41:1;;;72252:14:0::1;::::0;8805:2:1;8790:18;72252:14:0::1;8677:187:1::0;69943:125:0;13573:6;;-1:-1:-1;;;;;13573:6:0;;;;;9986:10;13720:23;13712:68;;;;-1:-1:-1;;;13712:68:0;;;;;;;:::i;:::-;70028:14:::1;:32:::0;69943:125::o;50126:328::-;50301:41;9986:10;50334:7;50301:18;:41::i;:::-;50293:103;;;;-1:-1:-1;;;50293:103:0;;;;;;;:::i;:::-;50407:39;50421:4;50427:2;50431:7;50440:5;50407:13;:39::i;:::-;50126:328;;;;:::o;73339:284::-;13573:6;;-1:-1:-1;;;;;13573:6:0;;;;;9986:10;13720:23;13712:68;;;;-1:-1:-1;;;13712:68:0;;;;;;;:::i;:::-;73422:20:::1;73412:6;::::0;::::1;::::0;::::1;;;:30;::::0;::::1;;;;;;:::i;:::-;;73390:136;;;::::0;-1:-1:-1;;;73390:136:0;;17224:2:1;73390:136:0::1;::::0;::::1;17206:21:1::0;17263:2;17243:18;;;17236:30;17302:34;17282:18;;;17275:62;17373:26;17353:18;;;17346:54;17417:19;;73390:136:0::1;17022:420:1::0;73390:136:0::1;73537:6;:20:::0;;-1:-1:-1;;73537:20:0::1;::::0;::::1;::::0;;;;73573:42:::1;::::0;::::1;::::0;::::1;::::0;73586:20:::1;::::0;73537::::1;73608:6:::0;::::1;;;::::0;73573:42:::1;:::i;78347:545::-:0;52029:4;52053:16;;;:7;:16;;;;;;78455:13;;-1:-1:-1;;;;;52053:16:0;78486:51;;;;-1:-1:-1;;;78486:51:0;;11867:2:1;78486:51:0;;;11849:21:1;11906:2;11886:18;;;11879:30;11945:25;11925:18;;;11918:53;11988:18;;78486:51:0;11665:347:1;78486:51:0;78552:8;;;;78548:70;;78593:13;78586:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;78347:545;;;:::o;78548:70::-;78630:28;78661:10;:8;:10::i;:::-;78630:41;;78733:1;78708:14;78702:28;:32;:182;;;;;;;;;;;;;;;;;78800:14;78816:17;:6;:15;:17::i;:::-;78783:60;;;;;;;;;:::i;:::-;;;;;;;;;;;;;78702:182;78682:202;78347:545;-1:-1:-1;;;78347:545:0:o;73743:1230::-;11323:7;;;;11577:9;11569:38;;;;-1:-1:-1;;;11569:38:0;;;;;;;:::i;:::-;6156:1:::1;6754:7;;:19;;6746:63;;;;-1:-1:-1::0;;;6746:63:0::1;;;;;;;:::i;:::-;6156:1;6887:7;:18:::0;73907:14:::2;73924:13;61059:10:::0;:17;;60971:113;73924:13:::2;73907:30:::0;-1:-1:-1;74002:14:0::2;73992:6;::::0;::::2;::::0;::::2;;;:24;::::0;::::2;;;;;;:::i;:::-;;73984:69;;;;-1:-1:-1::0;;;73984:69:0::2;;;;;;;:::i;:::-;74139:7;74124:12;;:22;;;;:::i;:::-;74111:9;:35;;74103:66;;;;-1:-1:-1::0;;;74103:66:0::2;;;;;;;:::i;:::-;74258:14;;74247:7;:25;;74225:101;;;;-1:-1:-1::0;;;74225:101:0::2;;;;;;;:::i;:::-;74381:14;::::0;74366:10:::2;74345:32;::::0;;;:20:::2;:32:::0;;;;;;:50:::2;;74337:91;;;::::0;-1:-1:-1;;;74337:91:0;;14148:2:1;74337:91:0::2;::::0;::::2;14130:21:1::0;14187:2;14167:18;;;14160:30;14226;14206:18;;;14199:58;14274:18;;74337:91:0::2;13946:352:1::0;74337:91:0::2;74539:13;::::0;74519:16:::2;74528:7:::0;74519:6;:16:::2;:::i;:::-;:33;;74497:138;;;;-1:-1:-1::0;;;74497:138:0::2;;;;;;;:::i;:::-;74744:10;74723:32;::::0;;;:20:::2;:32:::0;;;;;:43;;74759:7;;74723:32;:43:::2;::::0;74759:7;;74723:43:::2;:::i;:::-;::::0;;;-1:-1:-1;74822:9:0::2;::::0;-1:-1:-1;74817:149:0::2;74841:7;74837:1;:11;74817:149;;;74870:45;74880:10;74892:22;:12;964:14:::0;;872:114;74870:45:::2;74930:24;:12;1083:19:::0;;1101:1;1083:19;;;994:127;74930:24:::2;74850:3:::0;::::2;::::0;::::2;:::i;:::-;;;;74817:149;;77980:148:::0;13573:6;;-1:-1:-1;;;;;13573:6:0;;;;;9986:10;13720:23;13712:68;;;;-1:-1:-1;;;13712:68:0;;;;;;;:::i;:::-;78042:43:::1;78052:8;78062:22;:12;964:14:::0;;872:114;78042:43:::1;78096:24;:12;1083:19:::0;;1101:1;1083:19;;;994:127;78096:24:::1;77980:148:::0;:::o;72957:303::-;13573:6;;-1:-1:-1;;;;;13573:6:0;;;;;9986:10;13720:23;13712:68;;;;-1:-1:-1;;;13712:68:0;;;;;;;:::i;:::-;73052:14:::1;73042:6;::::0;::::1;::::0;::::1;;;:24;::::0;::::1;;;;;;:::i;:::-;;73020:140;;;::::0;-1:-1:-1;;;73020:140:0;;9805:2:1;73020:140:0::1;::::0;::::1;9787:21:1::0;9844:2;9824:18;;;9817:30;9883:34;9863:18;;;9856:62;9954:34;9934:18;;;9927:62;-1:-1:-1;;;10005:19:1;;;9998:33;10048:19;;73020:140:0::1;9603:470:1::0;73020:140:0::1;73171:6;:29:::0;;-1:-1:-1;;73171:29:0::1;::::0;::::1;::::0;;;;73216:36:::1;::::0;::::1;::::0;::::1;::::0;-1:-1:-1;;73171:29:0::1;73245:6:::0;::::1;;;::::0;73216:36:::1;:::i;70262:129::-:0;13573:6;;-1:-1:-1;;;;;13573:6:0;;;;;9986:10;13720:23;13712:68;;;;-1:-1:-1;;;13712:68:0;;;;;;;:::i;:::-;70349:16:::1;:34:::0;70262:129::o;14409:201::-;13573:6;;-1:-1:-1;;;;;13573:6:0;;;;;9986:10;13720:23;13712:68;;;;-1:-1:-1;;;13712:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;14498:22:0;::::1;14490:73;;;::::0;-1:-1:-1;;;14490:73:0;;11460:2:1;14490:73:0::1;::::0;::::1;11442:21:1::0;11499:2;11479:18;;;11472:30;11538:34;11518:18;;;11511:62;-1:-1:-1;;;11589:18:1;;;11582:36;11635:19;;14490:73:0::1;11258:402:1::0;14490:73:0::1;14574:28;14593:8;14574:18;:28::i;60331:224::-:0;60433:4;-1:-1:-1;;;;;;60457:50:0;;-1:-1:-1;;;60457:50:0;;:90;;;60511:36;60535:11;60511:23;:36::i;56110:174::-;56185:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;56185:29:0;-1:-1:-1;;;;;56185:29:0;;;;;;;;:24;;56239:23;56185:24;56239:14;:23::i;:::-;-1:-1:-1;;;;;56230:46:0;;;;;;;;;;;56110:174;;:::o;34147:248::-;34357:12;;-1:-1:-1;;;;;34337:16:0;;34293:7;34337:16;;;:7;:16;;;;;;34293:7;;34372:15;;34321:32;;:13;:32;:::i;:::-;34320:49;;;;:::i;:::-;:67;;;;:::i;:::-;34313:74;34147:248;-1:-1:-1;;;;34147:248:0:o;17462:317::-;17577:6;17552:21;:31;;17544:73;;;;-1:-1:-1;;;17544:73:0;;15287:2:1;17544:73:0;;;15269:21:1;15326:2;15306:18;;;15299:30;15365:31;15345:18;;;15338:59;15414:18;;17544:73:0;15085:353:1;17544:73:0;17631:12;17649:9;-1:-1:-1;;;;;17649:14:0;17671:6;17649:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17630:52;;;17701:7;17693:78;;;;-1:-1:-1;;;17693:78:0;;14860:2:1;17693:78:0;;;14842:21:1;14899:2;14879:18;;;14872:30;14938:34;14918:18;;;14911:62;15009:28;14989:18;;;14982:56;15055:19;;17693:78:0;14658:422:1;52258:348:0;52351:4;52053:16;;;:7;:16;;;;;;-1:-1:-1;;;;;52053:16:0;52368:73;;;;-1:-1:-1;;;52368:73:0;;16399:2:1;52368:73:0;;;16381:21:1;16438:2;16418:18;;;16411:30;16477:34;16457:18;;;16450:62;-1:-1:-1;;;16528:18:1;;;16521:42;16580:19;;52368:73:0;16197:408:1;52368:73:0;52452:13;52468:23;52483:7;52468:14;:23::i;:::-;52452:39;;52521:5;-1:-1:-1;;;;;52510:16:0;:7;-1:-1:-1;;;;;52510:16:0;;:51;;;;52554:7;-1:-1:-1;;;;;52530:31:0;:20;52542:7;52530:11;:20::i;:::-;-1:-1:-1;;;;;52530:31:0;;52510:51;:87;;;-1:-1:-1;;;;;;49350:25:0;;;49326:4;49350:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;52502:96;52258:348;-1:-1:-1;;;;52258:348:0:o;55367:625::-;55526:4;-1:-1:-1;;;;;55499:31:0;:23;55514:7;55499:14;:23::i;:::-;-1:-1:-1;;;;;55499:31:0;;55491:81;;;;-1:-1:-1;;;55491:81:0;;12219:2:1;55491:81:0;;;12201:21:1;12258:2;12238:18;;;12231:30;12297:34;12277:18;;;12270:62;-1:-1:-1;;;12348:18:1;;;12341:35;12393:19;;55491:81:0;12017:401:1;55491:81:0;-1:-1:-1;;;;;55591:16:0;;55583:65;;;;-1:-1:-1;;;55583:65:0;;13389:2:1;55583:65:0;;;13371:21:1;13428:2;13408:18;;;13401:30;13467:34;13447:18;;;13440:62;-1:-1:-1;;;13518:18:1;;;13511:34;13562:19;;55583:65:0;13187:400:1;55583:65:0;55661:39;55682:4;55688:2;55692:7;55661:20;:39::i;:::-;55765:29;55782:1;55786:7;55765:8;:29::i;:::-;-1:-1:-1;;;;;55807:15:0;;;;;;:9;:15;;;;;:20;;55826:1;;55807:15;:20;;55826:1;;55807:20;:::i;:::-;;;;-1:-1:-1;;;;;;;55838:13:0;;;;;;:9;:13;;;;;:18;;55855:1;;55838:13;:18;;55855:1;;55838:18;:::i;:::-;;;;-1:-1:-1;;55867:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;55867:21:0;-1:-1:-1;;;;;55867:21:0;;;;;;;;;55906:27;;55867:16;;55906:27;;;;;;;48303:341;48233:411;;:::o;12311:120::-;11323:7;;;;11847:41;;;;-1:-1:-1;;;11847:41:0;;10280:2:1;11847:41:0;;;10262:21:1;10319:2;10299:18;;;10292:30;-1:-1:-1;;;10338:18:1;;;10331:50;10398:18;;11847:41:0;10078:344:1;11847:41:0;12370:7:::1;:15:::0;;-1:-1:-1;;12370:15:0::1;::::0;;12401:22:::1;9986:10:::0;12410:12:::1;12401:22;::::0;-1:-1:-1;;;;;7574:32:1;;;7556:51;;7544:2;7529:18;12401:22:0::1;7410:203:1::0;24168:211:0;24312:58;;;-1:-1:-1;;;;;7818:32:1;;24312:58:0;;;7800:51:1;7867:18;;;;7860:34;;;24312:58:0;;;;;;;;;;7773:18:1;;;;24312:58:0;;;;;;;;-1:-1:-1;;;;;24312:58:0;-1:-1:-1;;;24312:58:0;;;24285:86;;24305:5;;24285:19;:86::i;14770:191::-;14863:6;;;-1:-1:-1;;;;;14880:17:0;;;14863:6;14880:17;;;-1:-1:-1;;;;;;14880:17:0;;;;;;14913:40;;14863:6;;;;;;;;14913:40;;14844:16;;14913:40;14833:128;14770:191;:::o;12052:118::-;11323:7;;;;11577:9;11569:38;;;;-1:-1:-1;;;11569:38:0;;;;;;;:::i;:::-;12112:7:::1;:14:::0;;-1:-1:-1;;12112:14:0::1;12122:4;12112:14;::::0;;12142:20:::1;12149:12;9986:10:::0;;9906:98;52948:110;53024:26;53034:2;53038:7;53024:26;;;;;;;;;;;;:9;:26::i;56426:315::-;56581:8;-1:-1:-1;;;;;56572:17:0;:5;-1:-1:-1;;;;;56572:17:0;;;56564:55;;;;-1:-1:-1;;;56564:55:0;;13794:2:1;56564:55:0;;;13776:21:1;13833:2;13813:18;;;13806:30;13872:27;13852:18;;;13845:55;13917:18;;56564:55:0;13592:349:1;56564:55:0;-1:-1:-1;;;;;56630:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;56630:46:0;;;;;;;;;;56692:41;;8817::1;;;56692::0;;8790:18:1;56692:41:0;;;;;;;56426:315;;;:::o;51336:::-;51493:28;51503:4;51509:2;51513:7;51493:9;:28::i;:::-;51540:48;51563:4;51569:2;51573:7;51582:5;51540:22;:48::i;:::-;51532:111;;;;-1:-1:-1;;;51532:111:0;;;;;;;:::i;72412:100::-;72464:13;72497:7;72490:14;;;;;:::i;7468:723::-;7524:13;7745:10;7741:53;;-1:-1:-1;;7772:10:0;;;;;;;;;;;;-1:-1:-1;;;7772:10:0;;;;;7468:723::o;7741:53::-;7819:5;7804:12;7860:78;7867:9;;7860:78;;7893:8;;;;:::i;:::-;;-1:-1:-1;7916:10:0;;-1:-1:-1;7924:2:0;7916:10;;:::i;:::-;;;7860:78;;;7948:19;7980:6;7970:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;7970:17:0;;7948:39;;7998:154;8005:10;;7998:154;;8032:11;8042:1;8032:11;;:::i;:::-;;-1:-1:-1;8101:10:0;8109:2;8101:5;:10;:::i;:::-;8088:24;;:2;:24;:::i;:::-;8075:39;;8058:6;8065;8058:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;8058:56:0;;;;;;;;-1:-1:-1;8129:11:0;8138:2;8129:11;;:::i;:::-;;;7998:154;;46206:305;46308:4;-1:-1:-1;;;;;;46345:40:0;;-1:-1:-1;;;46345:40:0;;:105;;-1:-1:-1;;;;;;;46402:48:0;;-1:-1:-1;;;46402:48:0;46345:105;:158;;;-1:-1:-1;;;;;;;;;;37989:40:0;;;46467:36;37880:157;78970:229;11323:7;;;;11577:9;11569:38;;;;-1:-1:-1;;;11569:38:0;;;;;;;:::i;:::-;79146:45:::1;79173:4;79179:2;79183:7;79146:26;:45::i;26741:716::-:0;27165:23;27191:69;27219:4;27191:69;;;;;;;;;;;;;;;;;27199:5;-1:-1:-1;;;;;27191:27:0;;;:69;;;;;:::i;:::-;27275:17;;27165:95;;-1:-1:-1;27275:21:0;27271:179;;27372:10;27361:30;;;;;;;;;;;;:::i;:::-;27353:85;;;;-1:-1:-1;;;27353:85:0;;23167:2:1;27353:85:0;;;23149:21:1;23206:2;23186:18;;;23179:30;23245:34;23225:18;;;23218:62;-1:-1:-1;;;23296:18:1;;;23289:40;23346:19;;27353:85:0;22965:406:1;53285:321:0;53415:18;53421:2;53425:7;53415:5;:18::i;:::-;53466:54;53497:1;53501:2;53505:7;53514:5;53466:22;:54::i;:::-;53444:154;;;;-1:-1:-1;;;53444:154:0;;;;;;;:::i;57306:799::-;57461:4;-1:-1:-1;;;;;57482:13:0;;16496:19;:23;57478:620;;57518:72;;-1:-1:-1;;;57518:72:0;;-1:-1:-1;;;;;57518:36:0;;;;;:72;;9986:10;;57569:4;;57575:7;;57584:5;;57518:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;57518:72:0;;;;;;;;-1:-1:-1;;57518:72:0;;;;;;;;;;;;:::i;:::-;;;57514:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;57760:13:0;;57756:272;;57803:60;;-1:-1:-1;;;57803:60:0;;;;;;;:::i;57756:272::-;57978:6;57972:13;57963:6;57959:2;57955:15;57948:38;57514:529;-1:-1:-1;;;;;;57641:51:0;-1:-1:-1;;;57641:51:0;;-1:-1:-1;57634:58:0;;57478:620;-1:-1:-1;58082:4:0;57306:799;;;;;;:::o;62007:589::-;-1:-1:-1;;;;;62213:18:0;;62209:187;;62248:40;62280:7;63423:10;:17;;63396:24;;;;:15;:24;;;;;:44;;;63451:24;;;;;;;;;;;;63319:164;62248:40;62209:187;;;62318:2;-1:-1:-1;;;;;62310:10:0;:4;-1:-1:-1;;;;;62310:10:0;;62306:90;;62337:47;62370:4;62376:7;62337:32;:47::i;:::-;-1:-1:-1;;;;;62410:16:0;;62406:183;;62443:45;62480:7;62443:36;:45::i;62406:183::-;62516:4;-1:-1:-1;;;;;62510:10:0;:2;-1:-1:-1;;;;;62510:10:0;;62506:83;;62537:40;62565:2;62569:7;62537:27;:40::i;18946:229::-;19083:12;19115:52;19137:6;19145:4;19151:1;19154:12;19115:21;:52::i;53942:439::-;-1:-1:-1;;;;;54022:16:0;;54014:61;;;;-1:-1:-1;;;54014:61:0;;20092:2:1;54014:61:0;;;20074:21:1;;;20111:18;;;20104:30;20170:34;20150:18;;;20143:62;20222:18;;54014:61:0;19890:356:1;54014:61:0;52029:4;52053:16;;;:7;:16;;;;;;-1:-1:-1;;;;;52053:16:0;:30;54086:58;;;;-1:-1:-1;;;54086:58:0;;12625:2:1;54086:58:0;;;12607:21:1;12664:2;12644:18;;;12637:30;12703;12683:18;;;12676:58;12751:18;;54086:58:0;12423:352:1;54086:58:0;54157:45;54186:1;54190:2;54194:7;54157:20;:45::i;:::-;-1:-1:-1;;;;;54215:13:0;;;;;;:9;:13;;;;;:18;;54232:1;;54215:13;:18;;54232:1;;54215:18;:::i;:::-;;;;-1:-1:-1;;54244:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;54244:21:0;-1:-1:-1;;;;;54244:21:0;;;;;;;;54283:33;;54244:16;;;54283:33;;54244:16;;54283:33;72048:30:::1;71963:123:::0;:::o;64110:988::-;64376:22;64426:1;64401:22;64418:4;64401:16;:22::i;:::-;:26;;;;:::i;:::-;64438:18;64459:26;;;:17;:26;;;;;;64376:51;;-1:-1:-1;64592:28:0;;;64588:328;;-1:-1:-1;;;;;64659:18:0;;64637:19;64659:18;;;:12;:18;;;;;;;;:34;;;;;;;;;64710:30;;;;;;:44;;;64827:30;;:17;:30;;;;;:43;;;64588:328;-1:-1:-1;65012:26:0;;;;:17;:26;;;;;;;;65005:33;;;-1:-1:-1;;;;;65056:18:0;;;;;:12;:18;;;;;:34;;;;;;;65049:41;64110:988::o;65393:1079::-;65671:10;:17;65646:22;;65671:21;;65691:1;;65671:21;:::i;:::-;65703:18;65724:24;;;:15;:24;;;;;;66097:10;:26;;65646:46;;-1:-1:-1;65724:24:0;;65646:46;;66097:26;;;;;;:::i;:::-;;;;;;;;;66075:48;;66161:11;66136:10;66147;66136:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;66241:28;;;:15;:28;;;;;;;:41;;;66413:24;;;;;66406:31;66448:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;65464:1008;;;65393:1079;:::o;62897:221::-;62982:14;62999:20;63016:2;62999:16;:20::i;:::-;-1:-1:-1;;;;;63030:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;63075:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;62897:221:0:o;20066:510::-;20236:12;20294:5;20269:21;:30;;20261:81;;;;-1:-1:-1;;;20261:81:0;;15992:2:1;20261:81:0;;;15974:21:1;16031:2;16011:18;;;16004:30;16070:34;16050:18;;;16043:62;-1:-1:-1;;;16121:18:1;;;16114:36;16167:19;;20261:81:0;15790:402:1;20261:81:0;-1:-1:-1;;;;;16496:19:0;;;20353:60;;;;-1:-1:-1;;;20353:60:0;;22396:2:1;20353:60:0;;;22378:21:1;22435:2;22415:18;;;22408:30;22474:31;22454:18;;;22447:59;22523:18;;20353:60:0;22194:353:1;20353:60:0;20427:12;20441:23;20468:6;-1:-1:-1;;;;;20468:11:0;20487:5;20494:4;20468:31;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20426:73;;;;20517:51;20534:7;20543:10;20555:12;20517:16;:51::i;:::-;20510:58;20066:510;-1:-1:-1;;;;;;;20066:510:0:o;22752:712::-;22902:12;22931:7;22927:530;;;-1:-1:-1;22962:10:0;22955:17;;22927:530;23076:17;;:21;23072:374;;23274:10;23268:17;23335:15;23322:10;23318:2;23314:19;23307:44;23072:374;23417:12;23410:20;;-1:-1:-1;;;23410:20:0;;;;;;;;:::i;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:631:1;78:5;108:18;149:2;141:6;138:14;135:40;;;155:18;;:::i;:::-;230:2;224:9;198:2;284:15;;-1:-1:-1;;280:24:1;;;306:2;276:33;272:42;260:55;;;330:18;;;350:22;;;327:46;324:72;;;376:18;;:::i;:::-;416:10;412:2;405:22;445:6;436:15;;475:6;467;460:22;515:3;506:6;501:3;497:16;494:25;491:45;;;532:1;529;522:12;491:45;582:6;577:3;570:4;562:6;558:17;545:44;637:1;630:4;621:6;613;609:19;605:30;598:41;;;;14:631;;;;;:::o;650:247::-;709:6;762:2;750:9;741:7;737:23;733:32;730:52;;;778:1;775;768:12;730:52;817:9;804:23;836:31;861:5;836:31;:::i;1162:388::-;1230:6;1238;1291:2;1279:9;1270:7;1266:23;1262:32;1259:52;;;1307:1;1304;1297:12;1259:52;1346:9;1333:23;1365:31;1390:5;1365:31;:::i;:::-;1415:5;-1:-1:-1;1472:2:1;1457:18;;1444:32;1485:33;1444:32;1485:33;:::i;:::-;1537:7;1527:17;;;1162:388;;;;;:::o;1555:456::-;1632:6;1640;1648;1701:2;1689:9;1680:7;1676:23;1672:32;1669:52;;;1717:1;1714;1707:12;1669:52;1756:9;1743:23;1775:31;1800:5;1775:31;:::i;:::-;1825:5;-1:-1:-1;1882:2:1;1867:18;;1854:32;1895:33;1854:32;1895:33;:::i;:::-;1555:456;;1947:7;;-1:-1:-1;;;2001:2:1;1986:18;;;;1973:32;;1555:456::o;2016:794::-;2111:6;2119;2127;2135;2188:3;2176:9;2167:7;2163:23;2159:33;2156:53;;;2205:1;2202;2195:12;2156:53;2244:9;2231:23;2263:31;2288:5;2263:31;:::i;:::-;2313:5;-1:-1:-1;2370:2:1;2355:18;;2342:32;2383:33;2342:32;2383:33;:::i;:::-;2435:7;-1:-1:-1;2489:2:1;2474:18;;2461:32;;-1:-1:-1;2544:2:1;2529:18;;2516:32;2571:18;2560:30;;2557:50;;;2603:1;2600;2593:12;2557:50;2626:22;;2679:4;2671:13;;2667:27;-1:-1:-1;2657:55:1;;2708:1;2705;2698:12;2657:55;2731:73;2796:7;2791:2;2778:16;2773:2;2769;2765:11;2731:73;:::i;:::-;2721:83;;;2016:794;;;;;;;:::o;2815:382::-;2880:6;2888;2941:2;2929:9;2920:7;2916:23;2912:32;2909:52;;;2957:1;2954;2947:12;2909:52;2996:9;2983:23;3015:31;3040:5;3015:31;:::i;:::-;3065:5;-1:-1:-1;3122:2:1;3107:18;;3094:32;3135:30;3094:32;3135:30;:::i;3202:315::-;3270:6;3278;3331:2;3319:9;3310:7;3306:23;3302:32;3299:52;;;3347:1;3344;3337:12;3299:52;3386:9;3373:23;3405:31;3430:5;3405:31;:::i;:::-;3455:5;3507:2;3492:18;;;;3479:32;;-1:-1:-1;;;3202:315:1:o;3522:245::-;3589:6;3642:2;3630:9;3621:7;3617:23;3613:32;3610:52;;;3658:1;3655;3648:12;3610:52;3690:9;3684:16;3709:28;3731:5;3709:28;:::i;3772:245::-;3830:6;3883:2;3871:9;3862:7;3858:23;3854:32;3851:52;;;3899:1;3896;3889:12;3851:52;3938:9;3925:23;3957:30;3981:5;3957:30;:::i;4022:249::-;4091:6;4144:2;4132:9;4123:7;4119:23;4115:32;4112:52;;;4160:1;4157;4150:12;4112:52;4192:9;4186:16;4211:30;4235:5;4211:30;:::i;4949:450::-;5018:6;5071:2;5059:9;5050:7;5046:23;5042:32;5039:52;;;5087:1;5084;5077:12;5039:52;5127:9;5114:23;5160:18;5152:6;5149:30;5146:50;;;5192:1;5189;5182:12;5146:50;5215:22;;5268:4;5260:13;;5256:27;-1:-1:-1;5246:55:1;;5297:1;5294;5287:12;5246:55;5320:73;5385:7;5380:2;5367:16;5362:2;5358;5354:11;5320:73;:::i;5404:180::-;5463:6;5516:2;5504:9;5495:7;5491:23;5487:32;5484:52;;;5532:1;5529;5522:12;5484:52;-1:-1:-1;5555:23:1;;5404:180;-1:-1:-1;5404:180:1:o;5589:184::-;5659:6;5712:2;5700:9;5691:7;5687:23;5683:32;5680:52;;;5728:1;5725;5718:12;5680:52;-1:-1:-1;5751:16:1;;5589:184;-1:-1:-1;5589:184:1:o;5778:257::-;5819:3;5857:5;5851:12;5884:6;5879:3;5872:19;5900:63;5956:6;5949:4;5944:3;5940:14;5933:4;5926:5;5922:16;5900:63;:::i;:::-;6017:2;5996:15;-1:-1:-1;;5992:29:1;5983:39;;;;6024:4;5979:50;;5778:257;-1:-1:-1;;5778:257:1:o;6040:234::-;6118:1;6111:5;6108:12;6098:143;;6163:10;6158:3;6154:20;6151:1;6144:31;6198:4;6195:1;6188:15;6226:4;6223:1;6216:15;6098:143;6250:18;;6040:234::o;6279:274::-;6408:3;6446:6;6440:13;6462:53;6508:6;6503:3;6496:4;6488:6;6484:17;6462:53;:::i;:::-;6531:16;;;;;6279:274;-1:-1:-1;;6279:274:1:o;6558:637::-;6838:3;6876:6;6870:13;6892:53;6938:6;6933:3;6926:4;6918:6;6914:17;6892:53;:::i;:::-;7008:13;;6967:16;;;;7030:57;7008:13;6967:16;7064:4;7052:17;;7030:57;:::i;:::-;-1:-1:-1;;;7109:20:1;;7138:22;;;7187:1;7176:13;;6558:637;-1:-1:-1;;;;6558:637:1:o;7905:488::-;-1:-1:-1;;;;;8174:15:1;;;8156:34;;8226:15;;8221:2;8206:18;;8199:43;8273:2;8258:18;;8251:34;;;8321:3;8316:2;8301:18;;8294:31;;;8099:4;;8342:45;;8367:19;;8359:6;8342:45;:::i;:::-;8334:53;7905:488;-1:-1:-1;;;;;;7905:488:1:o;8869:202::-;9012:2;8997:18;;9024:41;9001:9;9047:6;9024:41;:::i;9076:298::-;9256:2;9241:18;;9268:41;9245:9;9291:6;9268:41;:::i;:::-;9318:50;9364:2;9353:9;9349:18;9341:6;9318:50;:::i;9379:219::-;9528:2;9517:9;9510:21;9491:4;9548:44;9588:2;9577:9;9573:18;9565:6;9548:44;:::i;10839:414::-;11041:2;11023:21;;;11080:2;11060:18;;;11053:30;11119:34;11114:2;11099:18;;11092:62;-1:-1:-1;;;11185:2:1;11170:18;;11163:48;11243:3;11228:19;;10839:414::o;12780:402::-;12982:2;12964:21;;;13021:2;13001:18;;;12994:30;13060:34;13055:2;13040:18;;13033:62;-1:-1:-1;;;13126:2:1;13111:18;;13104:36;13172:3;13157:19;;12780:402::o;14303:350::-;14505:2;14487:21;;;14544:2;14524:18;;;14517:30;14583:28;14578:2;14563:18;;14556:56;14644:2;14629:18;;14303:350::o;15443:342::-;15645:2;15627:21;;;15684:2;15664:18;;;15657:30;-1:-1:-1;;;15718:2:1;15703:18;;15696:48;15776:2;15761:18;;15443:342::o;16610:407::-;16812:2;16794:21;;;16851:2;16831:18;;;16824:30;16890:34;16885:2;16870:18;;16863:62;-1:-1:-1;;;16956:2:1;16941:18;;16934:41;17007:3;16992:19;;16610:407::o;17447:340::-;17649:2;17631:21;;;17688:2;17668:18;;;17661:30;-1:-1:-1;;;17722:2:1;17707:18;;17700:46;17778:2;17763:18;;17447:340::o;19466:419::-;19668:2;19650:21;;;19707:2;19687:18;;;19680:30;19746:34;19741:2;19726:18;;19719:62;19817:25;19812:2;19797:18;;19790:53;19875:3;19860:19;;19466:419::o;21013:356::-;21215:2;21197:21;;;21234:18;;;21227:30;21293:34;21288:2;21273:18;;21266:62;21360:2;21345:18;;21013:356::o;21776:413::-;21978:2;21960:21;;;22017:2;21997:18;;;21990:30;22056:34;22051:2;22036:18;;22029:62;-1:-1:-1;;;22122:2:1;22107:18;;22100:47;22179:3;22164:19;;21776:413::o;23376:355::-;23578:2;23560:21;;;23617:2;23597:18;;;23590:30;23656:33;23651:2;23636:18;;23629:61;23722:2;23707:18;;23376:355::o;23736:356::-;23938:2;23920:21;;;23957:18;;;23950:30;24016:34;24011:2;23996:18;;23989:62;24083:2;24068:18;;23736:356::o;24279:128::-;24319:3;24350:1;24346:6;24343:1;24340:13;24337:39;;;24356:18;;:::i;:::-;-1:-1:-1;24392:9:1;;24279:128::o;24412:120::-;24452:1;24478;24468:35;;24483:18;;:::i;:::-;-1:-1:-1;24517:9:1;;24412:120::o;24537:168::-;24577:7;24643:1;24639;24635:6;24631:14;24628:1;24625:21;24620:1;24613:9;24606:17;24602:45;24599:71;;;24650:18;;:::i;:::-;-1:-1:-1;24690:9:1;;24537:168::o;24710:125::-;24750:4;24778:1;24775;24772:8;24769:34;;;24783:18;;:::i;:::-;-1:-1:-1;24820:9:1;;24710:125::o;24840:258::-;24912:1;24922:113;24936:6;24933:1;24930:13;24922:113;;;25012:11;;;25006:18;24993:11;;;24986:39;24958:2;24951:10;24922:113;;;25053:6;25050:1;25047:13;25044:48;;;-1:-1:-1;;25088:1:1;25070:16;;25063:27;24840:258::o;25103:380::-;25182:1;25178:12;;;;25225;;;25246:61;;25300:4;25292:6;25288:17;25278:27;;25246:61;25353:2;25345:6;25342:14;25322:18;25319:38;25316:161;;;25399:10;25394:3;25390:20;25387:1;25380:31;25434:4;25431:1;25424:15;25462:4;25459:1;25452:15;25316:161;;25103:380;;;:::o;25488:135::-;25527:3;-1:-1:-1;;25548:17:1;;25545:43;;;25568:18;;:::i;:::-;-1:-1:-1;25615:1:1;25604:13;;25488:135::o;25628:112::-;25660:1;25686;25676:35;;25691:18;;:::i;:::-;-1:-1:-1;25725:9:1;;25628:112::o;25745:127::-;25806:10;25801:3;25797:20;25794:1;25787:31;25837:4;25834:1;25827:15;25861:4;25858:1;25851:15;25877:127;25938:10;25933:3;25929:20;25926:1;25919:31;25969:4;25966:1;25959:15;25993:4;25990:1;25983:15;26009:127;26070:10;26065:3;26061:20;26058:1;26051:31;26101:4;26098:1;26091:15;26125:4;26122:1;26115:15;26141:127;26202:10;26197:3;26193:20;26190:1;26183:31;26233:4;26230:1;26223:15;26257:4;26254:1;26247:15;26273:127;26334:10;26329:3;26325:20;26322:1;26315:31;26365:4;26362:1;26355:15;26389:4;26386:1;26379:15;26405:127;26466:10;26461:3;26457:20;26454:1;26447:31;26497:4;26494:1;26487:15;26521:4;26518:1;26511:15;26537:131;-1:-1:-1;;;;;26612:31:1;;26602:42;;26592:70;;26658:1;26655;26648:12;26673:118;26759:5;26752:13;26745:21;26738:5;26735:32;26725:60;;26781:1;26778;26771:12;26796:131;-1:-1:-1;;;;;;26870:32:1;;26860:43;;26850:71;;26917:1;26914;26907:12
Swarm Source
ipfs://17dab9619afd47bae70733cd7189f931d72500a0ae8a83159ce94f5055646af5
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.