Feature Tip: Add private address tag to any address under My Name Tag !
Source Code
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 10 from a total of 10 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Withdraw | 16488806 | 1133 days ago | IN | 0 ETH | 0.0004791 | ||||
| Mint | 16346169 | 1153 days ago | IN | 0.032 ETH | 0.00148032 | ||||
| Withdraw | 16346167 | 1153 days ago | IN | 0 ETH | 0.00041527 | ||||
| Mint | 16346156 | 1153 days ago | IN | 0.032 ETH | 0.00141415 | ||||
| Withdraw | 16346154 | 1153 days ago | IN | 0 ETH | 0.00048287 | ||||
| Mint | 16346148 | 1153 days ago | IN | 0.018 ETH | 0.00119448 | ||||
| Reserve | 16346133 | 1153 days ago | IN | 0 ETH | 0.00124442 | ||||
| Reserve | 16346126 | 1153 days ago | IN | 0 ETH | 0.00133539 | ||||
| Mint | 16346124 | 1153 days ago | IN | 0.018 ETH | 0.00120946 | ||||
| Mint | 16346123 | 1153 days ago | IN | 0 ETH | 0.00186982 |
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
Zillies
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2023-01-06
*/
/**
.----. _ .-. .-. _
`--. ::_;: : : : :_;
,','.-.: : : : .-. .--.
.'.'_ : :: :_ : :_ : :' '_.'
:____;:_;`.__;`.__;:_;`.__.'
*/
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.7;
/**
* @dev Interface of ERC721A.
*/
interface IERC721A {
/**
* The caller must own the token or be an approved operator.
*/
error ApprovalCallerNotOwnerNorApproved();
/**
* The token does not exist.
*/
error ApprovalQueryForNonexistentToken();
/**
* Cannot query the balance for the zero address.
*/
error BalanceQueryForZeroAddress();
/**
* Cannot mint to the zero address.
*/
error MintToZeroAddress();
/**
* The quantity of tokens minted must be more than zero.
*/
error MintZeroQuantity();
/**
* The token does not exist.
*/
error OwnerQueryForNonexistentToken();
/**
* The caller must own the token or be an approved operator.
*/
error TransferCallerNotOwnerNorApproved();
/**
* The token must be owned by `from`.
*/
error TransferFromIncorrectOwner();
/**
* Cannot safely transfer to a contract that does not implement the
* ERC721Receiver interface.
*/
error TransferToNonERC721ReceiverImplementer();
/**
* Cannot transfer to the zero address.
*/
error TransferToZeroAddress();
/**
* The token does not exist.
*/
error URIQueryForNonexistentToken();
/**
* The `quantity` minted with ERC2309 exceeds the safety limit.
*/
error MintERC2309QuantityExceedsLimit();
/**
* The `extraData` cannot be set on an unintialized ownership slot.
*/
error OwnershipNotInitializedForExtraData();
// =============================================================
// STRUCTS
// =============================================================
struct TokenOwnership {
// The address of the owner.
address addr;
// Stores the start time of ownership with minimal overhead for tokenomics.
uint64 startTimestamp;
// Whether the token has been burned.
bool burned;
// Arbitrary data similar to `startTimestamp` that can be set via {_extraData}.
uint24 extraData;
}
// =============================================================
// TOKEN COUNTERS
// =============================================================
/**
* @dev Returns the total number of tokens in existence.
* Burned tokens will reduce the count.
* To get the total number of tokens minted, please see {_totalMinted}.
*/
function totalSupply() external view returns (uint256);
// =============================================================
// IERC165
// =============================================================
/**
* @dev Returns true if this contract implements the interface defined by
* `interfaceId`. See the corresponding
* [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
* to learn more about how these ids are created.
*
* This function call must use less than 30000 gas.
*/
function supportsInterface(bytes4 interfaceId) external view returns (bool);
// =============================================================
// IERC721
// =============================================================
/**
* @dev Emitted when `tokenId` token is transferred from `from` to `to`.
*/
event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
*/
event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables or disables
* (`approved`) `operator` to manage all of its assets.
*/
event ApprovalForAll(address indexed owner, address indexed operator, bool approved);
/**
* @dev Returns the number of tokens in `owner`'s account.
*/
function balanceOf(address owner) external view returns (uint256 balance);
/**
* @dev Returns the owner of the `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function ownerOf(uint256 tokenId) external view returns (address owner);
/**
* @dev Safely transfers `tokenId` token from `from` to `to`,
* checking first that contract recipients are aware of the ERC721 protocol
* to prevent tokens from being forever locked.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must be have been allowed to move
* this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement
* {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId,
bytes calldata data
) external payable;
/**
* @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) external payable;
/**
* @dev Transfers `tokenId` from `from` to `to`.
*
* WARNING: Usage of this method is discouraged, use {safeTransferFrom}
* whenever possible.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token
* by either {approve} or {setApprovalForAll}.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address from,
address to,
uint256 tokenId
) external payable;
/**
* @dev Gives permission to `to` to transfer `tokenId` token to another account.
* The approval is cleared when the token is transferred.
*
* Only a single account can be approved at a time, so approving the
* zero address clears previous approvals.
*
* Requirements:
*
* - The caller must own the token or be an approved operator.
* - `tokenId` must exist.
*
* Emits an {Approval} event.
*/
function approve(address to, uint256 tokenId) external payable;
/**
* @dev Approve or remove `operator` as an operator for the caller.
* Operators can call {transferFrom} or {safeTransferFrom}
* for any token owned by the caller.
*
* Requirements:
*
* - The `operator` cannot be the caller.
*
* Emits an {ApprovalForAll} event.
*/
function setApprovalForAll(address operator, bool _approved) external;
/**
* @dev Returns the account approved for `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function getApproved(uint256 tokenId) external view returns (address operator);
/**
* @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
*
* See {setApprovalForAll}.
*/
function isApprovedForAll(address owner, address operator) external view returns (bool);
// =============================================================
// IERC721Metadata
// =============================================================
/**
* @dev Returns the token collection name.
*/
function name() external view returns (string memory);
/**
* @dev Returns the token collection symbol.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
*/
function tokenURI(uint256 tokenId) external view returns (string memory);
// =============================================================
// IERC2309
// =============================================================
/**
* @dev Emitted when tokens in `fromTokenId` to `toTokenId`
* (inclusive) is transferred from `from` to `to`, as defined in the
* [ERC2309](https://eips.ethereum.org/EIPS/eip-2309) standard.
*
* See {_mintERC2309} for more details.
*/
event ConsecutiveTransfer(uint256 indexed fromTokenId, uint256 toTokenId, address indexed from, address indexed to);
}
/**
* @title ERC721A
*
* @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721)
* Non-Fungible Token Standard, including the Metadata extension.
* Optimized for lower gas during batch mints.
*
* Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...)
* starting from `_startTokenId()`.
*
* Assumptions:
*
* - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
* - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256).
*/
interface ERC721A__IERC721Receiver {
function onERC721Received(
address operator,
address from,
uint256 tokenId,
bytes calldata data
) external returns (bytes4);
}
/**
* @title ERC721A
*
* @dev Implementation of the [ERC721](https://eips.ethereum.org/EIPS/eip-721)
* Non-Fungible Token Standard, including the Metadata extension.
* Optimized for lower gas during batch mints.
*
* Token IDs are minted in sequential order (e.g. 0, 1, 2, 3, ...)
* starting from `_startTokenId()`.
*
* Assumptions:
*
* - An owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
* - The maximum token ID cannot exceed 2**256 - 1 (max value of uint256).
*/
contract ERC721A is IERC721A {
// Bypass for a `--via-ir` bug (https://github.com/chiru-labs/ERC721A/pull/364).
struct TokenApprovalRef {
address value;
}
// =============================================================
// CONSTANTS
// =============================================================
// Mask of an entry in packed address data.
uint256 private constant _BITMASK_ADDRESS_DATA_ENTRY = (1 << 64) - 1;
// The bit position of `numberMinted` in packed address data.
uint256 private constant _BITPOS_NUMBER_MINTED = 64;
// The bit position of `numberBurned` in packed address data.
uint256 private constant _BITPOS_NUMBER_BURNED = 128;
// The bit position of `aux` in packed address data.
uint256 private constant _BITPOS_AUX = 192;
// Mask of all 256 bits in packed address data except the 64 bits for `aux`.
uint256 private constant _BITMASK_AUX_COMPLEMENT = (1 << 192) - 1;
// The bit position of `startTimestamp` in packed ownership.
uint256 private constant _BITPOS_START_TIMESTAMP = 160;
// The bit mask of the `burned` bit in packed ownership.
uint256 private constant _BITMASK_BURNED = 1 << 224;
// The bit position of the `nextInitialized` bit in packed ownership.
uint256 private constant _BITPOS_NEXT_INITIALIZED = 225;
// The bit mask of the `nextInitialized` bit in packed ownership.
uint256 private constant _BITMASK_NEXT_INITIALIZED = 1 << 225;
// The bit position of `extraData` in packed ownership.
uint256 private constant _BITPOS_EXTRA_DATA = 232;
// Mask of all 256 bits in a packed ownership except the 24 bits for `extraData`.
uint256 private constant _BITMASK_EXTRA_DATA_COMPLEMENT = (1 << 232) - 1;
// The mask of the lower 160 bits for addresses.
uint256 private constant _BITMASK_ADDRESS = (1 << 160) - 1;
// The maximum `quantity` that can be minted with {_mintERC2309}.
// This limit is to prevent overflows on the address data entries.
// For a limit of 5000, a total of 3.689e15 calls to {_mintERC2309}
// is required to cause an overflow, which is unrealistic.
uint256 private constant _MAX_MINT_ERC2309_QUANTITY_LIMIT = 5000;
// The `Transfer` event signature is given by:
// `keccak256(bytes("Transfer(address,address,uint256)"))`.
bytes32 private constant _TRANSFER_EVENT_SIGNATURE =
0xddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef;
// =============================================================
// STORAGE
// =============================================================
// The next token ID to be minted.
uint256 private _currentIndex;
// The number of tokens burned.
uint256 private _burnCounter;
// Token name
string private _name;
// Token symbol
string private _symbol;
// Mapping from token ID to ownership details
// An empty struct value does not necessarily mean the token is unowned.
// See {_packedOwnershipOf} implementation for details.
//
// Bits Layout:
// - [0..159] `addr`
// - [160..223] `startTimestamp`
// - [224] `burned`
// - [225] `nextInitialized`
// - [232..255] `extraData`
mapping(uint256 => uint256) private _packedOwnerships;
// Mapping owner address to address data.
//
// Bits Layout:
// - [0..63] `balance`
// - [64..127] `numberMinted`
// - [128..191] `numberBurned`
// - [192..255] `aux`
mapping(address => uint256) private _packedAddressData;
// Mapping from token ID to approved address.
mapping(uint256 => TokenApprovalRef) private _tokenApprovals;
// Mapping from owner to operator approvals
mapping(address => mapping(address => bool)) private _operatorApprovals;
// =============================================================
// CONSTRUCTOR
// =============================================================
constructor(string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
_currentIndex = _startTokenId();
}
// =============================================================
// TOKEN COUNTING OPERATIONS
// =============================================================
/**
* @dev Returns the starting token ID.
* To change the starting token ID, please override this function.
*/
function _startTokenId() internal view virtual returns (uint256) {
return 0;
}
/**
* @dev Returns the next token ID to be minted.
*/
function _nextTokenId() internal view virtual returns (uint256) {
return _currentIndex;
}
/**
* @dev Returns the total number of tokens in existence.
* Burned tokens will reduce the count.
* To get the total number of tokens minted, please see {_totalMinted}.
*/
function totalSupply() public view virtual override returns (uint256) {
// Counter underflow is impossible as _burnCounter cannot be incremented
// more than `_currentIndex - _startTokenId()` times.
unchecked {
return _currentIndex - _burnCounter - _startTokenId();
}
}
/**
* @dev Returns the total amount of tokens minted in the contract.
*/
function _totalMinted() internal view virtual returns (uint256) {
// Counter underflow is impossible as `_currentIndex` does not decrement,
// and it is initialized to `_startTokenId()`.
unchecked {
return _currentIndex - _startTokenId();
}
}
/**
* @dev Returns the total number of tokens burned.
*/
function _totalBurned() internal view virtual returns (uint256) {
return _burnCounter;
}
// =============================================================
// ADDRESS DATA OPERATIONS
// =============================================================
/**
* @dev Returns the number of tokens in `owner`'s account.
*/
function balanceOf(address owner) public view virtual override returns (uint256) {
if (owner == address(0)) revert BalanceQueryForZeroAddress();
return _packedAddressData[owner] & _BITMASK_ADDRESS_DATA_ENTRY;
}
/**
* Returns the number of tokens minted by `owner`.
*/
function _numberMinted(address owner) internal view returns (uint256) {
return (_packedAddressData[owner] >> _BITPOS_NUMBER_MINTED) & _BITMASK_ADDRESS_DATA_ENTRY;
}
/**
* Returns the number of tokens burned by or on behalf of `owner`.
*/
function _numberBurned(address owner) internal view returns (uint256) {
return (_packedAddressData[owner] >> _BITPOS_NUMBER_BURNED) & _BITMASK_ADDRESS_DATA_ENTRY;
}
/**
* Returns the auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
*/
function _getAux(address owner) internal view returns (uint64) {
return uint64(_packedAddressData[owner] >> _BITPOS_AUX);
}
/**
* Sets the auxiliary data for `owner`. (e.g. number of whitelist mint slots used).
* If there are multiple variables, please pack them into a uint64.
*/
function _setAux(address owner, uint64 aux) internal virtual {
uint256 packed = _packedAddressData[owner];
uint256 auxCasted;
// Cast `aux` with assembly to avoid redundant masking.
assembly {
auxCasted := aux
}
packed = (packed & _BITMASK_AUX_COMPLEMENT) | (auxCasted << _BITPOS_AUX);
_packedAddressData[owner] = packed;
}
// =============================================================
// IERC165
// =============================================================
/**
* @dev Returns true if this contract implements the interface defined by
* `interfaceId`. See the corresponding
* [EIP section](https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified)
* to learn more about how these ids are created.
*
* This function call must use less than 30000 gas.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
// The interface IDs are constants representing the first 4 bytes
// of the XOR of all function selectors in the interface.
// See: [ERC165](https://eips.ethereum.org/EIPS/eip-165)
// (e.g. `bytes4(i.functionA.selector ^ i.functionB.selector ^ ...)`)
return
interfaceId == 0x01ffc9a7 || // ERC165 interface ID for ERC165.
interfaceId == 0x80ac58cd || // ERC165 interface ID for ERC721.
interfaceId == 0x5b5e139f; // ERC165 interface ID for ERC721Metadata.
}
// =============================================================
// IERC721Metadata
// =============================================================
/**
* @dev Returns the token collection name.
*/
function name() public view virtual override returns (string memory) {
return _name;
}
/**
* @dev Returns the token collection symbol.
*/
function symbol() public view virtual override returns (string memory) {
return _symbol;
}
/**
* @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
*/
function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
if (!_exists(tokenId)) revert URIQueryForNonexistentToken();
string memory baseURI = _baseURI();
return bytes(baseURI).length != 0 ? string(abi.encodePacked(baseURI, _toString(tokenId))) : '';
}
/**
* @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
* token will be the concatenation of the `baseURI` and the `tokenId`. Empty
* by default, it can be overridden in child contracts.
*/
function _baseURI() internal view virtual returns (string memory) {
return '';
}
// =============================================================
// OWNERSHIPS OPERATIONS
// =============================================================
/**
* @dev Returns the owner of the `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function ownerOf(uint256 tokenId) public view virtual override returns (address) {
return address(uint160(_packedOwnershipOf(tokenId)));
}
/**
* @dev Gas spent here starts off proportional to the maximum mint batch size.
* It gradually moves to O(1) as tokens get transferred around over time.
*/
function _ownershipOf(uint256 tokenId) internal view virtual returns (TokenOwnership memory) {
return _unpackedOwnership(_packedOwnershipOf(tokenId));
}
/**
* @dev Returns the unpacked `TokenOwnership` struct at `index`.
*/
function _ownershipAt(uint256 index) internal view virtual returns (TokenOwnership memory) {
return _unpackedOwnership(_packedOwnerships[index]);
}
/**
* @dev Initializes the ownership slot minted at `index` for efficiency purposes.
*/
function _initializeOwnershipAt(uint256 index) internal virtual {
if (_packedOwnerships[index] == 0) {
_packedOwnerships[index] = _packedOwnershipOf(index);
}
}
/**
* Returns the packed ownership data of `tokenId`.
*/
function _packedOwnershipOf(uint256 tokenId) private view returns (uint256) {
uint256 curr = tokenId;
unchecked {
if (_startTokenId() <= curr)
if (curr < _currentIndex) {
uint256 packed = _packedOwnerships[curr];
// If not burned.
if (packed & _BITMASK_BURNED == 0) {
// Invariant:
// There will always be an initialized ownership slot
// (i.e. `ownership.addr != address(0) && ownership.burned == false`)
// before an unintialized ownership slot
// (i.e. `ownership.addr == address(0) && ownership.burned == false`)
// Hence, `curr` will not underflow.
//
// We can directly compare the packed value.
// If the address is zero, packed will be zero.
while (packed == 0) {
packed = _packedOwnerships[--curr];
}
return packed;
}
}
}
revert OwnerQueryForNonexistentToken();
}
/**
* @dev Returns the unpacked `TokenOwnership` struct from `packed`.
*/
function _unpackedOwnership(uint256 packed) private pure returns (TokenOwnership memory ownership) {
ownership.addr = address(uint160(packed));
ownership.startTimestamp = uint64(packed >> _BITPOS_START_TIMESTAMP);
ownership.burned = packed & _BITMASK_BURNED != 0;
ownership.extraData = uint24(packed >> _BITPOS_EXTRA_DATA);
}
/**
* @dev Packs ownership data into a single uint256.
*/
function _packOwnershipData(address owner, uint256 flags) private view returns (uint256 result) {
assembly {
// Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
owner := and(owner, _BITMASK_ADDRESS)
// `owner | (block.timestamp << _BITPOS_START_TIMESTAMP) | flags`.
result := or(owner, or(shl(_BITPOS_START_TIMESTAMP, timestamp()), flags))
}
}
/**
* @dev Returns the `nextInitialized` flag set if `quantity` equals 1.
*/
function _nextInitializedFlag(uint256 quantity) private pure returns (uint256 result) {
// For branchless setting of the `nextInitialized` flag.
assembly {
// `(quantity == 1) << _BITPOS_NEXT_INITIALIZED`.
result := shl(_BITPOS_NEXT_INITIALIZED, eq(quantity, 1))
}
}
// =============================================================
// APPROVAL OPERATIONS
// =============================================================
/**
* @dev Gives permission to `to` to transfer `tokenId` token to another account.
* The approval is cleared when the token is transferred.
*
* Only a single account can be approved at a time, so approving the
* zero address clears previous approvals.
*
* Requirements:
*
* - The caller must own the token or be an approved operator.
* - `tokenId` must exist.
*
* Emits an {Approval} event.
*/
function approve(address to, uint256 tokenId) public payable virtual override {
address owner = ownerOf(tokenId);
if (_msgSenderERC721A() != owner)
if (!isApprovedForAll(owner, _msgSenderERC721A())) {
revert ApprovalCallerNotOwnerNorApproved();
}
_tokenApprovals[tokenId].value = to;
emit Approval(owner, to, tokenId);
}
/**
* @dev Returns the account approved for `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function getApproved(uint256 tokenId) public view virtual override returns (address) {
if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();
return _tokenApprovals[tokenId].value;
}
/**
* @dev Approve or remove `operator` as an operator for the caller.
* Operators can call {transferFrom} or {safeTransferFrom}
* for any token owned by the caller.
*
* Requirements:
*
* - The `operator` cannot be the caller.
*
* Emits an {ApprovalForAll} event.
*/
function setApprovalForAll(address operator, bool approved) public virtual override {
_operatorApprovals[_msgSenderERC721A()][operator] = approved;
emit ApprovalForAll(_msgSenderERC721A(), operator, approved);
}
/**
* @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
*
* See {setApprovalForAll}.
*/
function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
return _operatorApprovals[owner][operator];
}
/**
* @dev Returns whether `tokenId` exists.
*
* Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
*
* Tokens start existing when they are minted. See {_mint}.
*/
function _exists(uint256 tokenId) internal view virtual returns (bool) {
return
_startTokenId() <= tokenId &&
tokenId < _currentIndex && // If within bounds,
_packedOwnerships[tokenId] & _BITMASK_BURNED == 0; // and not burned.
}
/**
* @dev Returns whether `msgSender` is equal to `approvedAddress` or `owner`.
*/
function _isSenderApprovedOrOwner(
address approvedAddress,
address owner,
address msgSender
) private pure returns (bool result) {
assembly {
// Mask `owner` to the lower 160 bits, in case the upper bits somehow aren't clean.
owner := and(owner, _BITMASK_ADDRESS)
// Mask `msgSender` to the lower 160 bits, in case the upper bits somehow aren't clean.
msgSender := and(msgSender, _BITMASK_ADDRESS)
// `msgSender == owner || msgSender == approvedAddress`.
result := or(eq(msgSender, owner), eq(msgSender, approvedAddress))
}
}
/**
* @dev Returns the storage slot and value for the approved address of `tokenId`.
*/
function _getApprovedSlotAndAddress(uint256 tokenId)
private
view
returns (uint256 approvedAddressSlot, address approvedAddress)
{
TokenApprovalRef storage tokenApproval = _tokenApprovals[tokenId];
// The following is equivalent to `approvedAddress = _tokenApprovals[tokenId].value`.
assembly {
approvedAddressSlot := tokenApproval.slot
approvedAddress := sload(approvedAddressSlot)
}
}
// =============================================================
// TRANSFER OPERATIONS
// =============================================================
/**
* @dev Transfers `tokenId` from `from` to `to`.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token
* by either {approve} or {setApprovalForAll}.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address from,
address to,
uint256 tokenId
) public payable virtual override {
uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);
if (address(uint160(prevOwnershipPacked)) != from) revert TransferFromIncorrectOwner();
(uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId);
// The nested ifs save around 20+ gas over a compound boolean condition.
if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A()))
if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();
if (to == address(0)) revert TransferToZeroAddress();
_beforeTokenTransfers(from, to, tokenId, 1);
// Clear approvals from the previous owner.
assembly {
if approvedAddress {
// This is equivalent to `delete _tokenApprovals[tokenId]`.
sstore(approvedAddressSlot, 0)
}
}
// Underflow of the sender's balance is impossible because we check for
// ownership above and the recipient's balance can't realistically overflow.
// Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256.
unchecked {
// We can directly increment and decrement the balances.
--_packedAddressData[from]; // Updates: `balance -= 1`.
++_packedAddressData[to]; // Updates: `balance += 1`.
// Updates:
// - `address` to the next owner.
// - `startTimestamp` to the timestamp of transfering.
// - `burned` to `false`.
// - `nextInitialized` to `true`.
_packedOwnerships[tokenId] = _packOwnershipData(
to,
_BITMASK_NEXT_INITIALIZED | _nextExtraData(from, to, prevOwnershipPacked)
);
// If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) {
uint256 nextTokenId = tokenId + 1;
// If the next slot's address is zero and not burned (i.e. packed value is zero).
if (_packedOwnerships[nextTokenId] == 0) {
// If the next slot is within bounds.
if (nextTokenId != _currentIndex) {
// Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
_packedOwnerships[nextTokenId] = prevOwnershipPacked;
}
}
}
}
emit Transfer(from, to, tokenId);
_afterTokenTransfers(from, to, tokenId, 1);
}
/**
* @dev Equivalent to `safeTransferFrom(from, to, tokenId, '')`.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) public payable virtual override {
safeTransferFrom(from, to, tokenId, '');
}
/**
* @dev Safely transfers `tokenId` token from `from` to `to`.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token
* by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement
* {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId,
bytes memory _data
) public payable virtual override {
transferFrom(from, to, tokenId);
if (to.code.length != 0)
if (!_checkContractOnERC721Received(from, to, tokenId, _data)) {
revert TransferToNonERC721ReceiverImplementer();
}
}
/**
* @dev Hook that is called before a set of serially-ordered token IDs
* are about to be transferred. This includes minting.
* And also called before burning one token.
*
* `startTokenId` - the first token ID to be transferred.
* `quantity` - the amount to be transferred.
*
* Calling conditions:
*
* - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
* transferred to `to`.
* - When `from` is zero, `tokenId` will be minted for `to`.
* - When `to` is zero, `tokenId` will be burned by `from`.
* - `from` and `to` are never both zero.
*/
function _beforeTokenTransfers(
address from,
address to,
uint256 startTokenId,
uint256 quantity
) internal virtual {}
/**
* @dev Hook that is called after a set of serially-ordered token IDs
* have been transferred. This includes minting.
* And also called after one token has been burned.
*
* `startTokenId` - the first token ID to be transferred.
* `quantity` - the amount to be transferred.
*
* Calling conditions:
*
* - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
* transferred to `to`.
* - When `from` is zero, `tokenId` has been minted for `to`.
* - When `to` is zero, `tokenId` has been burned by `from`.
* - `from` and `to` are never both zero.
*/
function _afterTokenTransfers(
address from,
address to,
uint256 startTokenId,
uint256 quantity
) internal virtual {}
/**
* @dev Private function to invoke {IERC721Receiver-onERC721Received} on a target contract.
*
* `from` - Previous owner of the given token ID.
* `to` - Target address that will receive the token.
* `tokenId` - Token ID to be transferred.
* `_data` - Optional data to send along with the call.
*
* Returns whether the call correctly returned the expected magic value.
*/
function _checkContractOnERC721Received(
address from,
address to,
uint256 tokenId,
bytes memory _data
) private returns (bool) {
try ERC721A__IERC721Receiver(to).onERC721Received(_msgSenderERC721A(), from, tokenId, _data) returns (
bytes4 retval
) {
return retval == ERC721A__IERC721Receiver(to).onERC721Received.selector;
} catch (bytes memory reason) {
if (reason.length == 0) {
revert TransferToNonERC721ReceiverImplementer();
} else {
assembly {
revert(add(32, reason), mload(reason))
}
}
}
}
// =============================================================
// MINT OPERATIONS
// =============================================================
/**
* @dev Mints `quantity` tokens and transfers them to `to`.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - `quantity` must be greater than 0.
*
* Emits a {Transfer} event for each mint.
*/
function _mint(address to, uint256 quantity) internal virtual {
uint256 startTokenId = _currentIndex;
if (quantity == 0) revert MintZeroQuantity();
_beforeTokenTransfers(address(0), to, startTokenId, quantity);
// Overflows are incredibly unrealistic.
// `balance` and `numberMinted` have a maximum limit of 2**64.
// `tokenId` has a maximum limit of 2**256.
unchecked {
// Updates:
// - `balance += quantity`.
// - `numberMinted += quantity`.
//
// We can directly add to the `balance` and `numberMinted`.
_packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);
// Updates:
// - `address` to the owner.
// - `startTimestamp` to the timestamp of minting.
// - `burned` to `false`.
// - `nextInitialized` to `quantity == 1`.
_packedOwnerships[startTokenId] = _packOwnershipData(
to,
_nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
);
uint256 toMasked;
uint256 end = startTokenId + quantity;
// Use assembly to loop and emit the `Transfer` event for gas savings.
// The duplicated `log4` removes an extra check and reduces stack juggling.
// The assembly, together with the surrounding Solidity code, have been
// delicately arranged to nudge the compiler into producing optimized opcodes.
assembly {
// Mask `to` to the lower 160 bits, in case the upper bits somehow aren't clean.
toMasked := and(to, _BITMASK_ADDRESS)
// Emit the `Transfer` event.
log4(
0, // Start of data (0, since no data).
0, // End of data (0, since no data).
_TRANSFER_EVENT_SIGNATURE, // Signature.
0, // `address(0)`.
toMasked, // `to`.
startTokenId // `tokenId`.
)
// The `iszero(eq(,))` check ensures that large values of `quantity`
// that overflows uint256 will make the loop run out of gas.
// The compiler will optimize the `iszero` away for performance.
for {
let tokenId := add(startTokenId, 1)
} iszero(eq(tokenId, end)) {
tokenId := add(tokenId, 1)
} {
// Emit the `Transfer` event. Similar to above.
log4(0, 0, _TRANSFER_EVENT_SIGNATURE, 0, toMasked, tokenId)
}
}
if (toMasked == 0) revert MintToZeroAddress();
_currentIndex = end;
}
_afterTokenTransfers(address(0), to, startTokenId, quantity);
}
/**
* @dev Mints `quantity` tokens and transfers them to `to`.
*
* This function is intended for efficient minting only during contract creation.
*
* It emits only one {ConsecutiveTransfer} as defined in
* [ERC2309](https://eips.ethereum.org/EIPS/eip-2309),
* instead of a sequence of {Transfer} event(s).
*
* Calling this function outside of contract creation WILL make your contract
* non-compliant with the ERC721 standard.
* For full ERC721 compliance, substituting ERC721 {Transfer} event(s) with the ERC2309
* {ConsecutiveTransfer} event is only permissible during contract creation.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - `quantity` must be greater than 0.
*
* Emits a {ConsecutiveTransfer} event.
*/
function _mintERC2309(address to, uint256 quantity) internal virtual {
uint256 startTokenId = _currentIndex;
if (to == address(0)) revert MintToZeroAddress();
if (quantity == 0) revert MintZeroQuantity();
if (quantity > _MAX_MINT_ERC2309_QUANTITY_LIMIT) revert MintERC2309QuantityExceedsLimit();
_beforeTokenTransfers(address(0), to, startTokenId, quantity);
// Overflows are unrealistic due to the above check for `quantity` to be below the limit.
unchecked {
// Updates:
// - `balance += quantity`.
// - `numberMinted += quantity`.
//
// We can directly add to the `balance` and `numberMinted`.
_packedAddressData[to] += quantity * ((1 << _BITPOS_NUMBER_MINTED) | 1);
// Updates:
// - `address` to the owner.
// - `startTimestamp` to the timestamp of minting.
// - `burned` to `false`.
// - `nextInitialized` to `quantity == 1`.
_packedOwnerships[startTokenId] = _packOwnershipData(
to,
_nextInitializedFlag(quantity) | _nextExtraData(address(0), to, 0)
);
emit ConsecutiveTransfer(startTokenId, startTokenId + quantity - 1, address(0), to);
_currentIndex = startTokenId + quantity;
}
_afterTokenTransfers(address(0), to, startTokenId, quantity);
}
/**
* @dev Safely mints `quantity` tokens and transfers them to `to`.
*
* Requirements:
*
* - If `to` refers to a smart contract, it must implement
* {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
* - `quantity` must be greater than 0.
*
* See {_mint}.
*
* Emits a {Transfer} event for each mint.
*/
function _safeMint(
address to,
uint256 quantity,
bytes memory _data
) internal virtual {
_mint(to, quantity);
unchecked {
if (to.code.length != 0) {
uint256 end = _currentIndex;
uint256 index = end - quantity;
do {
if (!_checkContractOnERC721Received(address(0), to, index++, _data)) {
revert TransferToNonERC721ReceiverImplementer();
}
} while (index < end);
// Reentrancy protection.
if (_currentIndex != end) revert();
}
}
}
/**
* @dev Equivalent to `_safeMint(to, quantity, '')`.
*/
function _safeMint(address to, uint256 quantity) internal virtual {
_safeMint(to, quantity, '');
}
// =============================================================
// BURN OPERATIONS
// =============================================================
/**
* @dev Equivalent to `_burn(tokenId, false)`.
*/
function _burn(uint256 tokenId) internal virtual {
_burn(tokenId, false);
}
/**
* @dev Destroys `tokenId`.
* The approval is cleared when the token is burned.
*
* Requirements:
*
* - `tokenId` must exist.
*
* Emits a {Transfer} event.
*/
function _burn(uint256 tokenId, bool approvalCheck) internal virtual {
uint256 prevOwnershipPacked = _packedOwnershipOf(tokenId);
address from = address(uint160(prevOwnershipPacked));
(uint256 approvedAddressSlot, address approvedAddress) = _getApprovedSlotAndAddress(tokenId);
if (approvalCheck) {
// The nested ifs save around 20+ gas over a compound boolean condition.
if (!_isSenderApprovedOrOwner(approvedAddress, from, _msgSenderERC721A()))
if (!isApprovedForAll(from, _msgSenderERC721A())) revert TransferCallerNotOwnerNorApproved();
}
_beforeTokenTransfers(from, address(0), tokenId, 1);
// Clear approvals from the previous owner.
assembly {
if approvedAddress {
// This is equivalent to `delete _tokenApprovals[tokenId]`.
sstore(approvedAddressSlot, 0)
}
}
// Underflow of the sender's balance is impossible because we check for
// ownership above and the recipient's balance can't realistically overflow.
// Counter overflow is incredibly unrealistic as `tokenId` would have to be 2**256.
unchecked {
// Updates:
// - `balance -= 1`.
// - `numberBurned += 1`.
//
// We can directly decrement the balance, and increment the number burned.
// This is equivalent to `packed -= 1; packed += 1 << _BITPOS_NUMBER_BURNED;`.
_packedAddressData[from] += (1 << _BITPOS_NUMBER_BURNED) - 1;
// Updates:
// - `address` to the last owner.
// - `startTimestamp` to the timestamp of burning.
// - `burned` to `true`.
// - `nextInitialized` to `true`.
_packedOwnerships[tokenId] = _packOwnershipData(
from,
(_BITMASK_BURNED | _BITMASK_NEXT_INITIALIZED) | _nextExtraData(from, address(0), prevOwnershipPacked)
);
// If the next slot may not have been initialized (i.e. `nextInitialized == false`) .
if (prevOwnershipPacked & _BITMASK_NEXT_INITIALIZED == 0) {
uint256 nextTokenId = tokenId + 1;
// If the next slot's address is zero and not burned (i.e. packed value is zero).
if (_packedOwnerships[nextTokenId] == 0) {
// If the next slot is within bounds.
if (nextTokenId != _currentIndex) {
// Initialize the next slot to maintain correctness for `ownerOf(tokenId + 1)`.
_packedOwnerships[nextTokenId] = prevOwnershipPacked;
}
}
}
}
emit Transfer(from, address(0), tokenId);
_afterTokenTransfers(from, address(0), tokenId, 1);
// Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
unchecked {
_burnCounter++;
}
}
// =============================================================
// EXTRA DATA OPERATIONS
// =============================================================
/**
* @dev Directly sets the extra data for the ownership data `index`.
*/
function _setExtraDataAt(uint256 index, uint24 extraData) internal virtual {
uint256 packed = _packedOwnerships[index];
if (packed == 0) revert OwnershipNotInitializedForExtraData();
uint256 extraDataCasted;
// Cast `extraData` with assembly to avoid redundant masking.
assembly {
extraDataCasted := extraData
}
packed = (packed & _BITMASK_EXTRA_DATA_COMPLEMENT) | (extraDataCasted << _BITPOS_EXTRA_DATA);
_packedOwnerships[index] = packed;
}
/**
* @dev Called during each token transfer to set the 24bit `extraData` field.
* Intended to be overridden by the cosumer contract.
*
* `previousExtraData` - the value of `extraData` before transfer.
*
* Calling conditions:
*
* - When `from` and `to` are both non-zero, `from`'s `tokenId` will be
* transferred to `to`.
* - When `from` is zero, `tokenId` will be minted for `to`.
* - When `to` is zero, `tokenId` will be burned by `from`.
* - `from` and `to` are never both zero.
*/
function _extraData(
address from,
address to,
uint24 previousExtraData
) internal view virtual returns (uint24) {}
/**
* @dev Returns the next extra data for the packed ownership data.
* The returned result is shifted into position.
*/
function _nextExtraData(
address from,
address to,
uint256 prevOwnershipPacked
) private view returns (uint256) {
uint24 extraData = uint24(prevOwnershipPacked >> _BITPOS_EXTRA_DATA);
return uint256(_extraData(from, to, extraData)) << _BITPOS_EXTRA_DATA;
}
// =============================================================
// OTHER OPERATIONS
// =============================================================
/**
* @dev Returns the message sender (defaults to `msg.sender`).
*
* If you are writing GSN compatible contracts, you need to override this function.
*/
function _msgSenderERC721A() internal view virtual returns (address) {
return msg.sender;
}
/**
* @dev Converts a uint256 to its ASCII string decimal representation.
*/
function _toString(uint256 value) internal pure virtual returns (string memory str) {
assembly {
// The maximum value of a uint256 contains 78 digits (1 byte per digit), but
// we allocate 0xa0 bytes to keep the free memory pointer 32-byte word aligned.
// We will need 1 word for the trailing zeros padding, 1 word for the length,
// and 3 words for a maximum of 78 digits. Total: 5 * 0x20 = 0xa0.
let m := add(mload(0x40), 0xa0)
// Update the free memory pointer to allocate.
mstore(0x40, m)
// Assign the `str` to the end.
str := sub(m, 0x20)
// Zeroize the slot after the string.
mstore(str, 0)
// Cache the end of the memory to calculate the length later.
let end := str
// We write the string from rightmost digit to leftmost digit.
// The following is essentially a do-while loop that also handles the zero case.
// prettier-ignore
for { let temp := value } 1 {} {
str := sub(str, 1)
// Write the character to the pointer.
// The ASCII index of the '0' character is 48.
mstore8(str, add(48, mod(temp, 10)))
// Keep dividing `temp` until zero.
temp := div(temp, 10)
// prettier-ignore
if iszero(temp) { break }
}
let length := sub(end, str)
// Move the pointer 32 bytes leftwards to make room for the length.
str := sub(str, 0x20)
// Store the length.
mstore(str, length)
}
}
}
interface IOperatorFilterRegistry {
function isOperatorAllowed(address registrant, address operator) external view returns (bool);
function register(address registrant) external;
function registerAndSubscribe(address registrant, address subscription) external;
function registerAndCopyEntries(address registrant, address registrantToCopy) external;
function unregister(address addr) external;
function updateOperator(address registrant, address operator, bool filtered) external;
function updateOperators(address registrant, address[] calldata operators, bool filtered) external;
function updateCodeHash(address registrant, bytes32 codehash, bool filtered) external;
function updateCodeHashes(address registrant, bytes32[] calldata codeHashes, bool filtered) external;
function subscribe(address registrant, address registrantToSubscribe) external;
function unsubscribe(address registrant, bool copyExistingEntries) external;
function subscriptionOf(address addr) external returns (address registrant);
function subscribers(address registrant) external returns (address[] memory);
function subscriberAt(address registrant, uint256 index) external returns (address);
function copyEntriesOf(address registrant, address registrantToCopy) external;
function isOperatorFiltered(address registrant, address operator) external returns (bool);
function isCodeHashOfFiltered(address registrant, address operatorWithCode) external returns (bool);
function isCodeHashFiltered(address registrant, bytes32 codeHash) external returns (bool);
function filteredOperators(address addr) external returns (address[] memory);
function filteredCodeHashes(address addr) external returns (bytes32[] memory);
function filteredOperatorAt(address registrant, uint256 index) external returns (address);
function filteredCodeHashAt(address registrant, uint256 index) external returns (bytes32);
function isRegistered(address addr) external returns (bool);
function codeHashOf(address addr) external returns (bytes32);
}
/**
* @title OperatorFilterer
* @notice Abstract contract whose constructor automatically registers and optionally subscribes to or copies another
* registrant's entries in the OperatorFilterRegistry.
* @dev This smart contract is meant to be inherited by token contracts so they can use the following:
* - `onlyAllowedOperator` modifier for `transferFrom` and `safeTransferFrom` methods.
* - `onlyAllowedOperatorApproval` modifier for `approve` and `setApprovalForAll` methods.
*/
abstract contract OperatorFilterer {
error OperatorNotAllowed(address operator);
IOperatorFilterRegistry public constant OPERATOR_FILTER_REGISTRY =
IOperatorFilterRegistry(0x000000000000AAeB6D7670E522A718067333cd4E);
constructor(address subscriptionOrRegistrantToCopy, bool subscribe) {
// If an inheriting token contract is deployed to a network without the registry deployed, the modifier
// will not revert, but the contract will need to be registered with the registry once it is deployed in
// order for the modifier to filter addresses.
if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
if (subscribe) {
OPERATOR_FILTER_REGISTRY.registerAndSubscribe(address(this), subscriptionOrRegistrantToCopy);
} else {
if (subscriptionOrRegistrantToCopy != address(0)) {
OPERATOR_FILTER_REGISTRY.registerAndCopyEntries(address(this), subscriptionOrRegistrantToCopy);
} else {
OPERATOR_FILTER_REGISTRY.register(address(this));
}
}
}
}
modifier onlyAllowedOperator(address from) virtual {
// Check registry code length to facilitate testing in environments without a deployed registry.
if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
// Allow spending tokens from addresses with balance
// Note that this still allows listings and marketplaces with escrow to transfer tokens if transferred
// from an EOA.
if (from == msg.sender) {
_;
return;
}
if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), msg.sender)) {
revert OperatorNotAllowed(msg.sender);
}
}
_;
}
modifier onlyAllowedOperatorApproval(address operator) virtual {
// Check registry code length to facilitate testing in environments without a deployed registry.
if (address(OPERATOR_FILTER_REGISTRY).code.length > 0) {
if (!OPERATOR_FILTER_REGISTRY.isOperatorAllowed(address(this), operator)) {
revert OperatorNotAllowed(operator);
}
}
_;
}
}
/**
* @title DefaultOperatorFilterer
* @notice Inherits from OperatorFilterer and automatically subscribes to the default OpenSea subscription.
*/
abstract contract DefaultOperatorFilterer is OperatorFilterer {
address constant DEFAULT_SUBSCRIPTION = address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6);
constructor() OperatorFilterer(DEFAULT_SUBSCRIPTION, true) {}
}
contract Zillies is ERC721A, DefaultOperatorFilterer {
mapping(uint256 => uint256) blockFree;
mapping(address => bool) minted;
uint256 public maxSupply = 977;
uint256 public maxPerTx = 16;
uint256 public price = 0.002 ether;
uint256 public royalty = 98;
bool pause;
function mint(uint256 amount) payable public {
require(totalSupply() + amount <= maxSupply);
require(amount <= maxPerTx);
_mint(amount);
}
string uri = "ipfs://QmcrWjhbS2X5hqyzxFZ5DphEatmf73QeGKueUKtHwxgPRN/";
function setUri(string memory _uri) external onlyOwner {
uri = _uri;
}
address owner;
modifier onlyOwner {
require(owner == msg.sender);
_;
}
constructor() ERC721A("Zillies", "ZILLIES") {
owner = msg.sender;
}
function _mint(uint256 amount) internal {
require(msg.sender == tx.origin);
if (msg.value == 0) {
uint256 freeNum = (maxSupply - totalSupply()) / 12;
require(blockFree[block.number] + 1 <= freeNum);
blockFree[block.number] += 1;
_safeMint(msg.sender, 1);
return;
}
require(msg.value >= amount * price);
_safeMint(msg.sender, amount);
}
function reserve(uint16 _mintAmount, address _receiver) external onlyOwner {
uint16 totalSupply = uint16(totalSupply());
require(totalSupply + _mintAmount <= maxSupply, "Exceeds max supply.");
_safeMint(_receiver , _mintAmount);
}
function royaltyInfo(uint256 _tokenId, uint256 _salePrice) public view virtual returns (address, uint256) {
uint256 royaltyAmount = (_salePrice * royalty) / 1000;
return (owner, royaltyAmount);
}
function tokenURI(uint256 tokenId) public view override returns (string memory) {
return string(abi.encodePacked(uri, _toString(tokenId), ".json"));
}
function withdraw() external onlyOwner {
payable(msg.sender).transfer(address(this).balance);
}
function setApprovalForAll(address operator, bool approved) public override onlyAllowedOperatorApproval(operator) {
super.setApprovalForAll(operator, approved);
}
function approve(address operator, uint256 tokenId) public payable override onlyAllowedOperatorApproval(operator) {
super.approve(operator, tokenId);
}
function transferFrom(address from, address to, uint256 tokenId) public payable override onlyAllowedOperator(from) {
super.transferFrom(from, to, tokenId);
}
function safeTransferFrom(address from, address to, uint256 tokenId) public payable override onlyAllowedOperator(from) {
super.safeTransferFrom(from, to, tokenId);
}
function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory data)
public
payable
override
onlyAllowedOperator(from)
{
super.safeTransferFrom(from, to, tokenId, data);
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintERC2309QuantityExceedsLimit","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"OperatorNotAllowed","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"OwnershipNotInitializedForExtraData","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"fromTokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"toTokenId","type":"uint256"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"}],"name":"ConsecutiveTransfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"OPERATOR_FILTER_REGISTRY","outputs":[{"internalType":"contract IOperatorFilterRegistry","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"price","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"_mintAmount","type":"uint16"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"reserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"royalty","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"uint256","name":"_salePrice","type":"uint256"}],"name":"royaltyInfo","outputs":[{"internalType":"address","name":"","type":"address"},{"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":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uri","type":"string"}],"name":"setUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
60806040526103d1600a556010600b5566071afd498d0000600c556062600d556040518060600160405280603681526020016200328a60369139600f9080519060200190620000509291906200036f565b503480156200005e57600080fd5b50733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280600781526020017f5a696c6c696573000000000000000000000000000000000000000000000000008152506040518060400160405280600781526020017f5a494c4c494553000000000000000000000000000000000000000000000000008152508160029080519060200190620000fa9291906200036f565b508060039080519060200190620001139291906200036f565b50620001246200036a60201b60201c565b600081905550505060006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111562000321578015620001e7576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16637d3e3dbe30846040518363ffffffff1660e01b8152600401620001ad9291906200044d565b600060405180830381600087803b158015620001c857600080fd5b505af1158015620001dd573d6000803e3d6000fd5b5050505062000320565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614620002a1576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663a0af290330846040518363ffffffff1660e01b8152600401620002679291906200044d565b600060405180830381600087803b1580156200028257600080fd5b505af115801562000297573d6000803e3d6000fd5b505050506200031f565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff16634420e486306040518263ffffffff1660e01b8152600401620002ea919062000430565b600060405180830381600087803b1580156200030557600080fd5b505af11580156200031a573d6000803e3d6000fd5b505050505b5b5b505033601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000513565b600090565b8280546200037d90620004ae565b90600052602060002090601f016020900481019282620003a15760008555620003ed565b82601f10620003bc57805160ff1916838001178555620003ed565b82800160010185558215620003ed579182015b82811115620003ec578251825591602001919060010190620003cf565b5b509050620003fc919062000400565b5090565b5b808211156200041b57600081600090555060010162000401565b5090565b6200042a816200047a565b82525050565b60006020820190506200044760008301846200041f565b92915050565b60006040820190506200046460008301856200041f565b6200047360208301846200041f565b9392505050565b600062000487826200048e565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006002820490506001821680620004c757607f821691505b60208210811415620004de57620004dd620004e4565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b612d6780620005236000396000f3fe60806040526004361061014b5760003560e01c806370a08231116100b6578063b88d4fde1161006f578063b88d4fde1461045d578063bad0ba6f14610479578063c87b56dd146104a2578063d5abeb01146104df578063e985e9c51461050a578063f968adbe146105475761014b565b806370a082311461035c57806395d89b41146103995780639b642de1146103c4578063a035b1fe146103ed578063a0712d6814610418578063a22cb465146104345761014b565b806329ee566c1161010857806329ee566c146102585780632a55205a146102835780633ccfd60b146102c157806341f43434146102d857806342842e0e146103035780636352211e1461031f5761014b565b806301ffc9a71461015057806306fdde031461018d578063081812fc146101b8578063095ea7b3146101f557806318160ddd1461021157806323b872dd1461023c575b600080fd5b34801561015c57600080fd5b5061017760048036038101906101729190612393565b610572565b604051610184919061276f565b60405180910390f35b34801561019957600080fd5b506101a2610604565b6040516101af91906127a5565b60405180910390f35b3480156101c457600080fd5b506101df60048036038101906101da9190612476565b610696565b6040516101ec91906126b6565b60405180910390f35b61020f600480360381019061020a9190612326565b610715565b005b34801561021d57600080fd5b5061022661082e565b60405161023391906127e7565b60405180910390f35b61025660048036038101906102519190612210565b610845565b005b34801561026457600080fd5b5061026d6109a5565b60405161027a91906127e7565b60405180910390f35b34801561028f57600080fd5b506102aa60048036038101906102a591906124a3565b6109ab565b6040516102b8929190612746565b60405180910390f35b3480156102cd57600080fd5b506102d66109fd565b005b3480156102e457600080fd5b506102ed610aa0565b6040516102fa919061278a565b60405180910390f35b61031d60048036038101906103189190612210565b610ab2565b005b34801561032b57600080fd5b5061034660048036038101906103419190612476565b610c12565b60405161035391906126b6565b60405180910390f35b34801561036857600080fd5b50610383600480360381019061037e91906121a3565b610c24565b60405161039091906127e7565b60405180910390f35b3480156103a557600080fd5b506103ae610cdd565b6040516103bb91906127a5565b60405180910390f35b3480156103d057600080fd5b506103eb60048036038101906103e691906123ed565b610d6f565b005b3480156103f957600080fd5b50610402610de3565b60405161040f91906127e7565b60405180910390f35b610432600480360381019061042d9190612476565b610de9565b005b34801561044057600080fd5b5061045b600480360381019061045691906122e6565b610e25565b005b61047760048036038101906104729190612263565b610f3e565b005b34801561048557600080fd5b506104a0600480360381019061049b9190612436565b6110a1565b005b3480156104ae57600080fd5b506104c960048036038101906104c49190612476565b61116e565b6040516104d691906127a5565b60405180910390f35b3480156104eb57600080fd5b506104f46111a2565b60405161050191906127e7565b60405180910390f35b34801561051657600080fd5b50610531600480360381019061052c91906121d0565b6111a8565b60405161053e919061276f565b60405180910390f35b34801561055357600080fd5b5061055c61123c565b60405161056991906127e7565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806105cd57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806105fd5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461061390612b28565b80601f016020809104026020016040519081016040528092919081815260200182805461063f90612b28565b801561068c5780601f106106615761010080835404028352916020019161068c565b820191906000526020600020905b81548152906001019060200180831161066f57829003601f168201915b5050505050905090565b60006106a182611242565b6106d7576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111561081f576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b815260040161078d9291906126d1565b60206040518083038186803b1580156107a557600080fd5b505afa1580156107b9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107dd9190612366565b61081e57806040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161081591906126b6565b60405180910390fd5b5b61082983836112a1565b505050565b60006108386113e5565b6001546000540303905090565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610993573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156108b8576108b38484846113ea565b61099f565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b81526004016109019291906126d1565b60206040518083038186803b15801561091957600080fd5b505afa15801561092d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109519190612366565b61099257336040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161098991906126b6565b60405180910390fd5b5b61099e8484846113ea565b5b50505050565b600d5481565b60008060006103e8600d54856109c191906129a0565b6109cb919061296f565b9050601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168192509250509250929050565b3373ffffffffffffffffffffffffffffffffffffffff16601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610a5757600080fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610a9d573d6000803e3d6000fd5b50565b6daaeb6d7670e522a718067333cd4e81565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610c00573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610b2557610b2084848461170f565b610c0c565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610b6e9291906126d1565b60206040518083038186803b158015610b8657600080fd5b505afa158015610b9a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bbe9190612366565b610bff57336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610bf691906126b6565b60405180910390fd5b5b610c0b84848461170f565b5b50505050565b6000610c1d8261172f565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c8c576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b606060038054610cec90612b28565b80601f0160208091040260200160405190810160405280929190818152602001828054610d1890612b28565b8015610d655780601f10610d3a57610100808354040283529160200191610d65565b820191906000526020600020905b815481529060010190602001808311610d4857829003601f168201915b5050505050905090565b3373ffffffffffffffffffffffffffffffffffffffff16601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610dc957600080fd5b80600f9080519060200190610ddf929190611f8d565b5050565b600c5481565b600a5481610df561082e565b610dff9190612919565b1115610e0a57600080fd5b600b54811115610e1957600080fd5b610e22816117fd565b50565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610f2f576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401610e9d9291906126d1565b60206040518083038186803b158015610eb557600080fd5b505afa158015610ec9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610eed9190612366565b610f2e57806040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610f2591906126b6565b60405180910390fd5b5b610f3983836118f3565b505050565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111561108d573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610fb257610fad858585856119fe565b61109a565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610ffb9291906126d1565b60206040518083038186803b15801561101357600080fd5b505afa158015611027573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061104b9190612366565b61108c57336040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161108391906126b6565b60405180910390fd5b5b611099858585856119fe565b5b5050505050565b3373ffffffffffffffffffffffffffffffffffffffff16601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146110fb57600080fd5b600061110561082e565b9050600a54838261111691906128e1565b61ffff16111561115b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611152906127c7565b60405180910390fd5b611169828461ffff16611a71565b505050565b6060600f61117b83611a8f565b60405160200161118c929190612687565b6040516020818303038152906040529050919050565b600a5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600b5481565b60008161124d6113e5565b1115801561125c575060005482105b801561129a575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60006112ac82610c12565b90508073ffffffffffffffffffffffffffffffffffffffff166112cd611ae8565b73ffffffffffffffffffffffffffffffffffffffff1614611330576112f9816112f4611ae8565b6111a8565b61132f576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b60006113f58261172f565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461145c576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061146884611af0565b9150915061147e8187611479611ae8565b611b17565b6114ca576114938661148e611ae8565b6111a8565b6114c9576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415611531576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61153e8686866001611b5b565b801561154957600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550611617856115f3888887611b61565b7c020000000000000000000000000000000000000000000000000000000017611b89565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416141561169f57600060018501905060006004600083815260200190815260200160002054141561169d57600054811461169c578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46117078686866001611bb4565b505050505050565b61172a83838360405180602001604052806000815250610f3e565b505050565b6000808290508061173e6113e5565b116117c6576000548110156117c55760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156117c3575b60008114156117b957600460008360019003935083815260200190815260200160002054905061178e565b80925050506117f8565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461183557600080fd5b60003414156118cb576000600c61184a61082e565b600a5461185791906129fa565b611861919061296f565b905080600160086000438152602001908152602001600020546118849190612919565b111561188f57600080fd5b60016008600043815260200190815260200160002060008282546118b39190612919565b925050819055506118c5336001611a71565b506118f0565b600c54816118d991906129a0565b3410156118e557600080fd5b6118ef3382611a71565b5b50565b8060076000611900611ae8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166119ad611ae8565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119f2919061276f565b60405180910390a35050565b611a09848484610845565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611a6b57611a3484848484611bba565b611a6a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b611a8b828260405180602001604052806000815250611d1a565b5050565b606060a060405101806040526020810391506000825281835b600115611ad357600184039350600a81066030018453600a8104905080611ace57611ad3565b611aa8565b50828103602084039350808452505050919050565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611b78868684611db7565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611be0611ae8565b8786866040518563ffffffff1660e01b8152600401611c0294939291906126fa565b602060405180830381600087803b158015611c1c57600080fd5b505af1925050508015611c4d57506040513d601f19601f82011682018060405250810190611c4a91906123c0565b60015b611cc7573d8060008114611c7d576040519150601f19603f3d011682016040523d82523d6000602084013e611c82565b606091505b50600081511415611cbf576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b611d248383611dc0565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611db257600080549050600083820390505b611d646000868380600101945086611bba565b611d9a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611d51578160005414611daf57600080fd5b50505b505050565b60009392505050565b6000805490506000821415611e01576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611e0e6000848385611b5b565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611e8583611e766000866000611b61565b611e7f85611f7d565b17611b89565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611f2657808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611eeb565b506000821415611f62576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050611f786000848385611bb4565b505050565b60006001821460e11b9050919050565b828054611f9990612b28565b90600052602060002090601f016020900481019282611fbb5760008555612002565b82601f10611fd457805160ff1916838001178555612002565b82800160010185558215612002579182015b82811115612001578251825591602001919060010190611fe6565b5b50905061200f9190612013565b5090565b5b8082111561202c576000816000905550600101612014565b5090565b600061204361203e84612827565b612802565b90508281526020810184848401111561205f5761205e612c4c565b5b61206a848285612ae6565b509392505050565b600061208561208084612858565b612802565b9050828152602081018484840111156120a1576120a0612c4c565b5b6120ac848285612ae6565b509392505050565b6000813590506120c381612cbe565b92915050565b6000813590506120d881612cd5565b92915050565b6000815190506120ed81612cd5565b92915050565b60008135905061210281612cec565b92915050565b60008151905061211781612cec565b92915050565b600082601f83011261213257612131612c47565b5b8135612142848260208601612030565b91505092915050565b600082601f8301126121605761215f612c47565b5b8135612170848260208601612072565b91505092915050565b60008135905061218881612d03565b92915050565b60008135905061219d81612d1a565b92915050565b6000602082840312156121b9576121b8612c56565b5b60006121c7848285016120b4565b91505092915050565b600080604083850312156121e7576121e6612c56565b5b60006121f5858286016120b4565b9250506020612206858286016120b4565b9150509250929050565b60008060006060848603121561222957612228612c56565b5b6000612237868287016120b4565b9350506020612248868287016120b4565b92505060406122598682870161218e565b9150509250925092565b6000806000806080858703121561227d5761227c612c56565b5b600061228b878288016120b4565b945050602061229c878288016120b4565b93505060406122ad8782880161218e565b925050606085013567ffffffffffffffff8111156122ce576122cd612c51565b5b6122da8782880161211d565b91505092959194509250565b600080604083850312156122fd576122fc612c56565b5b600061230b858286016120b4565b925050602061231c858286016120c9565b9150509250929050565b6000806040838503121561233d5761233c612c56565b5b600061234b858286016120b4565b925050602061235c8582860161218e565b9150509250929050565b60006020828403121561237c5761237b612c56565b5b600061238a848285016120de565b91505092915050565b6000602082840312156123a9576123a8612c56565b5b60006123b7848285016120f3565b91505092915050565b6000602082840312156123d6576123d5612c56565b5b60006123e484828501612108565b91505092915050565b60006020828403121561240357612402612c56565b5b600082013567ffffffffffffffff81111561242157612420612c51565b5b61242d8482850161214b565b91505092915050565b6000806040838503121561244d5761244c612c56565b5b600061245b85828601612179565b925050602061246c858286016120b4565b9150509250929050565b60006020828403121561248c5761248b612c56565b5b600061249a8482850161218e565b91505092915050565b600080604083850312156124ba576124b9612c56565b5b60006124c88582860161218e565b92505060206124d98582860161218e565b9150509250929050565b6124ec81612a2e565b82525050565b6124fb81612a40565b82525050565b600061250c8261289e565b61251681856128b4565b9350612526818560208601612af5565b61252f81612c5b565b840191505092915050565b61254381612ab0565b82525050565b6000612554826128a9565b61255e81856128c5565b935061256e818560208601612af5565b61257781612c5b565b840191505092915050565b600061258d826128a9565b61259781856128d6565b93506125a7818560208601612af5565b80840191505092915050565b600081546125c081612b28565b6125ca81866128d6565b945060018216600081146125e557600181146125f657612629565b60ff19831686528186019350612629565b6125ff85612889565b60005b8381101561262157815481890152600182019150602081019050612602565b838801955050505b50505092915050565b600061263f6005836128d6565b915061264a82612c6c565b600582019050919050565b60006126626013836128c5565b915061266d82612c95565b602082019050919050565b61268181612aa6565b82525050565b600061269382856125b3565b915061269f8284612582565b91506126aa82612632565b91508190509392505050565b60006020820190506126cb60008301846124e3565b92915050565b60006040820190506126e660008301856124e3565b6126f360208301846124e3565b9392505050565b600060808201905061270f60008301876124e3565b61271c60208301866124e3565b6127296040830185612678565b818103606083015261273b8184612501565b905095945050505050565b600060408201905061275b60008301856124e3565b6127686020830184612678565b9392505050565b600060208201905061278460008301846124f2565b92915050565b600060208201905061279f600083018461253a565b92915050565b600060208201905081810360008301526127bf8184612549565b905092915050565b600060208201905081810360008301526127e081612655565b9050919050565b60006020820190506127fc6000830184612678565b92915050565b600061280c61281d565b90506128188282612b5a565b919050565b6000604051905090565b600067ffffffffffffffff82111561284257612841612c18565b5b61284b82612c5b565b9050602081019050919050565b600067ffffffffffffffff82111561287357612872612c18565b5b61287c82612c5b565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006128ec82612a78565b91506128f783612a78565b92508261ffff0382111561290e5761290d612b8b565b5b828201905092915050565b600061292482612aa6565b915061292f83612aa6565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561296457612963612b8b565b5b828201905092915050565b600061297a82612aa6565b915061298583612aa6565b92508261299557612994612bba565b5b828204905092915050565b60006129ab82612aa6565b91506129b683612aa6565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156129ef576129ee612b8b565b5b828202905092915050565b6000612a0582612aa6565b9150612a1083612aa6565b925082821015612a2357612a22612b8b565b5b828203905092915050565b6000612a3982612a86565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000612abb82612ac2565b9050919050565b6000612acd82612ad4565b9050919050565b6000612adf82612a86565b9050919050565b82818337600083830152505050565b60005b83811015612b13578082015181840152602081019050612af8565b83811115612b22576000848401525b50505050565b60006002820490506001821680612b4057607f821691505b60208210811415612b5457612b53612be9565b5b50919050565b612b6382612c5b565b810181811067ffffffffffffffff82111715612b8257612b81612c18565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f45786365656473206d617820737570706c792e00000000000000000000000000600082015250565b612cc781612a2e565b8114612cd257600080fd5b50565b612cde81612a40565b8114612ce957600080fd5b50565b612cf581612a4c565b8114612d0057600080fd5b50565b612d0c81612a78565b8114612d1757600080fd5b50565b612d2381612aa6565b8114612d2e57600080fd5b5056fea2646970667358221220572c2a1d00363963abf87909fa8afe7c5f9836bd397d359d2b02e52d574754ca64736f6c63430008070033697066733a2f2f516d6372576a6862533258356871797a78465a354470684561746d6637335165474b7565554b744877786750524e2f
Deployed Bytecode
0x60806040526004361061014b5760003560e01c806370a08231116100b6578063b88d4fde1161006f578063b88d4fde1461045d578063bad0ba6f14610479578063c87b56dd146104a2578063d5abeb01146104df578063e985e9c51461050a578063f968adbe146105475761014b565b806370a082311461035c57806395d89b41146103995780639b642de1146103c4578063a035b1fe146103ed578063a0712d6814610418578063a22cb465146104345761014b565b806329ee566c1161010857806329ee566c146102585780632a55205a146102835780633ccfd60b146102c157806341f43434146102d857806342842e0e146103035780636352211e1461031f5761014b565b806301ffc9a71461015057806306fdde031461018d578063081812fc146101b8578063095ea7b3146101f557806318160ddd1461021157806323b872dd1461023c575b600080fd5b34801561015c57600080fd5b5061017760048036038101906101729190612393565b610572565b604051610184919061276f565b60405180910390f35b34801561019957600080fd5b506101a2610604565b6040516101af91906127a5565b60405180910390f35b3480156101c457600080fd5b506101df60048036038101906101da9190612476565b610696565b6040516101ec91906126b6565b60405180910390f35b61020f600480360381019061020a9190612326565b610715565b005b34801561021d57600080fd5b5061022661082e565b60405161023391906127e7565b60405180910390f35b61025660048036038101906102519190612210565b610845565b005b34801561026457600080fd5b5061026d6109a5565b60405161027a91906127e7565b60405180910390f35b34801561028f57600080fd5b506102aa60048036038101906102a591906124a3565b6109ab565b6040516102b8929190612746565b60405180910390f35b3480156102cd57600080fd5b506102d66109fd565b005b3480156102e457600080fd5b506102ed610aa0565b6040516102fa919061278a565b60405180910390f35b61031d60048036038101906103189190612210565b610ab2565b005b34801561032b57600080fd5b5061034660048036038101906103419190612476565b610c12565b60405161035391906126b6565b60405180910390f35b34801561036857600080fd5b50610383600480360381019061037e91906121a3565b610c24565b60405161039091906127e7565b60405180910390f35b3480156103a557600080fd5b506103ae610cdd565b6040516103bb91906127a5565b60405180910390f35b3480156103d057600080fd5b506103eb60048036038101906103e691906123ed565b610d6f565b005b3480156103f957600080fd5b50610402610de3565b60405161040f91906127e7565b60405180910390f35b610432600480360381019061042d9190612476565b610de9565b005b34801561044057600080fd5b5061045b600480360381019061045691906122e6565b610e25565b005b61047760048036038101906104729190612263565b610f3e565b005b34801561048557600080fd5b506104a0600480360381019061049b9190612436565b6110a1565b005b3480156104ae57600080fd5b506104c960048036038101906104c49190612476565b61116e565b6040516104d691906127a5565b60405180910390f35b3480156104eb57600080fd5b506104f46111a2565b60405161050191906127e7565b60405180910390f35b34801561051657600080fd5b50610531600480360381019061052c91906121d0565b6111a8565b60405161053e919061276f565b60405180910390f35b34801561055357600080fd5b5061055c61123c565b60405161056991906127e7565b60405180910390f35b60006301ffc9a760e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806105cd57506380ac58cd60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806105fd5750635b5e139f60e01b827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b9050919050565b60606002805461061390612b28565b80601f016020809104026020016040519081016040528092919081815260200182805461063f90612b28565b801561068c5780601f106106615761010080835404028352916020019161068c565b820191906000526020600020905b81548152906001019060200180831161066f57829003601f168201915b5050505050905090565b60006106a182611242565b6106d7576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111561081f576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b815260040161078d9291906126d1565b60206040518083038186803b1580156107a557600080fd5b505afa1580156107b9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107dd9190612366565b61081e57806040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161081591906126b6565b60405180910390fd5b5b61082983836112a1565b505050565b60006108386113e5565b6001546000540303905090565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610993573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156108b8576108b38484846113ea565b61099f565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b81526004016109019291906126d1565b60206040518083038186803b15801561091957600080fd5b505afa15801561092d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109519190612366565b61099257336040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161098991906126b6565b60405180910390fd5b5b61099e8484846113ea565b5b50505050565b600d5481565b60008060006103e8600d54856109c191906129a0565b6109cb919061296f565b9050601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168192509250509250929050565b3373ffffffffffffffffffffffffffffffffffffffff16601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610a5757600080fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610a9d573d6000803e3d6000fd5b50565b6daaeb6d7670e522a718067333cd4e81565b8260006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610c00573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610b2557610b2084848461170f565b610c0c565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610b6e9291906126d1565b60206040518083038186803b158015610b8657600080fd5b505afa158015610b9a573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bbe9190612366565b610bff57336040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610bf691906126b6565b60405180910390fd5b5b610c0b84848461170f565b5b50505050565b6000610c1d8261172f565b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c8c576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b67ffffffffffffffff600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054169050919050565b606060038054610cec90612b28565b80601f0160208091040260200160405190810160405280929190818152602001828054610d1890612b28565b8015610d655780601f10610d3a57610100808354040283529160200191610d65565b820191906000526020600020905b815481529060010190602001808311610d4857829003601f168201915b5050505050905090565b3373ffffffffffffffffffffffffffffffffffffffff16601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610dc957600080fd5b80600f9080519060200190610ddf929190611f8d565b5050565b600c5481565b600a5481610df561082e565b610dff9190612919565b1115610e0a57600080fd5b600b54811115610e1957600080fd5b610e22816117fd565b50565b8160006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b1115610f2f576daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430836040518363ffffffff1660e01b8152600401610e9d9291906126d1565b60206040518083038186803b158015610eb557600080fd5b505afa158015610ec9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610eed9190612366565b610f2e57806040517fede71dcc000000000000000000000000000000000000000000000000000000008152600401610f2591906126b6565b60405180910390fd5b5b610f3983836118f3565b505050565b8360006daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff163b111561108d573373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610fb257610fad858585856119fe565b61109a565b6daaeb6d7670e522a718067333cd4e73ffffffffffffffffffffffffffffffffffffffff1663c617113430336040518363ffffffff1660e01b8152600401610ffb9291906126d1565b60206040518083038186803b15801561101357600080fd5b505afa158015611027573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061104b9190612366565b61108c57336040517fede71dcc00000000000000000000000000000000000000000000000000000000815260040161108391906126b6565b60405180910390fd5b5b611099858585856119fe565b5b5050505050565b3373ffffffffffffffffffffffffffffffffffffffff16601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146110fb57600080fd5b600061110561082e565b9050600a54838261111691906128e1565b61ffff16111561115b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611152906127c7565b60405180910390fd5b611169828461ffff16611a71565b505050565b6060600f61117b83611a8f565b60405160200161118c929190612687565b6040516020818303038152906040529050919050565b600a5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600b5481565b60008161124d6113e5565b1115801561125c575060005482105b801561129a575060007c0100000000000000000000000000000000000000000000000000000000600460008581526020019081526020016000205416145b9050919050565b60006112ac82610c12565b90508073ffffffffffffffffffffffffffffffffffffffff166112cd611ae8565b73ffffffffffffffffffffffffffffffffffffffff1614611330576112f9816112f4611ae8565b6111a8565b61132f576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b826006600084815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b600090565b60006113f58261172f565b90508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461145c576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008061146884611af0565b9150915061147e8187611479611ae8565b611b17565b6114ca576114938661148e611ae8565b6111a8565b6114c9576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415611531576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61153e8686866001611b5b565b801561154957600082555b600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081546001900391905081905550600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000815460010191905081905550611617856115f3888887611b61565b7c020000000000000000000000000000000000000000000000000000000017611b89565b600460008681526020019081526020016000208190555060007c02000000000000000000000000000000000000000000000000000000008416141561169f57600060018501905060006004600083815260200190815260200160002054141561169d57600054811461169c578360046000838152602001908152602001600020819055505b5b505b838573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46117078686866001611bb4565b505050505050565b61172a83838360405180602001604052806000815250610f3e565b505050565b6000808290508061173e6113e5565b116117c6576000548110156117c55760006004600083815260200190815260200160002054905060007c0100000000000000000000000000000000000000000000000000000000821614156117c3575b60008114156117b957600460008360019003935083815260200190815260200160002054905061178e565b80925050506117f8565b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b3273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461183557600080fd5b60003414156118cb576000600c61184a61082e565b600a5461185791906129fa565b611861919061296f565b905080600160086000438152602001908152602001600020546118849190612919565b111561188f57600080fd5b60016008600043815260200190815260200160002060008282546118b39190612919565b925050819055506118c5336001611a71565b506118f0565b600c54816118d991906129a0565b3410156118e557600080fd5b6118ef3382611a71565b5b50565b8060076000611900611ae8565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166119ad611ae8565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516119f2919061276f565b60405180910390a35050565b611a09848484610845565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611a6b57611a3484848484611bba565b611a6a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b611a8b828260405180602001604052806000815250611d1a565b5050565b606060a060405101806040526020810391506000825281835b600115611ad357600184039350600a81066030018453600a8104905080611ace57611ad3565b611aa8565b50828103602084039350808452505050919050565b600033905090565b60008060006006600085815260200190815260200160002090508092508254915050915091565b600073ffffffffffffffffffffffffffffffffffffffff8316925073ffffffffffffffffffffffffffffffffffffffff821691508382148383141790509392505050565b50505050565b60008060e883901c905060e8611b78868684611db7565b62ffffff16901b9150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff83169250814260a01b178317905092915050565b50505050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611be0611ae8565b8786866040518563ffffffff1660e01b8152600401611c0294939291906126fa565b602060405180830381600087803b158015611c1c57600080fd5b505af1925050508015611c4d57506040513d601f19601f82011682018060405250810190611c4a91906123c0565b60015b611cc7573d8060008114611c7d576040519150601f19603f3d011682016040523d82523d6000602084013e611c82565b606091505b50600081511415611cbf576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b611d248383611dc0565b60008373ffffffffffffffffffffffffffffffffffffffff163b14611db257600080549050600083820390505b611d646000868380600101945086611bba565b611d9a576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b818110611d51578160005414611daf57600080fd5b50505b505050565b60009392505050565b6000805490506000821415611e01576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611e0e6000848385611b5b565b600160406001901b178202600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282540192505081905550611e8583611e766000866000611b61565b611e7f85611f7d565b17611b89565b6004600083815260200190815260200160002081905550600080838301905073ffffffffffffffffffffffffffffffffffffffff85169150828260007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600183015b818114611f2657808360007fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef600080a4600181019050611eeb565b506000821415611f62576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b806000819055505050611f786000848385611bb4565b505050565b60006001821460e11b9050919050565b828054611f9990612b28565b90600052602060002090601f016020900481019282611fbb5760008555612002565b82601f10611fd457805160ff1916838001178555612002565b82800160010185558215612002579182015b82811115612001578251825591602001919060010190611fe6565b5b50905061200f9190612013565b5090565b5b8082111561202c576000816000905550600101612014565b5090565b600061204361203e84612827565b612802565b90508281526020810184848401111561205f5761205e612c4c565b5b61206a848285612ae6565b509392505050565b600061208561208084612858565b612802565b9050828152602081018484840111156120a1576120a0612c4c565b5b6120ac848285612ae6565b509392505050565b6000813590506120c381612cbe565b92915050565b6000813590506120d881612cd5565b92915050565b6000815190506120ed81612cd5565b92915050565b60008135905061210281612cec565b92915050565b60008151905061211781612cec565b92915050565b600082601f83011261213257612131612c47565b5b8135612142848260208601612030565b91505092915050565b600082601f8301126121605761215f612c47565b5b8135612170848260208601612072565b91505092915050565b60008135905061218881612d03565b92915050565b60008135905061219d81612d1a565b92915050565b6000602082840312156121b9576121b8612c56565b5b60006121c7848285016120b4565b91505092915050565b600080604083850312156121e7576121e6612c56565b5b60006121f5858286016120b4565b9250506020612206858286016120b4565b9150509250929050565b60008060006060848603121561222957612228612c56565b5b6000612237868287016120b4565b9350506020612248868287016120b4565b92505060406122598682870161218e565b9150509250925092565b6000806000806080858703121561227d5761227c612c56565b5b600061228b878288016120b4565b945050602061229c878288016120b4565b93505060406122ad8782880161218e565b925050606085013567ffffffffffffffff8111156122ce576122cd612c51565b5b6122da8782880161211d565b91505092959194509250565b600080604083850312156122fd576122fc612c56565b5b600061230b858286016120b4565b925050602061231c858286016120c9565b9150509250929050565b6000806040838503121561233d5761233c612c56565b5b600061234b858286016120b4565b925050602061235c8582860161218e565b9150509250929050565b60006020828403121561237c5761237b612c56565b5b600061238a848285016120de565b91505092915050565b6000602082840312156123a9576123a8612c56565b5b60006123b7848285016120f3565b91505092915050565b6000602082840312156123d6576123d5612c56565b5b60006123e484828501612108565b91505092915050565b60006020828403121561240357612402612c56565b5b600082013567ffffffffffffffff81111561242157612420612c51565b5b61242d8482850161214b565b91505092915050565b6000806040838503121561244d5761244c612c56565b5b600061245b85828601612179565b925050602061246c858286016120b4565b9150509250929050565b60006020828403121561248c5761248b612c56565b5b600061249a8482850161218e565b91505092915050565b600080604083850312156124ba576124b9612c56565b5b60006124c88582860161218e565b92505060206124d98582860161218e565b9150509250929050565b6124ec81612a2e565b82525050565b6124fb81612a40565b82525050565b600061250c8261289e565b61251681856128b4565b9350612526818560208601612af5565b61252f81612c5b565b840191505092915050565b61254381612ab0565b82525050565b6000612554826128a9565b61255e81856128c5565b935061256e818560208601612af5565b61257781612c5b565b840191505092915050565b600061258d826128a9565b61259781856128d6565b93506125a7818560208601612af5565b80840191505092915050565b600081546125c081612b28565b6125ca81866128d6565b945060018216600081146125e557600181146125f657612629565b60ff19831686528186019350612629565b6125ff85612889565b60005b8381101561262157815481890152600182019150602081019050612602565b838801955050505b50505092915050565b600061263f6005836128d6565b915061264a82612c6c565b600582019050919050565b60006126626013836128c5565b915061266d82612c95565b602082019050919050565b61268181612aa6565b82525050565b600061269382856125b3565b915061269f8284612582565b91506126aa82612632565b91508190509392505050565b60006020820190506126cb60008301846124e3565b92915050565b60006040820190506126e660008301856124e3565b6126f360208301846124e3565b9392505050565b600060808201905061270f60008301876124e3565b61271c60208301866124e3565b6127296040830185612678565b818103606083015261273b8184612501565b905095945050505050565b600060408201905061275b60008301856124e3565b6127686020830184612678565b9392505050565b600060208201905061278460008301846124f2565b92915050565b600060208201905061279f600083018461253a565b92915050565b600060208201905081810360008301526127bf8184612549565b905092915050565b600060208201905081810360008301526127e081612655565b9050919050565b60006020820190506127fc6000830184612678565b92915050565b600061280c61281d565b90506128188282612b5a565b919050565b6000604051905090565b600067ffffffffffffffff82111561284257612841612c18565b5b61284b82612c5b565b9050602081019050919050565b600067ffffffffffffffff82111561287357612872612c18565b5b61287c82612c5b565b9050602081019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006128ec82612a78565b91506128f783612a78565b92508261ffff0382111561290e5761290d612b8b565b5b828201905092915050565b600061292482612aa6565b915061292f83612aa6565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561296457612963612b8b565b5b828201905092915050565b600061297a82612aa6565b915061298583612aa6565b92508261299557612994612bba565b5b828204905092915050565b60006129ab82612aa6565b91506129b683612aa6565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156129ef576129ee612b8b565b5b828202905092915050565b6000612a0582612aa6565b9150612a1083612aa6565b925082821015612a2357612a22612b8b565b5b828203905092915050565b6000612a3982612a86565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600061ffff82169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000612abb82612ac2565b9050919050565b6000612acd82612ad4565b9050919050565b6000612adf82612a86565b9050919050565b82818337600083830152505050565b60005b83811015612b13578082015181840152602081019050612af8565b83811115612b22576000848401525b50505050565b60006002820490506001821680612b4057607f821691505b60208210811415612b5457612b53612be9565b5b50919050565b612b6382612c5b565b810181811067ffffffffffffffff82111715612b8257612b81612c18565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f45786365656473206d617820737570706c792e00000000000000000000000000600082015250565b612cc781612a2e565b8114612cd257600080fd5b50565b612cde81612a40565b8114612ce957600080fd5b50565b612cf581612a4c565b8114612d0057600080fd5b50565b612d0c81612a78565b8114612d1757600080fd5b50565b612d2381612aa6565b8114612d2e57600080fd5b5056fea2646970667358221220572c2a1d00363963abf87909fa8afe7c5f9836bd397d359d2b02e52d574754ca64736f6c63430008070033
Deployed Bytecode Sourcemap
57329:3083:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18929:639;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19831:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26322:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59625:165;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15582:323;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59798:171;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57598:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58926:218;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;59324:109;;;;;;;;;;;;;:::i;:::-;;54698:143;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59977:179;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21224:152;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16766:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20007:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57907:84;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57555:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57653:170;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59441:176;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;60164:245;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58656:262;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;59152:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57475:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27271:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57514:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18929:639;19014:4;19353:10;19338:25;;:11;:25;;;;:102;;;;19430:10;19415:25;;:11;:25;;;;19338:102;:179;;;;19507:10;19492:25;;:11;:25;;;;19338:179;19318:199;;18929:639;;;:::o;19831:100::-;19885:13;19918:5;19911:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19831:100;:::o;26322:218::-;26398:7;26423:16;26431:7;26423;:16::i;:::-;26418:64;;26448:34;;;;;;;;;;;;;;26418:64;26502:15;:24;26518:7;26502:24;;;;;;;;;;;:30;;;;;;;;;;;;26495:37;;26322:218;;;:::o;59625:165::-;59729:8;56740:1;54798:42;56692:45;;;:49;56688:225;;;54798:42;56763;;;56814:4;56821:8;56763:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;56758:144;;56877:8;56858:28;;;;;;;;;;;:::i;:::-;;;;;;;;56758:144;56688:225;59750:32:::1;59764:8;59774:7;59750:13;:32::i;:::-;59625:165:::0;;;:::o;15582:323::-;15643:7;15871:15;:13;:15::i;:::-;15856:12;;15840:13;;:28;:46;15833:53;;15582:323;:::o;59798:171::-;59907:4;55994:1;54798:42;55946:45;;;:49;55942:539;;;56235:10;56227:18;;:4;:18;;;56223:85;;;59924:37:::1;59943:4;59949:2;59953:7;59924:18;:37::i;:::-;56286:7:::0;;56223:85;54798:42;56327;;;56378:4;56385:10;56327:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;56322:148;;56443:10;56424:30;;;;;;;;;;;:::i;:::-;;;;;;;;56322:148;55942:539;59924:37:::1;59943:4;59949:2;59953:7;59924:18;:37::i;:::-;59798:171:::0;;;;;:::o;57598:27::-;;;;:::o;58926:218::-;59014:7;59023;59043:21;59092:4;59081:7;;59068:10;:20;;;;:::i;:::-;59067:29;;;;:::i;:::-;59043:53;;59115:5;;;;;;;;;;;59122:13;59107:29;;;;;58926:218;;;;;:::o;59324:109::-;58066:10;58057:19;;:5;;;;;;;;;;;:19;;;58049:28;;;;;;59382:10:::1;59374:28;;:51;59403:21;59374:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;59324:109::o:0;54698:143::-;54798:42;54698:143;:::o;59977:179::-;60090:4;55994:1;54798:42;55946:45;;;:49;55942:539;;;56235:10;56227:18;;:4;:18;;;56223:85;;;60107:41:::1;60130:4;60136:2;60140:7;60107:22;:41::i;:::-;56286:7:::0;;56223:85;54798:42;56327;;;56378:4;56385:10;56327:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;56322:148;;56443:10;56424:30;;;;;;;;;;;:::i;:::-;;;;;;;;56322:148;55942:539;60107:41:::1;60130:4;60136:2;60140:7;60107:22;:41::i;:::-;59977:179:::0;;;;;:::o;21224:152::-;21296:7;21339:27;21358:7;21339:18;:27::i;:::-;21316:52;;21224:152;;;:::o;16766:233::-;16838:7;16879:1;16862:19;;:5;:19;;;16858:60;;;16890:28;;;;;;;;;;;;;;16858:60;10925:13;16936:18;:25;16955:5;16936:25;;;;;;;;;;;;;;;;:55;16929:62;;16766:233;;;:::o;20007:104::-;20063:13;20096:7;20089:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20007:104;:::o;57907:84::-;58066:10;58057:19;;:5;;;;;;;;;;;:19;;;58049:28;;;;;;57979:4:::1;57973:3;:10;;;;;;;;;;;;:::i;:::-;;57907:84:::0;:::o;57555:34::-;;;;:::o;57653:170::-;57743:9;;57733:6;57717:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:35;;57709:44;;;;;;57782:8;;57772:6;:18;;57764:27;;;;;;57802:13;57808:6;57802:5;:13::i;:::-;57653:170;:::o;59441:176::-;59545:8;56740:1;54798:42;56692:45;;;:49;56688:225;;;54798:42;56763;;;56814:4;56821:8;56763:67;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;56758:144;;56877:8;56858:28;;;;;;;;;;;:::i;:::-;;;;;;;;56758:144;56688:225;59566:43:::1;59590:8;59600;59566:23;:43::i;:::-;59441:176:::0;;;:::o;60164:245::-;60332:4;55994:1;54798:42;55946:45;;;:49;55942:539;;;56235:10;56227:18;;:4;:18;;;56223:85;;;60354:47:::1;60377:4;60383:2;60387:7;60396:4;60354:22;:47::i;:::-;56286:7:::0;;56223:85;54798:42;56327;;;56378:4;56385:10;56327:69;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;56322:148;;56443:10;56424:30;;;;;;;;;;;:::i;:::-;;;;;;;;56322:148;55942:539;60354:47:::1;60377:4;60383:2;60387:7;60396:4;60354:22;:47::i;:::-;60164:245:::0;;;;;;:::o;58656:262::-;58066:10;58057:19;;:5;;;;;;;;;;;:19;;;58049:28;;;;;;58742:18:::1;58770:13;:11;:13::i;:::-;58742:42;;58832:9;;58817:11;58803;:25;;;;:::i;:::-;:38;;;;58795:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;58876:34;58886:9;58898:11;58876:34;;:9;:34::i;:::-;58731:187;58656:262:::0;;:::o;59152:164::-;59217:13;59274:3;59279:18;59289:7;59279:9;:18::i;:::-;59257:50;;;;;;;;;:::i;:::-;;;;;;;;;;;;;59243:65;;59152:164;;;:::o;57475:30::-;;;;:::o;27271:164::-;27368:4;27392:18;:25;27411:5;27392:25;;;;;;;;;;;;;;;:35;27418:8;27392:35;;;;;;;;;;;;;;;;;;;;;;;;;27385:42;;27271:164;;;;:::o;57514:28::-;;;;:::o;27693:282::-;27758:4;27814:7;27795:15;:13;:15::i;:::-;:26;;:66;;;;;27848:13;;27838:7;:23;27795:66;:153;;;;;27947:1;11701:8;27899:17;:26;27917:7;27899:26;;;;;;;;;;;;:44;:49;27795:153;27775:173;;27693:282;;;:::o;25755:408::-;25844:13;25860:16;25868:7;25860;:16::i;:::-;25844:32;;25916:5;25893:28;;:19;:17;:19::i;:::-;:28;;;25889:175;;25941:44;25958:5;25965:19;:17;:19::i;:::-;25941:16;:44::i;:::-;25936:128;;26013:35;;;;;;;;;;;;;;25936:128;25889:175;26109:2;26076:15;:24;26092:7;26076:24;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;26147:7;26143:2;26127:28;;26136:5;26127:28;;;;;;;;;;;;25833:330;25755:408;;:::o;15098:92::-;15154:7;15098:92;:::o;29961:2825::-;30103:27;30133;30152:7;30133:18;:27::i;:::-;30103:57;;30218:4;30177:45;;30193:19;30177:45;;;30173:86;;30231:28;;;;;;;;;;;;;;30173:86;30273:27;30302:23;30329:35;30356:7;30329:26;:35::i;:::-;30272:92;;;;30464:68;30489:15;30506:4;30512:19;:17;:19::i;:::-;30464:24;:68::i;:::-;30459:180;;30552:43;30569:4;30575:19;:17;:19::i;:::-;30552:16;:43::i;:::-;30547:92;;30604:35;;;;;;;;;;;;;;30547:92;30459:180;30670:1;30656:16;;:2;:16;;;30652:52;;;30681:23;;;;;;;;;;;;;;30652:52;30717:43;30739:4;30745:2;30749:7;30758:1;30717:21;:43::i;:::-;30853:15;30850:160;;;30993:1;30972:19;30965:30;30850:160;31390:18;:24;31409:4;31390:24;;;;;;;;;;;;;;;;31388:26;;;;;;;;;;;;31459:18;:22;31478:2;31459:22;;;;;;;;;;;;;;;;31457:24;;;;;;;;;;;31781:146;31818:2;31867:45;31882:4;31888:2;31892:19;31867:14;:45::i;:::-;11981:8;31839:73;31781:18;:146::i;:::-;31752:17;:26;31770:7;31752:26;;;;;;;;;;;:175;;;;32098:1;11981:8;32047:19;:47;:52;32043:627;;;32120:19;32152:1;32142:7;:11;32120:33;;32309:1;32275:17;:30;32293:11;32275:30;;;;;;;;;;;;:35;32271:384;;;32413:13;;32398:11;:28;32394:242;;32593:19;32560:17;:30;32578:11;32560:30;;;;;;;;;;;:52;;;;32394:242;32271:384;32101:569;32043:627;32717:7;32713:2;32698:27;;32707:4;32698:27;;;;;;;;;;;;32736:42;32757:4;32763:2;32767:7;32776:1;32736:20;:42::i;:::-;30092:2694;;;29961:2825;;;:::o;32882:193::-;33028:39;33045:4;33051:2;33055:7;33028:39;;;;;;;;;;;;:16;:39::i;:::-;32882:193;;;:::o;22379:1275::-;22446:7;22466:12;22481:7;22466:22;;22549:4;22530:15;:13;:15::i;:::-;:23;22526:1061;;22583:13;;22576:4;:20;22572:1015;;;22621:14;22638:17;:23;22656:4;22638:23;;;;;;;;;;;;22621:40;;22755:1;11701:8;22727:6;:24;:29;22723:845;;;23392:113;23409:1;23399:6;:11;23392:113;;;23452:17;:25;23470:6;;;;;;;23452:25;;;;;;;;;;;;23443:34;;23392:113;;;23538:6;23531:13;;;;;;22723:845;22598:989;22572:1015;22526:1061;23615:31;;;;;;;;;;;;;;22379:1275;;;;:::o;58198:450::-;58271:9;58257:23;;:10;:23;;;58249:32;;;;;;58309:1;58296:9;:14;58292:262;;;58327:15;58375:2;58358:13;:11;:13::i;:::-;58346:9;;:25;;;;:::i;:::-;58345:32;;;;:::i;:::-;58327:50;;58431:7;58426:1;58400:9;:23;58410:12;58400:23;;;;;;;;;;;;:27;;;;:::i;:::-;:38;;58392:47;;;;;;58481:1;58454:9;:23;58464:12;58454:23;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;58497:24;58507:10;58519:1;58497:9;:24::i;:::-;58536:7;;;58292:262;58594:5;;58585:6;:14;;;;:::i;:::-;58572:9;:27;;58564:36;;;;;;58611:29;58621:10;58633:6;58611:9;:29::i;:::-;58198:450;;:::o;26880:234::-;27027:8;26975:18;:39;26994:19;:17;:19::i;:::-;26975:39;;;;;;;;;;;;;;;:49;27015:8;26975:49;;;;;;;;;;;;;;;;:60;;;;;;;;;;;;;;;;;;27087:8;27051:55;;27066:19;:17;:19::i;:::-;27051:55;;;27097:8;27051:55;;;;;;:::i;:::-;;;;;;;;26880:234;;:::o;33673:407::-;33848:31;33861:4;33867:2;33871:7;33848:12;:31::i;:::-;33912:1;33894:2;:14;;;:19;33890:183;;33933:56;33964:4;33970:2;33974:7;33983:5;33933:30;:56::i;:::-;33928:145;;34017:40;;;;;;;;;;;;;;33928:145;33890:183;33673:407;;;;:::o;43833:112::-;43910:27;43920:2;43924:8;43910:27;;;;;;;;;;;;:9;:27::i;:::-;43833:112;;:::o;50208:1745::-;50273:17;50707:4;50700;50694:11;50690:22;50799:1;50793:4;50786:15;50874:4;50871:1;50867:12;50860:19;;50956:1;50951:3;50944:14;51060:3;51299:5;51281:428;51307:1;51281:428;;;51347:1;51342:3;51338:11;51331:18;;51518:2;51512:4;51508:13;51504:2;51500:22;51495:3;51487:36;51612:2;51606:4;51602:13;51594:21;;51679:4;51669:25;;51687:5;;51669:25;51281:428;;;51285:21;51748:3;51743;51739:13;51863:4;51858:3;51854:14;51847:21;;51928:6;51923:3;51916:19;50312:1634;;;50208:1745;;;:::o;50001:105::-;50061:7;50088:10;50081:17;;50001:105;:::o;28856:485::-;28958:27;28987:23;29028:38;29069:15;:24;29085:7;29069:24;;;;;;;;;;;29028:65;;29246:18;29223:41;;29303:19;29297:26;29278:45;;29208:126;28856:485;;;:::o;28084:659::-;28233:11;28398:16;28391:5;28387:28;28378:37;;28558:16;28547:9;28543:32;28530:45;;28708:15;28697:9;28694:30;28686:5;28675:9;28672:20;28669:56;28659:66;;28084:659;;;;;:::o;34742:159::-;;;;;:::o;49310:311::-;49445:7;49465:16;12105:3;49491:19;:41;;49465:68;;12105:3;49559:31;49570:4;49576:2;49580:9;49559:10;:31::i;:::-;49551:40;;:62;;49544:69;;;49310:311;;;;;:::o;24202:450::-;24282:14;24450:16;24443:5;24439:28;24430:37;;24627:5;24613:11;24588:23;24584:41;24581:52;24574:5;24571:63;24561:73;;24202:450;;;;:::o;35566:158::-;;;;;:::o;36164:716::-;36327:4;36373:2;36348:45;;;36394:19;:17;:19::i;:::-;36415:4;36421:7;36430:5;36348:88;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;36344:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36648:1;36631:6;:13;:18;36627:235;;;36677:40;;;;;;;;;;;;;;36627:235;36820:6;36814:13;36805:6;36801:2;36797:15;36790:38;36344:529;36517:54;;;36507:64;;;:6;:64;;;;36500:71;;;36164:716;;;;;;:::o;43060:689::-;43191:19;43197:2;43201:8;43191:5;:19::i;:::-;43270:1;43252:2;:14;;;:19;43248:483;;43292:11;43306:13;;43292:27;;43338:13;43360:8;43354:3;:14;43338:30;;43387:233;43418:62;43457:1;43461:2;43465:7;;;;;;43474:5;43418:30;:62::i;:::-;43413:167;;43516:40;;;;;;;;;;;;;;43413:167;43615:3;43607:5;:11;43387:233;;43702:3;43685:13;;:20;43681:34;;43707:8;;;43681:34;43273:458;;43248:483;43060:689;;;:::o;49011:147::-;49148:6;49011:147;;;;;:::o;37342:2966::-;37415:20;37438:13;;37415:36;;37478:1;37466:8;:13;37462:44;;;37488:18;;;;;;;;;;;;;;37462:44;37519:61;37549:1;37553:2;37557:12;37571:8;37519:21;:61::i;:::-;38063:1;11063:2;38033:1;:26;;38032:32;38020:8;:45;37994:18;:22;38013:2;37994:22;;;;;;;;;;;;;;;;:71;;;;;;;;;;;38342:139;38379:2;38433:33;38456:1;38460:2;38464:1;38433:14;:33::i;:::-;38400:30;38421:8;38400:20;:30::i;:::-;:66;38342:18;:139::i;:::-;38308:17;:31;38326:12;38308:31;;;;;;;;;;;:173;;;;38498:16;38529:11;38558:8;38543:12;:23;38529:37;;39079:16;39075:2;39071:25;39059:37;;39451:12;39411:8;39370:1;39308:25;39249:1;39188;39161:335;39822:1;39808:12;39804:20;39762:346;39863:3;39854:7;39851:16;39762:346;;40081:7;40071:8;40068:1;40041:25;40038:1;40035;40030:59;39916:1;39907:7;39903:15;39892:26;;39762:346;;;39766:77;40153:1;40141:8;:13;40137:45;;;40163:19;;;;;;;;;;;;;;40137:45;40215:3;40199:13;:19;;;;37768:2462;;40240:60;40269:1;40273:2;40277:12;40291:8;40240:20;:60::i;:::-;37404:2904;37342:2966;;:::o;24754:324::-;24824:14;25057:1;25047:8;25044:15;25018:24;25014:46;25004:56;;24754:324;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1179:5;1210:6;1204:13;1195:22;;1226:30;1250:5;1226:30;:::i;:::-;1125:137;;;;:::o;1268:::-;1313:5;1351:6;1338:20;1329:29;;1367:32;1393:5;1367:32;:::i;:::-;1268:137;;;;:::o;1411:141::-;1467:5;1498:6;1492:13;1483:22;;1514:32;1540:5;1514:32;:::i;:::-;1411:141;;;;:::o;1571:338::-;1626:5;1675:3;1668:4;1660:6;1656:17;1652:27;1642:122;;1683:79;;:::i;:::-;1642:122;1800:6;1787:20;1825:78;1899:3;1891:6;1884:4;1876:6;1872:17;1825:78;:::i;:::-;1816:87;;1632:277;1571:338;;;;:::o;1929:340::-;1985:5;2034:3;2027:4;2019:6;2015:17;2011:27;2001:122;;2042:79;;:::i;:::-;2001:122;2159:6;2146:20;2184:79;2259:3;2251:6;2244:4;2236:6;2232:17;2184:79;:::i;:::-;2175:88;;1991:278;1929:340;;;;:::o;2275:137::-;2320:5;2358:6;2345:20;2336:29;;2374:32;2400:5;2374:32;:::i;:::-;2275:137;;;;:::o;2418:139::-;2464:5;2502:6;2489:20;2480:29;;2518:33;2545:5;2518:33;:::i;:::-;2418:139;;;;:::o;2563:329::-;2622:6;2671:2;2659:9;2650:7;2646:23;2642:32;2639:119;;;2677:79;;:::i;:::-;2639:119;2797:1;2822:53;2867:7;2858:6;2847:9;2843:22;2822:53;:::i;:::-;2812:63;;2768:117;2563:329;;;;:::o;2898:474::-;2966:6;2974;3023:2;3011:9;3002:7;2998:23;2994:32;2991:119;;;3029:79;;:::i;:::-;2991:119;3149:1;3174:53;3219:7;3210:6;3199:9;3195:22;3174:53;:::i;:::-;3164:63;;3120:117;3276:2;3302:53;3347:7;3338:6;3327:9;3323:22;3302:53;:::i;:::-;3292:63;;3247:118;2898:474;;;;;:::o;3378:619::-;3455:6;3463;3471;3520:2;3508:9;3499:7;3495:23;3491:32;3488:119;;;3526:79;;:::i;:::-;3488:119;3646:1;3671:53;3716:7;3707:6;3696:9;3692:22;3671:53;:::i;:::-;3661:63;;3617:117;3773:2;3799:53;3844:7;3835:6;3824:9;3820:22;3799:53;:::i;:::-;3789:63;;3744:118;3901:2;3927:53;3972:7;3963:6;3952:9;3948:22;3927:53;:::i;:::-;3917:63;;3872:118;3378:619;;;;;:::o;4003:943::-;4098:6;4106;4114;4122;4171:3;4159:9;4150:7;4146:23;4142:33;4139:120;;;4178:79;;:::i;:::-;4139:120;4298:1;4323:53;4368:7;4359:6;4348:9;4344:22;4323:53;:::i;:::-;4313:63;;4269:117;4425:2;4451:53;4496:7;4487:6;4476:9;4472:22;4451:53;:::i;:::-;4441:63;;4396:118;4553:2;4579:53;4624:7;4615:6;4604:9;4600:22;4579:53;:::i;:::-;4569:63;;4524:118;4709:2;4698:9;4694:18;4681:32;4740:18;4732:6;4729:30;4726:117;;;4762:79;;:::i;:::-;4726:117;4867:62;4921:7;4912:6;4901:9;4897:22;4867:62;:::i;:::-;4857:72;;4652:287;4003:943;;;;;;;:::o;4952:468::-;5017:6;5025;5074:2;5062:9;5053:7;5049:23;5045:32;5042:119;;;5080:79;;:::i;:::-;5042:119;5200:1;5225:53;5270:7;5261:6;5250:9;5246:22;5225:53;:::i;:::-;5215:63;;5171:117;5327:2;5353:50;5395:7;5386:6;5375:9;5371:22;5353:50;:::i;:::-;5343:60;;5298:115;4952:468;;;;;:::o;5426:474::-;5494:6;5502;5551:2;5539:9;5530:7;5526:23;5522:32;5519:119;;;5557:79;;:::i;:::-;5519:119;5677:1;5702:53;5747:7;5738:6;5727:9;5723:22;5702:53;:::i;:::-;5692:63;;5648:117;5804:2;5830:53;5875:7;5866:6;5855:9;5851:22;5830:53;:::i;:::-;5820:63;;5775:118;5426:474;;;;;:::o;5906:345::-;5973:6;6022:2;6010:9;6001:7;5997:23;5993:32;5990:119;;;6028:79;;:::i;:::-;5990:119;6148:1;6173:61;6226:7;6217:6;6206:9;6202:22;6173:61;:::i;:::-;6163:71;;6119:125;5906:345;;;;:::o;6257:327::-;6315:6;6364:2;6352:9;6343:7;6339:23;6335:32;6332:119;;;6370:79;;:::i;:::-;6332:119;6490:1;6515:52;6559:7;6550:6;6539:9;6535:22;6515:52;:::i;:::-;6505:62;;6461:116;6257:327;;;;:::o;6590:349::-;6659:6;6708:2;6696:9;6687:7;6683:23;6679:32;6676:119;;;6714:79;;:::i;:::-;6676:119;6834:1;6859:63;6914:7;6905:6;6894:9;6890:22;6859:63;:::i;:::-;6849:73;;6805:127;6590:349;;;;:::o;6945:509::-;7014:6;7063:2;7051:9;7042:7;7038:23;7034:32;7031:119;;;7069:79;;:::i;:::-;7031:119;7217:1;7206:9;7202:17;7189:31;7247:18;7239:6;7236:30;7233:117;;;7269:79;;:::i;:::-;7233:117;7374:63;7429:7;7420:6;7409:9;7405:22;7374:63;:::i;:::-;7364:73;;7160:287;6945:509;;;;:::o;7460:472::-;7527:6;7535;7584:2;7572:9;7563:7;7559:23;7555:32;7552:119;;;7590:79;;:::i;:::-;7552:119;7710:1;7735:52;7779:7;7770:6;7759:9;7755:22;7735:52;:::i;:::-;7725:62;;7681:116;7836:2;7862:53;7907:7;7898:6;7887:9;7883:22;7862:53;:::i;:::-;7852:63;;7807:118;7460:472;;;;;:::o;7938:329::-;7997:6;8046:2;8034:9;8025:7;8021:23;8017:32;8014:119;;;8052:79;;:::i;:::-;8014:119;8172:1;8197:53;8242:7;8233:6;8222:9;8218:22;8197:53;:::i;:::-;8187:63;;8143:117;7938:329;;;;:::o;8273:474::-;8341:6;8349;8398:2;8386:9;8377:7;8373:23;8369:32;8366:119;;;8404:79;;:::i;:::-;8366:119;8524:1;8549:53;8594:7;8585:6;8574:9;8570:22;8549:53;:::i;:::-;8539:63;;8495:117;8651:2;8677:53;8722:7;8713:6;8702:9;8698:22;8677:53;:::i;:::-;8667:63;;8622:118;8273:474;;;;;:::o;8753:118::-;8840:24;8858:5;8840:24;:::i;:::-;8835:3;8828:37;8753:118;;:::o;8877:109::-;8958:21;8973:5;8958:21;:::i;:::-;8953:3;8946:34;8877:109;;:::o;8992:360::-;9078:3;9106:38;9138:5;9106:38;:::i;:::-;9160:70;9223:6;9218:3;9160:70;:::i;:::-;9153:77;;9239:52;9284:6;9279:3;9272:4;9265:5;9261:16;9239:52;:::i;:::-;9316:29;9338:6;9316:29;:::i;:::-;9311:3;9307:39;9300:46;;9082:270;8992:360;;;;:::o;9358:195::-;9477:69;9540:5;9477:69;:::i;:::-;9472:3;9465:82;9358:195;;:::o;9559:364::-;9647:3;9675:39;9708:5;9675:39;:::i;:::-;9730:71;9794:6;9789:3;9730:71;:::i;:::-;9723:78;;9810:52;9855:6;9850:3;9843:4;9836:5;9832:16;9810:52;:::i;:::-;9887:29;9909:6;9887:29;:::i;:::-;9882:3;9878:39;9871:46;;9651:272;9559:364;;;;:::o;9929:377::-;10035:3;10063:39;10096:5;10063:39;:::i;:::-;10118:89;10200:6;10195:3;10118:89;:::i;:::-;10111:96;;10216:52;10261:6;10256:3;10249:4;10242:5;10238:16;10216:52;:::i;:::-;10293:6;10288:3;10284:16;10277:23;;10039:267;9929:377;;;;:::o;10336:845::-;10439:3;10476:5;10470:12;10505:36;10531:9;10505:36;:::i;:::-;10557:89;10639:6;10634:3;10557:89;:::i;:::-;10550:96;;10677:1;10666:9;10662:17;10693:1;10688:137;;;;10839:1;10834:341;;;;10655:520;;10688:137;10772:4;10768:9;10757;10753:25;10748:3;10741:38;10808:6;10803:3;10799:16;10792:23;;10688:137;;10834:341;10901:38;10933:5;10901:38;:::i;:::-;10961:1;10975:154;10989:6;10986:1;10983:13;10975:154;;;11063:7;11057:14;11053:1;11048:3;11044:11;11037:35;11113:1;11104:7;11100:15;11089:26;;11011:4;11008:1;11004:12;10999:17;;10975:154;;;11158:6;11153:3;11149:16;11142:23;;10841:334;;10655:520;;10443:738;;10336:845;;;;:::o;11187:400::-;11347:3;11368:84;11450:1;11445:3;11368:84;:::i;:::-;11361:91;;11461:93;11550:3;11461:93;:::i;:::-;11579:1;11574:3;11570:11;11563:18;;11187:400;;;:::o;11593:366::-;11735:3;11756:67;11820:2;11815:3;11756:67;:::i;:::-;11749:74;;11832:93;11921:3;11832:93;:::i;:::-;11950:2;11945:3;11941:12;11934:19;;11593:366;;;:::o;11965:118::-;12052:24;12070:5;12052:24;:::i;:::-;12047:3;12040:37;11965:118;;:::o;12089:695::-;12367:3;12389:92;12477:3;12468:6;12389:92;:::i;:::-;12382:99;;12498:95;12589:3;12580:6;12498:95;:::i;:::-;12491:102;;12610:148;12754:3;12610:148;:::i;:::-;12603:155;;12775:3;12768:10;;12089:695;;;;;:::o;12790:222::-;12883:4;12921:2;12910:9;12906:18;12898:26;;12934:71;13002:1;12991:9;12987:17;12978:6;12934:71;:::i;:::-;12790:222;;;;:::o;13018:332::-;13139:4;13177:2;13166:9;13162:18;13154:26;;13190:71;13258:1;13247:9;13243:17;13234:6;13190:71;:::i;:::-;13271:72;13339:2;13328:9;13324:18;13315:6;13271:72;:::i;:::-;13018:332;;;;;:::o;13356:640::-;13551:4;13589:3;13578:9;13574:19;13566:27;;13603:71;13671:1;13660:9;13656:17;13647:6;13603:71;:::i;:::-;13684:72;13752:2;13741:9;13737:18;13728:6;13684:72;:::i;:::-;13766;13834:2;13823:9;13819:18;13810:6;13766:72;:::i;:::-;13885:9;13879:4;13875:20;13870:2;13859:9;13855:18;13848:48;13913:76;13984:4;13975:6;13913:76;:::i;:::-;13905:84;;13356:640;;;;;;;:::o;14002:332::-;14123:4;14161:2;14150:9;14146:18;14138:26;;14174:71;14242:1;14231:9;14227:17;14218:6;14174:71;:::i;:::-;14255:72;14323:2;14312:9;14308:18;14299:6;14255:72;:::i;:::-;14002:332;;;;;:::o;14340:210::-;14427:4;14465:2;14454:9;14450:18;14442:26;;14478:65;14540:1;14529:9;14525:17;14516:6;14478:65;:::i;:::-;14340:210;;;;:::o;14556:286::-;14681:4;14719:2;14708:9;14704:18;14696:26;;14732:103;14832:1;14821:9;14817:17;14808:6;14732:103;:::i;:::-;14556:286;;;;:::o;14848:313::-;14961:4;14999:2;14988:9;14984:18;14976:26;;15048:9;15042:4;15038:20;15034:1;15023:9;15019:17;15012:47;15076:78;15149:4;15140:6;15076:78;:::i;:::-;15068:86;;14848:313;;;;:::o;15167:419::-;15333:4;15371:2;15360:9;15356:18;15348:26;;15420:9;15414:4;15410:20;15406:1;15395:9;15391:17;15384:47;15448:131;15574:4;15448:131;:::i;:::-;15440:139;;15167:419;;;:::o;15592:222::-;15685:4;15723:2;15712:9;15708:18;15700:26;;15736:71;15804:1;15793:9;15789:17;15780:6;15736:71;:::i;:::-;15592:222;;;;:::o;15820:129::-;15854:6;15881:20;;:::i;:::-;15871:30;;15910:33;15938:4;15930:6;15910:33;:::i;:::-;15820:129;;;:::o;15955:75::-;15988:6;16021:2;16015:9;16005:19;;15955:75;:::o;16036:307::-;16097:4;16187:18;16179:6;16176:30;16173:56;;;16209:18;;:::i;:::-;16173:56;16247:29;16269:6;16247:29;:::i;:::-;16239:37;;16331:4;16325;16321:15;16313:23;;16036:307;;;:::o;16349:308::-;16411:4;16501:18;16493:6;16490:30;16487:56;;;16523:18;;:::i;:::-;16487:56;16561:29;16583:6;16561:29;:::i;:::-;16553:37;;16645:4;16639;16635:15;16627:23;;16349:308;;;:::o;16663:141::-;16712:4;16735:3;16727:11;;16758:3;16755:1;16748:14;16792:4;16789:1;16779:18;16771:26;;16663:141;;;:::o;16810:98::-;16861:6;16895:5;16889:12;16879:22;;16810:98;;;:::o;16914:99::-;16966:6;17000:5;16994:12;16984:22;;16914:99;;;:::o;17019:168::-;17102:11;17136:6;17131:3;17124:19;17176:4;17171:3;17167:14;17152:29;;17019:168;;;;:::o;17193:169::-;17277:11;17311:6;17306:3;17299:19;17351:4;17346:3;17342:14;17327:29;;17193:169;;;;:::o;17368:148::-;17470:11;17507:3;17492:18;;17368:148;;;;:::o;17522:242::-;17561:3;17580:19;17597:1;17580:19;:::i;:::-;17575:24;;17613:19;17630:1;17613:19;:::i;:::-;17608:24;;17706:1;17698:6;17694:14;17691:1;17688:21;17685:47;;;17712:18;;:::i;:::-;17685:47;17756:1;17753;17749:9;17742:16;;17522:242;;;;:::o;17770:305::-;17810:3;17829:20;17847:1;17829:20;:::i;:::-;17824:25;;17863:20;17881:1;17863:20;:::i;:::-;17858:25;;18017:1;17949:66;17945:74;17942:1;17939:81;17936:107;;;18023:18;;:::i;:::-;17936:107;18067:1;18064;18060:9;18053:16;;17770:305;;;;:::o;18081:185::-;18121:1;18138:20;18156:1;18138:20;:::i;:::-;18133:25;;18172:20;18190:1;18172:20;:::i;:::-;18167:25;;18211:1;18201:35;;18216:18;;:::i;:::-;18201:35;18258:1;18255;18251:9;18246:14;;18081:185;;;;:::o;18272:348::-;18312:7;18335:20;18353:1;18335:20;:::i;:::-;18330:25;;18369:20;18387:1;18369:20;:::i;:::-;18364:25;;18557:1;18489:66;18485:74;18482:1;18479:81;18474:1;18467:9;18460:17;18456:105;18453:131;;;18564:18;;:::i;:::-;18453:131;18612:1;18609;18605:9;18594:20;;18272:348;;;;:::o;18626:191::-;18666:4;18686:20;18704:1;18686:20;:::i;:::-;18681:25;;18720:20;18738:1;18720:20;:::i;:::-;18715:25;;18759:1;18756;18753:8;18750:34;;;18764:18;;:::i;:::-;18750:34;18809:1;18806;18802:9;18794:17;;18626:191;;;;:::o;18823:96::-;18860:7;18889:24;18907:5;18889:24;:::i;:::-;18878:35;;18823:96;;;:::o;18925:90::-;18959:7;19002:5;18995:13;18988:21;18977:32;;18925:90;;;:::o;19021:149::-;19057:7;19097:66;19090:5;19086:78;19075:89;;19021:149;;;:::o;19176:89::-;19212:7;19252:6;19245:5;19241:18;19230:29;;19176:89;;;:::o;19271:126::-;19308:7;19348:42;19341:5;19337:54;19326:65;;19271:126;;;:::o;19403:77::-;19440:7;19469:5;19458:16;;19403:77;;;:::o;19486:158::-;19568:9;19601:37;19632:5;19601:37;:::i;:::-;19588:50;;19486:158;;;:::o;19650:126::-;19700:9;19733:37;19764:5;19733:37;:::i;:::-;19720:50;;19650:126;;;:::o;19782:113::-;19832:9;19865:24;19883:5;19865:24;:::i;:::-;19852:37;;19782:113;;;:::o;19901:154::-;19985:6;19980:3;19975;19962:30;20047:1;20038:6;20033:3;20029:16;20022:27;19901:154;;;:::o;20061:307::-;20129:1;20139:113;20153:6;20150:1;20147:13;20139:113;;;20238:1;20233:3;20229:11;20223:18;20219:1;20214:3;20210:11;20203:39;20175:2;20172:1;20168:10;20163:15;;20139:113;;;20270:6;20267:1;20264:13;20261:101;;;20350:1;20341:6;20336:3;20332:16;20325:27;20261:101;20110:258;20061:307;;;:::o;20374:320::-;20418:6;20455:1;20449:4;20445:12;20435:22;;20502:1;20496:4;20492:12;20523:18;20513:81;;20579:4;20571:6;20567:17;20557:27;;20513:81;20641:2;20633:6;20630:14;20610:18;20607:38;20604:84;;;20660:18;;:::i;:::-;20604:84;20425:269;20374:320;;;:::o;20700:281::-;20783:27;20805:4;20783:27;:::i;:::-;20775:6;20771:40;20913:6;20901:10;20898:22;20877:18;20865:10;20862:34;20859:62;20856:88;;;20924:18;;:::i;:::-;20856:88;20964:10;20960:2;20953:22;20743:238;20700:281;;:::o;20987:180::-;21035:77;21032:1;21025:88;21132:4;21129:1;21122:15;21156:4;21153:1;21146:15;21173:180;21221:77;21218:1;21211:88;21318:4;21315:1;21308:15;21342:4;21339:1;21332:15;21359:180;21407:77;21404:1;21397:88;21504:4;21501:1;21494:15;21528:4;21525:1;21518:15;21545:180;21593:77;21590:1;21583:88;21690:4;21687:1;21680:15;21714:4;21711:1;21704:15;21731:117;21840:1;21837;21830:12;21854:117;21963:1;21960;21953:12;21977:117;22086:1;22083;22076:12;22100:117;22209:1;22206;22199:12;22223:102;22264:6;22315:2;22311:7;22306:2;22299:5;22295:14;22291:28;22281:38;;22223:102;;;:::o;22331:155::-;22471:7;22467:1;22459:6;22455:14;22448:31;22331:155;:::o;22492:169::-;22632:21;22628:1;22620:6;22616:14;22609:45;22492:169;:::o;22667:122::-;22740:24;22758:5;22740:24;:::i;:::-;22733:5;22730:35;22720:63;;22779:1;22776;22769:12;22720:63;22667:122;:::o;22795:116::-;22865:21;22880:5;22865:21;:::i;:::-;22858:5;22855:32;22845:60;;22901:1;22898;22891:12;22845:60;22795:116;:::o;22917:120::-;22989:23;23006:5;22989:23;:::i;:::-;22982:5;22979:34;22969:62;;23027:1;23024;23017:12;22969:62;22917:120;:::o;23043:::-;23115:23;23132:5;23115:23;:::i;:::-;23108:5;23105:34;23095:62;;23153:1;23150;23143:12;23095:62;23043:120;:::o;23169:122::-;23242:24;23260:5;23242:24;:::i;:::-;23235:5;23232:35;23222:63;;23281:1;23278;23271:12;23222:63;23169:122;:::o
Swarm Source
ipfs://572c2a1d00363963abf87909fa8afe7c5f9836bd397d359d2b02e52d574754ca
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 33 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
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.