Feature Tip: Add private address tag to any address under My Name Tag !
More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 15,963 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Set Approval For... | 24643595 | 31 hrs ago | IN | 0 ETH | 0.00000459 | ||||
| Set Approval For... | 24643590 | 31 hrs ago | IN | 0 ETH | 0.00000426 | ||||
| Set Approval For... | 24639785 | 43 hrs ago | IN | 0 ETH | 0.00000196 | ||||
| Set Approval For... | 24639771 | 43 hrs ago | IN | 0 ETH | 0.00000672 | ||||
| Set Approval For... | 24638738 | 47 hrs ago | IN | 0 ETH | 0.00009502 | ||||
| Set Approval For... | 24637290 | 2 days ago | IN | 0 ETH | 0.00000184 | ||||
| Approve | 24631882 | 2 days ago | IN | 0 ETH | 0.00005522 | ||||
| Set Approval For... | 24630386 | 3 days ago | IN | 0 ETH | 0.00000176 | ||||
| Set Approval For... | 24550011 | 14 days ago | IN | 0 ETH | 0.00005234 | ||||
| Set Approval For... | 24548068 | 14 days ago | IN | 0 ETH | 0.00010118 | ||||
| Set Approval For... | 24527044 | 17 days ago | IN | 0 ETH | 0.00004735 | ||||
| Set Approval For... | 24518507 | 18 days ago | IN | 0 ETH | 0.00009528 | ||||
| Set Approval For... | 24449111 | 28 days ago | IN | 0 ETH | 0.00005211 | ||||
| Set Approval For... | 24433608 | 30 days ago | IN | 0 ETH | 0.00000557 | ||||
| Set Approval For... | 24432206 | 30 days ago | IN | 0 ETH | 0.00000311 | ||||
| Set Approval For... | 24431213 | 30 days ago | IN | 0 ETH | 0.00009541 | ||||
| Set Approval For... | 24413937 | 33 days ago | IN | 0 ETH | 0.00009608 | ||||
| Set Approval For... | 24404295 | 34 days ago | IN | 0 ETH | 0.00009726 | ||||
| Set Approval For... | 24400017 | 35 days ago | IN | 0 ETH | 0.00000808 | ||||
| Set Approval For... | 24391979 | 36 days ago | IN | 0 ETH | 0.00021259 | ||||
| Set Approval For... | 24379913 | 38 days ago | IN | 0 ETH | 0.00010003 | ||||
| Set Approval For... | 24371406 | 39 days ago | IN | 0 ETH | 0.00000823 | ||||
| Set Approval For... | 24371173 | 39 days ago | IN | 0 ETH | 0.00005271 | ||||
| Set Approval For... | 24355404 | 41 days ago | IN | 0 ETH | 0.00010527 | ||||
| Set Approval For... | 24345472 | 42 days ago | IN | 0 ETH | 0.00000375 |
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
SpacePunksToken
Compiler Version
v0.8.7+commit.e28d00a7
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
pragma solidity ^0.8.0;
// SPDX-License-Identifier: LGPL-3.0-or-later
import "@chainlink/contracts/src/v0.8/VRFConsumerBase.sol";
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721Enumerable.sol";
import "@openzeppelin/contracts/token/ERC721/extensions/ERC721URIStorage.sol";
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/finance/PaymentSplitter.sol";
import "@openzeppelin/contracts/security/Pausable.sol";
import "@openzeppelin/contracts/security/ReentrancyGuard.sol";
import "@openzeppelin/contracts/utils/Counters.sol";
import "@openzeppelin/contracts/utils/math/SafeMath.sol";
contract SpacePunksToken is ERC721, ERC721URIStorage, ERC721Enumerable, Ownable, Pausable, PaymentSplitter, ReentrancyGuard {
using SafeMath for uint256;
using Counters for Counters.Counter;
uint256 public constant TOKEN_LIMIT = 10000;
uint256 private _tokenPrice;
uint256 private _maxTokensAtOnce = 1;
bool public publicSale = false;
bool public teamSale = false;
uint internal nonce = 0;
uint[TOKEN_LIMIT] internal indices;
mapping(address => bool) private _teamSaleAddresses;
uint256[] private _teamShares = [100];
address[] private _team = [0x3515001548Cb3f93Dc5E3F3880D1f5ab2b0E07DB];
constructor()
PaymentSplitter(_team, _teamShares)
ERC721("Space Punks", unicode"⚇")
{
setTokenPrice(60000000000000000);
_teamSaleAddresses[0x3515001548Cb3f93Dc5E3F3880D1f5ab2b0E07DB] = true;
}
// Required overrides from parent contracts
function _burn(uint256 tokenId) internal virtual override(ERC721, ERC721URIStorage) {
super._burn(tokenId);
}
function tokenURI(uint256 tokenId) public view virtual override(ERC721, ERC721URIStorage) returns (string memory) {
return string(abi.encodePacked(super.tokenURI(tokenId), ".json"));
}
function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal override(ERC721, ERC721Enumerable) {
super._beforeTokenTransfer(from, to, tokenId);
}
function supportsInterface(bytes4 interfaceId) public view override(ERC721, ERC721Enumerable) returns (bool) {
return super.supportsInterface(interfaceId);
}
// _tokenPrice
function getTokenPrice() public view returns(uint256) {
return _tokenPrice;
}
function setTokenPrice(uint256 _price) public onlyOwner {
_tokenPrice = _price;
}
// _paused
function togglePaused() public onlyOwner {
if (paused()) {
_unpause();
} else {
_pause();
}
}
// _maxTokensAtOnce
function getMaxTokensAtOnce() public view returns (uint256) {
return _maxTokensAtOnce;
}
function setMaxTokensAtOnce(uint256 _count) public onlyOwner {
_maxTokensAtOnce = _count;
}
// Team and Public sales
function enablePublicSale() public onlyOwner {
publicSale = true;
setMaxTokensAtOnce(20);
}
function disablePublicSale() public onlyOwner {
publicSale = false;
setMaxTokensAtOnce(1);
}
function toggleTeamSale() public onlyOwner {
teamSale = !teamSale;
}
// Token URIs
function _baseURI() internal override pure returns (string memory) {
return "ipfs://QmVbg8tDifQfUTjB11tbSGsk93vXboPuV73ogLBf6MSJ7p/";
}
// Pick a random index
function randomIndex() internal returns (uint256) {
uint256 totalSize = TOKEN_LIMIT - totalSupply();
uint256 index = uint(keccak256(abi.encodePacked(nonce, msg.sender, block.difficulty, block.timestamp))) % totalSize;
uint256 value = 0;
if (indices[index] != 0) {
value = indices[index];
} else {
value = index;
}
if (indices[totalSize - 1] == 0) {
indices[index] = totalSize - 1;
} else {
indices[index] = indices[totalSize - 1];
}
nonce++;
return value.add(1);
}
// Minting single or multiple tokens
function _mintWithRandomTokenId(address _to) private {
uint _tokenID = randomIndex();
_safeMint(_to, _tokenID);
}
function mintToken() public payable nonReentrant whenNotPaused {
require(totalSupply().add(1) <= TOKEN_LIMIT, "Purchase would exceed max supply of Space Punks");
require(msg.value >= _tokenPrice, "Insufficient funds to purchase");
if (!publicSale) {
require (balanceOf(msg.sender) <= 1, "Only one token per address allowed");
}
_mintWithRandomTokenId(msg.sender);
}
function mintMultipleTokens(uint256 _amount) public payable nonReentrant whenNotPaused {
require(totalSupply().add(_amount) <= TOKEN_LIMIT, "Purchase would exceed max supply of Space Punks");
require(publicSale, "Public sale must be active to mint multiple tokens at once");
require(_amount <= _maxTokensAtOnce, "Too many tokens at once");
require(getTokenPrice().mul(_amount) == msg.value, "Insufficient funds to purchase");
for(uint256 i = 0; i < _amount; i++) {
_mintWithRandomTokenId(msg.sender);
}
}
function mintMultipleTokensForTeam(uint256 _amount) public payable nonReentrant {
require(teamSale, "Team sale must be active to mint as a team member");
require(totalSupply() < 100, "Exceeded tokens allocation for team members");
require(_teamSaleAddresses[address(msg.sender)], "Not a team member");
for(uint256 i = 0; i < _amount; i++) {
_mintWithRandomTokenId(msg.sender);
}
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./interfaces/LinkTokenInterface.sol";
import "./VRFRequestIDBase.sol";
/** ****************************************************************************
* @notice Interface for contracts using VRF randomness
* *****************************************************************************
* @dev PURPOSE
*
* @dev Reggie the Random Oracle (not his real job) wants to provide randomness
* @dev to Vera the verifier in such a way that Vera can be sure he's not
* @dev making his output up to suit himself. Reggie provides Vera a public key
* @dev to which he knows the secret key. Each time Vera provides a seed to
* @dev Reggie, he gives back a value which is computed completely
* @dev deterministically from the seed and the secret key.
*
* @dev Reggie provides a proof by which Vera can verify that the output was
* @dev correctly computed once Reggie tells it to her, but without that proof,
* @dev the output is indistinguishable to her from a uniform random sample
* @dev from the output space.
*
* @dev The purpose of this contract is to make it easy for unrelated contracts
* @dev to talk to Vera the verifier about the work Reggie is doing, to provide
* @dev simple access to a verifiable source of randomness.
* *****************************************************************************
* @dev USAGE
*
* @dev Calling contracts must inherit from VRFConsumerBase, and can
* @dev initialize VRFConsumerBase's attributes in their constructor as
* @dev shown:
*
* @dev contract VRFConsumer {
* @dev constuctor(<other arguments>, address _vrfCoordinator, address _link)
* @dev VRFConsumerBase(_vrfCoordinator, _link) public {
* @dev <initialization with other arguments goes here>
* @dev }
* @dev }
*
* @dev The oracle will have given you an ID for the VRF keypair they have
* @dev committed to (let's call it keyHash), and have told you the minimum LINK
* @dev price for VRF service. Make sure your contract has sufficient LINK, and
* @dev call requestRandomness(keyHash, fee, seed), where seed is the input you
* @dev want to generate randomness from.
*
* @dev Once the VRFCoordinator has received and validated the oracle's response
* @dev to your request, it will call your contract's fulfillRandomness method.
*
* @dev The randomness argument to fulfillRandomness is the actual random value
* @dev generated from your seed.
*
* @dev The requestId argument is generated from the keyHash and the seed by
* @dev makeRequestId(keyHash, seed). If your contract could have concurrent
* @dev requests open, you can use the requestId to track which seed is
* @dev associated with which randomness. See VRFRequestIDBase.sol for more
* @dev details. (See "SECURITY CONSIDERATIONS" for principles to keep in mind,
* @dev if your contract could have multiple requests in flight simultaneously.)
*
* @dev Colliding `requestId`s are cryptographically impossible as long as seeds
* @dev differ. (Which is critical to making unpredictable randomness! See the
* @dev next section.)
*
* *****************************************************************************
* @dev SECURITY CONSIDERATIONS
*
* @dev A method with the ability to call your fulfillRandomness method directly
* @dev could spoof a VRF response with any random value, so it's critical that
* @dev it cannot be directly called by anything other than this base contract
* @dev (specifically, by the VRFConsumerBase.rawFulfillRandomness method).
*
* @dev For your users to trust that your contract's random behavior is free
* @dev from malicious interference, it's best if you can write it so that all
* @dev behaviors implied by a VRF response are executed *during* your
* @dev fulfillRandomness method. If your contract must store the response (or
* @dev anything derived from it) and use it later, you must ensure that any
* @dev user-significant behavior which depends on that stored value cannot be
* @dev manipulated by a subsequent VRF request.
*
* @dev Similarly, both miners and the VRF oracle itself have some influence
* @dev over the order in which VRF responses appear on the blockchain, so if
* @dev your contract could have multiple VRF requests in flight simultaneously,
* @dev you must ensure that the order in which the VRF responses arrive cannot
* @dev be used to manipulate your contract's user-significant behavior.
*
* @dev Since the ultimate input to the VRF is mixed with the block hash of the
* @dev block in which the request is made, user-provided seeds have no impact
* @dev on its economic security properties. They are only included for API
* @dev compatability with previous versions of this contract.
*
* @dev Since the block hash of the block which contains the requestRandomness
* @dev call is mixed into the input to the VRF *last*, a sufficiently powerful
* @dev miner could, in principle, fork the blockchain to evict the block
* @dev containing the request, forcing the request to be included in a
* @dev different block with a different hash, and therefore a different input
* @dev to the VRF. However, such an attack would incur a substantial economic
* @dev cost. This cost scales with the number of blocks the VRF oracle waits
* @dev until it calls responds to a request.
*/
abstract contract VRFConsumerBase is VRFRequestIDBase {
/**
* @notice fulfillRandomness handles the VRF response. Your contract must
* @notice implement it. See "SECURITY CONSIDERATIONS" above for important
* @notice principles to keep in mind when implementing your fulfillRandomness
* @notice method.
*
* @dev VRFConsumerBase expects its subcontracts to have a method with this
* @dev signature, and will call it once it has verified the proof
* @dev associated with the randomness. (It is triggered via a call to
* @dev rawFulfillRandomness, below.)
*
* @param requestId The Id initially returned by requestRandomness
* @param randomness the VRF output
*/
function fulfillRandomness(
bytes32 requestId,
uint256 randomness
)
internal
virtual;
/**
* @dev In order to keep backwards compatibility we have kept the user
* seed field around. We remove the use of it because given that the blockhash
* enters later, it overrides whatever randomness the used seed provides.
* Given that it adds no security, and can easily lead to misunderstandings,
* we have removed it from usage and can now provide a simpler API.
*/
uint256 constant private USER_SEED_PLACEHOLDER = 0;
/**
* @notice requestRandomness initiates a request for VRF output given _seed
*
* @dev The fulfillRandomness method receives the output, once it's provided
* @dev by the Oracle, and verified by the vrfCoordinator.
*
* @dev The _keyHash must already be registered with the VRFCoordinator, and
* @dev the _fee must exceed the fee specified during registration of the
* @dev _keyHash.
*
* @dev The _seed parameter is vestigial, and is kept only for API
* @dev compatibility with older versions. It can't *hurt* to mix in some of
* @dev your own randomness, here, but it's not necessary because the VRF
* @dev oracle will mix the hash of the block containing your request into the
* @dev VRF seed it ultimately uses.
*
* @param _keyHash ID of public key against which randomness is generated
* @param _fee The amount of LINK to send with the request
*
* @return requestId unique ID for this request
*
* @dev The returned requestId can be used to distinguish responses to
* @dev concurrent requests. It is passed as the first argument to
* @dev fulfillRandomness.
*/
function requestRandomness(
bytes32 _keyHash,
uint256 _fee
)
internal
returns (
bytes32 requestId
)
{
LINK.transferAndCall(vrfCoordinator, _fee, abi.encode(_keyHash, USER_SEED_PLACEHOLDER));
// This is the seed passed to VRFCoordinator. The oracle will mix this with
// the hash of the block containing this request to obtain the seed/input
// which is finally passed to the VRF cryptographic machinery.
uint256 vRFSeed = makeVRFInputSeed(_keyHash, USER_SEED_PLACEHOLDER, address(this), nonces[_keyHash]);
// nonces[_keyHash] must stay in sync with
// VRFCoordinator.nonces[_keyHash][this], which was incremented by the above
// successful LINK.transferAndCall (in VRFCoordinator.randomnessRequest).
// This provides protection against the user repeating their input seed,
// which would result in a predictable/duplicate output, if multiple such
// requests appeared in the same block.
nonces[_keyHash] = nonces[_keyHash] + 1;
return makeRequestId(_keyHash, vRFSeed);
}
LinkTokenInterface immutable internal LINK;
address immutable private vrfCoordinator;
// Nonces for each VRF key from which randomness has been requested.
//
// Must stay in sync with VRFCoordinator[_keyHash][this]
mapping(bytes32 /* keyHash */ => uint256 /* nonce */) private nonces;
/**
* @param _vrfCoordinator address of VRFCoordinator contract
* @param _link address of LINK token contract
*
* @dev https://docs.chain.link/docs/link-token-contracts
*/
constructor(
address _vrfCoordinator,
address _link
) {
vrfCoordinator = _vrfCoordinator;
LINK = LinkTokenInterface(_link);
}
// rawFulfillRandomness is called by VRFCoordinator when it receives a valid VRF
// proof. rawFulfillRandomness then calls fulfillRandomness, after validating
// the origin of the call
function rawFulfillRandomness(
bytes32 requestId,
uint256 randomness
)
external
{
require(msg.sender == vrfCoordinator, "Only VRFCoordinator can fulfill");
fulfillRandomness(requestId, randomness);
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
contract VRFRequestIDBase {
/**
* @notice returns the seed which is actually input to the VRF coordinator
*
* @dev To prevent repetition of VRF output due to repetition of the
* @dev user-supplied seed, that seed is combined in a hash with the
* @dev user-specific nonce, and the address of the consuming contract. The
* @dev risk of repetition is mostly mitigated by inclusion of a blockhash in
* @dev the final seed, but the nonce does protect against repetition in
* @dev requests which are included in a single block.
*
* @param _userSeed VRF seed input provided by user
* @param _requester Address of the requesting contract
* @param _nonce User-specific nonce at the time of the request
*/
function makeVRFInputSeed(
bytes32 _keyHash,
uint256 _userSeed,
address _requester,
uint256 _nonce
)
internal
pure
returns (
uint256
)
{
return uint256(keccak256(abi.encode(_keyHash, _userSeed, _requester, _nonce)));
}
/**
* @notice Returns the id for this request
* @param _keyHash The serviceAgreement ID to be used for this request
* @param _vRFInputSeed The seed to be passed directly to the VRF
* @return The id for this request
*
* @dev Note that _vRFInputSeed is not the seed passed by the consuming
* @dev contract, but the one generated by makeVRFInputSeed
*/
function makeRequestId(
bytes32 _keyHash,
uint256 _vRFInputSeed
)
internal
pure
returns (
bytes32
)
{
return keccak256(abi.encodePacked(_keyHash, _vRFInputSeed));
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
interface LinkTokenInterface {
function allowance(
address owner,
address spender
)
external
view
returns (
uint256 remaining
);
function approve(
address spender,
uint256 value
)
external
returns (
bool success
);
function balanceOf(
address owner
)
external
view
returns (
uint256 balance
);
function decimals()
external
view
returns (
uint8 decimalPlaces
);
function decreaseApproval(
address spender,
uint256 addedValue
)
external
returns (
bool success
);
function increaseApproval(
address spender,
uint256 subtractedValue
) external;
function name()
external
view
returns (
string memory tokenName
);
function symbol()
external
view
returns (
string memory tokenSymbol
);
function totalSupply()
external
view
returns (
uint256 totalTokensIssued
);
function transfer(
address to,
uint256 value
)
external
returns (
bool success
);
function transferAndCall(
address to,
uint256 value,
bytes calldata data
)
external
returns (
bool success
);
function transferFrom(
address from,
address to,
uint256 value
)
external
returns (
bool success
);
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "../utils/Context.sol";
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor() {
_setOwner(_msgSender());
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
_;
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_setOwner(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
_setOwner(newOwner);
}
function _setOwner(address newOwner) private {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "../utils/Address.sol";
import "../utils/Context.sol";
import "../utils/math/SafeMath.sol";
/**
* @title PaymentSplitter
* @dev This contract allows to split Ether payments among a group of accounts. The sender does not need to be aware
* that the Ether will be split in this way, since it is handled transparently by the contract.
*
* The split can be in equal parts or in any other arbitrary proportion. The way this is specified is by assigning each
* account to a number of shares. Of all the Ether that this contract receives, each account will then be able to claim
* an amount proportional to the percentage of total shares they were assigned.
*
* `PaymentSplitter` follows a _pull payment_ model. This means that payments are not automatically forwarded to the
* accounts but kept in this contract, and the actual transfer is triggered as a separate step by calling the {release}
* function.
*/
contract PaymentSplitter is Context {
event PayeeAdded(address account, uint256 shares);
event PaymentReleased(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;
/**
* @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 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 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 = (totalReceived * _shares[account]) / _totalShares - _released[account];
require(payment != 0, "PaymentSplitter: account is not due payment");
_released[account] = _released[account] + payment;
_totalReleased = _totalReleased + payment;
Address.sendValue(account, payment);
emit PaymentReleased(account, payment);
}
/**
* @dev Add a new payee to the contract.
* @param account The address of the payee to add.
* @param shares_ The number of shares owned by the payee.
*/
function _addPayee(address account, uint256 shares_) private {
require(account != address(0), "PaymentSplitter: account is the zero address");
require(shares_ > 0, "PaymentSplitter: shares are 0");
require(_shares[account] == 0, "PaymentSplitter: account already has shares");
_payees.push(account);
_shares[account] = shares_;
_totalShares = _totalShares + shares_;
emit PayeeAdded(account, shares_);
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "../utils/Context.sol";
/**
* @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());
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @dev Contract module that helps prevent reentrant calls to a function.
*
* Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
* available, which can be applied to functions to make sure there are no nested
* (reentrant) calls to them.
*
* Note that because there is a single `nonReentrant` guard, functions marked as
* `nonReentrant` may not call one another. This can be worked around by making
* those functions `private`, and then adding `external` `nonReentrant` entry
* points to them.
*
* TIP: If you would like to learn more about reentrancy and alternative ways
* to protect against it, check out our blog post
* https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
*/
abstract contract ReentrancyGuard {
// Booleans are more expensive than uint256 or any type that takes up a full
// word because each write operation emits an extra SLOAD to first read the
// slot's contents, replace the bits taken up by the boolean, and then write
// back. This is the compiler's defense against contract upgrades and
// pointer aliasing, and it cannot be disabled.
// The values being non-zero value makes deployment a bit more expensive,
// but in exchange the refund on every call to nonReentrant will be lower in
// amount. Since refunds are capped to a percentage of the total
// transaction's gas, it is best to keep them low in cases like this one, to
// increase the likelihood of the full refund coming into effect.
uint256 private constant _NOT_ENTERED = 1;
uint256 private constant _ENTERED = 2;
uint256 private _status;
constructor() {
_status = _NOT_ENTERED;
}
/**
* @dev Prevents a contract from calling itself, directly or indirectly.
* Calling a `nonReentrant` function from another `nonReentrant`
* function is not supported. It is possible to prevent this from happening
* by making the `nonReentrant` function external, and make it call a
* `private` function that does the actual work.
*/
modifier nonReentrant() {
// On the first call to nonReentrant, _notEntered will be true
require(_status != _ENTERED, "ReentrancyGuard: reentrant call");
// Any calls to nonReentrant after this point will fail
_status = _ENTERED;
_;
// By storing the original value once again, a refund is triggered (see
// https://eips.ethereum.org/EIPS/eip-2200)
_status = _NOT_ENTERED;
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./extensions/IERC721Metadata.sol";
import "../../utils/Address.sol";
import "../../utils/Context.sol";
import "../../utils/Strings.sol";
import "../../utils/introspection/ERC165.sol";
/**
* @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 {
require(operator != _msgSender(), "ERC721: approve to caller");
_operatorApprovals[_msgSender()][operator] = approved;
emit ApprovalForAll(_msgSender(), operator, approved);
}
/**
* @dev See {IERC721-isApprovedForAll}.
*/
function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
return _operatorApprovals[owner][operator];
}
/**
* @dev See {IERC721-transferFrom}.
*/
function transferFrom(
address from,
address to,
uint256 tokenId
) public 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);
}
/**
* @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);
}
/**
* @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 of token that is not own");
require(to != address(0), "ERC721: transfer to the zero address");
_beforeTokenTransfer(from, to, tokenId);
// Clear approvals from the previous owner
_approve(address(0), tokenId);
_balances[from] -= 1;
_balances[to] += 1;
_owners[tokenId] = to;
emit Transfer(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 Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
* The call is not executed if the target address is not a contract.
*
* @param from address representing the previous owner of the given token ID
* @param to target address that will receive the tokens
* @param tokenId uint256 ID of the token to be transferred
* @param _data bytes optional data to send along with the call
* @return bool whether the call correctly returned the expected magic value
*/
function _checkOnERC721Received(
address from,
address to,
uint256 tokenId,
bytes memory _data
) private returns (bool) {
if (to.isContract()) {
try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
return retval == IERC721Receiver(to).onERC721Received.selector;
} catch (bytes memory reason) {
if (reason.length == 0) {
revert("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 {}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "../../utils/introspection/IERC165.sol";
/**
* @dev Required interface of an ERC721 compliant contract.
*/
interface IERC721 is IERC165 {
/**
* @dev Emitted when `tokenId` token is transferred from `from` to `to`.
*/
event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
*/
event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
*/
event ApprovalForAll(address indexed owner, address indexed operator, bool approved);
/**
* @dev Returns the number of tokens in ``owner``'s account.
*/
function balanceOf(address owner) external view returns (uint256 balance);
/**
* @dev Returns the owner of the `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function ownerOf(uint256 tokenId) external view returns (address owner);
/**
* @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
* are aware of the ERC721 protocol to prevent tokens from being forever locked.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) external;
/**
* @dev Transfers `tokenId` token from `from` to `to`.
*
* WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address from,
address to,
uint256 tokenId
) external;
/**
* @dev Gives permission to `to` to transfer `tokenId` token to another account.
* The approval is cleared when the token is transferred.
*
* Only a single account can be approved at a time, so approving the zero address clears previous approvals.
*
* Requirements:
*
* - The caller must own the token or be an approved operator.
* - `tokenId` must exist.
*
* Emits an {Approval} event.
*/
function approve(address to, uint256 tokenId) external;
/**
* @dev Returns the account approved for `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function getApproved(uint256 tokenId) external view returns (address operator);
/**
* @dev Approve or remove `operator` as an operator for the caller.
* Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
*
* Requirements:
*
* - The `operator` cannot be the caller.
*
* Emits an {ApprovalForAll} event.
*/
function setApprovalForAll(address operator, bool _approved) external;
/**
* @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
*
* See {setApprovalForAll}
*/
function isApprovedForAll(address owner, address operator) external view returns (bool);
/**
* @dev Safely transfers `tokenId` token from `from` to `to`.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId,
bytes calldata data
) external;
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @title ERC721 token receiver interface
* @dev Interface for any contract that wants to support safeTransfers
* from ERC721 asset contracts.
*/
interface IERC721Receiver {
/**
* @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
* by `operator` from `from`, this function is called.
*
* It must return its Solidity selector to confirm the token transfer.
* If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
*
* The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
*/
function onERC721Received(
address operator,
address from,
uint256 tokenId,
bytes calldata data
) external returns (bytes4);
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "../ERC721.sol";
import "./IERC721Enumerable.sol";
/**
* @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();
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "../ERC721.sol";
/**
* @dev ERC721 token with storage based token URI management.
*/
abstract contract ERC721URIStorage is ERC721 {
using Strings for uint256;
// Optional mapping for token URIs
mapping(uint256 => string) private _tokenURIs;
/**
* @dev See {IERC721Metadata-tokenURI}.
*/
function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
require(_exists(tokenId), "ERC721URIStorage: URI query for nonexistent token");
string memory _tokenURI = _tokenURIs[tokenId];
string memory base = _baseURI();
// If there is no base URI, return the token URI.
if (bytes(base).length == 0) {
return _tokenURI;
}
// If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
if (bytes(_tokenURI).length > 0) {
return string(abi.encodePacked(base, _tokenURI));
}
return super.tokenURI(tokenId);
}
/**
* @dev Sets `_tokenURI` as the tokenURI of `tokenId`.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual {
require(_exists(tokenId), "ERC721URIStorage: URI set of nonexistent token");
_tokenURIs[tokenId] = _tokenURI;
}
/**
* @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 override {
super._burn(tokenId);
if (bytes(_tokenURIs[tokenId]).length != 0) {
delete _tokenURIs[tokenId];
}
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "../IERC721.sol";
/**
* @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
* @dev See https://eips.ethereum.org/EIPS/eip-721
*/
interface IERC721Enumerable is IERC721 {
/**
* @dev Returns the total amount of tokens stored by the contract.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns a token ID owned by `owner` at a given `index` of its token list.
* Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
*/
function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);
/**
* @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
* Use along with {totalSupply} to enumerate all tokens.
*/
function tokenByIndex(uint256 index) external view returns (uint256);
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "../IERC721.sol";
/**
* @title ERC-721 Non-Fungible Token Standard, optional metadata extension
* @dev See https://eips.ethereum.org/EIPS/eip-721
*/
interface IERC721Metadata is IERC721 {
/**
* @dev Returns the token collection name.
*/
function name() external view returns (string memory);
/**
* @dev Returns the token collection symbol.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
*/
function tokenURI(uint256 tokenId) external view returns (string memory);
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @dev Collection of functions related to the address type
*/
library Address {
/**
* @dev Returns true if `account` is a contract.
*
* [IMPORTANT]
* ====
* It is unsafe to assume that an address for which this function returns
* false is an externally-owned account (EOA) and not a contract.
*
* Among others, `isContract` will return false for the following
* types of addresses:
*
* - an externally-owned account
* - a contract in construction
* - an address where a contract will be created
* - an address where a contract lived, but was destroyed
* ====
*/
function isContract(address account) internal view returns (bool) {
// This method relies on extcodesize, which returns 0 for contracts in
// construction, since the code is only stored at the end of the
// constructor execution.
uint256 size;
assembly {
size := extcodesize(account)
}
return size > 0;
}
/**
* @dev Replacement for Solidity's `transfer`: sends `amount` wei to
* `recipient`, forwarding all available gas and reverting on errors.
*
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
* of certain opcodes, possibly making contracts go over the 2300 gas limit
* imposed by `transfer`, making them unable to receive funds via
* `transfer`. {sendValue} removes this limitation.
*
* https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
*
* IMPORTANT: because control is transferred to `recipient`, care must be
* taken to not create reentrancy vulnerabilities. Consider using
* {ReentrancyGuard} or the
* https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/
function sendValue(address payable recipient, uint256 amount) internal {
require(address(this).balance >= amount, "Address: insufficient balance");
(bool success, ) = recipient.call{value: amount}("");
require(success, "Address: unable to send value, recipient may have reverted");
}
/**
* @dev Performs a Solidity function call using a low level `call`. A
* plain `call` is an unsafe replacement for a function call: use this
* function instead.
*
* If `target` reverts with a revert reason, it is bubbled up by this
* function (like regular Solidity function calls).
*
* Returns the raw returned data. To convert to the expected return value,
* use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
*
* Requirements:
*
* - `target` must be a contract.
* - calling `target` with `data` must not revert.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data) internal returns (bytes memory) {
return functionCall(target, data, "Address: low-level call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
* `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but also transferring `value` wei to `target`.
*
* Requirements:
*
* - the calling contract must have an ETH balance of at least `value`.
* - the called Solidity function must be `payable`.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value
) internal returns (bytes memory) {
return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
}
/**
* @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
* with `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value,
string memory errorMessage
) internal returns (bytes memory) {
require(address(this).balance >= value, "Address: insufficient balance for call");
require(isContract(target), "Address: call to non-contract");
(bool success, bytes memory returndata) = target.call{value: value}(data);
return _verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
return functionStaticCall(target, data, "Address: low-level static call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(
address target,
bytes memory data,
string memory errorMessage
) internal view returns (bytes memory) {
require(isContract(target), "Address: static call to non-contract");
(bool success, bytes memory returndata) = target.staticcall(data);
return _verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
return functionDelegateCall(target, data, "Address: low-level delegate call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
require(isContract(target), "Address: delegate call to non-contract");
(bool success, bytes memory returndata) = target.delegatecall(data);
return _verifyCallResult(success, returndata, errorMessage);
}
function _verifyCallResult(
bool success,
bytes memory returndata,
string memory errorMessage
) private pure returns (bytes memory) {
if (success) {
return returndata;
} else {
// Look for revert reason and bubble it up if present
if (returndata.length > 0) {
// The easiest way to bubble the revert reason is using memory via assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/*
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @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;
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @dev String operations.
*/
library Strings {
bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";
/**
* @dev Converts a `uint256` to its ASCII `string` decimal representation.
*/
function toString(uint256 value) internal pure returns (string memory) {
// Inspired by OraclizeAPI's implementation - MIT licence
// https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol
if (value == 0) {
return "0";
}
uint256 temp = value;
uint256 digits;
while (temp != 0) {
digits++;
temp /= 10;
}
bytes memory buffer = new bytes(digits);
while (value != 0) {
digits -= 1;
buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
value /= 10;
}
return string(buffer);
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
*/
function toHexString(uint256 value) internal pure returns (string memory) {
if (value == 0) {
return "0x00";
}
uint256 temp = value;
uint256 length = 0;
while (temp != 0) {
length++;
temp >>= 8;
}
return toHexString(value, length);
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
*/
function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
bytes memory buffer = new bytes(2 * length + 2);
buffer[0] = "0";
buffer[1] = "x";
for (uint256 i = 2 * length + 1; i > 1; --i) {
buffer[i] = _HEX_SYMBOLS[value & 0xf];
value >>= 4;
}
require(value == 0, "Strings: hex length insufficient");
return string(buffer);
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "./IERC165.sol";
/**
* @dev Implementation of the {IERC165} interface.
*
* Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
* for the additional interface id that will be supported. For example:
*
* ```solidity
* function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
* return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
* }
* ```
*
* Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
*/
abstract contract ERC165 is IERC165 {
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
return interfaceId == type(IERC165).interfaceId;
}
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC165 standard, as defined in the
* https://eips.ethereum.org/EIPS/eip-165[EIP].
*
* Implementers can declare support of contract interfaces, which can then be
* queried by others ({ERC165Checker}).
*
* For an implementation, see {ERC165}.
*/
interface IERC165 {
/**
* @dev Returns true if this contract implements the interface defined by
* `interfaceId`. See the corresponding
* https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
* to learn more about how these ids are created.
*
* This function call must use less than 30 000 gas.
*/
function supportsInterface(bytes4 interfaceId) external view returns (bool);
}// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.
/**
* @dev Wrappers over Solidity's arithmetic operations.
*
* NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
* now has built in overflow checking.
*/
library SafeMath {
/**
* @dev Returns the addition of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
uint256 c = a + b;
if (c < a) return (false, 0);
return (true, c);
}
}
/**
* @dev Returns the substraction of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b > a) return (false, 0);
return (true, a - b);
}
}
/**
* @dev Returns the multiplication of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
// Gas optimization: this is cheaper than requiring 'a' not being zero, but the
// benefit is lost if 'b' is also tested.
// See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
if (a == 0) return (true, 0);
uint256 c = a * b;
if (c / a != b) return (false, 0);
return (true, c);
}
}
/**
* @dev Returns the division of two unsigned integers, with a division by zero flag.
*
* _Available since v3.4._
*/
function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b == 0) return (false, 0);
return (true, a / b);
}
}
/**
* @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
*
* _Available since v3.4._
*/
function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
unchecked {
if (b == 0) return (false, 0);
return (true, a % b);
}
}
/**
* @dev Returns the addition of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `+` operator.
*
* Requirements:
*
* - Addition cannot overflow.
*/
function add(uint256 a, uint256 b) internal pure returns (uint256) {
return a + b;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting on
* overflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
return a - b;
}
/**
* @dev Returns the multiplication of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `*` operator.
*
* Requirements:
*
* - Multiplication cannot overflow.
*/
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
return a * b;
}
/**
* @dev Returns the integer division of two unsigned integers, reverting on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator.
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b) internal pure returns (uint256) {
return a / b;
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* reverting when dividing by zero.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(uint256 a, uint256 b) internal pure returns (uint256) {
return a % b;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting with custom message on
* overflow (when the result is negative).
*
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {trySub}.
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
unchecked {
require(b <= a, errorMessage);
return a - b;
}
}
/**
* @dev Returns the integer division of two unsigned integers, reverting with custom message on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
unchecked {
require(b > 0, errorMessage);
return a / b;
}
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* reverting with custom message when dividing by zero.
*
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {tryMod}.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
unchecked {
require(b > 0, errorMessage);
return a % b;
}
}
}{
"remappings": [],
"optimizer": {
"enabled": false,
"runs": 200
},
"evmVersion": "london",
"libraries": {},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"abi"
]
}
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":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":"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":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"TOKEN_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disablePublicSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enablePublicSale","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":[],"name":"getMaxTokensAtOnce","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTokenPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mintMultipleTokens","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mintMultipleTokensForTeam","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintToken","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"publicSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"released","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"setMaxTokensAtOnce","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setTokenPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"shares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"teamSale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"togglePaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleTeamSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalShares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]Contract Creation Code
608060405260016013556000601460006101000a81548160ff0219169083151502179055506000601460016101000a81548160ff02191690831515021790555060006015556040518060200160405280606460ff168152506127279060016200006a929190620007f3565b506040518060200160405280733515001548cb3f93dc5e3f3880d1f5ab2b0e07db73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815250612728906001620000cd9291906200084a565b50348015620000db57600080fd5b506127288054806020026020016040519081016040528092919081815260200182805480156200016157602002820191906000526020600020905b8160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001906001019080831162000116575b5050505050612727805480602002602001604051908101604052809291908181526020018280548015620001b557602002820191906000526020600020905b815481526020019060010190808311620001a0575b50505050506040518060400160405280600b81526020017f53706163652050756e6b730000000000000000000000000000000000000000008152506040518060400160405280600381526020017fe29a87000000000000000000000000000000000000000000000000000000000081525081600090805190602001906200023e929190620008d9565b50806001908051906020019062000257929190620008d9565b5050506200027a6200026e6200042860201b60201c565b6200043060201b60201c565b6000600b60146101000a81548160ff0219169083151502179055508051825114620002dc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002d39062000b06565b60405180910390fd5b600082511162000323576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200031a9062000b4a565b60405180910390fd5b60005b825181101562000392576200037c8382815181106200034a576200034962000d1c565b5b602002602001015183838151811062000368576200036762000d1c565b5b6020026020010151620004f660201b60201c565b8080620003899062000c70565b91505062000326565b5050506001601181905550620003b566d529ae9e8600006200073060201b60201c565b60016127266000733515001548cb3f93dc5e3f3880d1f5ab2b0e07db73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555062000eb3565b600033905090565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000569576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005609062000ac2565b60405180910390fd5b60008111620005af576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005a69062000b6c565b60405180910390fd5b6000600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020541462000634576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200062b9062000b28565b60405180910390fd5b6010829080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555080600e60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080600c54620006eb919062000b9f565b600c819055507f40c340f65e17194d14ddddb073d3c9f888e3cb52b5aae0c6c7706b4fbc905fac82826040516200072492919062000a95565b60405180910390a15050565b620007406200042860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1662000766620007c960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620007bf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007b69062000ae4565b60405180910390fd5b8060128190555050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b82805482825590600052602060002090810192821562000837579160200282015b8281111562000836578251829060ff1690559160200191906001019062000814565b5b5090506200084691906200096a565b5090565b828054828255906000526020600020908101928215620008c6579160200282015b82811115620008c55782518260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550916020019190600101906200086b565b5b509050620008d591906200096a565b5090565b828054620008e79062000c3a565b90600052602060002090601f0160209004810192826200090b576000855562000957565b82601f106200092657805160ff191683800117855562000957565b8280016001018555821562000957579182015b828111156200095657825182559160200191906001019062000939565b5b5090506200096691906200096a565b5090565b5b80821115620009855760008160009055506001016200096b565b5090565b620009948162000bfc565b82525050565b6000620009a9602c8362000b8e565b9150620009b68262000d4b565b604082019050919050565b6000620009d060208362000b8e565b9150620009dd8262000d9a565b602082019050919050565b6000620009f760328362000b8e565b915062000a048262000dc3565b604082019050919050565b600062000a1e602b8362000b8e565b915062000a2b8262000e12565b604082019050919050565b600062000a45601a8362000b8e565b915062000a528262000e61565b602082019050919050565b600062000a6c601d8362000b8e565b915062000a798262000e8a565b602082019050919050565b62000a8f8162000c30565b82525050565b600060408201905062000aac600083018562000989565b62000abb602083018462000a84565b9392505050565b6000602082019050818103600083015262000add816200099a565b9050919050565b6000602082019050818103600083015262000aff81620009c1565b9050919050565b6000602082019050818103600083015262000b2181620009e8565b9050919050565b6000602082019050818103600083015262000b438162000a0f565b9050919050565b6000602082019050818103600083015262000b658162000a36565b9050919050565b6000602082019050818103600083015262000b878162000a5d565b9050919050565b600082825260208201905092915050565b600062000bac8262000c30565b915062000bb98362000c30565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000bf15762000bf062000cbe565b5b828201905092915050565b600062000c098262000c10565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000600282049050600182168062000c5357607f821691505b6020821081141562000c6a5762000c6962000ced565b5b50919050565b600062000c7d8262000c30565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141562000cb35762000cb262000cbe565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f5061796d656e7453706c69747465723a206163636f756e74206973207468652060008201527f7a65726f20616464726573730000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f5061796d656e7453706c69747465723a2070617965657320616e64207368617260008201527f6573206c656e677468206d69736d617463680000000000000000000000000000602082015250565b7f5061796d656e7453706c69747465723a206163636f756e7420616c726561647960008201527f2068617320736861726573000000000000000000000000000000000000000000602082015250565b7f5061796d656e7453706c69747465723a206e6f20706179656573000000000000600082015250565b7f5061796d656e7453706c69747465723a20736861726573206172652030000000600082015250565b6155538062000ec36000396000f3fe60806040526004361061023f5760003560e01c80636352211e1161012e578063b88d4fde116100ab578063e1dffcb91161006f578063e1dffcb914610890578063e33b7de3146108ac578063e985e9c5146108d7578063ec8db81714610914578063f2fde38b1461092b57610286565b8063b88d4fde146107a6578063bf98081b146107cf578063c87b56dd146107fa578063ce7c2ac214610837578063dfc8ebc21461087457610286565b80638da5cb5b116100f25780638da5cb5b146106bf57806395d89b41146106ea5780639852595c146107155780639f214ba714610752578063a22cb4651461077d57610286565b80636352211e146105c85780636a61e5fc1461060557806370a082311461062e578063715018a61461066b5780638b83209b1461068257610286565b8063289eff46116101bc5780633a98ef39116101805780633a98ef39146104e157806342842e0e1461050c5780634b94f50e146105355780634f6ccce7146105605780635c975abb1461059d57610286565b8063289eff46146104225780632f745c591461043957806330571c581461047657806333bc1c5c1461049f57806336566f06146104ca57610286565b806318160ddd1161020357806318160ddd1461038457806319165587146103af5780632004ffd9146103d85780632316b4da146103e257806323b872dd146103f957610286565b806301ffc9a71461028b578063031bd4c4146102c857806306fdde03146102f3578063081812fc1461031e578063095ea7b31461035b57610286565b36610286577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be77061026d610954565b3460405161027c92919061419d565b60405180910390a1005b600080fd5b34801561029757600080fd5b506102b260048036038101906102ad91906139e4565b61095c565b6040516102bf91906141c6565b60405180910390f35b3480156102d457600080fd5b506102dd61096e565b6040516102ea9190614643565b60405180910390f35b3480156102ff57600080fd5b50610308610974565b60405161031591906141e1565b60405180910390f35b34801561032a57600080fd5b5061034560048036038101906103409190613a3e565b610a06565b604051610352919061410d565b60405180910390f35b34801561036757600080fd5b50610382600480360381019061037d91906139a4565b610a8b565b005b34801561039057600080fd5b50610399610ba3565b6040516103a69190614643565b60405180910390f35b3480156103bb57600080fd5b506103d660048036038101906103d19190613821565b610bb0565b005b6103e0610e18565b005b3480156103ee57600080fd5b506103f7610fc6565b005b34801561040557600080fd5b50610420600480360381019061041b919061388e565b611069565b005b34801561042e57600080fd5b506104376110c9565b005b34801561044557600080fd5b50610460600480360381019061045b91906139a4565b611171565b60405161046d9190614643565b60405180910390f35b34801561048257600080fd5b5061049d60048036038101906104989190613a3e565b611216565b005b3480156104ab57600080fd5b506104b461129c565b6040516104c191906141c6565b60405180910390f35b3480156104d657600080fd5b506104df6112af565b005b3480156104ed57600080fd5b506104f6611350565b6040516105039190614643565b60405180910390f35b34801561051857600080fd5b50610533600480360381019061052e919061388e565b61135a565b005b34801561054157600080fd5b5061054a61137a565b6040516105579190614643565b60405180910390f35b34801561056c57600080fd5b5061058760048036038101906105829190613a3e565b611384565b6040516105949190614643565b60405180910390f35b3480156105a957600080fd5b506105b26113f5565b6040516105bf91906141c6565b60405180910390f35b3480156105d457600080fd5b506105ef60048036038101906105ea9190613a3e565b61140c565b6040516105fc919061410d565b60405180910390f35b34801561061157600080fd5b5061062c60048036038101906106279190613a3e565b6114be565b005b34801561063a57600080fd5b50610655600480360381019061065091906137f4565b611544565b6040516106629190614643565b60405180910390f35b34801561067757600080fd5b506106806115fc565b005b34801561068e57600080fd5b506106a960048036038101906106a49190613a3e565b611684565b6040516106b6919061410d565b60405180910390f35b3480156106cb57600080fd5b506106d46116cc565b6040516106e1919061410d565b60405180910390f35b3480156106f657600080fd5b506106ff6116f6565b60405161070c91906141e1565b60405180910390f35b34801561072157600080fd5b5061073c600480360381019061073791906137f4565b611788565b6040516107499190614643565b60405180910390f35b34801561075e57600080fd5b506107676117d1565b60405161077491906141c6565b60405180910390f35b34801561078957600080fd5b506107a4600480360381019061079f9190613964565b6117e4565b005b3480156107b257600080fd5b506107cd60048036038101906107c891906138e1565b611965565b005b3480156107db57600080fd5b506107e46119c7565b6040516107f19190614643565b60405180910390f35b34801561080657600080fd5b50610821600480360381019061081c9190613a3e565b6119d1565b60405161082e91906141e1565b60405180910390f35b34801561084357600080fd5b5061085e600480360381019061085991906137f4565b611a02565b60405161086b9190614643565b60405180910390f35b61088e60048036038101906108899190613a3e565b611a4b565b005b6108aa60048036038101906108a59190613a3e565b611bf2565b005b3480156108b857600080fd5b506108c1611e08565b6040516108ce9190614643565b60405180910390f35b3480156108e357600080fd5b506108fe60048036038101906108f9919061384e565b611e12565b60405161090b91906141c6565b60405180910390f35b34801561092057600080fd5b50610929611ea6565b005b34801561093757600080fd5b50610952600480360381019061094d91906137f4565b611f49565b005b600033905090565b600061096782612041565b9050919050565b61271081565b60606000805461098390614915565b80601f01602080910402602001604051908101604052809291908181526020018280546109af90614915565b80156109fc5780601f106109d1576101008083540402835291602001916109fc565b820191906000526020600020905b8154815290600101906020018083116109df57829003601f168201915b5050505050905090565b6000610a11826120bb565b610a50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a47906144e3565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a968261140c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610afe906145a3565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b26610954565b73ffffffffffffffffffffffffffffffffffffffff161480610b555750610b5481610b4f610954565b611e12565b5b610b94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8b90614403565b60405180910390fd5b610b9e8383612127565b505050565b6000600980549050905090565b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411610c32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c29906142e3565b60405180910390fd5b6000600d5447610c429190614702565b90506000600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600c54600e60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205484610cd49190614789565b610cde9190614758565b610ce891906147e3565b90506000811415610d2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d25906143a3565b60405180910390fd5b80600f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610d799190614702565b600f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080600d54610dca9190614702565b600d81905550610dda83826121e0565b7fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b0568382604051610e0b929190614128565b60405180910390a1505050565b60026011541415610e5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5590614623565b60405180910390fd5b6002601181905550610e6e6113f5565b15610eae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea5906143c3565b60405180910390fd5b612710610ecc6001610ebe610ba3565b6122d490919063ffffffff16565b1115610f0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0490614583565b60405180910390fd5b601254341015610f52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4990614603565b60405180910390fd5b601460009054906101000a900460ff16610fb3576001610f7133611544565b1115610fb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa9906143e3565b60405180910390fd5b5b610fbc336122ea565b6001601181905550565b610fce610954565b73ffffffffffffffffffffffffffffffffffffffff16610fec6116cc565b73ffffffffffffffffffffffffffffffffffffffff1614611042576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103990614523565b60405180910390fd5b6001601460006101000a81548160ff0219169083151502179055506110676014611216565b565b61107a611074610954565b82612304565b6110b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b0906145c3565b60405180910390fd5b6110c48383836123e2565b505050565b6110d1610954565b73ffffffffffffffffffffffffffffffffffffffff166110ef6116cc565b73ffffffffffffffffffffffffffffffffffffffff1614611145576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113c90614523565b60405180910390fd5b601460019054906101000a900460ff1615601460016101000a81548160ff021916908315150217905550565b600061117c83611544565b82106111bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b490614243565b60405180910390fd5b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b61121e610954565b73ffffffffffffffffffffffffffffffffffffffff1661123c6116cc565b73ffffffffffffffffffffffffffffffffffffffff1614611292576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128990614523565b60405180910390fd5b8060138190555050565b601460009054906101000a900460ff1681565b6112b7610954565b73ffffffffffffffffffffffffffffffffffffffff166112d56116cc565b73ffffffffffffffffffffffffffffffffffffffff161461132b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132290614523565b60405180910390fd5b6113336113f5565b156113455761134061263e565b61134e565b61134d6126e0565b5b565b6000600c54905090565b61137583838360405180602001604052806000815250611965565b505050565b6000601254905090565b600061138e610ba3565b82106113cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c6906145e3565b60405180910390fd5b600982815481106113e3576113e2614adc565b5b90600052602060002001549050919050565b6000600b60149054906101000a900460ff16905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156114b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ac90614463565b60405180910390fd5b80915050919050565b6114c6610954565b73ffffffffffffffffffffffffffffffffffffffff166114e46116cc565b73ffffffffffffffffffffffffffffffffffffffff161461153a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153190614523565b60405180910390fd5b8060128190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ac90614443565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611604610954565b73ffffffffffffffffffffffffffffffffffffffff166116226116cc565b73ffffffffffffffffffffffffffffffffffffffff1614611678576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166f90614523565b60405180910390fd5b6116826000612783565b565b60006010828154811061169a57611699614adc565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461170590614915565b80601f016020809104026020016040519081016040528092919081815260200182805461173190614915565b801561177e5780601f106117535761010080835404028352916020019161177e565b820191906000526020600020905b81548152906001019060200180831161176157829003601f168201915b5050505050905090565b6000600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b601460019054906101000a900460ff1681565b6117ec610954565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561185a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185190614323565b60405180910390fd5b8060056000611867610954565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611914610954565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161195991906141c6565b60405180910390a35050565b611976611970610954565b83612304565b6119b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ac906145c3565b60405180910390fd5b6119c184848484612849565b50505050565b6000601354905090565b60606119dc826128a5565b6040516020016119ec9190614088565b6040516020818303038152906040529050919050565b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60026011541415611a91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8890614623565b60405180910390fd5b6002601181905550601460019054906101000a900460ff16611ae8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611adf90614483565b60405180910390fd5b6064611af2610ba3565b10611b32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b29906142c3565b60405180910390fd5b61272660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611bbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb690614503565b60405180910390fd5b60005b81811015611be657611bd3336122ea565b8080611bde90614978565b915050611bc2565b50600160118190555050565b60026011541415611c38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2f90614623565b60405180910390fd5b6002601181905550611c486113f5565b15611c88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7f906143c3565b60405180910390fd5b612710611ca582611c97610ba3565b6122d490919063ffffffff16565b1115611ce6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cdd90614583565b60405180910390fd5b601460009054906101000a900460ff16611d35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2c90614423565b60405180910390fd5b601354811115611d7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7190614203565b60405180910390fd5b34611d9582611d8761137a565b6129f790919063ffffffff16565b14611dd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dcc90614603565b60405180910390fd5b60005b81811015611dfc57611de9336122ea565b8080611df490614978565b915050611dd8565b50600160118190555050565b6000600d54905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611eae610954565b73ffffffffffffffffffffffffffffffffffffffff16611ecc6116cc565b73ffffffffffffffffffffffffffffffffffffffff1614611f22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1990614523565b60405180910390fd5b6000601460006101000a81548160ff021916908315150217905550611f476001611216565b565b611f51610954565b73ffffffffffffffffffffffffffffffffffffffff16611f6f6116cc565b73ffffffffffffffffffffffffffffffffffffffff1614611fc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fbc90614523565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612035576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202c90614283565b60405180910390fd5b61203e81612783565b50565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806120b457506120b382612a0d565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661219a8361140c565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b80471015612223576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221a90614363565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051612249906140aa565b60006040518083038185875af1925050503d8060008114612286576040519150601f19603f3d011682016040523d82523d6000602084013e61228b565b606091505b50509050806122cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122c690614343565b60405180910390fd5b505050565b600081836122e29190614702565b905092915050565b60006122f4612aef565b90506123008282612c54565b5050565b600061230f826120bb565b61234e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234590614383565b60405180910390fd5b60006123598361140c565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806123c857508373ffffffffffffffffffffffffffffffffffffffff166123b084610a06565b73ffffffffffffffffffffffffffffffffffffffff16145b806123d957506123d88185611e12565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166124028261140c565b73ffffffffffffffffffffffffffffffffffffffff1614612458576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244f90614543565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156124c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124bf90614303565b60405180910390fd5b6124d3838383612c72565b6124de600082612127565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461252e91906147e3565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125859190614702565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6126466113f5565b612685576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161267c90614223565b60405180910390fd5b6000600b60146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6126c9610954565b6040516126d6919061410d565b60405180910390a1565b6126e86113f5565b15612728576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161271f906143c3565b60405180910390fd5b6001600b60146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861276c610954565b604051612779919061410d565b60405180910390a1565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6128548484846123e2565b61286084848484612c82565b61289f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161289690614263565b60405180910390fd5b50505050565b60606128b0826120bb565b6128ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128e6906144c3565b60405180910390fd5b600060066000848152602001908152602001600020805461290f90614915565b80601f016020809104026020016040519081016040528092919081815260200182805461293b90614915565b80156129885780601f1061295d57610100808354040283529160200191612988565b820191906000526020600020905b81548152906001019060200180831161296b57829003601f168201915b505050505090506000612999612e19565b90506000815114156129af5781925050506129f2565b6000825111156129e45780826040516020016129cc929190614064565b604051602081830303815290604052925050506129f2565b6129ed84612e39565b925050505b919050565b60008183612a059190614789565b905092915050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612ad857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612ae85750612ae782612ee0565b5b9050919050565b600080612afa610ba3565b612710612b0791906147e3565b9050600081601554334442604051602001612b2594939291906140bf565b6040516020818303038152906040528051906020012060001c612b4891906149ef565b90506000806016836127108110612b6257612b61614adc565b5b015414612b87576016826127108110612b7e57612b7d614adc565b5b01549050612b8b565b8190505b60006016600185612b9c91906147e3565b6127108110612bae57612bad614adc565b5b01541415612be257600183612bc391906147e3565b6016836127108110612bd857612bd7614adc565b5b0181905550612c20565b6016600184612bf191906147e3565b6127108110612c0357612c02614adc565b5b01546016836127108110612c1a57612c19614adc565b5b01819055505b60156000815480929190612c3390614978565b9190505550612c4c6001826122d490919063ffffffff16565b935050505090565b612c6e828260405180602001604052806000815250612f4a565b5050565b612c7d838383612fa5565b505050565b6000612ca38473ffffffffffffffffffffffffffffffffffffffff166130b9565b15612e0c578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612ccc610954565b8786866040518563ffffffff1660e01b8152600401612cee9493929190614151565b602060405180830381600087803b158015612d0857600080fd5b505af1925050508015612d3957506040513d601f19601f82011682018060405250810190612d369190613a11565b60015b612dbc573d8060008114612d69576040519150601f19603f3d011682016040523d82523d6000602084013e612d6e565b606091505b50600081511415612db4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dab90614263565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612e11565b600190505b949350505050565b60606040518060600160405280603681526020016154e860369139905090565b6060612e44826120bb565b612e83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e7a90614563565b60405180910390fd5b6000612e8d612e19565b90506000815111612ead5760405180602001604052806000815250612ed8565b80612eb7846130cc565b604051602001612ec8929190614064565b6040516020818303038152906040525b915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612f54838361322d565b612f616000848484612c82565b612fa0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f9790614263565b60405180910390fd5b505050565b612fb08383836133fb565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612ff357612fee81613400565b613032565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614613031576130308382613449565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561307557613070816135b6565b6130b4565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146130b3576130b28282613687565b5b5b505050565b600080823b905060008111915050919050565b60606000821415613114576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613228565b600082905060005b6000821461314657808061312f90614978565b915050600a8261313f9190614758565b915061311c565b60008167ffffffffffffffff81111561316257613161614b0b565b5b6040519080825280601f01601f1916602001820160405280156131945781602001600182028036833780820191505090505b5090505b60008514613221576001826131ad91906147e3565b9150600a856131bc91906149ef565b60306131c89190614702565b60f81b8183815181106131de576131dd614adc565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561321a9190614758565b9450613198565b8093505050505b919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561329d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613294906144a3565b60405180910390fd5b6132a6816120bb565b156132e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132dd906142a3565b60405180910390fd5b6132f260008383612c72565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546133429190614702565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b505050565b600980549050600a600083815260200190815260200160002081905550600981908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161345684611544565b61346091906147e3565b9050600060086000848152602001908152602001600020549050818114613545576000600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816008600083815260200190815260200160002081905550505b6008600084815260200190815260200160002060009055600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016009805490506135ca91906147e3565b90506000600a60008481526020019081526020016000205490506000600983815481106135fa576135f9614adc565b5b90600052602060002001549050806009838154811061361c5761361b614adc565b5b906000526020600020018190555081600a600083815260200190815260200160002081905550600a600085815260200190815260200160002060009055600980548061366b5761366a614aad565b5b6001900381819060005260206000200160009055905550505050565b600061369283611544565b905081600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806008600084815260200190815260200160002081905550505050565b600061371961371484614683565b61465e565b90508281526020810184848401111561373557613734614b3f565b5b6137408482856148d3565b509392505050565b60008135905061375781615474565b92915050565b60008135905061376c8161548b565b92915050565b600081359050613781816154a2565b92915050565b600081359050613796816154b9565b92915050565b6000815190506137ab816154b9565b92915050565b600082601f8301126137c6576137c5614b3a565b5b81356137d6848260208601613706565b91505092915050565b6000813590506137ee816154d0565b92915050565b60006020828403121561380a57613809614b49565b5b600061381884828501613748565b91505092915050565b60006020828403121561383757613836614b49565b5b60006138458482850161375d565b91505092915050565b6000806040838503121561386557613864614b49565b5b600061387385828601613748565b925050602061388485828601613748565b9150509250929050565b6000806000606084860312156138a7576138a6614b49565b5b60006138b586828701613748565b93505060206138c686828701613748565b92505060406138d7868287016137df565b9150509250925092565b600080600080608085870312156138fb576138fa614b49565b5b600061390987828801613748565b945050602061391a87828801613748565b935050604061392b878288016137df565b925050606085013567ffffffffffffffff81111561394c5761394b614b44565b5b613958878288016137b1565b91505092959194509250565b6000806040838503121561397b5761397a614b49565b5b600061398985828601613748565b925050602061399a85828601613772565b9150509250929050565b600080604083850312156139bb576139ba614b49565b5b60006139c985828601613748565b92505060206139da858286016137df565b9150509250929050565b6000602082840312156139fa576139f9614b49565b5b6000613a0884828501613787565b91505092915050565b600060208284031215613a2757613a26614b49565b5b6000613a358482850161379c565b91505092915050565b600060208284031215613a5457613a53614b49565b5b6000613a62848285016137df565b91505092915050565b613a748161489d565b82525050565b613a8381614817565b82525050565b613a9a613a9582614817565b6149c1565b82525050565b613aa98161483b565b82525050565b6000613aba826146b4565b613ac481856146ca565b9350613ad48185602086016148e2565b613add81614b4e565b840191505092915050565b6000613af3826146bf565b613afd81856146e6565b9350613b0d8185602086016148e2565b613b1681614b4e565b840191505092915050565b6000613b2c826146bf565b613b3681856146f7565b9350613b468185602086016148e2565b80840191505092915050565b6000613b5f6017836146e6565b9150613b6a82614b6c565b602082019050919050565b6000613b826014836146e6565b9150613b8d82614b95565b602082019050919050565b6000613ba5602b836146e6565b9150613bb082614bbe565b604082019050919050565b6000613bc86032836146e6565b9150613bd382614c0d565b604082019050919050565b6000613beb6026836146e6565b9150613bf682614c5c565b604082019050919050565b6000613c0e601c836146e6565b9150613c1982614cab565b602082019050919050565b6000613c31602b836146e6565b9150613c3c82614cd4565b604082019050919050565b6000613c546026836146e6565b9150613c5f82614d23565b604082019050919050565b6000613c776024836146e6565b9150613c8282614d72565b604082019050919050565b6000613c9a6019836146e6565b9150613ca582614dc1565b602082019050919050565b6000613cbd603a836146e6565b9150613cc882614dea565b604082019050919050565b6000613ce0601d836146e6565b9150613ceb82614e39565b602082019050919050565b6000613d03602c836146e6565b9150613d0e82614e62565b604082019050919050565b6000613d26602b836146e6565b9150613d3182614eb1565b604082019050919050565b6000613d496010836146e6565b9150613d5482614f00565b602082019050919050565b6000613d6c6022836146e6565b9150613d7782614f29565b604082019050919050565b6000613d8f6038836146e6565b9150613d9a82614f78565b604082019050919050565b6000613db2603a836146e6565b9150613dbd82614fc7565b604082019050919050565b6000613dd5602a836146e6565b9150613de082615016565b604082019050919050565b6000613df86029836146e6565b9150613e0382615065565b604082019050919050565b6000613e1b6031836146e6565b9150613e26826150b4565b604082019050919050565b6000613e3e6020836146e6565b9150613e4982615103565b602082019050919050565b6000613e616031836146e6565b9150613e6c8261512c565b604082019050919050565b6000613e84602c836146e6565b9150613e8f8261517b565b604082019050919050565b6000613ea76005836146f7565b9150613eb2826151ca565b600582019050919050565b6000613eca6011836146e6565b9150613ed5826151f3565b602082019050919050565b6000613eed6020836146e6565b9150613ef88261521c565b602082019050919050565b6000613f106029836146e6565b9150613f1b82615245565b604082019050919050565b6000613f33602f836146e6565b9150613f3e82615294565b604082019050919050565b6000613f56602f836146e6565b9150613f61826152e3565b604082019050919050565b6000613f796021836146e6565b9150613f8482615332565b604082019050919050565b6000613f9c6000836146db565b9150613fa782615381565b600082019050919050565b6000613fbf6031836146e6565b9150613fca82615384565b604082019050919050565b6000613fe2602c836146e6565b9150613fed826153d3565b604082019050919050565b6000614005601e836146e6565b915061401082615422565b602082019050919050565b6000614028601f836146e6565b91506140338261544b565b602082019050919050565b61404781614893565b82525050565b61405e61405982614893565b6149e5565b82525050565b60006140708285613b21565b915061407c8284613b21565b91508190509392505050565b60006140948284613b21565b915061409f82613e9a565b915081905092915050565b60006140b582613f8f565b9150819050919050565b60006140cb828761404d565b6020820191506140db8286613a89565b6014820191506140eb828561404d565b6020820191506140fb828461404d565b60208201915081905095945050505050565b60006020820190506141226000830184613a7a565b92915050565b600060408201905061413d6000830185613a6b565b61414a602083018461403e565b9392505050565b60006080820190506141666000830187613a7a565b6141736020830186613a7a565b614180604083018561403e565b81810360608301526141928184613aaf565b905095945050505050565b60006040820190506141b26000830185613a7a565b6141bf602083018461403e565b9392505050565b60006020820190506141db6000830184613aa0565b92915050565b600060208201905081810360008301526141fb8184613ae8565b905092915050565b6000602082019050818103600083015261421c81613b52565b9050919050565b6000602082019050818103600083015261423c81613b75565b9050919050565b6000602082019050818103600083015261425c81613b98565b9050919050565b6000602082019050818103600083015261427c81613bbb565b9050919050565b6000602082019050818103600083015261429c81613bde565b9050919050565b600060208201905081810360008301526142bc81613c01565b9050919050565b600060208201905081810360008301526142dc81613c24565b9050919050565b600060208201905081810360008301526142fc81613c47565b9050919050565b6000602082019050818103600083015261431c81613c6a565b9050919050565b6000602082019050818103600083015261433c81613c8d565b9050919050565b6000602082019050818103600083015261435c81613cb0565b9050919050565b6000602082019050818103600083015261437c81613cd3565b9050919050565b6000602082019050818103600083015261439c81613cf6565b9050919050565b600060208201905081810360008301526143bc81613d19565b9050919050565b600060208201905081810360008301526143dc81613d3c565b9050919050565b600060208201905081810360008301526143fc81613d5f565b9050919050565b6000602082019050818103600083015261441c81613d82565b9050919050565b6000602082019050818103600083015261443c81613da5565b9050919050565b6000602082019050818103600083015261445c81613dc8565b9050919050565b6000602082019050818103600083015261447c81613deb565b9050919050565b6000602082019050818103600083015261449c81613e0e565b9050919050565b600060208201905081810360008301526144bc81613e31565b9050919050565b600060208201905081810360008301526144dc81613e54565b9050919050565b600060208201905081810360008301526144fc81613e77565b9050919050565b6000602082019050818103600083015261451c81613ebd565b9050919050565b6000602082019050818103600083015261453c81613ee0565b9050919050565b6000602082019050818103600083015261455c81613f03565b9050919050565b6000602082019050818103600083015261457c81613f26565b9050919050565b6000602082019050818103600083015261459c81613f49565b9050919050565b600060208201905081810360008301526145bc81613f6c565b9050919050565b600060208201905081810360008301526145dc81613fb2565b9050919050565b600060208201905081810360008301526145fc81613fd5565b9050919050565b6000602082019050818103600083015261461c81613ff8565b9050919050565b6000602082019050818103600083015261463c8161401b565b9050919050565b6000602082019050614658600083018461403e565b92915050565b6000614668614679565b90506146748282614947565b919050565b6000604051905090565b600067ffffffffffffffff82111561469e5761469d614b0b565b5b6146a782614b4e565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061470d82614893565b915061471883614893565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561474d5761474c614a20565b5b828201905092915050565b600061476382614893565b915061476e83614893565b92508261477e5761477d614a4f565b5b828204905092915050565b600061479482614893565b915061479f83614893565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156147d8576147d7614a20565b5b828202905092915050565b60006147ee82614893565b91506147f983614893565b92508282101561480c5761480b614a20565b5b828203905092915050565b600061482282614873565b9050919050565b600061483482614873565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006148a8826148af565b9050919050565b60006148ba826148c1565b9050919050565b60006148cc82614873565b9050919050565b82818337600083830152505050565b60005b838110156149005780820151818401526020810190506148e5565b8381111561490f576000848401525b50505050565b6000600282049050600182168061492d57607f821691505b6020821081141561494157614940614a7e565b5b50919050565b61495082614b4e565b810181811067ffffffffffffffff8211171561496f5761496e614b0b565b5b80604052505050565b600061498382614893565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156149b6576149b5614a20565b5b600182019050919050565b60006149cc826149d3565b9050919050565b60006149de82614b5f565b9050919050565b6000819050919050565b60006149fa82614893565b9150614a0583614893565b925082614a1557614a14614a4f565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f546f6f206d616e7920746f6b656e73206174206f6e6365000000000000000000600082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f457863656564656420746f6b656e7320616c6c6f636174696f6e20666f72207460008201527f65616d206d656d62657273000000000000000000000000000000000000000000602082015250565b7f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060008201527f7368617265730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060008201527f647565207061796d656e74000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4f6e6c79206f6e6520746f6b656e20706572206164647265737320616c6c6f7760008201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f5075626c69632073616c65206d7573742062652061637469766520746f206d6960008201527f6e74206d756c7469706c6520746f6b656e73206174206f6e6365000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f5465616d2073616c65206d7573742062652061637469766520746f206d696e7460008201527f2061732061207465616d206d656d626572000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f45524337323155524953746f726167653a2055524920717565727920666f722060008201527f6e6f6e6578697374656e7420746f6b656e000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4e6f742061207465616d206d656d626572000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f507572636861736520776f756c6420657863656564206d617820737570706c7960008201527f206f662053706163652050756e6b730000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f496e73756666696369656e742066756e647320746f2070757263686173650000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b61547d81614817565b811461548857600080fd5b50565b61549481614829565b811461549f57600080fd5b50565b6154ab8161483b565b81146154b657600080fd5b50565b6154c281614847565b81146154cd57600080fd5b50565b6154d981614893565b81146154e457600080fd5b5056fe697066733a2f2f516d5662673874446966516655546a42313174625347736b39337658626f50755637336f674c4266364d534a37702fa2646970667358221220d507aade60b6e75ea71eefb8d3ec2bf188fa2fb97a5c624c73fb48e508004aa764736f6c63430008070033
Deployed Bytecode
0x60806040526004361061023f5760003560e01c80636352211e1161012e578063b88d4fde116100ab578063e1dffcb91161006f578063e1dffcb914610890578063e33b7de3146108ac578063e985e9c5146108d7578063ec8db81714610914578063f2fde38b1461092b57610286565b8063b88d4fde146107a6578063bf98081b146107cf578063c87b56dd146107fa578063ce7c2ac214610837578063dfc8ebc21461087457610286565b80638da5cb5b116100f25780638da5cb5b146106bf57806395d89b41146106ea5780639852595c146107155780639f214ba714610752578063a22cb4651461077d57610286565b80636352211e146105c85780636a61e5fc1461060557806370a082311461062e578063715018a61461066b5780638b83209b1461068257610286565b8063289eff46116101bc5780633a98ef39116101805780633a98ef39146104e157806342842e0e1461050c5780634b94f50e146105355780634f6ccce7146105605780635c975abb1461059d57610286565b8063289eff46146104225780632f745c591461043957806330571c581461047657806333bc1c5c1461049f57806336566f06146104ca57610286565b806318160ddd1161020357806318160ddd1461038457806319165587146103af5780632004ffd9146103d85780632316b4da146103e257806323b872dd146103f957610286565b806301ffc9a71461028b578063031bd4c4146102c857806306fdde03146102f3578063081812fc1461031e578063095ea7b31461035b57610286565b36610286577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be77061026d610954565b3460405161027c92919061419d565b60405180910390a1005b600080fd5b34801561029757600080fd5b506102b260048036038101906102ad91906139e4565b61095c565b6040516102bf91906141c6565b60405180910390f35b3480156102d457600080fd5b506102dd61096e565b6040516102ea9190614643565b60405180910390f35b3480156102ff57600080fd5b50610308610974565b60405161031591906141e1565b60405180910390f35b34801561032a57600080fd5b5061034560048036038101906103409190613a3e565b610a06565b604051610352919061410d565b60405180910390f35b34801561036757600080fd5b50610382600480360381019061037d91906139a4565b610a8b565b005b34801561039057600080fd5b50610399610ba3565b6040516103a69190614643565b60405180910390f35b3480156103bb57600080fd5b506103d660048036038101906103d19190613821565b610bb0565b005b6103e0610e18565b005b3480156103ee57600080fd5b506103f7610fc6565b005b34801561040557600080fd5b50610420600480360381019061041b919061388e565b611069565b005b34801561042e57600080fd5b506104376110c9565b005b34801561044557600080fd5b50610460600480360381019061045b91906139a4565b611171565b60405161046d9190614643565b60405180910390f35b34801561048257600080fd5b5061049d60048036038101906104989190613a3e565b611216565b005b3480156104ab57600080fd5b506104b461129c565b6040516104c191906141c6565b60405180910390f35b3480156104d657600080fd5b506104df6112af565b005b3480156104ed57600080fd5b506104f6611350565b6040516105039190614643565b60405180910390f35b34801561051857600080fd5b50610533600480360381019061052e919061388e565b61135a565b005b34801561054157600080fd5b5061054a61137a565b6040516105579190614643565b60405180910390f35b34801561056c57600080fd5b5061058760048036038101906105829190613a3e565b611384565b6040516105949190614643565b60405180910390f35b3480156105a957600080fd5b506105b26113f5565b6040516105bf91906141c6565b60405180910390f35b3480156105d457600080fd5b506105ef60048036038101906105ea9190613a3e565b61140c565b6040516105fc919061410d565b60405180910390f35b34801561061157600080fd5b5061062c60048036038101906106279190613a3e565b6114be565b005b34801561063a57600080fd5b50610655600480360381019061065091906137f4565b611544565b6040516106629190614643565b60405180910390f35b34801561067757600080fd5b506106806115fc565b005b34801561068e57600080fd5b506106a960048036038101906106a49190613a3e565b611684565b6040516106b6919061410d565b60405180910390f35b3480156106cb57600080fd5b506106d46116cc565b6040516106e1919061410d565b60405180910390f35b3480156106f657600080fd5b506106ff6116f6565b60405161070c91906141e1565b60405180910390f35b34801561072157600080fd5b5061073c600480360381019061073791906137f4565b611788565b6040516107499190614643565b60405180910390f35b34801561075e57600080fd5b506107676117d1565b60405161077491906141c6565b60405180910390f35b34801561078957600080fd5b506107a4600480360381019061079f9190613964565b6117e4565b005b3480156107b257600080fd5b506107cd60048036038101906107c891906138e1565b611965565b005b3480156107db57600080fd5b506107e46119c7565b6040516107f19190614643565b60405180910390f35b34801561080657600080fd5b50610821600480360381019061081c9190613a3e565b6119d1565b60405161082e91906141e1565b60405180910390f35b34801561084357600080fd5b5061085e600480360381019061085991906137f4565b611a02565b60405161086b9190614643565b60405180910390f35b61088e60048036038101906108899190613a3e565b611a4b565b005b6108aa60048036038101906108a59190613a3e565b611bf2565b005b3480156108b857600080fd5b506108c1611e08565b6040516108ce9190614643565b60405180910390f35b3480156108e357600080fd5b506108fe60048036038101906108f9919061384e565b611e12565b60405161090b91906141c6565b60405180910390f35b34801561092057600080fd5b50610929611ea6565b005b34801561093757600080fd5b50610952600480360381019061094d91906137f4565b611f49565b005b600033905090565b600061096782612041565b9050919050565b61271081565b60606000805461098390614915565b80601f01602080910402602001604051908101604052809291908181526020018280546109af90614915565b80156109fc5780601f106109d1576101008083540402835291602001916109fc565b820191906000526020600020905b8154815290600101906020018083116109df57829003601f168201915b5050505050905090565b6000610a11826120bb565b610a50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a47906144e3565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a968261140c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610b07576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610afe906145a3565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b26610954565b73ffffffffffffffffffffffffffffffffffffffff161480610b555750610b5481610b4f610954565b611e12565b5b610b94576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8b90614403565b60405180910390fd5b610b9e8383612127565b505050565b6000600980549050905090565b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411610c32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c29906142e3565b60405180910390fd5b6000600d5447610c429190614702565b90506000600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054600c54600e60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205484610cd49190614789565b610cde9190614758565b610ce891906147e3565b90506000811415610d2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d25906143a3565b60405180910390fd5b80600f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610d799190614702565b600f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555080600d54610dca9190614702565b600d81905550610dda83826121e0565b7fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b0568382604051610e0b929190614128565b60405180910390a1505050565b60026011541415610e5e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e5590614623565b60405180910390fd5b6002601181905550610e6e6113f5565b15610eae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea5906143c3565b60405180910390fd5b612710610ecc6001610ebe610ba3565b6122d490919063ffffffff16565b1115610f0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0490614583565b60405180910390fd5b601254341015610f52576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4990614603565b60405180910390fd5b601460009054906101000a900460ff16610fb3576001610f7133611544565b1115610fb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa9906143e3565b60405180910390fd5b5b610fbc336122ea565b6001601181905550565b610fce610954565b73ffffffffffffffffffffffffffffffffffffffff16610fec6116cc565b73ffffffffffffffffffffffffffffffffffffffff1614611042576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103990614523565b60405180910390fd5b6001601460006101000a81548160ff0219169083151502179055506110676014611216565b565b61107a611074610954565b82612304565b6110b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110b0906145c3565b60405180910390fd5b6110c48383836123e2565b505050565b6110d1610954565b73ffffffffffffffffffffffffffffffffffffffff166110ef6116cc565b73ffffffffffffffffffffffffffffffffffffffff1614611145576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161113c90614523565b60405180910390fd5b601460019054906101000a900460ff1615601460016101000a81548160ff021916908315150217905550565b600061117c83611544565b82106111bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b490614243565b60405180910390fd5b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b61121e610954565b73ffffffffffffffffffffffffffffffffffffffff1661123c6116cc565b73ffffffffffffffffffffffffffffffffffffffff1614611292576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128990614523565b60405180910390fd5b8060138190555050565b601460009054906101000a900460ff1681565b6112b7610954565b73ffffffffffffffffffffffffffffffffffffffff166112d56116cc565b73ffffffffffffffffffffffffffffffffffffffff161461132b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132290614523565b60405180910390fd5b6113336113f5565b156113455761134061263e565b61134e565b61134d6126e0565b5b565b6000600c54905090565b61137583838360405180602001604052806000815250611965565b505050565b6000601254905090565b600061138e610ba3565b82106113cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c6906145e3565b60405180910390fd5b600982815481106113e3576113e2614adc565b5b90600052602060002001549050919050565b6000600b60149054906101000a900460ff16905090565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156114b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ac90614463565b60405180910390fd5b80915050919050565b6114c6610954565b73ffffffffffffffffffffffffffffffffffffffff166114e46116cc565b73ffffffffffffffffffffffffffffffffffffffff161461153a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153190614523565b60405180910390fd5b8060128190555050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ac90614443565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b611604610954565b73ffffffffffffffffffffffffffffffffffffffff166116226116cc565b73ffffffffffffffffffffffffffffffffffffffff1614611678576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166f90614523565b60405180910390fd5b6116826000612783565b565b60006010828154811061169a57611699614adc565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606001805461170590614915565b80601f016020809104026020016040519081016040528092919081815260200182805461173190614915565b801561177e5780601f106117535761010080835404028352916020019161177e565b820191906000526020600020905b81548152906001019060200180831161176157829003601f168201915b5050505050905090565b6000600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b601460019054906101000a900460ff1681565b6117ec610954565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561185a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185190614323565b60405180910390fd5b8060056000611867610954565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611914610954565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c318360405161195991906141c6565b60405180910390a35050565b611976611970610954565b83612304565b6119b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119ac906145c3565b60405180910390fd5b6119c184848484612849565b50505050565b6000601354905090565b60606119dc826128a5565b6040516020016119ec9190614088565b6040516020818303038152906040529050919050565b6000600e60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60026011541415611a91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8890614623565b60405180910390fd5b6002601181905550601460019054906101000a900460ff16611ae8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611adf90614483565b60405180910390fd5b6064611af2610ba3565b10611b32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b29906142c3565b60405180910390fd5b61272660003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611bbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb690614503565b60405180910390fd5b60005b81811015611be657611bd3336122ea565b8080611bde90614978565b915050611bc2565b50600160118190555050565b60026011541415611c38576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2f90614623565b60405180910390fd5b6002601181905550611c486113f5565b15611c88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7f906143c3565b60405180910390fd5b612710611ca582611c97610ba3565b6122d490919063ffffffff16565b1115611ce6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cdd90614583565b60405180910390fd5b601460009054906101000a900460ff16611d35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d2c90614423565b60405180910390fd5b601354811115611d7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7190614203565b60405180910390fd5b34611d9582611d8761137a565b6129f790919063ffffffff16565b14611dd5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dcc90614603565b60405180910390fd5b60005b81811015611dfc57611de9336122ea565b8080611df490614978565b915050611dd8565b50600160118190555050565b6000600d54905090565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611eae610954565b73ffffffffffffffffffffffffffffffffffffffff16611ecc6116cc565b73ffffffffffffffffffffffffffffffffffffffff1614611f22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1990614523565b60405180910390fd5b6000601460006101000a81548160ff021916908315150217905550611f476001611216565b565b611f51610954565b73ffffffffffffffffffffffffffffffffffffffff16611f6f6116cc565b73ffffffffffffffffffffffffffffffffffffffff1614611fc5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fbc90614523565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612035576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202c90614283565b60405180910390fd5b61203e81612783565b50565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806120b457506120b382612a0d565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661219a8361140c565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b80471015612223576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221a90614363565b60405180910390fd5b60008273ffffffffffffffffffffffffffffffffffffffff1682604051612249906140aa565b60006040518083038185875af1925050503d8060008114612286576040519150601f19603f3d011682016040523d82523d6000602084013e61228b565b606091505b50509050806122cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122c690614343565b60405180910390fd5b505050565b600081836122e29190614702565b905092915050565b60006122f4612aef565b90506123008282612c54565b5050565b600061230f826120bb565b61234e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161234590614383565b60405180910390fd5b60006123598361140c565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806123c857508373ffffffffffffffffffffffffffffffffffffffff166123b084610a06565b73ffffffffffffffffffffffffffffffffffffffff16145b806123d957506123d88185611e12565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166124028261140c565b73ffffffffffffffffffffffffffffffffffffffff1614612458576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244f90614543565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156124c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124bf90614303565b60405180910390fd5b6124d3838383612c72565b6124de600082612127565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461252e91906147e3565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546125859190614702565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6126466113f5565b612685576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161267c90614223565b60405180910390fd5b6000600b60146101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa6126c9610954565b6040516126d6919061410d565b60405180910390a1565b6126e86113f5565b15612728576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161271f906143c3565b60405180910390fd5b6001600b60146101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a25861276c610954565b604051612779919061410d565b60405180910390a1565b6000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6128548484846123e2565b61286084848484612c82565b61289f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161289690614263565b60405180910390fd5b50505050565b60606128b0826120bb565b6128ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128e6906144c3565b60405180910390fd5b600060066000848152602001908152602001600020805461290f90614915565b80601f016020809104026020016040519081016040528092919081815260200182805461293b90614915565b80156129885780601f1061295d57610100808354040283529160200191612988565b820191906000526020600020905b81548152906001019060200180831161296b57829003601f168201915b505050505090506000612999612e19565b90506000815114156129af5781925050506129f2565b6000825111156129e45780826040516020016129cc929190614064565b604051602081830303815290604052925050506129f2565b6129ed84612e39565b925050505b919050565b60008183612a059190614789565b905092915050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612ad857507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612ae85750612ae782612ee0565b5b9050919050565b600080612afa610ba3565b612710612b0791906147e3565b9050600081601554334442604051602001612b2594939291906140bf565b6040516020818303038152906040528051906020012060001c612b4891906149ef565b90506000806016836127108110612b6257612b61614adc565b5b015414612b87576016826127108110612b7e57612b7d614adc565b5b01549050612b8b565b8190505b60006016600185612b9c91906147e3565b6127108110612bae57612bad614adc565b5b01541415612be257600183612bc391906147e3565b6016836127108110612bd857612bd7614adc565b5b0181905550612c20565b6016600184612bf191906147e3565b6127108110612c0357612c02614adc565b5b01546016836127108110612c1a57612c19614adc565b5b01819055505b60156000815480929190612c3390614978565b9190505550612c4c6001826122d490919063ffffffff16565b935050505090565b612c6e828260405180602001604052806000815250612f4a565b5050565b612c7d838383612fa5565b505050565b6000612ca38473ffffffffffffffffffffffffffffffffffffffff166130b9565b15612e0c578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612ccc610954565b8786866040518563ffffffff1660e01b8152600401612cee9493929190614151565b602060405180830381600087803b158015612d0857600080fd5b505af1925050508015612d3957506040513d601f19601f82011682018060405250810190612d369190613a11565b60015b612dbc573d8060008114612d69576040519150601f19603f3d011682016040523d82523d6000602084013e612d6e565b606091505b50600081511415612db4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dab90614263565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612e11565b600190505b949350505050565b60606040518060600160405280603681526020016154e860369139905090565b6060612e44826120bb565b612e83576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e7a90614563565b60405180910390fd5b6000612e8d612e19565b90506000815111612ead5760405180602001604052806000815250612ed8565b80612eb7846130cc565b604051602001612ec8929190614064565b6040516020818303038152906040525b915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612f54838361322d565b612f616000848484612c82565b612fa0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f9790614263565b60405180910390fd5b505050565b612fb08383836133fb565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612ff357612fee81613400565b613032565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614613031576130308382613449565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561307557613070816135b6565b6130b4565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146130b3576130b28282613687565b5b5b505050565b600080823b905060008111915050919050565b60606000821415613114576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613228565b600082905060005b6000821461314657808061312f90614978565b915050600a8261313f9190614758565b915061311c565b60008167ffffffffffffffff81111561316257613161614b0b565b5b6040519080825280601f01601f1916602001820160405280156131945781602001600182028036833780820191505090505b5090505b60008514613221576001826131ad91906147e3565b9150600a856131bc91906149ef565b60306131c89190614702565b60f81b8183815181106131de576131dd614adc565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561321a9190614758565b9450613198565b8093505050505b919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561329d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613294906144a3565b60405180910390fd5b6132a6816120bb565b156132e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132dd906142a3565b60405180910390fd5b6132f260008383612c72565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546133429190614702565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b505050565b600980549050600a600083815260200190815260200160002081905550600981908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161345684611544565b61346091906147e3565b9050600060086000848152602001908152602001600020549050818114613545576000600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816008600083815260200190815260200160002081905550505b6008600084815260200190815260200160002060009055600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016009805490506135ca91906147e3565b90506000600a60008481526020019081526020016000205490506000600983815481106135fa576135f9614adc565b5b90600052602060002001549050806009838154811061361c5761361b614adc565b5b906000526020600020018190555081600a600083815260200190815260200160002081905550600a600085815260200190815260200160002060009055600980548061366b5761366a614aad565b5b6001900381819060005260206000200160009055905550505050565b600061369283611544565b905081600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806008600084815260200190815260200160002081905550505050565b600061371961371484614683565b61465e565b90508281526020810184848401111561373557613734614b3f565b5b6137408482856148d3565b509392505050565b60008135905061375781615474565b92915050565b60008135905061376c8161548b565b92915050565b600081359050613781816154a2565b92915050565b600081359050613796816154b9565b92915050565b6000815190506137ab816154b9565b92915050565b600082601f8301126137c6576137c5614b3a565b5b81356137d6848260208601613706565b91505092915050565b6000813590506137ee816154d0565b92915050565b60006020828403121561380a57613809614b49565b5b600061381884828501613748565b91505092915050565b60006020828403121561383757613836614b49565b5b60006138458482850161375d565b91505092915050565b6000806040838503121561386557613864614b49565b5b600061387385828601613748565b925050602061388485828601613748565b9150509250929050565b6000806000606084860312156138a7576138a6614b49565b5b60006138b586828701613748565b93505060206138c686828701613748565b92505060406138d7868287016137df565b9150509250925092565b600080600080608085870312156138fb576138fa614b49565b5b600061390987828801613748565b945050602061391a87828801613748565b935050604061392b878288016137df565b925050606085013567ffffffffffffffff81111561394c5761394b614b44565b5b613958878288016137b1565b91505092959194509250565b6000806040838503121561397b5761397a614b49565b5b600061398985828601613748565b925050602061399a85828601613772565b9150509250929050565b600080604083850312156139bb576139ba614b49565b5b60006139c985828601613748565b92505060206139da858286016137df565b9150509250929050565b6000602082840312156139fa576139f9614b49565b5b6000613a0884828501613787565b91505092915050565b600060208284031215613a2757613a26614b49565b5b6000613a358482850161379c565b91505092915050565b600060208284031215613a5457613a53614b49565b5b6000613a62848285016137df565b91505092915050565b613a748161489d565b82525050565b613a8381614817565b82525050565b613a9a613a9582614817565b6149c1565b82525050565b613aa98161483b565b82525050565b6000613aba826146b4565b613ac481856146ca565b9350613ad48185602086016148e2565b613add81614b4e565b840191505092915050565b6000613af3826146bf565b613afd81856146e6565b9350613b0d8185602086016148e2565b613b1681614b4e565b840191505092915050565b6000613b2c826146bf565b613b3681856146f7565b9350613b468185602086016148e2565b80840191505092915050565b6000613b5f6017836146e6565b9150613b6a82614b6c565b602082019050919050565b6000613b826014836146e6565b9150613b8d82614b95565b602082019050919050565b6000613ba5602b836146e6565b9150613bb082614bbe565b604082019050919050565b6000613bc86032836146e6565b9150613bd382614c0d565b604082019050919050565b6000613beb6026836146e6565b9150613bf682614c5c565b604082019050919050565b6000613c0e601c836146e6565b9150613c1982614cab565b602082019050919050565b6000613c31602b836146e6565b9150613c3c82614cd4565b604082019050919050565b6000613c546026836146e6565b9150613c5f82614d23565b604082019050919050565b6000613c776024836146e6565b9150613c8282614d72565b604082019050919050565b6000613c9a6019836146e6565b9150613ca582614dc1565b602082019050919050565b6000613cbd603a836146e6565b9150613cc882614dea565b604082019050919050565b6000613ce0601d836146e6565b9150613ceb82614e39565b602082019050919050565b6000613d03602c836146e6565b9150613d0e82614e62565b604082019050919050565b6000613d26602b836146e6565b9150613d3182614eb1565b604082019050919050565b6000613d496010836146e6565b9150613d5482614f00565b602082019050919050565b6000613d6c6022836146e6565b9150613d7782614f29565b604082019050919050565b6000613d8f6038836146e6565b9150613d9a82614f78565b604082019050919050565b6000613db2603a836146e6565b9150613dbd82614fc7565b604082019050919050565b6000613dd5602a836146e6565b9150613de082615016565b604082019050919050565b6000613df86029836146e6565b9150613e0382615065565b604082019050919050565b6000613e1b6031836146e6565b9150613e26826150b4565b604082019050919050565b6000613e3e6020836146e6565b9150613e4982615103565b602082019050919050565b6000613e616031836146e6565b9150613e6c8261512c565b604082019050919050565b6000613e84602c836146e6565b9150613e8f8261517b565b604082019050919050565b6000613ea76005836146f7565b9150613eb2826151ca565b600582019050919050565b6000613eca6011836146e6565b9150613ed5826151f3565b602082019050919050565b6000613eed6020836146e6565b9150613ef88261521c565b602082019050919050565b6000613f106029836146e6565b9150613f1b82615245565b604082019050919050565b6000613f33602f836146e6565b9150613f3e82615294565b604082019050919050565b6000613f56602f836146e6565b9150613f61826152e3565b604082019050919050565b6000613f796021836146e6565b9150613f8482615332565b604082019050919050565b6000613f9c6000836146db565b9150613fa782615381565b600082019050919050565b6000613fbf6031836146e6565b9150613fca82615384565b604082019050919050565b6000613fe2602c836146e6565b9150613fed826153d3565b604082019050919050565b6000614005601e836146e6565b915061401082615422565b602082019050919050565b6000614028601f836146e6565b91506140338261544b565b602082019050919050565b61404781614893565b82525050565b61405e61405982614893565b6149e5565b82525050565b60006140708285613b21565b915061407c8284613b21565b91508190509392505050565b60006140948284613b21565b915061409f82613e9a565b915081905092915050565b60006140b582613f8f565b9150819050919050565b60006140cb828761404d565b6020820191506140db8286613a89565b6014820191506140eb828561404d565b6020820191506140fb828461404d565b60208201915081905095945050505050565b60006020820190506141226000830184613a7a565b92915050565b600060408201905061413d6000830185613a6b565b61414a602083018461403e565b9392505050565b60006080820190506141666000830187613a7a565b6141736020830186613a7a565b614180604083018561403e565b81810360608301526141928184613aaf565b905095945050505050565b60006040820190506141b26000830185613a7a565b6141bf602083018461403e565b9392505050565b60006020820190506141db6000830184613aa0565b92915050565b600060208201905081810360008301526141fb8184613ae8565b905092915050565b6000602082019050818103600083015261421c81613b52565b9050919050565b6000602082019050818103600083015261423c81613b75565b9050919050565b6000602082019050818103600083015261425c81613b98565b9050919050565b6000602082019050818103600083015261427c81613bbb565b9050919050565b6000602082019050818103600083015261429c81613bde565b9050919050565b600060208201905081810360008301526142bc81613c01565b9050919050565b600060208201905081810360008301526142dc81613c24565b9050919050565b600060208201905081810360008301526142fc81613c47565b9050919050565b6000602082019050818103600083015261431c81613c6a565b9050919050565b6000602082019050818103600083015261433c81613c8d565b9050919050565b6000602082019050818103600083015261435c81613cb0565b9050919050565b6000602082019050818103600083015261437c81613cd3565b9050919050565b6000602082019050818103600083015261439c81613cf6565b9050919050565b600060208201905081810360008301526143bc81613d19565b9050919050565b600060208201905081810360008301526143dc81613d3c565b9050919050565b600060208201905081810360008301526143fc81613d5f565b9050919050565b6000602082019050818103600083015261441c81613d82565b9050919050565b6000602082019050818103600083015261443c81613da5565b9050919050565b6000602082019050818103600083015261445c81613dc8565b9050919050565b6000602082019050818103600083015261447c81613deb565b9050919050565b6000602082019050818103600083015261449c81613e0e565b9050919050565b600060208201905081810360008301526144bc81613e31565b9050919050565b600060208201905081810360008301526144dc81613e54565b9050919050565b600060208201905081810360008301526144fc81613e77565b9050919050565b6000602082019050818103600083015261451c81613ebd565b9050919050565b6000602082019050818103600083015261453c81613ee0565b9050919050565b6000602082019050818103600083015261455c81613f03565b9050919050565b6000602082019050818103600083015261457c81613f26565b9050919050565b6000602082019050818103600083015261459c81613f49565b9050919050565b600060208201905081810360008301526145bc81613f6c565b9050919050565b600060208201905081810360008301526145dc81613fb2565b9050919050565b600060208201905081810360008301526145fc81613fd5565b9050919050565b6000602082019050818103600083015261461c81613ff8565b9050919050565b6000602082019050818103600083015261463c8161401b565b9050919050565b6000602082019050614658600083018461403e565b92915050565b6000614668614679565b90506146748282614947565b919050565b6000604051905090565b600067ffffffffffffffff82111561469e5761469d614b0b565b5b6146a782614b4e565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b600061470d82614893565b915061471883614893565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561474d5761474c614a20565b5b828201905092915050565b600061476382614893565b915061476e83614893565b92508261477e5761477d614a4f565b5b828204905092915050565b600061479482614893565b915061479f83614893565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156147d8576147d7614a20565b5b828202905092915050565b60006147ee82614893565b91506147f983614893565b92508282101561480c5761480b614a20565b5b828203905092915050565b600061482282614873565b9050919050565b600061483482614873565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60006148a8826148af565b9050919050565b60006148ba826148c1565b9050919050565b60006148cc82614873565b9050919050565b82818337600083830152505050565b60005b838110156149005780820151818401526020810190506148e5565b8381111561490f576000848401525b50505050565b6000600282049050600182168061492d57607f821691505b6020821081141561494157614940614a7e565b5b50919050565b61495082614b4e565b810181811067ffffffffffffffff8211171561496f5761496e614b0b565b5b80604052505050565b600061498382614893565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156149b6576149b5614a20565b5b600182019050919050565b60006149cc826149d3565b9050919050565b60006149de82614b5f565b9050919050565b6000819050919050565b60006149fa82614893565b9150614a0583614893565b925082614a1557614a14614a4f565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f546f6f206d616e7920746f6b656e73206174206f6e6365000000000000000000600082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f457863656564656420746f6b656e7320616c6c6f636174696f6e20666f72207460008201527f65616d206d656d62657273000000000000000000000000000000000000000000602082015250565b7f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060008201527f7368617265730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260008201527f6563697069656e74206d61792068617665207265766572746564000000000000602082015250565b7f416464726573733a20696e73756666696369656e742062616c616e6365000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060008201527f647565207061796d656e74000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f4f6e6c79206f6e6520746f6b656e20706572206164647265737320616c6c6f7760008201527f6564000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f5075626c69632073616c65206d7573742062652061637469766520746f206d6960008201527f6e74206d756c7469706c6520746f6b656e73206174206f6e6365000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f5465616d2073616c65206d7573742062652061637469766520746f206d696e7460008201527f2061732061207465616d206d656d626572000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f45524337323155524953746f726167653a2055524920717565727920666f722060008201527f6e6f6e6578697374656e7420746f6b656e000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f4e6f742061207465616d206d656d626572000000000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f507572636861736520776f756c6420657863656564206d617820737570706c7960008201527f206f662053706163652050756e6b730000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f496e73756666696369656e742066756e647320746f2070757263686173650000600082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b61547d81614817565b811461548857600080fd5b50565b61549481614829565b811461549f57600080fd5b50565b6154ab8161483b565b81146154b657600080fd5b50565b6154c281614847565b81146154cd57600080fd5b50565b6154d981614893565b81146154e457600080fd5b5056fe697066733a2f2f516d5662673874446966516655546a42313174625347736b39337658626f50755637336f674c4266364d534a37702fa2646970667358221220d507aade60b6e75ea71eefb8d3ec2bf188fa2fb97a5c624c73fb48e508004aa764736f6c63430008070033
Loading...
Loading
Loading...
Loading
OVERVIEW
The Space Punks Club is a collection of 10,000 AI-generated collectibles levitating on the Ethereum Blockchain. All 10,000 Space Punks are programmatically randomly generated from 156 different attributes.Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.