Feature Tip: Add private address tag to any address under My Name Tag !
Overview
ETH Balance
0.011 ETH
Eth Value
$20.85 (@ $1,895.87/ETH)More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 131 transactions
| Transaction Hash |
Method
|
Block
|
From
|
|
To
|
||||
|---|---|---|---|---|---|---|---|---|---|
| Set Approval For... | 23723175 | 113 days ago | IN | 0 ETH | 0.0000322 | ||||
| Set Approval For... | 22627802 | 266 days ago | IN | 0 ETH | 0.00003762 | ||||
| Set Approval For... | 22577957 | 273 days ago | IN | 0 ETH | 0.00006328 | ||||
| Set Approval For... | 22503023 | 283 days ago | IN | 0 ETH | 0.00003647 | ||||
| Transfer From | 22381048 | 300 days ago | IN | 0 ETH | 0.00006284 | ||||
| Safe Transfer Fr... | 22370530 | 302 days ago | IN | 0 ETH | 0.00003766 | ||||
| Set Approval For... | 21993977 | 354 days ago | IN | 0 ETH | 0.00003287 | ||||
| Set Approval For... | 21835467 | 376 days ago | IN | 0 ETH | 0.00005684 | ||||
| Mint | 21795190 | 382 days ago | IN | 0 ETH | 0.00053278 | ||||
| Set Approval For... | 21770299 | 386 days ago | IN | 0 ETH | 0.00012408 | ||||
| Set Approval For... | 21583481 | 412 days ago | IN | 0 ETH | 0.00018283 | ||||
| Set Approval For... | 21561149 | 415 days ago | IN | 0 ETH | 0.00019144 | ||||
| Set Approval For... | 21523938 | 420 days ago | IN | 0 ETH | 0.00044006 | ||||
| Set Approval For... | 21506356 | 422 days ago | IN | 0 ETH | 0.00014257 | ||||
| Mint | 21505107 | 423 days ago | IN | 0 ETH | 0.00032711 | ||||
| Mint | 21505075 | 423 days ago | IN | 0 ETH | 0.00037109 | ||||
| Mint | 21504808 | 423 days ago | IN | 0 ETH | 0.0003463 | ||||
| Mint | 21504074 | 423 days ago | IN | 0 ETH | 0.00075645 | ||||
| Mint | 21503773 | 423 days ago | IN | 0 ETH | 0.00067966 | ||||
| Set Approval For... | 21503718 | 423 days ago | IN | 0 ETH | 0.00022834 | ||||
| Mint | 21503711 | 423 days ago | IN | 0 ETH | 0.00054975 | ||||
| Mint | 21503707 | 423 days ago | IN | 0 ETH | 0.00043824 | ||||
| Mint | 21503524 | 423 days ago | IN | 0 ETH | 0.00045625 | ||||
| Mint | 21503460 | 423 days ago | IN | 0 ETH | 0.00054245 | ||||
| Set Approval For... | 21503386 | 423 days ago | IN | 0 ETH | 0.00021839 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions
Loading...
Loading
Contract Name:
PepeSicilian
Compiler Version
v0.8.18+commit.87f61d96
Contract Source Code (Solidity)
/**
*Submitted for verification at Etherscan.io on 2023-07-02
*/
// File: @openzeppelin/contracts/utils/structs/EnumerableSet.sol
// OpenZeppelin Contracts (last updated v4.8.0) (utils/structs/EnumerableSet.sol)
// This file was procedurally generated from scripts/generate/templates/EnumerableSet.js.
pragma solidity ^0.8.0;
/**
* @dev Library for managing
* https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive
* types.
*
* Sets have the following properties:
*
* - Elements are added, removed, and checked for existence in constant time
* (O(1)).
* - Elements are enumerated in O(n). No guarantees are made on the ordering.
*
* ```
* contract Example {
* // Add the library methods
* using EnumerableSet for EnumerableSet.AddressSet;
*
* // Declare a set state variable
* EnumerableSet.AddressSet private mySet;
* }
* ```
*
* As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`)
* and `uint256` (`UintSet`) are supported.
*
* [WARNING]
* ====
* Trying to delete such a structure from storage will likely result in data corruption, rendering the structure
* unusable.
* See https://github.com/ethereum/solidity/pull/11843[ethereum/solidity#11843] for more info.
*
* In order to clean an EnumerableSet, you can either remove all elements one by one or create a fresh instance using an
* array of EnumerableSet.
* ====
*/
library EnumerableSet {
// To implement this library for multiple types with as little code
// repetition as possible, we write it in terms of a generic Set type with
// bytes32 values.
// The Set implementation uses private functions, and user-facing
// implementations (such as AddressSet) are just wrappers around the
// underlying Set.
// This means that we can only create new EnumerableSets for types that fit
// in bytes32.
struct Set {
// Storage of set values
bytes32[] _values;
// Position of the value in the `values` array, plus 1 because index 0
// means a value is not in the set.
mapping(bytes32 => uint256) _indexes;
}
/**
* @dev Add a value to a set. O(1).
*
* Returns true if the value was added to the set, that is if it was not
* already present.
*/
function _add(Set storage set, bytes32 value) private returns (bool) {
if (!_contains(set, value)) {
set._values.push(value);
// The value is stored at length-1, but we add 1 to all indexes
// and use 0 as a sentinel value
set._indexes[value] = set._values.length;
return true;
} else {
return false;
}
}
/**
* @dev Removes a value from a set. O(1).
*
* Returns true if the value was removed from the set, that is if it was
* present.
*/
function _remove(Set storage set, bytes32 value) private returns (bool) {
// We read and store the value's index to prevent multiple reads from the same storage slot
uint256 valueIndex = set._indexes[value];
if (valueIndex != 0) {
// Equivalent to contains(set, value)
// To delete an element from the _values array in O(1), we swap the element to delete with the last one in
// the array, and then remove the last element (sometimes called as 'swap and pop').
// This modifies the order of the array, as noted in {at}.
uint256 toDeleteIndex = valueIndex - 1;
uint256 lastIndex = set._values.length - 1;
if (lastIndex != toDeleteIndex) {
bytes32 lastValue = set._values[lastIndex];
// Move the last value to the index where the value to delete is
set._values[toDeleteIndex] = lastValue;
// Update the index for the moved value
set._indexes[lastValue] = valueIndex; // Replace lastValue's index to valueIndex
}
// Delete the slot where the moved value was stored
set._values.pop();
// Delete the index for the deleted slot
delete set._indexes[value];
return true;
} else {
return false;
}
}
/**
* @dev Returns true if the value is in the set. O(1).
*/
function _contains(Set storage set, bytes32 value)
private
view
returns (bool)
{
return set._indexes[value] != 0;
}
/**
* @dev Returns the number of values on the set. O(1).
*/
function _length(Set storage set) private view returns (uint256) {
return set._values.length;
}
/**
* @dev Returns the value stored at position `index` in the set. O(1).
*
* Note that there are no guarantees on the ordering of values inside the
* array, and it may change when more values are added or removed.
*
* Requirements:
*
* - `index` must be strictly less than {length}.
*/
function _at(Set storage set, uint256 index)
private
view
returns (bytes32)
{
return set._values[index];
}
/**
* @dev Return the entire set in an array
*
* WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
* to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
* this function has an unbounded cost, and using it as part of a state-changing function may render the function
* uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
*/
function _values(Set storage set) private view returns (bytes32[] memory) {
return set._values;
}
// Bytes32Set
struct Bytes32Set {
Set _inner;
}
/**
* @dev Add a value to a set. O(1).
*
* Returns true if the value was added to the set, that is if it was not
* already present.
*/
function add(Bytes32Set storage set, bytes32 value)
internal
returns (bool)
{
return _add(set._inner, value);
}
/**
* @dev Removes a value from a set. O(1).
*
* Returns true if the value was removed from the set, that is if it was
* present.
*/
function remove(Bytes32Set storage set, bytes32 value)
internal
returns (bool)
{
return _remove(set._inner, value);
}
/**
* @dev Returns true if the value is in the set. O(1).
*/
function contains(Bytes32Set storage set, bytes32 value)
internal
view
returns (bool)
{
return _contains(set._inner, value);
}
/**
* @dev Returns the number of values in the set. O(1).
*/
function length(Bytes32Set storage set) internal view returns (uint256) {
return _length(set._inner);
}
/**
* @dev Returns the value stored at position `index` in the set. O(1).
*
* Note that there are no guarantees on the ordering of values inside the
* array, and it may change when more values are added or removed.
*
* Requirements:
*
* - `index` must be strictly less than {length}.
*/
function at(Bytes32Set storage set, uint256 index)
internal
view
returns (bytes32)
{
return _at(set._inner, index);
}
/**
* @dev Return the entire set in an array
*
* WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
* to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
* this function has an unbounded cost, and using it as part of a state-changing function may render the function
* uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
*/
function values(Bytes32Set storage set)
internal
view
returns (bytes32[] memory)
{
bytes32[] memory store = _values(set._inner);
bytes32[] memory result;
/// @solidity memory-safe-assembly
assembly {
result := store
}
return result;
}
// AddressSet
struct AddressSet {
Set _inner;
}
/**
* @dev Add a value to a set. O(1).
*
* Returns true if the value was added to the set, that is if it was not
* already present.
*/
function add(AddressSet storage set, address value)
internal
returns (bool)
{
return _add(set._inner, bytes32(uint256(uint160(value))));
}
/**
* @dev Removes a value from a set. O(1).
*
* Returns true if the value was removed from the set, that is if it was
* present.
*/
function remove(AddressSet storage set, address value)
internal
returns (bool)
{
return _remove(set._inner, bytes32(uint256(uint160(value))));
}
/**
* @dev Returns true if the value is in the set. O(1).
*/
function contains(AddressSet storage set, address value)
internal
view
returns (bool)
{
return _contains(set._inner, bytes32(uint256(uint160(value))));
}
/**
* @dev Returns the number of values in the set. O(1).
*/
function length(AddressSet storage set) internal view returns (uint256) {
return _length(set._inner);
}
/**
* @dev Returns the value stored at position `index` in the set. O(1).
*
* Note that there are no guarantees on the ordering of values inside the
* array, and it may change when more values are added or removed.
*
* Requirements:
*
* - `index` must be strictly less than {length}.
*/
function at(AddressSet storage set, uint256 index)
internal
view
returns (address)
{
return address(uint160(uint256(_at(set._inner, index))));
}
/**
* @dev Return the entire set in an array
*
* WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
* to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
* this function has an unbounded cost, and using it as part of a state-changing function may render the function
* uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
*/
function values(AddressSet storage set)
internal
view
returns (address[] memory)
{
bytes32[] memory store = _values(set._inner);
address[] memory result;
/// @solidity memory-safe-assembly
assembly {
result := store
}
return result;
}
// UintSet
struct UintSet {
Set _inner;
}
/**
* @dev Add a value to a set. O(1).
*
* Returns true if the value was added to the set, that is if it was not
* already present.
*/
function add(UintSet storage set, uint256 value) internal returns (bool) {
return _add(set._inner, bytes32(value));
}
/**
* @dev Removes a value from a set. O(1).
*
* Returns true if the value was removed from the set, that is if it was
* present.
*/
function remove(UintSet storage set, uint256 value)
internal
returns (bool)
{
return _remove(set._inner, bytes32(value));
}
/**
* @dev Returns true if the value is in the set. O(1).
*/
function contains(UintSet storage set, uint256 value)
internal
view
returns (bool)
{
return _contains(set._inner, bytes32(value));
}
/**
* @dev Returns the number of values in the set. O(1).
*/
function length(UintSet storage set) internal view returns (uint256) {
return _length(set._inner);
}
/**
* @dev Returns the value stored at position `index` in the set. O(1).
*
* Note that there are no guarantees on the ordering of values inside the
* array, and it may change when more values are added or removed.
*
* Requirements:
*
* - `index` must be strictly less than {length}.
*/
function at(UintSet storage set, uint256 index)
internal
view
returns (uint256)
{
return uint256(_at(set._inner, index));
}
/**
* @dev Return the entire set in an array
*
* WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
* to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
* this function has an unbounded cost, and using it as part of a state-changing function may render the function
* uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
*/
function values(UintSet storage set)
internal
view
returns (uint256[] memory)
{
bytes32[] memory store = _values(set._inner);
uint256[] memory result;
/// @solidity memory-safe-assembly
assembly {
result := store
}
return result;
}
}
// File: contracts/artifacts/IOperatorFilterRegistry.sol
pragma solidity ^0.8.13;
interface IOperatorFilterRegistry {
function isOperatorAllowed(address registrant, address operator)
external
returns (bool);
function register(address registrant) external;
function registerAndSubscribe(address registrant, address subscription)
external;
function registerAndCopyEntries(
address registrant,
address registrantToCopy
) 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);
}
// File: contracts/artifacts/OperatorFilterer.sol
pragma solidity ^0.8.13;
contract OperatorFilterer {
error OperatorNotAllowed(address operator);
IOperatorFilterRegistry constant operatorFilterRegistry =
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(operatorFilterRegistry).code.length > 0) {
if (subscribe) {
operatorFilterRegistry.registerAndSubscribe(
address(this),
subscriptionOrRegistrantToCopy
);
} else {
if (subscriptionOrRegistrantToCopy != address(0)) {
operatorFilterRegistry.registerAndCopyEntries(
address(this),
subscriptionOrRegistrantToCopy
);
} else {
operatorFilterRegistry.register(address(this));
}
}
}
}
modifier onlyAllowedOperator() virtual {
// Check registry code length to facilitate testing in environments without a deployed registry.
if (address(operatorFilterRegistry).code.length > 0) {
if (
!operatorFilterRegistry.isOperatorAllowed(
address(this),
msg.sender
)
) {
revert OperatorNotAllowed(msg.sender);
}
}
_;
}
}
// File: contracts/artifacts/DefaultOperatorFilterer.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.13;
contract DefaultOperatorFilterer is OperatorFilterer {
address constant DEFAULT_SUBSCRIPTION =
address(0x3cc6CddA760b79bAfa08dF41ECFA224f810dCeB6);
constructor() OperatorFilterer(DEFAULT_SUBSCRIPTION, true) {}
}
// File: contracts/WagmiApes.sol
/**
*Submitted for verification at Etherscan.io on 2022-12-09
*/
// File: @openzeppelin/contracts/utils/introspection/IERC165.sol
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC165 standard, as defined in the
* https://eips.ethereum.org/EIPS/eip-165[EIP].
*
* Implementers can declare support of contract interfaces, which can then be
* queried by others ({ERC165Checker}).
*
* For an implementation, see {ERC165}.
*/
interface IERC165 {
/**
* @dev Returns true if this contract implements the interface defined by
* `interfaceId`. See the corresponding
* https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
* to learn more about how these ids are created.
*
* This function call must use less than 30 000 gas.
*/
function supportsInterface(bytes4 interfaceId) external view returns (bool);
}
// File: @openzeppelin/contracts/utils/introspection/ERC165.sol
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)
pragma solidity ^0.8.0;
/**
* @dev Implementation of the {IERC165} interface.
*
* Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
* for the additional interface id that will be supported. For example:
*
* ```solidity
* function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
* return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
* }
* ```
*
* Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
*/
abstract contract ERC165 is IERC165 {
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId)
public
view
virtual
override
returns (bool)
{
return interfaceId == type(IERC165).interfaceId;
}
}
// File: @openzeppelin/contracts/interfaces/IERC2981.sol
// OpenZeppelin Contracts (last updated v4.6.0) (interfaces/IERC2981.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface for the NFT Royalty Standard.
*
* A standardized way to retrieve royalty payment information for non-fungible tokens (NFTs) to enable universal
* support for royalty payments across all NFT marketplaces and ecosystem participants.
*
* _Available since v4.5._
*/
interface IERC2981 is IERC165 {
/**
* @dev Returns how much royalty is owed and to whom, based on a sale price that may be denominated in any unit of
* exchange. The royalty amount is denominated and should be paid in that same unit of exchange.
*/
function royaltyInfo(uint256 tokenId, uint256 salePrice)
external
view
returns (address receiver, uint256 royaltyAmount);
}
// File: @openzeppelin/contracts/token/common/ERC2981.sol
// OpenZeppelin Contracts (last updated v4.7.0) (token/common/ERC2981.sol)
pragma solidity ^0.8.0;
/**
* @dev Implementation of the NFT Royalty Standard, a standardized way to retrieve royalty payment information.
*
* Royalty information can be specified globally for all token ids via {_setDefaultRoyalty}, and/or individually for
* specific token ids via {_setTokenRoyalty}. The latter takes precedence over the first.
*
* Royalty is specified as a fraction of sale price. {_feeDenominator} is overridable but defaults to 10000, meaning the
* fee is specified in basis points by default.
*
* IMPORTANT: ERC-2981 only specifies a way to signal royalty information and does not enforce its payment. See
* https://eips.ethereum.org/EIPS/eip-2981#optional-royalty-payments[Rationale] in the EIP. Marketplaces are expected to
* voluntarily pay royalties together with sales, but note that this standard is not yet widely supported.
*
* _Available since v4.5._
*/
abstract contract ERC2981 is IERC2981, ERC165 {
struct RoyaltyInfo {
address receiver;
uint96 royaltyFraction;
}
RoyaltyInfo private _defaultRoyaltyInfo;
mapping(uint256 => RoyaltyInfo) private _tokenRoyaltyInfo;
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId)
public
view
virtual
override(IERC165, ERC165)
returns (bool)
{
return
interfaceId == type(IERC2981).interfaceId ||
super.supportsInterface(interfaceId);
}
/**
* @inheritdoc IERC2981
*/
function royaltyInfo(uint256 _tokenId, uint256 _salePrice)
public
view
virtual
override
returns (address, uint256)
{
RoyaltyInfo memory royalty = _tokenRoyaltyInfo[_tokenId];
if (royalty.receiver == address(0)) {
royalty = _defaultRoyaltyInfo;
}
uint256 royaltyAmount = (_salePrice * royalty.royaltyFraction) /
_feeDenominator();
return (royalty.receiver, royaltyAmount);
}
/**
* @dev The denominator with which to interpret the fee set in {_setTokenRoyalty} and {_setDefaultRoyalty} as a
* fraction of the sale price. Defaults to 10000 so fees are expressed in basis points, but may be customized by an
* override.
*/
function _feeDenominator() internal pure virtual returns (uint96) {
return 10000;
}
/**
* @dev Sets the royalty information that all ids in this contract will default to.
*
* Requirements:
*
* - `receiver` cannot be the zero address.
* - `feeNumerator` cannot be greater than the fee denominator.
*/
function _setDefaultRoyalty(address receiver, uint96 feeNumerator)
internal
virtual
{
require(
feeNumerator <= _feeDenominator(),
"ERC2981: royalty fee will exceed salePrice"
);
require(receiver != address(0), "ERC2981: invalid receiver");
_defaultRoyaltyInfo = RoyaltyInfo(receiver, feeNumerator);
}
/**
* @dev Removes default royalty information.
*/
function _deleteDefaultRoyalty() internal virtual {
delete _defaultRoyaltyInfo;
}
/**
* @dev Sets the royalty information for a specific token id, overriding the global default.
*
* Requirements:
*
* - `receiver` cannot be the zero address.
* - `feeNumerator` cannot be greater than the fee denominator.
*/
function _setTokenRoyalty(
uint256 tokenId,
address receiver,
uint96 feeNumerator
) internal virtual {
require(
feeNumerator <= _feeDenominator(),
"ERC2981: royalty fee will exceed salePrice"
);
require(receiver != address(0), "ERC2981: Invalid parameters");
_tokenRoyaltyInfo[tokenId] = RoyaltyInfo(receiver, feeNumerator);
}
/**
* @dev Resets royalty information for the token id back to the global default.
*/
function _resetTokenRoyalty(uint256 tokenId) internal virtual {
delete _tokenRoyaltyInfo[tokenId];
}
}
// File: annunakis.sol
/**
*Submitted for verification at Etherscan.io on 2022-09-13
*/
// File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol
// OpenZeppelin Contracts (last updated v4.7.0) (utils/cryptography/MerkleProof.sol)
pragma solidity ^0.8.0;
/**
* @dev These functions deal with verification of Merkle Tree proofs.
*
* The proofs can be generated using the JavaScript library
* https://github.com/miguelmota/merkletreejs[merkletreejs].
* Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
*
* See `test/utils/cryptography/MerkleProof.test.js` for some examples.
*
* WARNING: You should avoid using leaf values that are 64 bytes long prior to
* hashing, or use a hash function other than keccak256 for hashing leaves.
* This is because the concatenation of a sorted pair of internal nodes in
* the merkle tree could be reinterpreted as a leaf value.
*/
library MerkleProof {
/**
* @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
* defined by `root`. For this, a `proof` must be provided, containing
* sibling hashes on the branch from the leaf to the root of the tree. Each
* pair of leaves and each pair of pre-images are assumed to be sorted.
*/
function verify(
bytes32[] memory proof,
bytes32 root,
bytes32 leaf
) internal pure returns (bool) {
return processProof(proof, leaf) == root;
}
/**
* @dev Calldata version of {verify}
*
* _Available since v4.7._
*/
function verifyCalldata(
bytes32[] calldata proof,
bytes32 root,
bytes32 leaf
) internal pure returns (bool) {
return processProofCalldata(proof, leaf) == root;
}
/**
* @dev Returns the rebuilt hash obtained by traversing a Merkle tree up
* from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
* hash matches the root of the tree. When processing the proof, the pairs
* of leafs & pre-images are assumed to be sorted.
*
* _Available since v4.4._
*/
function processProof(bytes32[] memory proof, bytes32 leaf)
internal
pure
returns (bytes32)
{
bytes32 computedHash = leaf;
for (uint256 i = 0; i < proof.length; i++) {
computedHash = _hashPair(computedHash, proof[i]);
}
return computedHash;
}
/**
* @dev Calldata version of {processProof}
*
* _Available since v4.7._
*/
function processProofCalldata(bytes32[] calldata proof, bytes32 leaf)
internal
pure
returns (bytes32)
{
bytes32 computedHash = leaf;
for (uint256 i = 0; i < proof.length; i++) {
computedHash = _hashPair(computedHash, proof[i]);
}
return computedHash;
}
/**
* @dev Returns true if the `leaves` can be proved to be a part of a Merkle tree defined by
* `root`, according to `proof` and `proofFlags` as described in {processMultiProof}.
*
* _Available since v4.7._
*/
function multiProofVerify(
bytes32[] memory proof,
bool[] memory proofFlags,
bytes32 root,
bytes32[] memory leaves
) internal pure returns (bool) {
return processMultiProof(proof, proofFlags, leaves) == root;
}
/**
* @dev Calldata version of {multiProofVerify}
*
* _Available since v4.7._
*/
function multiProofVerifyCalldata(
bytes32[] calldata proof,
bool[] calldata proofFlags,
bytes32 root,
bytes32[] memory leaves
) internal pure returns (bool) {
return processMultiProofCalldata(proof, proofFlags, leaves) == root;
}
/**
* @dev Returns the root of a tree reconstructed from `leaves` and the sibling nodes in `proof`,
* consuming from one or the other at each step according to the instructions given by
* `proofFlags`.
*
* _Available since v4.7._
*/
function processMultiProof(
bytes32[] memory proof,
bool[] memory proofFlags,
bytes32[] memory leaves
) internal pure returns (bytes32 merkleRoot) {
// This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
// consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
// `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
// the merkle tree.
uint256 leavesLen = leaves.length;
uint256 totalHashes = proofFlags.length;
// Check proof validity.
require(
leavesLen + proof.length - 1 == totalHashes,
"MerkleProof: invalid multiproof"
);
// The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
// `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
bytes32[] memory hashes = new bytes32[](totalHashes);
uint256 leafPos = 0;
uint256 hashPos = 0;
uint256 proofPos = 0;
// At each step, we compute the next hash using two values:
// - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
// get the next hash.
// - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
// `proof` array.
for (uint256 i = 0; i < totalHashes; i++) {
bytes32 a = leafPos < leavesLen
? leaves[leafPos++]
: hashes[hashPos++];
bytes32 b = proofFlags[i]
? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++]
: proof[proofPos++];
hashes[i] = _hashPair(a, b);
}
if (totalHashes > 0) {
return hashes[totalHashes - 1];
} else if (leavesLen > 0) {
return leaves[0];
} else {
return proof[0];
}
}
/**
* @dev Calldata version of {processMultiProof}
*
* _Available since v4.7._
*/
function processMultiProofCalldata(
bytes32[] calldata proof,
bool[] calldata proofFlags,
bytes32[] memory leaves
) internal pure returns (bytes32 merkleRoot) {
// This function rebuild the root hash by traversing the tree up from the leaves. The root is rebuilt by
// consuming and producing values on a queue. The queue starts with the `leaves` array, then goes onto the
// `hashes` array. At the end of the process, the last hash in the `hashes` array should contain the root of
// the merkle tree.
uint256 leavesLen = leaves.length;
uint256 totalHashes = proofFlags.length;
// Check proof validity.
require(
leavesLen + proof.length - 1 == totalHashes,
"MerkleProof: invalid multiproof"
);
// The xxxPos values are "pointers" to the next value to consume in each array. All accesses are done using
// `xxx[xxxPos++]`, which return the current value and increment the pointer, thus mimicking a queue's "pop".
bytes32[] memory hashes = new bytes32[](totalHashes);
uint256 leafPos = 0;
uint256 hashPos = 0;
uint256 proofPos = 0;
// At each step, we compute the next hash using two values:
// - a value from the "main queue". If not all leaves have been consumed, we get the next leaf, otherwise we
// get the next hash.
// - depending on the flag, either another value for the "main queue" (merging branches) or an element from the
// `proof` array.
for (uint256 i = 0; i < totalHashes; i++) {
bytes32 a = leafPos < leavesLen
? leaves[leafPos++]
: hashes[hashPos++];
bytes32 b = proofFlags[i]
? leafPos < leavesLen ? leaves[leafPos++] : hashes[hashPos++]
: proof[proofPos++];
hashes[i] = _hashPair(a, b);
}
if (totalHashes > 0) {
return hashes[totalHashes - 1];
} else if (leavesLen > 0) {
return leaves[0];
} else {
return proof[0];
}
}
function _hashPair(bytes32 a, bytes32 b) private pure returns (bytes32) {
return a < b ? _efficientHash(a, b) : _efficientHash(b, a);
}
function _efficientHash(bytes32 a, bytes32 b)
private
pure
returns (bytes32 value)
{
/// @solidity memory-safe-assembly
assembly {
mstore(0x00, a)
mstore(0x20, b)
value := keccak256(0x00, 0x40)
}
}
}
// File: contracts/rose.sol
/**
*Submitted for verification at Etherscan.io on 2022-07-22
*/
// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)
pragma solidity ^0.8.0;
/**
* @dev Contract module that helps prevent reentrant calls to a function.
*
* Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
* available, which can be applied to functions to make sure there are no nested
* (reentrant) calls to them.
*
* Note that because there is a single `nonReentrant` guard, functions marked as
* `nonReentrant` may not call one another. This can be worked around by making
* those functions `private`, and then adding `external` `nonReentrant` entry
* points to them.
*
* TIP: If you would like to learn more about reentrancy and alternative ways
* to protect against it, check out our blog post
* https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
*/
abstract contract ReentrancyGuard {
// Booleans are more expensive than uint256 or any type that takes up a full
// word because each write operation emits an extra SLOAD to first read the
// slot's contents, replace the bits taken up by the boolean, and then write
// back. This is the compiler's defense against contract upgrades and
// pointer aliasing, and it cannot be disabled.
// The values being non-zero value makes deployment a bit more expensive,
// but in exchange the refund on every call to nonReentrant will be lower in
// amount. Since refunds are capped to a percentage of the total
// transaction's gas, it is best to keep them low in cases like this one, to
// increase the likelihood of the full refund coming into effect.
uint256 private constant _NOT_ENTERED = 1;
uint256 private constant _ENTERED = 2;
uint256 private _status;
constructor() {
_status = _NOT_ENTERED;
}
/**
* @dev Prevents a contract from calling itself, directly or indirectly.
* Calling a `nonReentrant` function from another `nonReentrant`
* function is not supported. It is possible to prevent this from happening
* by making the `nonReentrant` function external, and making it call a
* `private` function that does the actual work.
*/
modifier nonReentrant() {
// On the first call to nonReentrant, _notEntered will be true
require(_status != _ENTERED, "ReentrancyGuard: reentrant call");
// Any calls to nonReentrant after this point will fail
_status = _ENTERED;
_;
// By storing the original value once again, a refund is triggered (see
// https://eips.ethereum.org/EIPS/eip-2200)
_status = _NOT_ENTERED;
}
}
// File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol
// OpenZeppelin Contracts (last updated v4.6.0) (utils/cryptography/MerkleProof.sol)
// File: @openzeppelin/contracts/utils/Strings.sol
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)
pragma solidity ^0.8.0;
/**
* @dev String operations.
*/
library Strings {
bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";
/**
* @dev Converts a `uint256` to its ASCII `string` decimal representation.
*/
function toString(uint256 value) internal pure returns (string memory) {
// Inspired by OraclizeAPI's implementation - MIT licence
// https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol
if (value == 0) {
return "0";
}
uint256 temp = value;
uint256 digits;
while (temp != 0) {
digits++;
temp /= 10;
}
bytes memory buffer = new bytes(digits);
while (value != 0) {
digits -= 1;
buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
value /= 10;
}
return string(buffer);
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
*/
function toHexString(uint256 value) internal pure returns (string memory) {
if (value == 0) {
return "0x00";
}
uint256 temp = value;
uint256 length = 0;
while (temp != 0) {
length++;
temp >>= 8;
}
return toHexString(value, length);
}
/**
* @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
*/
function toHexString(uint256 value, uint256 length)
internal
pure
returns (string memory)
{
bytes memory buffer = new bytes(2 * length + 2);
buffer[0] = "0";
buffer[1] = "x";
for (uint256 i = 2 * length + 1; i > 1; --i) {
buffer[i] = _HEX_SYMBOLS[value & 0xf];
value >>= 4;
}
require(value == 0, "Strings: hex length insufficient");
return string(buffer);
}
}
// File: @openzeppelin/contracts/utils/Context.sol
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
pragma solidity ^0.8.0;
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
}
// File: @openzeppelin/contracts/access/Ownable.sol
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)
pragma solidity ^0.8.0;
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract Ownable is Context {
address private _owner;
event OwnershipTransferred(
address indexed previousOwner,
address indexed newOwner
);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor() {
_transferOwnership(_msgSender());
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
_;
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_transferOwnership(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(
newOwner != address(0),
"Ownable: new owner is the zero address"
);
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Internal function without access restriction.
*/
function _transferOwnership(address newOwner) internal virtual {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}
// File: @openzeppelin/contracts/utils/Address.sol
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)
pragma solidity ^0.8.1;
/**
* @dev Collection of functions related to the address type
*/
library Address {
/**
* @dev Returns true if `account` is a contract.
*
* [IMPORTANT]
* ====
* It is unsafe to assume that an address for which this function returns
* false is an externally-owned account (EOA) and not a contract.
*
* Among others, `isContract` will return false for the following
* types of addresses:
*
* - an externally-owned account
* - a contract in construction
* - an address where a contract will be created
* - an address where a contract lived, but was destroyed
* ====
*
* [IMPORTANT]
* ====
* You shouldn't rely on `isContract` to protect against flash loan attacks!
*
* Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
* like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
* constructor.
* ====
*/
function isContract(address account) internal view returns (bool) {
// This method relies on extcodesize/address.code.length, which returns 0
// for contracts in construction, since the code is only stored at the end
// of the constructor execution.
return account.code.length > 0;
}
/**
* @dev Replacement for Solidity's `transfer`: sends `amount` wei to
* `recipient`, forwarding all available gas and reverting on errors.
*
* https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
* of certain opcodes, possibly making contracts go over the 2300 gas limit
* imposed by `transfer`, making them unable to receive funds via
* `transfer`. {sendValue} removes this limitation.
*
* https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
*
* IMPORTANT: because control is transferred to `recipient`, care must be
* taken to not create reentrancy vulnerabilities. Consider using
* {ReentrancyGuard} or the
* https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/
function sendValue(address payable recipient, uint256 amount) internal {
require(
address(this).balance >= amount,
"Address: insufficient balance"
);
(bool success, ) = recipient.call{value: amount}("");
require(
success,
"Address: unable to send value, recipient may have reverted"
);
}
/**
* @dev Performs a Solidity function call using a low level `call`. A
* plain `call` is an unsafe replacement for a function call: use this
* function instead.
*
* If `target` reverts with a revert reason, it is bubbled up by this
* function (like regular Solidity function calls).
*
* Returns the raw returned data. To convert to the expected return value,
* use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
*
* Requirements:
*
* - `target` must be a contract.
* - calling `target` with `data` must not revert.
*
* _Available since v3.1._
*/
function functionCall(address target, bytes memory data)
internal
returns (bytes memory)
{
return functionCall(target, data, "Address: low-level call failed");
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
* `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
return functionCallWithValue(target, data, 0, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but also transferring `value` wei to `target`.
*
* Requirements:
*
* - the calling contract must have an ETH balance of at least `value`.
* - the called Solidity function must be `payable`.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value
) internal returns (bytes memory) {
return
functionCallWithValue(
target,
data,
value,
"Address: low-level call with value failed"
);
}
/**
* @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
* with `errorMessage` as a fallback revert reason when `target` reverts.
*
* _Available since v3.1._
*/
function functionCallWithValue(
address target,
bytes memory data,
uint256 value,
string memory errorMessage
) internal returns (bytes memory) {
require(
address(this).balance >= value,
"Address: insufficient balance for call"
);
require(isContract(target), "Address: call to non-contract");
(bool success, bytes memory returndata) = target.call{value: value}(
data
);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(address target, bytes memory data)
internal
view
returns (bytes memory)
{
return
functionStaticCall(
target,
data,
"Address: low-level static call failed"
);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/
function functionStaticCall(
address target,
bytes memory data,
string memory errorMessage
) internal view returns (bytes memory) {
require(isContract(target), "Address: static call to non-contract");
(bool success, bytes memory returndata) = target.staticcall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(address target, bytes memory data)
internal
returns (bytes memory)
{
return
functionDelegateCall(
target,
data,
"Address: low-level delegate call failed"
);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/
function functionDelegateCall(
address target,
bytes memory data,
string memory errorMessage
) internal returns (bytes memory) {
require(isContract(target), "Address: delegate call to non-contract");
(bool success, bytes memory returndata) = target.delegatecall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
* revert reason using the provided one.
*
* _Available since v4.3._
*/
function verifyCallResult(
bool success,
bytes memory returndata,
string memory errorMessage
) internal pure returns (bytes memory) {
if (success) {
return returndata;
} else {
// Look for revert reason and bubble it up if present
if (returndata.length > 0) {
// The easiest way to bubble the revert reason is using memory via assembly
assembly {
let returndata_size := mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}
}
// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)
pragma solidity ^0.8.0;
/**
* @title ERC721 token receiver interface
* @dev Interface for any contract that wants to support safeTransfers
* from ERC721 asset contracts.
*/
interface IERC721Receiver {
/**
* @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
* by `operator` from `from`, this function is called.
*
* It must return its Solidity selector to confirm the token transfer.
* If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
*
* The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`.
*/
function onERC721Received(
address operator,
address from,
uint256 tokenId,
bytes calldata data
) external returns (bytes4);
}
// File: @openzeppelin/contracts/utils/introspection/IERC165.sol
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC165 standard, as defined in the
* https://eips.ethereum.org/EIPS/eip-165[EIP].
*
* Implementers can declare support of contract interfaces, which can then be
* queried by others ({ERC165Checker}).
*
* For an implementation, see {ERC165}.
*/
// File: @openzeppelin/contracts/utils/introspection/ERC165.sol
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)
pragma solidity ^0.8.0;
/**
* @dev Implementation of the {IERC165} interface.
*
* Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
* for the additional interface id that will be supported. For example:
*
* ```solidity
* function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
* return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
* }
* ```
*
* Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
*/
// File: @openzeppelin/contracts/token/ERC721/IERC721.sol
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol)
pragma solidity ^0.8.0;
/**
* @dev Required interface of an ERC721 compliant contract.
*/
interface IERC721 is IERC165 {
/**
* @dev Emitted when `tokenId` token is transferred from `from` to `to`.
*/
event Transfer(
address indexed from,
address indexed to,
uint256 indexed tokenId
);
/**
* @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
*/
event Approval(
address indexed owner,
address indexed approved,
uint256 indexed tokenId
);
/**
* @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
*/
event ApprovalForAll(
address indexed owner,
address indexed operator,
bool approved
);
/**
* @dev Returns the number of tokens in ``owner``'s account.
*/
function balanceOf(address owner) external view returns (uint256 balance);
/**
* @dev Returns the owner of the `tokenId` token.
*
* Requirements:
*
* - `tokenId` must exist.
*/
function ownerOf(uint256 tokenId) external view returns (address owner);
/**
* @dev Safely transfers `tokenId` token from `from` to `to`.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId,
bytes calldata data
) external;
/**
* @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
* are aware of the ERC721 protocol to prevent tokens from being forever locked.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must exist and be owned by `from`.
* - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
* - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
*
* Emits a {Transfer} event.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) external;
/**
* @dev Transfers `tokenId` token from `from` to `to`.
*
* WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
*
* Requirements:
*
* - `from` cannot be the zero address.
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
* - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address from,
address to,
uint256 tokenId
) external;
/**
* @dev Gives permission to `to` to transfer `tokenId` token to another account.
* The approval is cleared when the token is transferred.
*
* Only a single account can be approved at a time, so approving the zero address clears previous approvals.
*
* Requirements:
*
* - The caller must own the token or be an approved operator.
* - `tokenId` must exist.
*
* Emits an {Approval} event.
*/
function approve(address to, uint256 tokenId) external;
/**
* @dev 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);
}
// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)
pragma solidity ^0.8.0;
/**
* @title ERC-721 Non-Fungible Token Standard, optional metadata extension
* @dev See https://eips.ethereum.org/EIPS/eip-721
*/
interface IERC721Metadata is IERC721 {
/**
* @dev Returns the token collection name.
*/
function name() external view returns (string memory);
/**
* @dev Returns the token collection symbol.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
*/
function tokenURI(uint256 tokenId) external view returns (string memory);
}
// File: ERC721A.sol
// Creator: Chiru Labs
pragma solidity ^0.8.4;
error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerQueryForNonexistentToken();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();
/**
* @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
* the Metadata extension. Built to optimize for lower gas during batch mints.
*
* Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
*
* Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
*
* Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
*/
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata {
using Address for address;
using Strings for uint256;
// Compiler will pack this into a single 256bit word.
struct TokenOwnership {
// The address of the owner.
address addr;
// Keeps track of the start time of ownership with minimal overhead for tokenomics.
uint64 startTimestamp;
// Whether the token has been burned.
bool burned;
}
// Compiler will pack this into a single 256bit word.
struct AddressData {
// Realistically, 2**64-1 is more than enough.
uint64 balance;
// Keeps track of mint count with minimal overhead for tokenomics.
uint64 numberMinted;
// Keeps track of burn count with minimal overhead for tokenomics.
uint64 numberBurned;
// For miscellaneous variable(s) pertaining to the address
// (e.g. number of whitelist mint slots used).
// If there are multiple variables, please pack them into a uint64.
uint64 aux;
}
// The tokenId of the next token to be minted.
uint256 internal _currentIndex;
// The number of tokens burned.
uint256 internal _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 _ownershipOf implementation for details.
mapping(uint256 => TokenOwnership) internal _ownerships;
// Mapping owner address to address data
mapping(address => AddressData) private _addressData;
// Mapping from token ID to approved address
mapping(uint256 => address) private _tokenApprovals;
// Mapping from owner to operator approvals
mapping(address => mapping(address => bool)) private _operatorApprovals;
constructor(string memory name_, string memory symbol_) {
_name = name_;
_symbol = symbol_;
_currentIndex = _startTokenId();
}
/**
* To change the starting tokenId, please override this function.
*/
function _startTokenId() internal view virtual returns (uint256) {
return 1;
}
/**
* @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
*/
function totalSupply() public view returns (uint256) {
// Counter underflow is impossible as _burnCounter cannot be incremented
// more than _currentIndex - _startTokenId() times
unchecked {
return _currentIndex - _burnCounter - _startTokenId();
}
}
/**
* Returns the total amount of tokens minted in the contract.
*/
function _totalMinted() internal view returns (uint256) {
// Counter underflow is impossible as _currentIndex does not decrement,
// and it is initialized to _startTokenId()
unchecked {
return _currentIndex - _startTokenId();
}
}
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId)
public
view
virtual
override(ERC165, IERC165)
returns (bool)
{
return
interfaceId == type(IERC721).interfaceId ||
interfaceId == type(IERC721Metadata).interfaceId ||
super.supportsInterface(interfaceId);
}
/**
* @dev See {IERC721-balanceOf}.
*/
function balanceOf(address owner) public view override returns (uint256) {
if (owner == address(0)) revert BalanceQueryForZeroAddress();
return uint256(_addressData[owner].balance);
}
/**
* Returns the number of tokens minted by `owner`.
*/
function _numberMinted(address owner) internal view returns (uint256) {
return uint256(_addressData[owner].numberMinted);
}
/**
* Returns the number of tokens burned by or on behalf of `owner`.
*/
function _numberBurned(address owner) internal view returns (uint256) {
return uint256(_addressData[owner].numberBurned);
}
/**
* Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
*/
function _getAux(address owner) internal view returns (uint64) {
return _addressData[owner].aux;
}
/**
* Sets the auxillary 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 {
_addressData[owner].aux = aux;
}
/**
* Gas spent here starts off proportional to the maximum mint batch size.
* It gradually moves to O(1) as tokens get transferred around in the collection over time.
*/
function _ownershipOf(uint256 tokenId)
internal
view
returns (TokenOwnership memory)
{
uint256 curr = tokenId;
unchecked {
if (_startTokenId() <= curr && curr < _currentIndex) {
TokenOwnership memory ownership = _ownerships[curr];
if (!ownership.burned) {
if (ownership.addr != address(0)) {
return ownership;
}
// Invariant:
// There will always be an ownership that has an address and is not burned
// before an ownership that does not have an address and is not burned.
// Hence, curr will not underflow.
while (true) {
curr--;
ownership = _ownerships[curr];
if (ownership.addr != address(0)) {
return ownership;
}
}
}
}
}
revert OwnerQueryForNonexistentToken();
}
/**
* @dev See {IERC721-ownerOf}.
*/
function ownerOf(uint256 tokenId) public view override returns (address) {
return _ownershipOf(tokenId).addr;
}
/**
* @dev See {IERC721Metadata-name}.
*/
function name() public view virtual override returns (string memory) {
return _name;
}
/**
* @dev See {IERC721Metadata-symbol}.
*/
function symbol() public view virtual override returns (string memory) {
return _symbol;
}
/**
* @dev See {IERC721Metadata-tokenURI}.
*/
function tokenURI(uint256 tokenId)
public
view
virtual
override
returns (string memory)
{
if (!_exists(tokenId)) revert URIQueryForNonexistentToken();
string memory baseURI = _baseURI();
return
bytes(baseURI).length != 0
? string(abi.encodePacked(baseURI, tokenId.toString()))
: "";
}
/**
* @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
* token will be the concatenation of the `baseURI` and the `tokenId`. Empty
* by default, can be overriden in child contracts.
*/
function _baseURI() internal view virtual returns (string memory) {
return "";
}
/**
* @dev See {IERC721-approve}.
*/
function approve(address to, uint256 tokenId) public override {
address owner = ERC721A.ownerOf(tokenId);
if (to == owner) revert ApprovalToCurrentOwner();
if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) {
revert ApprovalCallerNotOwnerNorApproved();
}
_approve(to, tokenId, owner);
}
/**
* @dev See {IERC721-getApproved}.
*/
function getApproved(uint256 tokenId)
public
view
override
returns (address)
{
if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();
return _tokenApprovals[tokenId];
}
/**
* @dev See {IERC721-setApprovalForAll}.
*/
function setApprovalForAll(address operator, bool approved)
public
virtual
override
{
if (operator == _msgSender()) revert ApproveToCaller();
_operatorApprovals[_msgSender()][operator] = approved;
emit ApprovalForAll(_msgSender(), operator, approved);
}
/**
* @dev See {IERC721-isApprovedForAll}.
*/
function isApprovedForAll(address owner, address operator)
public
view
virtual
override
returns (bool)
{
return _operatorApprovals[owner][operator];
}
/**
* @dev See {IERC721-transferFrom}.
*/
function transferFrom(
address from,
address to,
uint256 tokenId
) public virtual override {
_transfer(from, to, tokenId);
}
/**
* @dev See {IERC721-safeTransferFrom}.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) public virtual override {
safeTransferFrom(from, to, tokenId, "");
}
/**
* @dev See {IERC721-safeTransferFrom}.
*/
function safeTransferFrom(
address from,
address to,
uint256 tokenId,
bytes memory _data
) public virtual override {
_transfer(from, to, tokenId);
if (
to.isContract() &&
!_checkContractOnERC721Received(from, to, tokenId, _data)
) {
revert TransferToNonERC721ReceiverImplementer();
}
}
/**
* @dev Returns whether `tokenId` exists.
*
* Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
*
* Tokens start existing when they are minted (`_mint`),
*/
function _exists(uint256 tokenId) internal view returns (bool) {
return
_startTokenId() <= tokenId &&
tokenId < _currentIndex &&
!_ownerships[tokenId].burned;
}
function _safeMint(address to, uint256 quantity) internal {
_safeMint(to, 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.
*
* Emits a {Transfer} event.
*/
function _safeMint(
address to,
uint256 quantity,
bytes memory _data
) internal {
_mint(to, quantity, _data, true);
}
/**
* @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.
*/
function _mint(
address to,
uint256 quantity,
bytes memory _data,
bool safe
) internal {
uint256 startTokenId = _currentIndex;
if (to == address(0)) revert MintToZeroAddress();
if (quantity == 0) revert MintZeroQuantity();
_beforeTokenTransfers(address(0), to, startTokenId, quantity);
// Overflows are incredibly unrealistic.
// balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
// updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
unchecked {
_addressData[to].balance += uint64(quantity);
_addressData[to].numberMinted += uint64(quantity);
_ownerships[startTokenId].addr = to;
_ownerships[startTokenId].startTimestamp = uint64(block.timestamp);
uint256 updatedIndex = startTokenId;
uint256 end = updatedIndex + quantity;
if (safe && to.isContract()) {
do {
emit Transfer(address(0), to, updatedIndex);
if (
!_checkContractOnERC721Received(
address(0),
to,
updatedIndex++,
_data
)
) {
revert TransferToNonERC721ReceiverImplementer();
}
} while (updatedIndex != end);
// Reentrancy protection
if (_currentIndex != startTokenId) revert();
} else {
do {
emit Transfer(address(0), to, updatedIndex++);
} while (updatedIndex != end);
}
_currentIndex = updatedIndex;
}
_afterTokenTransfers(address(0), to, startTokenId, quantity);
}
/**
* @dev Transfers `tokenId` from `from` to `to`.
*
* Requirements:
*
* - `to` cannot be the zero address.
* - `tokenId` token must be owned by `from`.
*
* Emits a {Transfer} event.
*/
function _transfer(
address from,
address to,
uint256 tokenId
) private {
TokenOwnership memory prevOwnership = _ownershipOf(tokenId);
if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();
bool isApprovedOrOwner = (_msgSender() == from ||
isApprovedForAll(from, _msgSender()) ||
getApproved(tokenId) == _msgSender());
if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
if (to == address(0)) revert TransferToZeroAddress();
_beforeTokenTransfers(from, to, tokenId, 1);
// Clear approvals from the previous owner
_approve(address(0), tokenId, from);
// 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 {
_addressData[from].balance -= 1;
_addressData[to].balance += 1;
TokenOwnership storage currSlot = _ownerships[tokenId];
currSlot.addr = to;
currSlot.startTimestamp = uint64(block.timestamp);
// If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
// Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
uint256 nextTokenId = tokenId + 1;
TokenOwnership storage nextSlot = _ownerships[nextTokenId];
if (nextSlot.addr == address(0)) {
// This will suffice for checking _exists(nextTokenId),
// as a burned slot cannot contain the zero address.
if (nextTokenId != _currentIndex) {
nextSlot.addr = from;
nextSlot.startTimestamp = prevOwnership.startTimestamp;
}
}
}
emit Transfer(from, to, tokenId);
_afterTokenTransfers(from, to, tokenId, 1);
}
/**
* @dev This is 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 {
TokenOwnership memory prevOwnership = _ownershipOf(tokenId);
address from = prevOwnership.addr;
if (approvalCheck) {
bool isApprovedOrOwner = (_msgSender() == from ||
isApprovedForAll(from, _msgSender()) ||
getApproved(tokenId) == _msgSender());
if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
}
_beforeTokenTransfers(from, address(0), tokenId, 1);
// Clear approvals from the previous owner
_approve(address(0), tokenId, from);
// 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 {
AddressData storage addressData = _addressData[from];
addressData.balance -= 1;
addressData.numberBurned += 1;
// Keep track of who burned the token, and the timestamp of burning.
TokenOwnership storage currSlot = _ownerships[tokenId];
currSlot.addr = from;
currSlot.startTimestamp = uint64(block.timestamp);
currSlot.burned = true;
// If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
// Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
uint256 nextTokenId = tokenId + 1;
TokenOwnership storage nextSlot = _ownerships[nextTokenId];
if (nextSlot.addr == address(0)) {
// This will suffice for checking _exists(nextTokenId),
// as a burned slot cannot contain the zero address.
if (nextTokenId != _currentIndex) {
nextSlot.addr = from;
nextSlot.startTimestamp = prevOwnership.startTimestamp;
}
}
}
emit Transfer(from, address(0), tokenId);
_afterTokenTransfers(from, address(0), tokenId, 1);
// Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
unchecked {
_burnCounter++;
}
}
/**
* @dev Approve `to` to operate on `tokenId`
*
* Emits a {Approval} event.
*/
function _approve(
address to,
uint256 tokenId,
address owner
) private {
_tokenApprovals[tokenId] = to;
emit Approval(owner, to, tokenId);
}
/**
* @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target contract.
*
* @param from address representing the previous owner of the given token ID
* @param to target address that will receive the tokens
* @param tokenId uint256 ID of the token to be transferred
* @param _data bytes optional data to send along with the call
* @return bool whether the call correctly returned the expected magic value
*/
function _checkContractOnERC721Received(
address from,
address to,
uint256 tokenId,
bytes memory _data
) private returns (bool) {
try
IERC721Receiver(to).onERC721Received(
_msgSender(),
from,
tokenId,
_data
)
returns (bytes4 retval) {
return retval == IERC721Receiver(to).onERC721Received.selector;
} catch (bytes memory reason) {
if (reason.length == 0) {
revert TransferToNonERC721ReceiverImplementer();
} else {
assembly {
revert(add(32, reason), mload(reason))
}
}
}
}
/**
* @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 {}
}
// File: Contract.sol
pragma solidity ^0.8.7;
contract PepeSicilian is
ERC721A,
ERC2981,
Ownable,
ReentrancyGuard,
DefaultOperatorFilterer
{
using Strings for uint256;
mapping(address => uint256) public publicClaimed;
string public baseURI;
string public hiddenMetadataURI =
"ipfs://bafybeicz7uwod53zetcljyuf3fx5gqeqspxv3xwsfcrotype3paq2r5jim/1.json";
bool public revealed;
bool public paused = true;
address public ROYALITY__ADDRESS;
uint96 public ROYALITY__VALUE;
uint256 public publicPrice = 0.0055 ether;
uint256 public publicMintPerTx = 50;
uint256 public maxSupply = 555;
constructor() ERC721A("Pepe Sicilian", "PS") {
ROYALITY__ADDRESS = msg.sender;
ROYALITY__VALUE = 500;
_setDefaultRoyalty(ROYALITY__ADDRESS, ROYALITY__VALUE);
}
// ============ PUBLIC FUNCTIONS FOR MINTING ============
function mint(uint256 quantity) external payable nonReentrant {
require(!paused, "The contract is paused!");
require(
quantity > 0 && totalSupply() + quantity <= maxSupply,
"Invalid amount!"
);
require(
publicClaimed[msg.sender] + quantity <= publicMintPerTx,
"You can't mint this amount"
);
bool didClaim = true;
if (publicClaimed[msg.sender] == 0) didClaim = false;
publicClaimed[msg.sender] += quantity;
if (!didClaim)
require(
msg.value >= publicPrice * (quantity - 1),
"Insufficient Funds!"
);
else
require(msg.value >= publicPrice * quantity, "Insufficient Funds!");
_safeMint(msg.sender, quantity);
}
function _baseURI() internal view virtual override returns (string memory) {
return baseURI;
}
function tokenURI(uint256 tokenId)
public
view
virtual
override
returns (string memory)
{
require(
_exists(tokenId),
"ERC721Metadata: URI query for nonexistent token"
);
if (revealed == false) {
return hiddenMetadataURI;
}
string memory currentBaseURI = _baseURI();
return
bytes(currentBaseURI).length > 0
? string(
abi.encodePacked(
currentBaseURI,
tokenId.toString(),
".json"
)
)
: "";
}
function supportsInterface(bytes4 interfaceId)
public
view
override(ERC721A, ERC2981)
returns (bool)
{
return
ERC721A.supportsInterface(interfaceId) ||
ERC2981.supportsInterface(interfaceId);
}
function setRoyalties(address receiver, uint96 royaltyFraction)
external
onlyOwner
{
_setDefaultRoyalty(receiver, royaltyFraction);
}
function setCost(uint256 _newPublicCost) external onlyOwner {
publicPrice = _newPublicCost;
}
function setMaxPublic(uint256 _newMaxPublic) external onlyOwner {
publicMintPerTx = _newMaxPublic;
}
function setMaxSuppy(uint256 _amount) external onlyOwner {
maxSupply = _amount;
}
function setPaused(bool _state) external onlyOwner {
paused = _state;
}
function setBaseURI(string memory _newBaseURI) external onlyOwner {
baseURI = _newBaseURI;
}
function setRevealed(bool _state) external onlyOwner {
revealed = _state;
}
function setHiddenMetadataURI(string memory _URI) external onlyOwner {
hiddenMetadataURI = _URI;
}
function airDrop(uint256 quantity, address _address) external onlyOwner {
_safeMint(_address, quantity);
}
function airDropBatch(address[] memory _addresses) external onlyOwner {
for (uint256 i = 0; i < _addresses.length; i++) {
_safeMint(_addresses[i], 1);
}
}
function withdraw() public onlyOwner {
// Do not remove this otherwise you will not be able to withdraw the funds.
// =============================================================================
(bool ts, ) = payable(owner()).call{value: address(this).balance}("");
require(ts);
// =============================================================================
}
function transferFrom(
address from,
address to,
uint256 tokenId
) public override onlyAllowedOperator {
super.transferFrom(from, to, tokenId);
}
function safeTransferFrom(
address from,
address to,
uint256 tokenId
) public override onlyAllowedOperator {
super.safeTransferFrom(from, to, tokenId);
}
function safeTransferFrom(
address from,
address to,
uint256 tokenId,
bytes memory data
) public override onlyAllowedOperator {
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":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","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":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","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":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","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":"ROYALITY__ADDRESS","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ROYALITY__VALUE","outputs":[{"internalType":"uint96","name":"","type":"uint96"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"address","name":"_address","type":"address"}],"name":"airDrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"}],"name":"airDropBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"publicClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicMintPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPublicCost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_URI","type":"string"}],"name":"setHiddenMetadataURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxPublic","type":"uint256"}],"name":"setMaxPublic","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setMaxSuppy","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint96","name":"royaltyFraction","type":"uint96"}],"name":"setRoyalties","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":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
610100604052604960808181529062002c0560a039600e9062000023908262000481565b50600f805461ff00191661010017905566138a388a43c000601155603260125561022b6013553480156200005657600080fd5b50733cc6cdda760b79bafa08df41ecfa224f810dceb660016040518060400160405280600d81526020016c2832b8329029b4b1b4b634b0b760991b81525060405180604001604052806002815260200161505360f01b8152508160029081620000c0919062000481565b506003620000cf828262000481565b5050600160005550620000e23362000285565b6001600b556daaeb6d7670e522a718067333cd4e3b156200022c5780156200017a57604051633e9f1edf60e11b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e90637d3e3dbe906044015b600060405180830381600087803b1580156200015b57600080fd5b505af115801562000170573d6000803e3d6000fd5b505050506200022c565b6001600160a01b03821615620001cb5760405163a0af290360e01b81523060048201526001600160a01b03831660248201526daaeb6d7670e522a718067333cd4e9063a0af29039060440162000140565b604051632210724360e11b81523060048201526daaeb6d7670e522a718067333cd4e90634420e48690602401600060405180830381600087803b1580156200021257600080fd5b505af115801562000227573d6000803e3d6000fd5b505050505b5050600f80546201000033810262010000600160b01b03199092169190911791829055601080546001600160601b0319166101f49081179091556200027f92919091046001600160a01b031690620002d7565b6200054d565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6127106001600160601b03821611156200034b5760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b60648201526084015b60405180910390fd5b6001600160a01b038216620003a35760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c696420726563656976657200000000000000604482015260640162000342565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600855565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200040757607f821691505b6020821081036200042857634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200047c57600081815260208120601f850160051c81016020861015620004575750805b601f850160051c820191505b81811015620004785782815560010162000463565b5050505b505050565b81516001600160401b038111156200049d576200049d620003dc565b620004b581620004ae8454620003f2565b846200042e565b602080601f831160018114620004ed5760008415620004d45750858301515b600019600386901b1c1916600185901b17855562000478565b600085815260208120601f198616915b828110156200051e57888601518255948401946001909101908401620004fd565b50858210156200053d5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b6126a8806200055d6000396000f3fe60806040526004361061023b5760003560e01c8063715018a61161012e578063b88d4fde116100ab578063e0a808531161006f578063e0a80853146106bb578063e985e9c5146106db578063f2fde38b146106fb578063fae1f6e21461071b578063fbdb84941461073b57600080fd5b8063b88d4fde14610630578063ba9e12f714610650578063c21b471b14610665578063c87b56dd14610685578063d5abeb01146106a557600080fd5b8063a0712d68116100f2578063a0712d681461059a578063a22cb465146105ad578063a945bf80146105cd578063aed38015146105e3578063b5b1cd7c1461060357600080fd5b8063715018a61461050c5780638da5cb5b1461052157806395d89b411461053f5780639a87a46d146105545780639ec571d51461057a57600080fd5b80633ccfd60b116101bc57806355f804b31161018057806355f804b3146104785780635c975abb146104985780636352211e146104b75780636c0360eb146104d757806370a08231146104ec57600080fd5b80633ccfd60b146103e957806342842e0e146103fe57806344a0d68a1461041e578063512507c61461043e578063518302271461045e57600080fd5b806316c38b3c1161020357806316c38b3c1461031557806318160ddd146103355780631f32975e1461035257806323b872dd1461038a5780632a55205a146103aa57600080fd5b806301ffc9a71461024057806306fdde0314610275578063081812fc14610297578063095ea7b3146102cf5780630caea53b146102f1575b600080fd5b34801561024c57600080fd5b5061026061025b366004611f2c565b61075b565b60405190151581526020015b60405180910390f35b34801561028157600080fd5b5061028a61077b565b60405161026c9190611f99565b3480156102a357600080fd5b506102b76102b2366004611fac565b61080d565b6040516001600160a01b03909116815260200161026c565b3480156102db57600080fd5b506102ef6102ea366004611fe1565b610851565b005b3480156102fd57600080fd5b5061030760125481565b60405190815260200161026c565b34801561032157600080fd5b506102ef610330366004612019565b6108de565b34801561034157600080fd5b506001546000540360001901610307565b34801561035e57600080fd5b50601054610372906001600160601b031681565b6040516001600160601b03909116815260200161026c565b34801561039657600080fd5b506102ef6103a5366004612036565b61092b565b3480156103b657600080fd5b506103ca6103c5366004612072565b6109df565b604080516001600160a01b03909316835260208301919091520161026c565b3480156103f557600080fd5b506102ef610a8b565b34801561040a57600080fd5b506102ef610419366004612036565b610b29565b34801561042a57600080fd5b506102ef610439366004611fac565b610bdd565b34801561044a57600080fd5b506102ef610459366004612131565b610c0c565b34801561046a57600080fd5b50600f546102609060ff1681565b34801561048457600080fd5b506102ef610493366004612131565b610c46565b3480156104a457600080fd5b50600f5461026090610100900460ff1681565b3480156104c357600080fd5b506102b76104d2366004611fac565b610c7c565b3480156104e357600080fd5b5061028a610c8e565b3480156104f857600080fd5b50610307610507366004612179565b610d1c565b34801561051857600080fd5b506102ef610d6a565b34801561052d57600080fd5b50600a546001600160a01b03166102b7565b34801561054b57600080fd5b5061028a610da0565b34801561056057600080fd5b50600f546102b7906201000090046001600160a01b031681565b34801561058657600080fd5b506102ef610595366004611fac565b610daf565b6102ef6105a8366004611fac565b610dde565b3480156105b957600080fd5b506102ef6105c8366004612194565b61106e565b3480156105d957600080fd5b5061030760115481565b3480156105ef57600080fd5b506102ef6105fe3660046121cb565b611103565b34801561060f57600080fd5b5061030761061e366004612179565b600c6020526000908152604090205481565b34801561063c57600080fd5b506102ef61064b3660046121f7565b611137565b34801561065c57600080fd5b5061028a6111f2565b34801561067157600080fd5b506102ef610680366004612272565b6111ff565b34801561069157600080fd5b5061028a6106a0366004611fac565b611233565b3480156106b157600080fd5b5061030760135481565b3480156106c757600080fd5b506102ef6106d6366004612019565b61139f565b3480156106e757600080fd5b506102606106f63660046122aa565b6113dc565b34801561070757600080fd5b506102ef610716366004612179565b61140a565b34801561072757600080fd5b506102ef6107363660046122d4565b6114a2565b34801561074757600080fd5b506102ef610756366004611fac565b61150e565b60006107668261153d565b8061077557506107758261158d565b92915050565b60606002805461078a90612380565b80601f01602080910402602001604051908101604052809291908181526020018280546107b690612380565b80156108035780601f106107d857610100808354040283529160200191610803565b820191906000526020600020905b8154815290600101906020018083116107e657829003601f168201915b5050505050905090565b6000610818826115b2565b610835576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061085c82610c7c565b9050806001600160a01b0316836001600160a01b0316036108905760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906108b057506108ae81336113dc565b155b156108ce576040516367d9dca160e11b815260040160405180910390fd5b6108d98383836115eb565b505050565b600a546001600160a01b031633146109115760405162461bcd60e51b8152600401610908906123ba565b60405180910390fd5b600f80549115156101000261ff0019909216919091179055565b6daaeb6d7670e522a718067333cd4e3b156109d457604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c6171134906044016020604051808303816000875af1158015610991573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109b591906123ef565b6109d457604051633b79c77360e21b8152336004820152602401610908565b6108d9838383611647565b60008281526009602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b0316928201929092528291610a545750604080518082019091526008546001600160a01b0381168252600160a01b90046001600160601b031660208201525b602081015160009061271090610a73906001600160601b031687612422565b610a7d919061244f565b915196919550909350505050565b600a546001600160a01b03163314610ab55760405162461bcd60e51b8152600401610908906123ba565b6000610ac9600a546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610b13576040519150601f19603f3d011682016040523d82523d6000602084013e610b18565b606091505b5050905080610b2657600080fd5b50565b6daaeb6d7670e522a718067333cd4e3b15610bd257604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c6171134906044016020604051808303816000875af1158015610b8f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bb391906123ef565b610bd257604051633b79c77360e21b8152336004820152602401610908565b6108d9838383611652565b600a546001600160a01b03163314610c075760405162461bcd60e51b8152600401610908906123ba565b601155565b600a546001600160a01b03163314610c365760405162461bcd60e51b8152600401610908906123ba565b600e610c4282826124b1565b5050565b600a546001600160a01b03163314610c705760405162461bcd60e51b8152600401610908906123ba565b600d610c4282826124b1565b6000610c878261166d565b5192915050565b600d8054610c9b90612380565b80601f0160208091040260200160405190810160405280929190818152602001828054610cc790612380565b8015610d145780601f10610ce957610100808354040283529160200191610d14565b820191906000526020600020905b815481529060010190602001808311610cf757829003601f168201915b505050505081565b60006001600160a01b038216610d45576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b600a546001600160a01b03163314610d945760405162461bcd60e51b8152600401610908906123ba565b610d9e6000611794565b565b60606003805461078a90612380565b600a546001600160a01b03163314610dd95760405162461bcd60e51b8152600401610908906123ba565b601355565b6002600b5403610e305760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610908565b6002600b55600f54610100900460ff1615610e8d5760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e747261637420697320706175736564210000000000000000006044820152606401610908565b600081118015610eb657506013546001546000548391900360001901610eb39190612570565b11155b610ef45760405162461bcd60e51b815260206004820152600f60248201526e496e76616c696420616d6f756e742160881b6044820152606401610908565b601254336000908152600c6020526040902054610f12908390612570565b1115610f605760405162461bcd60e51b815260206004820152601a60248201527f596f752063616e2774206d696e74207468697320616d6f756e740000000000006044820152606401610908565b336000908152600c602052604081205460019103610f7c575060005b336000908152600c602052604081208054849290610f9b908490612570565b9091555081905061100857610fb1600183612583565b601154610fbe9190612422565b3410156110035760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742046756e64732160681b6044820152606401610908565b61105b565b816011546110169190612422565b34101561105b5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742046756e64732160681b6044820152606401610908565b61106533836117e6565b50506001600b55565b336001600160a01b038316036110975760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b0316331461112d5760405162461bcd60e51b8152600401610908906123ba565b610c4281836117e6565b6daaeb6d7670e522a718067333cd4e3b156111e057604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c6171134906044016020604051808303816000875af115801561119d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111c191906123ef565b6111e057604051633b79c77360e21b8152336004820152602401610908565b6111ec84848484611800565b50505050565b600e8054610c9b90612380565b600a546001600160a01b031633146112295760405162461bcd60e51b8152600401610908906123ba565b610c42828261184b565b606061123e826115b2565b6112a25760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610908565b600f5460ff16151560000361134357600e80546112be90612380565b80601f01602080910402602001604051908101604052809291908181526020018280546112ea90612380565b80156113375780601f1061130c57610100808354040283529160200191611337565b820191906000526020600020905b81548152906001019060200180831161131a57829003601f168201915b50505050509050919050565b600061134d611948565b9050600081511161136d5760405180602001604052806000815250611398565b8061137784611957565b604051602001611388929190612596565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146113c95760405162461bcd60e51b8152600401610908906123ba565b600f805460ff1916911515919091179055565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b600a546001600160a01b031633146114345760405162461bcd60e51b8152600401610908906123ba565b6001600160a01b0381166114995760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610908565b610b2681611794565b600a546001600160a01b031633146114cc5760405162461bcd60e51b8152600401610908906123ba565b60005b8151811015610c42576114fc8282815181106114ed576114ed6125d5565b602002602001015160016117e6565b80611506816125eb565b9150506114cf565b600a546001600160a01b031633146115385760405162461bcd60e51b8152600401610908906123ba565b601255565b60006001600160e01b031982166380ac58cd60e01b148061156e57506001600160e01b03198216635b5e139f60e01b145b8061077557506301ffc9a760e01b6001600160e01b0319831614610775565b60006001600160e01b0319821663152a902d60e11b148061077557506107758261153d565b6000816001111580156115c6575060005482105b8015610775575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6108d9838383611a5f565b6108d983838360405180602001604052806000815250611137565b6040805160608101825260008082526020820181905291810191909152818060011115801561169d575060005481105b1561177b57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906117795780516001600160a01b031615611710579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611774579392505050565b611710565b505b604051636f96cda160e11b815260040160405180910390fd5b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610c42828260405180602001604052806000815250611c4d565b61180b848484611a5f565b6001600160a01b0383163b1515801561182d575061182b84848484611c5a565b155b156111ec576040516368d2bf6b60e11b815260040160405180910390fd5b6127106001600160601b03821611156118b95760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b6064820152608401610908565b6001600160a01b03821661190f5760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401610908565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600855565b6060600d805461078a90612380565b60608160000361197e5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156119a85780611992816125eb565b91506119a19050600a8361244f565b9150611982565b6000816001600160401b038111156119c2576119c2612094565b6040519080825280601f01601f1916602001820160405280156119ec576020820181803683370190505b5090505b8415611a5757611a01600183612583565b9150611a0e600a86612604565b611a19906030612570565b60f81b818381518110611a2e57611a2e6125d5565b60200101906001600160f81b031916908160001a905350611a50600a8661244f565b94506119f0565b949350505050565b6000611a6a8261166d565b9050836001600160a01b031681600001516001600160a01b031614611aa15760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480611abf5750611abf85336113dc565b80611ada575033611acf8461080d565b6001600160a01b0316145b905080611afa57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416611b2157604051633a954ecd60e21b815260040160405180910390fd5b611b2d600084876115eb565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116611c01576000548214611c0157805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6108d98383836001611d45565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611c8f903390899088908890600401612618565b6020604051808303816000875af1925050508015611cca575060408051601f3d908101601f19168201909252611cc791810190612655565b60015b611d28573d808015611cf8576040519150601f19603f3d011682016040523d82523d6000602084013e611cfd565b606091505b508051600003611d20576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6000546001600160a01b038516611d6e57604051622e076360e81b815260040160405180910390fd5b83600003611d8f5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611e4057506001600160a01b0387163b15155b15611ec8575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611e916000888480600101955088611c5a565b611eae576040516368d2bf6b60e11b815260040160405180910390fd5b808203611e46578260005414611ec357600080fd5b611f0d565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808203611ec9575b50600055611c46565b6001600160e01b031981168114610b2657600080fd5b600060208284031215611f3e57600080fd5b813561139881611f16565b60005b83811015611f64578181015183820152602001611f4c565b50506000910152565b60008151808452611f85816020860160208601611f49565b601f01601f19169290920160200192915050565b6020815260006113986020830184611f6d565b600060208284031215611fbe57600080fd5b5035919050565b80356001600160a01b0381168114611fdc57600080fd5b919050565b60008060408385031215611ff457600080fd5b611ffd83611fc5565b946020939093013593505050565b8015158114610b2657600080fd5b60006020828403121561202b57600080fd5b81356113988161200b565b60008060006060848603121561204b57600080fd5b61205484611fc5565b925061206260208501611fc5565b9150604084013590509250925092565b6000806040838503121561208557600080fd5b50508035926020909101359150565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b03811182821017156120d2576120d2612094565b604052919050565b60006001600160401b038311156120f3576120f3612094565b612106601f8401601f19166020016120aa565b905082815283838301111561211a57600080fd5b828260208301376000602084830101529392505050565b60006020828403121561214357600080fd5b81356001600160401b0381111561215957600080fd5b8201601f8101841361216a57600080fd5b611a57848235602084016120da565b60006020828403121561218b57600080fd5b61139882611fc5565b600080604083850312156121a757600080fd5b6121b083611fc5565b915060208301356121c08161200b565b809150509250929050565b600080604083850312156121de57600080fd5b823591506121ee60208401611fc5565b90509250929050565b6000806000806080858703121561220d57600080fd5b61221685611fc5565b935061222460208601611fc5565b92506040850135915060608501356001600160401b0381111561224657600080fd5b8501601f8101871361225757600080fd5b612266878235602084016120da565b91505092959194509250565b6000806040838503121561228557600080fd5b61228e83611fc5565b915060208301356001600160601b03811681146121c057600080fd5b600080604083850312156122bd57600080fd5b6122c683611fc5565b91506121ee60208401611fc5565b600060208083850312156122e757600080fd5b82356001600160401b03808211156122fe57600080fd5b818501915085601f83011261231257600080fd5b81358181111561232457612324612094565b8060051b91506123358483016120aa565b818152918301840191848101908884111561234f57600080fd5b938501935b838510156123745761236585611fc5565b82529385019390850190612354565b98975050505050505050565b600181811c9082168061239457607f821691505b6020821081036123b457634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60006020828403121561240157600080fd5b81516113988161200b565b634e487b7160e01b600052601160045260246000fd5b80820281158282048414176107755761077561240c565b634e487b7160e01b600052601260045260246000fd5b60008261245e5761245e612439565b500490565b601f8211156108d957600081815260208120601f850160051c8101602086101561248a5750805b601f850160051c820191505b818110156124a957828155600101612496565b505050505050565b81516001600160401b038111156124ca576124ca612094565b6124de816124d88454612380565b84612463565b602080601f83116001811461251357600084156124fb5750858301515b600019600386901b1c1916600185901b1785556124a9565b600085815260208120601f198616915b8281101561254257888601518255948401946001909101908401612523565b50858210156125605787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b808201808211156107755761077561240c565b818103818111156107755761077561240c565b600083516125a8818460208801611f49565b8351908301906125bc818360208801611f49565b64173539b7b760d91b9101908152600501949350505050565b634e487b7160e01b600052603260045260246000fd5b6000600182016125fd576125fd61240c565b5060010190565b60008261261357612613612439565b500690565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061264b90830184611f6d565b9695505050505050565b60006020828403121561266757600080fd5b815161139881611f1656fea26469706673582212207389c68f6bff87e64a7e7f3c2b7b626d5b1ed0028bb2f0f5699c82286fd04ad464736f6c63430008120033697066733a2f2f62616679626569637a3775776f6435337a6574636c6a797566336678356771657173707876337877736663726f74797065337061713272356a696d2f312e6a736f6e
Deployed Bytecode
0x60806040526004361061023b5760003560e01c8063715018a61161012e578063b88d4fde116100ab578063e0a808531161006f578063e0a80853146106bb578063e985e9c5146106db578063f2fde38b146106fb578063fae1f6e21461071b578063fbdb84941461073b57600080fd5b8063b88d4fde14610630578063ba9e12f714610650578063c21b471b14610665578063c87b56dd14610685578063d5abeb01146106a557600080fd5b8063a0712d68116100f2578063a0712d681461059a578063a22cb465146105ad578063a945bf80146105cd578063aed38015146105e3578063b5b1cd7c1461060357600080fd5b8063715018a61461050c5780638da5cb5b1461052157806395d89b411461053f5780639a87a46d146105545780639ec571d51461057a57600080fd5b80633ccfd60b116101bc57806355f804b31161018057806355f804b3146104785780635c975abb146104985780636352211e146104b75780636c0360eb146104d757806370a08231146104ec57600080fd5b80633ccfd60b146103e957806342842e0e146103fe57806344a0d68a1461041e578063512507c61461043e578063518302271461045e57600080fd5b806316c38b3c1161020357806316c38b3c1461031557806318160ddd146103355780631f32975e1461035257806323b872dd1461038a5780632a55205a146103aa57600080fd5b806301ffc9a71461024057806306fdde0314610275578063081812fc14610297578063095ea7b3146102cf5780630caea53b146102f1575b600080fd5b34801561024c57600080fd5b5061026061025b366004611f2c565b61075b565b60405190151581526020015b60405180910390f35b34801561028157600080fd5b5061028a61077b565b60405161026c9190611f99565b3480156102a357600080fd5b506102b76102b2366004611fac565b61080d565b6040516001600160a01b03909116815260200161026c565b3480156102db57600080fd5b506102ef6102ea366004611fe1565b610851565b005b3480156102fd57600080fd5b5061030760125481565b60405190815260200161026c565b34801561032157600080fd5b506102ef610330366004612019565b6108de565b34801561034157600080fd5b506001546000540360001901610307565b34801561035e57600080fd5b50601054610372906001600160601b031681565b6040516001600160601b03909116815260200161026c565b34801561039657600080fd5b506102ef6103a5366004612036565b61092b565b3480156103b657600080fd5b506103ca6103c5366004612072565b6109df565b604080516001600160a01b03909316835260208301919091520161026c565b3480156103f557600080fd5b506102ef610a8b565b34801561040a57600080fd5b506102ef610419366004612036565b610b29565b34801561042a57600080fd5b506102ef610439366004611fac565b610bdd565b34801561044a57600080fd5b506102ef610459366004612131565b610c0c565b34801561046a57600080fd5b50600f546102609060ff1681565b34801561048457600080fd5b506102ef610493366004612131565b610c46565b3480156104a457600080fd5b50600f5461026090610100900460ff1681565b3480156104c357600080fd5b506102b76104d2366004611fac565b610c7c565b3480156104e357600080fd5b5061028a610c8e565b3480156104f857600080fd5b50610307610507366004612179565b610d1c565b34801561051857600080fd5b506102ef610d6a565b34801561052d57600080fd5b50600a546001600160a01b03166102b7565b34801561054b57600080fd5b5061028a610da0565b34801561056057600080fd5b50600f546102b7906201000090046001600160a01b031681565b34801561058657600080fd5b506102ef610595366004611fac565b610daf565b6102ef6105a8366004611fac565b610dde565b3480156105b957600080fd5b506102ef6105c8366004612194565b61106e565b3480156105d957600080fd5b5061030760115481565b3480156105ef57600080fd5b506102ef6105fe3660046121cb565b611103565b34801561060f57600080fd5b5061030761061e366004612179565b600c6020526000908152604090205481565b34801561063c57600080fd5b506102ef61064b3660046121f7565b611137565b34801561065c57600080fd5b5061028a6111f2565b34801561067157600080fd5b506102ef610680366004612272565b6111ff565b34801561069157600080fd5b5061028a6106a0366004611fac565b611233565b3480156106b157600080fd5b5061030760135481565b3480156106c757600080fd5b506102ef6106d6366004612019565b61139f565b3480156106e757600080fd5b506102606106f63660046122aa565b6113dc565b34801561070757600080fd5b506102ef610716366004612179565b61140a565b34801561072757600080fd5b506102ef6107363660046122d4565b6114a2565b34801561074757600080fd5b506102ef610756366004611fac565b61150e565b60006107668261153d565b8061077557506107758261158d565b92915050565b60606002805461078a90612380565b80601f01602080910402602001604051908101604052809291908181526020018280546107b690612380565b80156108035780601f106107d857610100808354040283529160200191610803565b820191906000526020600020905b8154815290600101906020018083116107e657829003601f168201915b5050505050905090565b6000610818826115b2565b610835576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061085c82610c7c565b9050806001600160a01b0316836001600160a01b0316036108905760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216148015906108b057506108ae81336113dc565b155b156108ce576040516367d9dca160e11b815260040160405180910390fd5b6108d98383836115eb565b505050565b600a546001600160a01b031633146109115760405162461bcd60e51b8152600401610908906123ba565b60405180910390fd5b600f80549115156101000261ff0019909216919091179055565b6daaeb6d7670e522a718067333cd4e3b156109d457604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c6171134906044016020604051808303816000875af1158015610991573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109b591906123ef565b6109d457604051633b79c77360e21b8152336004820152602401610908565b6108d9838383611647565b60008281526009602090815260408083208151808301909252546001600160a01b038116808352600160a01b9091046001600160601b0316928201929092528291610a545750604080518082019091526008546001600160a01b0381168252600160a01b90046001600160601b031660208201525b602081015160009061271090610a73906001600160601b031687612422565b610a7d919061244f565b915196919550909350505050565b600a546001600160a01b03163314610ab55760405162461bcd60e51b8152600401610908906123ba565b6000610ac9600a546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610b13576040519150601f19603f3d011682016040523d82523d6000602084013e610b18565b606091505b5050905080610b2657600080fd5b50565b6daaeb6d7670e522a718067333cd4e3b15610bd257604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c6171134906044016020604051808303816000875af1158015610b8f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bb391906123ef565b610bd257604051633b79c77360e21b8152336004820152602401610908565b6108d9838383611652565b600a546001600160a01b03163314610c075760405162461bcd60e51b8152600401610908906123ba565b601155565b600a546001600160a01b03163314610c365760405162461bcd60e51b8152600401610908906123ba565b600e610c4282826124b1565b5050565b600a546001600160a01b03163314610c705760405162461bcd60e51b8152600401610908906123ba565b600d610c4282826124b1565b6000610c878261166d565b5192915050565b600d8054610c9b90612380565b80601f0160208091040260200160405190810160405280929190818152602001828054610cc790612380565b8015610d145780601f10610ce957610100808354040283529160200191610d14565b820191906000526020600020905b815481529060010190602001808311610cf757829003601f168201915b505050505081565b60006001600160a01b038216610d45576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b600a546001600160a01b03163314610d945760405162461bcd60e51b8152600401610908906123ba565b610d9e6000611794565b565b60606003805461078a90612380565b600a546001600160a01b03163314610dd95760405162461bcd60e51b8152600401610908906123ba565b601355565b6002600b5403610e305760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610908565b6002600b55600f54610100900460ff1615610e8d5760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e747261637420697320706175736564210000000000000000006044820152606401610908565b600081118015610eb657506013546001546000548391900360001901610eb39190612570565b11155b610ef45760405162461bcd60e51b815260206004820152600f60248201526e496e76616c696420616d6f756e742160881b6044820152606401610908565b601254336000908152600c6020526040902054610f12908390612570565b1115610f605760405162461bcd60e51b815260206004820152601a60248201527f596f752063616e2774206d696e74207468697320616d6f756e740000000000006044820152606401610908565b336000908152600c602052604081205460019103610f7c575060005b336000908152600c602052604081208054849290610f9b908490612570565b9091555081905061100857610fb1600183612583565b601154610fbe9190612422565b3410156110035760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742046756e64732160681b6044820152606401610908565b61105b565b816011546110169190612422565b34101561105b5760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742046756e64732160681b6044820152606401610908565b61106533836117e6565b50506001600b55565b336001600160a01b038316036110975760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b0316331461112d5760405162461bcd60e51b8152600401610908906123ba565b610c4281836117e6565b6daaeb6d7670e522a718067333cd4e3b156111e057604051633185c44d60e21b81523060048201523360248201526daaeb6d7670e522a718067333cd4e9063c6171134906044016020604051808303816000875af115801561119d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906111c191906123ef565b6111e057604051633b79c77360e21b8152336004820152602401610908565b6111ec84848484611800565b50505050565b600e8054610c9b90612380565b600a546001600160a01b031633146112295760405162461bcd60e51b8152600401610908906123ba565b610c42828261184b565b606061123e826115b2565b6112a25760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610908565b600f5460ff16151560000361134357600e80546112be90612380565b80601f01602080910402602001604051908101604052809291908181526020018280546112ea90612380565b80156113375780601f1061130c57610100808354040283529160200191611337565b820191906000526020600020905b81548152906001019060200180831161131a57829003601f168201915b50505050509050919050565b600061134d611948565b9050600081511161136d5760405180602001604052806000815250611398565b8061137784611957565b604051602001611388929190612596565b6040516020818303038152906040525b9392505050565b600a546001600160a01b031633146113c95760405162461bcd60e51b8152600401610908906123ba565b600f805460ff1916911515919091179055565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b600a546001600160a01b031633146114345760405162461bcd60e51b8152600401610908906123ba565b6001600160a01b0381166114995760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610908565b610b2681611794565b600a546001600160a01b031633146114cc5760405162461bcd60e51b8152600401610908906123ba565b60005b8151811015610c42576114fc8282815181106114ed576114ed6125d5565b602002602001015160016117e6565b80611506816125eb565b9150506114cf565b600a546001600160a01b031633146115385760405162461bcd60e51b8152600401610908906123ba565b601255565b60006001600160e01b031982166380ac58cd60e01b148061156e57506001600160e01b03198216635b5e139f60e01b145b8061077557506301ffc9a760e01b6001600160e01b0319831614610775565b60006001600160e01b0319821663152a902d60e11b148061077557506107758261153d565b6000816001111580156115c6575060005482105b8015610775575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6108d9838383611a5f565b6108d983838360405180602001604052806000815250611137565b6040805160608101825260008082526020820181905291810191909152818060011115801561169d575060005481105b1561177b57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161515918101829052906117795780516001600160a01b031615611710579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611774579392505050565b611710565b505b604051636f96cda160e11b815260040160405180910390fd5b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b610c42828260405180602001604052806000815250611c4d565b61180b848484611a5f565b6001600160a01b0383163b1515801561182d575061182b84848484611c5a565b155b156111ec576040516368d2bf6b60e11b815260040160405180910390fd5b6127106001600160601b03821611156118b95760405162461bcd60e51b815260206004820152602a60248201527f455243323938313a20726f79616c7479206665652077696c6c206578636565646044820152692073616c65507269636560b01b6064820152608401610908565b6001600160a01b03821661190f5760405162461bcd60e51b815260206004820152601960248201527f455243323938313a20696e76616c6964207265636569766572000000000000006044820152606401610908565b604080518082019091526001600160a01b039092168083526001600160601b039091166020909201829052600160a01b90910217600855565b6060600d805461078a90612380565b60608160000361197e5750506040805180820190915260018152600360fc1b602082015290565b8160005b81156119a85780611992816125eb565b91506119a19050600a8361244f565b9150611982565b6000816001600160401b038111156119c2576119c2612094565b6040519080825280601f01601f1916602001820160405280156119ec576020820181803683370190505b5090505b8415611a5757611a01600183612583565b9150611a0e600a86612604565b611a19906030612570565b60f81b818381518110611a2e57611a2e6125d5565b60200101906001600160f81b031916908160001a905350611a50600a8661244f565b94506119f0565b949350505050565b6000611a6a8261166d565b9050836001600160a01b031681600001516001600160a01b031614611aa15760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b0386161480611abf5750611abf85336113dc565b80611ada575033611acf8461080d565b6001600160a01b0316145b905080611afa57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416611b2157604051633a954ecd60e21b815260040160405180910390fd5b611b2d600084876115eb565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116611c01576000548214611c0157805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b5050505050565b6108d98383836001611d45565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611c8f903390899088908890600401612618565b6020604051808303816000875af1925050508015611cca575060408051601f3d908101601f19168201909252611cc791810190612655565b60015b611d28573d808015611cf8576040519150601f19603f3d011682016040523d82523d6000602084013e611cfd565b606091505b508051600003611d20576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050949350505050565b6000546001600160a01b038516611d6e57604051622e076360e81b815260040160405180910390fd5b83600003611d8f5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038516600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168c0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168c01811690920217909155858452600490925290912080546001600160e01b031916909217600160a01b429092169190910217905580808501838015611e4057506001600160a01b0387163b15155b15611ec8575b60405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611e916000888480600101955088611c5a565b611eae576040516368d2bf6b60e11b815260040160405180910390fd5b808203611e46578260005414611ec357600080fd5b611f0d565b5b6040516001830192906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808203611ec9575b50600055611c46565b6001600160e01b031981168114610b2657600080fd5b600060208284031215611f3e57600080fd5b813561139881611f16565b60005b83811015611f64578181015183820152602001611f4c565b50506000910152565b60008151808452611f85816020860160208601611f49565b601f01601f19169290920160200192915050565b6020815260006113986020830184611f6d565b600060208284031215611fbe57600080fd5b5035919050565b80356001600160a01b0381168114611fdc57600080fd5b919050565b60008060408385031215611ff457600080fd5b611ffd83611fc5565b946020939093013593505050565b8015158114610b2657600080fd5b60006020828403121561202b57600080fd5b81356113988161200b565b60008060006060848603121561204b57600080fd5b61205484611fc5565b925061206260208501611fc5565b9150604084013590509250925092565b6000806040838503121561208557600080fd5b50508035926020909101359150565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b03811182821017156120d2576120d2612094565b604052919050565b60006001600160401b038311156120f3576120f3612094565b612106601f8401601f19166020016120aa565b905082815283838301111561211a57600080fd5b828260208301376000602084830101529392505050565b60006020828403121561214357600080fd5b81356001600160401b0381111561215957600080fd5b8201601f8101841361216a57600080fd5b611a57848235602084016120da565b60006020828403121561218b57600080fd5b61139882611fc5565b600080604083850312156121a757600080fd5b6121b083611fc5565b915060208301356121c08161200b565b809150509250929050565b600080604083850312156121de57600080fd5b823591506121ee60208401611fc5565b90509250929050565b6000806000806080858703121561220d57600080fd5b61221685611fc5565b935061222460208601611fc5565b92506040850135915060608501356001600160401b0381111561224657600080fd5b8501601f8101871361225757600080fd5b612266878235602084016120da565b91505092959194509250565b6000806040838503121561228557600080fd5b61228e83611fc5565b915060208301356001600160601b03811681146121c057600080fd5b600080604083850312156122bd57600080fd5b6122c683611fc5565b91506121ee60208401611fc5565b600060208083850312156122e757600080fd5b82356001600160401b03808211156122fe57600080fd5b818501915085601f83011261231257600080fd5b81358181111561232457612324612094565b8060051b91506123358483016120aa565b818152918301840191848101908884111561234f57600080fd5b938501935b838510156123745761236585611fc5565b82529385019390850190612354565b98975050505050505050565b600181811c9082168061239457607f821691505b6020821081036123b457634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60006020828403121561240157600080fd5b81516113988161200b565b634e487b7160e01b600052601160045260246000fd5b80820281158282048414176107755761077561240c565b634e487b7160e01b600052601260045260246000fd5b60008261245e5761245e612439565b500490565b601f8211156108d957600081815260208120601f850160051c8101602086101561248a5750805b601f850160051c820191505b818110156124a957828155600101612496565b505050505050565b81516001600160401b038111156124ca576124ca612094565b6124de816124d88454612380565b84612463565b602080601f83116001811461251357600084156124fb5750858301515b600019600386901b1c1916600185901b1785556124a9565b600085815260208120601f198616915b8281101561254257888601518255948401946001909101908401612523565b50858210156125605787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b808201808211156107755761077561240c565b818103818111156107755761077561240c565b600083516125a8818460208801611f49565b8351908301906125bc818360208801611f49565b64173539b7b760d91b9101908152600501949350505050565b634e487b7160e01b600052603260045260246000fd5b6000600182016125fd576125fd61240c565b5060010190565b60008261261357612613612439565b500690565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061264b90830184611f6d565b9695505050505050565b60006020828403121561266757600080fd5b815161139881611f1656fea26469706673582212207389c68f6bff87e64a7e7f3c2b7b626d5b1ed0028bb2f0f5699c82286fd04ad464736f6c63430008120033
Deployed Bytecode Sourcemap
83472:5203:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;86061:274;;;;;;;;;;-1:-1:-1;86061:274:0;;;;;:::i;:::-;;:::i;:::-;;;565:14:1;;558:22;540:41;;528:2;513:18;86061:274:0;;;;;;;;68198:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;69798:245::-;;;;;;;;;;-1:-1:-1;69798:245:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1697:32:1;;;1679:51;;1667:2;1652:18;69798:245:0;1533:203:1;69361:371:0;;;;;;;;;;-1:-1:-1;69361:371:0;;;;;:::i;:::-;;:::i;:::-;;84024:35;;;;;;;;;;;;;;;;;;;2324:25:1;;;2312:2;2297:18;84024:35:0;2178:177:1;86863:85:0;;;;;;;;;;-1:-1:-1;86863:85:0;;;;;:::i;:::-;;:::i;64252:303::-;;;;;;;;;;-1:-1:-1;64109:1:0;64506:12;64296:7;64490:13;:28;-1:-1:-1;;64490:46:0;64252:303;;83938:29;;;;;;;;;;-1:-1:-1;83938:29:0;;;;-1:-1:-1;;;;;83938:29:0;;;;;;-1:-1:-1;;;;;2891:39:1;;;2873:58;;2861:2;2846:18;83938:29:0;2729:208:1;88033:191:0;;;;;;;;;;-1:-1:-1;88033:191:0;;;;;:::i;:::-;;:::i;23324:505::-;;;;;;;;;;-1:-1:-1;23324:505:0;;;;;:::i;:::-;;:::i;:::-;;;;-1:-1:-1;;;;;3720:32:1;;;3702:51;;3784:2;3769:18;;3762:34;;;;3675:18;23324:505:0;3528:274:1;87613:412:0;;;;;;;;;;;;;:::i;88232:199::-;;;;;;;;;;-1:-1:-1;88232:199:0;;;;;:::i;:::-;;:::i;86523:107::-;;;;;;;;;;-1:-1:-1;86523:107:0;;;;;:::i;:::-;;:::i;87167:112::-;;;;;;;;;;-1:-1:-1;87167:112:0;;;;;:::i;:::-;;:::i;83840:20::-;;;;;;;;;;-1:-1:-1;83840:20:0;;;;;;;;86956:106;;;;;;;;;;-1:-1:-1;86956:106:0;;;;;:::i;:::-;;:::i;83867:25::-;;;;;;;;;;-1:-1:-1;83867:25:0;;;;;;;;;;;68006:125;;;;;;;;;;-1:-1:-1;68006:125:0;;;;;:::i;:::-;;:::i;83687:21::-;;;;;;;;;;;;;:::i;65422:206::-;;;;;;;;;;-1:-1:-1;65422:206:0;;;;;:::i;:::-;;:::i;42843:103::-;;;;;;;;;;;;;:::i;42192:87::-;;;;;;;;;;-1:-1:-1;42265:6:0;;-1:-1:-1;;;;;42265:6:0;42192:87;;68367:104;;;;;;;;;;;;;:::i;83899:32::-;;;;;;;;;;-1:-1:-1;83899:32:0;;;;;;;-1:-1:-1;;;;;83899:32:0;;;86760:95;;;;;;;;;;-1:-1:-1;86760:95:0;;;;;:::i;:::-;;:::i;84369:840::-;;;;;;:::i;:::-;;:::i;70115:319::-;;;;;;;;;;-1:-1:-1;70115:319:0;;;;;:::i;:::-;;:::i;83974:41::-;;;;;;;;;;;;;;;;87287:120;;;;;;;;;;-1:-1:-1;87287:120:0;;;;;:::i;:::-;;:::i;83630:48::-;;;;;;;;;;-1:-1:-1;83630:48:0;;;;;:::i;:::-;;;;;;;;;;;;;;88439:233;;;;;;;;;;-1:-1:-1;88439:233:0;;;;;:::i;:::-;;:::i;83715:118::-;;;;;;;;;;;;;:::i;86343:170::-;;;;;;;;;;-1:-1:-1;86343:170:0;;;;;:::i;:::-;;:::i;85335:718::-;;;;;;;;;;-1:-1:-1;85335:718:0;;;;;:::i;:::-;;:::i;84068:30::-;;;;;;;;;;;;;;;;87070:89;;;;;;;;;;-1:-1:-1;87070:89:0;;;;;:::i;:::-;;:::i;70505:214::-;;;;;;;;;;-1:-1:-1;70505:214:0;;;;;:::i;:::-;;:::i;43101:238::-;;;;;;;;;;-1:-1:-1;43101:238:0;;;;;:::i;:::-;;:::i;87415:190::-;;;;;;;;;;-1:-1:-1;87415:190:0;;;;;:::i;:::-;;:::i;86638:114::-;;;;;;;;;;-1:-1:-1;86638:114:0;;;;;:::i;:::-;;:::i;86061:274::-;86192:4;86234:38;86260:11;86234:25;:38::i;:::-;:93;;;;86289:38;86315:11;86289:25;:38::i;:::-;86214:113;86061:274;-1:-1:-1;;86061:274:0:o;68198:100::-;68252:13;68285:5;68278:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;68198:100;:::o;69798:245::-;69902:7;69932:16;69940:7;69932;:16::i;:::-;69927:64;;69957:34;;-1:-1:-1;;;69957:34:0;;;;;;;;;;;69927:64;-1:-1:-1;70011:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;70011:24:0;;69798:245::o;69361:371::-;69434:13;69450:24;69466:7;69450:15;:24::i;:::-;69434:40;;69495:5;-1:-1:-1;;;;;69489:11:0;:2;-1:-1:-1;;;;;69489:11:0;;69485:48;;69509:24;;-1:-1:-1;;;69509:24:0;;;;;;;;;;;69485:48;40975:10;-1:-1:-1;;;;;69550:21:0;;;;;;:63;;-1:-1:-1;69576:37:0;69593:5;40975:10;70505:214;:::i;69576:37::-;69575:38;69550:63;69546:138;;;69637:35;;-1:-1:-1;;;69637:35:0;;;;;;;;;;;69546:138;69696:28;69705:2;69709:7;69718:5;69696:8;:28::i;:::-;69423:309;69361:371;;:::o;86863:85::-;42265:6;;-1:-1:-1;;;;;42265:6:0;40975:10;42412:23;42404:68;;;;-1:-1:-1;;;42404:68:0;;;;;;;:::i;:::-;;;;;;;;;86925:6:::1;:15:::0;;;::::1;;;;-1:-1:-1::0;;86925:15:0;;::::1;::::0;;;::::1;::::0;;86863:85::o;88033:191::-;16650:42;17912:43;:47;17908:318;;17999:128;;-1:-1:-1;;;17999:128:0;;18070:4;17999:128;;;9080:34:1;18098:10:0;9130:18:1;;;9123:43;16650:42:0;;17999:40;;9015:18:1;;17999:128:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;17976:239;;18169:30;;-1:-1:-1;;;18169:30:0;;18188:10;18169:30;;;1679:51:1;1652:18;;18169:30:0;1533:203:1;17976:239:0;88179:37:::1;88198:4;88204:2;88208:7;88179:18;:37::i;23324:505::-:0;23466:7;23529:27;;;:17;:27;;;;;;;;23500:56;;;;;;;;;-1:-1:-1;;;;;23500:56:0;;;;;-1:-1:-1;;;23500:56:0;;;-1:-1:-1;;;;;23500:56:0;;;;;;;;23466:7;;23569:92;;-1:-1:-1;23620:29:0;;;;;;;;;23630:19;23620:29;-1:-1:-1;;;;;23620:29:0;;;;-1:-1:-1;;;23620:29:0;;-1:-1:-1;;;;;23620:29:0;;;;;23569:92;23711:23;;;;23673:21;;24195:5;;23698:36;;-1:-1:-1;;;;;23698:36:0;:10;:36;:::i;:::-;23697:71;;;;:::i;:::-;23789:16;;;;;-1:-1:-1;23324:505:0;;-1:-1:-1;;;;23324:505:0:o;87613:412::-;42265:6;;-1:-1:-1;;;;;42265:6:0;40975:10;42412:23;42404:68;;;;-1:-1:-1;;;42404:68:0;;;;;;;:::i;:::-;87837:7:::1;87858;42265:6:::0;;-1:-1:-1;;;;;42265:6:0;;42192:87;87858:7:::1;-1:-1:-1::0;;;;;87850:21:0::1;87879;87850:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;87836:69;;;87924:2;87916:11;;;::::0;::::1;;87650:375;87613:412::o:0;88232:199::-;16650:42;17912:43;:47;17908:318;;17999:128;;-1:-1:-1;;;17999:128:0;;18070:4;17999:128;;;9080:34:1;18098:10:0;9130:18:1;;;9123:43;16650:42:0;;17999:40;;9015:18:1;;17999:128:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;17976:239;;18169:30;;-1:-1:-1;;;18169:30:0;;18188:10;18169:30;;;1679:51:1;1652:18;;18169:30:0;1533:203:1;17976:239:0;88382:41:::1;88405:4;88411:2;88415:7;88382:22;:41::i;86523:107::-:0;42265:6;;-1:-1:-1;;;;;42265:6:0;40975:10;42412:23;42404:68;;;;-1:-1:-1;;;42404:68:0;;;;;;;:::i;:::-;86594:11:::1;:28:::0;86523:107::o;87167:112::-;42265:6;;-1:-1:-1;;;;;42265:6:0;40975:10;42412:23;42404:68;;;;-1:-1:-1;;;42404:68:0;;;;;;;:::i;:::-;87247:17:::1;:24;87267:4:::0;87247:17;:24:::1;:::i;:::-;;87167:112:::0;:::o;86956:106::-;42265:6;;-1:-1:-1;;;;;42265:6:0;40975:10;42412:23;42404:68;;;;-1:-1:-1;;;42404:68:0;;;;;;;:::i;:::-;87033:7:::1;:21;87043:11:::0;87033:7;:21:::1;:::i;68006:125::-:0;68070:7;68097:21;68110:7;68097:12;:21::i;:::-;:26;;68006:125;-1:-1:-1;;68006:125:0:o;83687:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;65422:206::-;65486:7;-1:-1:-1;;;;;65510:19:0;;65506:60;;65538:28;;-1:-1:-1;;;65538:28:0;;;;;;;;;;;65506:60;-1:-1:-1;;;;;;65592:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;65592:27:0;;65422:206::o;42843:103::-;42265:6;;-1:-1:-1;;;;;42265:6:0;40975:10;42412:23;42404:68;;;;-1:-1:-1;;;42404:68:0;;;;;;;:::i;:::-;42908:30:::1;42935:1;42908:18;:30::i;:::-;42843:103::o:0;68367:104::-;68423:13;68456:7;68449:14;;;;;:::i;86760:95::-;42265:6;;-1:-1:-1;;;;;42265:6:0;40975:10;42412:23;42404:68;;;;-1:-1:-1;;;42404:68:0;;;;;;;:::i;:::-;86828:9:::1;:19:::0;86760:95::o;84369:840::-;36958:1;37556:7;;:19;37548:63;;;;-1:-1:-1;;;37548:63:0;;12605:2:1;37548:63:0;;;12587:21:1;12644:2;12624:18;;;12617:30;12683:33;12663:18;;;12656:61;12734:18;;37548:63:0;12403:355:1;37548:63:0;36958:1;37689:7;:18;84451:6:::1;::::0;::::1;::::0;::::1;;;84450:7;84442:43;;;::::0;-1:-1:-1;;;84442:43:0;;12965:2:1;84442:43:0::1;::::0;::::1;12947:21:1::0;13004:2;12984:18;;;12977:30;13043:25;13023:18;;;13016:53;13086:18;;84442:43:0::1;12763:347:1::0;84442:43:0::1;84529:1;84518:8;:12;:53;;;;-1:-1:-1::0;84562:9:0::1;::::0;64109:1;64506:12;64296:7;64490:13;84550:8;;64490:28;;-1:-1:-1;;64490:46:0;84534:24:::1;;;;:::i;:::-;:37;;84518:53;84496:118;;;::::0;-1:-1:-1;;;84496:118:0;;13447:2:1;84496:118:0::1;::::0;::::1;13429:21:1::0;13486:2;13466:18;;;13459:30;-1:-1:-1;;;13505:18:1;;;13498:45;13560:18;;84496:118:0::1;13245:339:1::0;84496:118:0::1;84689:15;::::0;84663:10:::1;84649:25;::::0;;;:13:::1;:25;::::0;;;;;:36:::1;::::0;84677:8;;84649:36:::1;:::i;:::-;:55;;84627:131;;;::::0;-1:-1:-1;;;84627:131:0;;13791:2:1;84627:131:0::1;::::0;::::1;13773:21:1::0;13830:2;13810:18;;;13803:30;13869:28;13849:18;;;13842:56;13915:18;;84627:131:0::1;13589:350:1::0;84627:131:0::1;84818:10;84769:13;84804:25:::0;;;:13:::1;:25;::::0;;;;;84785:4:::1;::::0;84804:30;84800:52:::1;;-1:-1:-1::0;84847:5:0::1;84800:52;84877:10;84863:25;::::0;;;:13:::1;:25;::::0;;;;:37;;84892:8;;84863:25;:37:::1;::::0;84892:8;;84863:37:::1;:::i;:::-;::::0;;;-1:-1:-1;84916:8:0;;-1:-1:-1;84911:246:0::1;;84993:12;85004:1;84993:8:::0;:12:::1;:::i;:::-;84978:11;;:28;;;;:::i;:::-;84965:9;:41;;84939:122;;;::::0;-1:-1:-1;;;84939:122:0;;14279:2:1;84939:122:0::1;::::0;::::1;14261:21:1::0;14318:2;14298:18;;;14291:30;-1:-1:-1;;;14337:18:1;;;14330:49;14396:18;;84939:122:0::1;14077:343:1::0;84939:122:0::1;84911:246;;;85125:8;85111:11;;:22;;;;:::i;:::-;85098:9;:35;;85090:67;;;::::0;-1:-1:-1;;;85090:67:0;;14279:2:1;85090:67:0::1;::::0;::::1;14261:21:1::0;14318:2;14298:18;;;14291:30;-1:-1:-1;;;14337:18:1;;;14330:49;14396:18;;85090:67:0::1;14077:343:1::0;85090:67:0::1;85170:31;85180:10;85192:8;85170:9;:31::i;:::-;-1:-1:-1::0;;36914:1:0;37868:7;:22;84369:840::o;70115:319::-;40975:10;-1:-1:-1;;;;;70246:24:0;;;70242:54;;70279:17;;-1:-1:-1;;;70279:17:0;;;;;;;;;;;70242:54;40975:10;70309:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;70309:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;70309:53:0;;;;;;;;;;70378:48;;540:41:1;;;70309:42:0;;40975:10;70378:48;;513:18:1;70378:48:0;;;;;;;70115:319;;:::o;87287:120::-;42265:6;;-1:-1:-1;;;;;42265:6:0;40975:10;42412:23;42404:68;;;;-1:-1:-1;;;42404:68:0;;;;;;;:::i;:::-;87370:29:::1;87380:8;87390;87370:9;:29::i;88439:233::-:0;16650:42;17912:43;:47;17908:318;;17999:128;;-1:-1:-1;;;17999:128:0;;18070:4;17999:128;;;9080:34:1;18098:10:0;9130:18:1;;;9123:43;16650:42:0;;17999:40;;9015:18:1;;17999:128:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;17976:239;;18169:30;;-1:-1:-1;;;18169:30:0;;18188:10;18169:30;;;1679:51:1;1652:18;;18169:30:0;1533:203:1;17976:239:0;88617:47:::1;88640:4;88646:2;88650:7;88659:4;88617:22;:47::i;:::-;88439:233:::0;;;;:::o;83715:118::-;;;;;;;:::i;86343:170::-;42265:6;;-1:-1:-1;;;;;42265:6:0;40975:10;42412:23;42404:68;;;;-1:-1:-1;;;42404:68:0;;;;;;;:::i;:::-;86460:45:::1;86479:8;86489:15;86460:18;:45::i;85335:718::-:0;85453:13;85506:16;85514:7;85506;:16::i;:::-;85484:113;;;;-1:-1:-1;;;85484:113:0;;14627:2:1;85484:113:0;;;14609:21:1;14666:2;14646:18;;;14639:30;14705:34;14685:18;;;14678:62;-1:-1:-1;;;14756:18:1;;;14749:45;14811:19;;85484:113:0;14425:411:1;85484:113:0;85612:8;;;;:17;;:8;:17;85608:74;;85653:17;85646:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;85335:718;;;:::o;85608:74::-;85692:28;85723:10;:8;:10::i;:::-;85692:41;;85795:1;85770:14;85764:28;:32;:281;;;;;;;;;;;;;;;;;85888:14;85929:18;:7;:16;:18::i;:::-;85845:159;;;;;;;;;:::i;:::-;;;;;;;;;;;;;85764:281;85744:301;85335:718;-1:-1:-1;;;85335:718:0:o;87070:89::-;42265:6;;-1:-1:-1;;;;;42265:6:0;40975:10;42412:23;42404:68;;;;-1:-1:-1;;;42404:68:0;;;;;;;:::i;:::-;87134:8:::1;:17:::0;;-1:-1:-1;;87134:17:0::1;::::0;::::1;;::::0;;;::::1;::::0;;87070:89::o;70505:214::-;-1:-1:-1;;;;;70676:25:0;;;70647:4;70676:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;70505:214::o;43101:238::-;42265:6;;-1:-1:-1;;;;;42265:6:0;40975:10;42412:23;42404:68;;;;-1:-1:-1;;;42404:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;43204:22:0;::::1;43182:110;;;::::0;-1:-1:-1;;;43182:110:0;;15711:2:1;43182:110:0::1;::::0;::::1;15693:21:1::0;15750:2;15730:18;;;15723:30;15789:34;15769:18;;;15762:62;-1:-1:-1;;;15840:18:1;;;15833:36;15886:19;;43182:110:0::1;15509:402:1::0;43182:110:0::1;43303:28;43322:8;43303:18;:28::i;87415:190::-:0;42265:6;;-1:-1:-1;;;;;42265:6:0;40975:10;42412:23;42404:68;;;;-1:-1:-1;;;42404:68:0;;;;;;;:::i;:::-;87501:9:::1;87496:102;87520:10;:17;87516:1;:21;87496:102;;;87559:27;87569:10;87580:1;87569:13;;;;;;;;:::i;:::-;;;;;;;87584:1;87559:9;:27::i;:::-;87539:3:::0;::::1;::::0;::::1;:::i;:::-;;;;87496:102;;86638:114:::0;42265:6;;-1:-1:-1;;;;;42265:6:0;40975:10;42412:23;42404:68;;;;-1:-1:-1;;;42404:68:0;;;;;;;:::i;:::-;86713:15:::1;:31:::0;86638:114::o;65003:355::-;65150:4;-1:-1:-1;;;;;;65192:40:0;;-1:-1:-1;;;65192:40:0;;:105;;-1:-1:-1;;;;;;;65249:48:0;;-1:-1:-1;;;65249:48:0;65192:105;:158;;;-1:-1:-1;;;;;;;;;;20649:40:0;;;65314:36;20490:207;22978:291;23125:4;-1:-1:-1;;;;;;23167:41:0;;-1:-1:-1;;;23167:41:0;;:94;;;23225:36;23249:11;23225:23;:36::i;71944:213::-;72001:4;72057:7;64109:1;72038:26;;:66;;;;;72091:13;;72081:7;:23;72038:66;:111;;;;-1:-1:-1;;72122:20:0;;;;:11;:20;;;;;:27;-1:-1:-1;;;72122:27:0;;;;72121:28;;71944:213::o;80331:196::-;80446:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;80446:29:0;-1:-1:-1;;;;;80446:29:0;;;;;;;;;80491:28;;80446:24;;80491:28;;;;;;;80331:196;;;:::o;70786:170::-;70920:28;70930:4;70936:2;70940:7;70920:9;:28::i;71027:185::-;71165:39;71182:4;71188:2;71192:7;71165:39;;;;;;;;;;;;:16;:39::i;66803:1141::-;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;66946:7:0;;64109:1;66995:23;;:47;;;;;67029:13;;67022:4;:20;66995:47;66991:886;;;67063:31;67097:17;;;:11;:17;;;;;;;;;67063:51;;;;;;;;;-1:-1:-1;;;;;67063:51:0;;;;-1:-1:-1;;;67063:51:0;;-1:-1:-1;;;;;67063:51:0;;;;;;;;-1:-1:-1;;;67063:51:0;;;;;;;;;;;;;;67133:729;;67183:14;;-1:-1:-1;;;;;67183:28:0;;67179:101;;67247:9;66803:1141;-1:-1:-1;;;66803:1141:0:o;67179:101::-;-1:-1:-1;;;67622:6:0;67667:17;;;;:11;:17;;;;;;;;;67655:29;;;;;;;;;-1:-1:-1;;;;;67655:29:0;;;;;-1:-1:-1;;;67655:29:0;;-1:-1:-1;;;;;67655:29:0;;;;;;;;-1:-1:-1;;;67655:29:0;;;;;;;;;;;;;67715:28;67711:109;;67783:9;66803:1141;-1:-1:-1;;;66803:1141:0:o;67711:109::-;67582:261;;;67044:833;66991:886;67905:31;;-1:-1:-1;;;67905:31:0;;;;;;;;;;;43499:191;43592:6;;;-1:-1:-1;;;;;43609:17:0;;;-1:-1:-1;;;;;;43609:17:0;;;;;;;43642:40;;43592:6;;;43609:17;43592:6;;43642:40;;43573:16;;43642:40;43562:128;43499:191;:::o;72165:104::-;72234:27;72244:2;72248:8;72234:27;;;;;;;;;;;;:9;:27::i;71283:406::-;71450:28;71460:4;71466:2;71470:7;71450:9;:28::i;:::-;-1:-1:-1;;;;;71507:13:0;;45223:19;:23;;71507:89;;;;;71540:56;71571:4;71577:2;71581:7;71590:5;71540:30;:56::i;:::-;71539:57;71507:89;71489:193;;;71630:40;;-1:-1:-1;;;71630:40:0;;;;;;;;;;;24479:392;24195:5;-1:-1:-1;;;;;24619:33:0;;;;24597:125;;;;-1:-1:-1;;;24597:125:0;;16390:2:1;24597:125:0;;;16372:21:1;16429:2;16409:18;;;16402:30;16468:34;16448:18;;;16441:62;-1:-1:-1;;;16519:18:1;;;16512:40;16569:19;;24597:125:0;16188:406:1;24597:125:0;-1:-1:-1;;;;;24741:22:0;;24733:60;;;;-1:-1:-1;;;24733:60:0;;16801:2:1;24733:60:0;;;16783:21:1;16840:2;16820:18;;;16813:30;16879:27;16859:18;;;16852:55;16924:18;;24733:60:0;16599:349:1;24733:60:0;24828:35;;;;;;;;;-1:-1:-1;;;;;24828:35:0;;;;;;-1:-1:-1;;;;;24828:35:0;;;;;;;;;;-1:-1:-1;;;24806:57:0;;;;:19;:57;24479:392::o;85217:108::-;85277:13;85310:7;85303:14;;;;;:::i;38427:723::-;38483:13;38704:5;38713:1;38704:10;38700:53;;-1:-1:-1;;38731:10:0;;;;;;;;;;;;-1:-1:-1;;;38731:10:0;;;;;38427:723::o;38700:53::-;38778:5;38763:12;38819:78;38826:9;;38819:78;;38852:8;;;;:::i;:::-;;-1:-1:-1;38875:10:0;;-1:-1:-1;38883:2:0;38875:10;;:::i;:::-;;;38819:78;;;38907:19;38939:6;-1:-1:-1;;;;;38929:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;38929:17:0;;38907:39;;38957:154;38964:10;;38957:154;;38991:11;39001:1;38991:11;;:::i;:::-;;-1:-1:-1;39060:10:0;39068:2;39060:5;:10;:::i;:::-;39047:24;;:2;:24;:::i;:::-;39034:39;;39017:6;39024;39017:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;39017:56:0;;;;;;;;-1:-1:-1;39088:11:0;39097:2;39088:11;;:::i;:::-;;;38957:154;;;39135:6;38427:723;-1:-1:-1;;;;38427:723:0:o;75274:2130::-;75389:35;75427:21;75440:7;75427:12;:21::i;:::-;75389:59;;75487:4;-1:-1:-1;;;;;75465:26:0;:13;:18;;;-1:-1:-1;;;;;75465:26:0;;75461:67;;75500:28;;-1:-1:-1;;;75500:28:0;;;;;;;;;;;75461:67;75541:22;40975:10;-1:-1:-1;;;;;75567:20:0;;;;:73;;-1:-1:-1;75604:36:0;75621:4;40975:10;70505:214;:::i;75604:36::-;75567:126;;;-1:-1:-1;40975:10:0;75657:20;75669:7;75657:11;:20::i;:::-;-1:-1:-1;;;;;75657:36:0;;75567:126;75541:153;;75712:17;75707:66;;75738:35;;-1:-1:-1;;;75738:35:0;;;;;;;;;;;75707:66;-1:-1:-1;;;;;75788:16:0;;75784:52;;75813:23;;-1:-1:-1;;;75813:23:0;;;;;;;;;;;75784:52;75957:35;75974:1;75978:7;75987:4;75957:8;:35::i;:::-;-1:-1:-1;;;;;76288:18:0;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;76288:31:0;;;-1:-1:-1;;;;;76288:31:0;;;-1:-1:-1;;76288:31:0;;;;;;;76334:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;76334:29:0;;;;;;;;;;;76414:20;;;:11;:20;;;;;;76449:18;;-1:-1:-1;;;;;;76482:49:0;;;;-1:-1:-1;;;76515:15:0;76482:49;;;;;;;;;;76805:11;;76865:24;;;;;76908:13;;76414:20;;76865:24;;76908:13;76904:384;;77118:13;;77103:11;:28;77099:174;;77156:20;;77225:28;;;;-1:-1:-1;;;;;77199:54:0;-1:-1:-1;;;77199:54:0;-1:-1:-1;;;;;;77199:54:0;;;-1:-1:-1;;;;;77156:20:0;;77199:54;;;;77099:174;76263:1036;;;77335:7;77331:2;-1:-1:-1;;;;;77316:27:0;77325:4;-1:-1:-1;;;;;77316:27:0;;;;;;;;;;;77354:42;75378:2026;;75274:2130;;;:::o;72632:163::-;72755:32;72761:2;72765:8;72775:5;72782:4;72755:5;:32::i;81019:772::-;81216:155;;-1:-1:-1;;;81216:155:0;;81182:4;;-1:-1:-1;;;;;81216:36:0;;;;;:155;;40975:10;;81302:4;;81325:7;;81351:5;;81216:155;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;81216:155:0;;;;;;;;-1:-1:-1;;81216:155:0;;;;;;;;;;;;:::i;:::-;;;81199:585;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;81542:6;:13;81559:1;81542:18;81538:235;;81588:40;;-1:-1:-1;;;81588:40:0;;;;;;;;;;;81538:235;81731:6;81725:13;81716:6;81712:2;81708:15;81701:38;81199:585;-1:-1:-1;;;;;;81427:55:0;-1:-1:-1;;;81427:55:0;;-1:-1:-1;81019:772:0;;;;;;:::o;73054:1966::-;73193:20;73216:13;-1:-1:-1;;;;;73244:16:0;;73240:48;;73269:19;;-1:-1:-1;;;73269:19:0;;;;;;;;;;;73240:48;73303:8;73315:1;73303:13;73299:44;;73325:18;;-1:-1:-1;;;73325:18:0;;;;;;;;;;;73299:44;-1:-1:-1;;;;;73694:16:0;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;73753:49:0;;-1:-1:-1;;;;;73694:44:0;;;;;;;73753:49;;;;-1:-1:-1;;73694:44:0;;;;;;73753:49;;;;;;;;;;;;;;;;73819:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;73869:66:0;;;;-1:-1:-1;;;73919:15:0;73869:66;;;;;;;;;;73819:25;74016:23;;;74060:4;:23;;;;-1:-1:-1;;;;;;74068:13:0;;45223:19;:23;;74068:15;74056:832;;;74104:505;74135:38;;74160:12;;-1:-1:-1;;;;;74135:38:0;;;74152:1;;74135:38;;74152:1;;74135:38;74227:212;74296:1;74329:2;74362:14;;;;;;74407:5;74227:30;:212::i;:::-;74196:365;;74497:40;;-1:-1:-1;;;74497:40:0;;;;;;;;;;;74196:365;74604:3;74588:12;:19;74104:505;;74690:12;74673:13;;:29;74669:43;;74704:8;;;74669:43;74056:832;;;74753:120;74784:40;;74809:14;;;;;-1:-1:-1;;;;;74784:40:0;;;74801:1;;74784:40;;74801:1;;74784:40;74868:3;74852:12;:19;74753:120;;74056:832;-1:-1:-1;74902:13:0;:28;74952:60;88439:233;14:131:1;-1:-1:-1;;;;;;88:32:1;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:250::-;677:1;687:113;701:6;698:1;695:13;687:113;;;777:11;;;771:18;758:11;;;751:39;723:2;716:10;687:113;;;-1:-1:-1;;834:1:1;816:16;;809:27;592:250::o;847:271::-;889:3;927:5;921:12;954:6;949:3;942:19;970:76;1039:6;1032:4;1027:3;1023:14;1016:4;1009:5;1005:16;970:76;:::i;:::-;1100:2;1079:15;-1:-1:-1;;1075:29:1;1066:39;;;;1107:4;1062:50;;847:271;-1:-1:-1;;847:271:1:o;1123:220::-;1272:2;1261:9;1254:21;1235:4;1292:45;1333:2;1322:9;1318:18;1310:6;1292:45;:::i;1348:180::-;1407:6;1460:2;1448:9;1439:7;1435:23;1431:32;1428:52;;;1476:1;1473;1466:12;1428:52;-1:-1:-1;1499:23:1;;1348:180;-1:-1:-1;1348:180:1:o;1741:173::-;1809:20;;-1:-1:-1;;;;;1858:31:1;;1848:42;;1838:70;;1904:1;1901;1894:12;1838:70;1741:173;;;:::o;1919:254::-;1987:6;1995;2048:2;2036:9;2027:7;2023:23;2019:32;2016:52;;;2064:1;2061;2054:12;2016:52;2087:29;2106:9;2087:29;:::i;:::-;2077:39;2163:2;2148:18;;;;2135:32;;-1:-1:-1;;;1919:254:1:o;2360:118::-;2446:5;2439:13;2432:21;2425:5;2422:32;2412:60;;2468:1;2465;2458:12;2483:241;2539:6;2592:2;2580:9;2571:7;2567:23;2563:32;2560:52;;;2608:1;2605;2598:12;2560:52;2647:9;2634:23;2666:28;2688:5;2666:28;:::i;2942:328::-;3019:6;3027;3035;3088:2;3076:9;3067:7;3063:23;3059:32;3056:52;;;3104:1;3101;3094:12;3056:52;3127:29;3146:9;3127:29;:::i;:::-;3117:39;;3175:38;3209:2;3198:9;3194:18;3175:38;:::i;:::-;3165:48;;3260:2;3249:9;3245:18;3232:32;3222:42;;2942:328;;;;;:::o;3275:248::-;3343:6;3351;3404:2;3392:9;3383:7;3379:23;3375:32;3372:52;;;3420:1;3417;3410:12;3372:52;-1:-1:-1;;3443:23:1;;;3513:2;3498:18;;;3485:32;;-1:-1:-1;3275:248:1:o;3807:127::-;3868:10;3863:3;3859:20;3856:1;3849:31;3899:4;3896:1;3889:15;3923:4;3920:1;3913:15;3939:275;4010:2;4004:9;4075:2;4056:13;;-1:-1:-1;;4052:27:1;4040:40;;-1:-1:-1;;;;;4095:34:1;;4131:22;;;4092:62;4089:88;;;4157:18;;:::i;:::-;4193:2;4186:22;3939:275;;-1:-1:-1;3939:275:1:o;4219:407::-;4284:5;-1:-1:-1;;;;;4310:6:1;4307:30;4304:56;;;4340:18;;:::i;:::-;4378:57;4423:2;4402:15;;-1:-1:-1;;4398:29:1;4429:4;4394:40;4378:57;:::i;:::-;4369:66;;4458:6;4451:5;4444:21;4498:3;4489:6;4484:3;4480:16;4477:25;4474:45;;;4515:1;4512;4505:12;4474:45;4564:6;4559:3;4552:4;4545:5;4541:16;4528:43;4618:1;4611:4;4602:6;4595:5;4591:18;4587:29;4580:40;4219:407;;;;;:::o;4631:451::-;4700:6;4753:2;4741:9;4732:7;4728:23;4724:32;4721:52;;;4769:1;4766;4759:12;4721:52;4809:9;4796:23;-1:-1:-1;;;;;4834:6:1;4831:30;4828:50;;;4874:1;4871;4864:12;4828:50;4897:22;;4950:4;4942:13;;4938:27;-1:-1:-1;4928:55:1;;4979:1;4976;4969:12;4928:55;5002:74;5068:7;5063:2;5050:16;5045:2;5041;5037:11;5002:74;:::i;5087:186::-;5146:6;5199:2;5187:9;5178:7;5174:23;5170:32;5167:52;;;5215:1;5212;5205:12;5167:52;5238:29;5257:9;5238:29;:::i;5278:315::-;5343:6;5351;5404:2;5392:9;5383:7;5379:23;5375:32;5372:52;;;5420:1;5417;5410:12;5372:52;5443:29;5462:9;5443:29;:::i;:::-;5433:39;;5522:2;5511:9;5507:18;5494:32;5535:28;5557:5;5535:28;:::i;:::-;5582:5;5572:15;;;5278:315;;;;;:::o;5598:254::-;5666:6;5674;5727:2;5715:9;5706:7;5702:23;5698:32;5695:52;;;5743:1;5740;5733:12;5695:52;5779:9;5766:23;5756:33;;5808:38;5842:2;5831:9;5827:18;5808:38;:::i;:::-;5798:48;;5598:254;;;;;:::o;5857:667::-;5952:6;5960;5968;5976;6029:3;6017:9;6008:7;6004:23;6000:33;5997:53;;;6046:1;6043;6036:12;5997:53;6069:29;6088:9;6069:29;:::i;:::-;6059:39;;6117:38;6151:2;6140:9;6136:18;6117:38;:::i;:::-;6107:48;;6202:2;6191:9;6187:18;6174:32;6164:42;;6257:2;6246:9;6242:18;6229:32;-1:-1:-1;;;;;6276:6:1;6273:30;6270:50;;;6316:1;6313;6306:12;6270:50;6339:22;;6392:4;6384:13;;6380:27;-1:-1:-1;6370:55:1;;6421:1;6418;6411:12;6370:55;6444:74;6510:7;6505:2;6492:16;6487:2;6483;6479:11;6444:74;:::i;:::-;6434:84;;;5857:667;;;;;;;:::o;6529:366::-;6596:6;6604;6657:2;6645:9;6636:7;6632:23;6628:32;6625:52;;;6673:1;6670;6663:12;6625:52;6696:29;6715:9;6696:29;:::i;:::-;6686:39;;6775:2;6764:9;6760:18;6747:32;-1:-1:-1;;;;;6812:5:1;6808:38;6801:5;6798:49;6788:77;;6861:1;6858;6851:12;6900:260;6968:6;6976;7029:2;7017:9;7008:7;7004:23;7000:32;6997:52;;;7045:1;7042;7035:12;6997:52;7068:29;7087:9;7068:29;:::i;:::-;7058:39;;7116:38;7150:2;7139:9;7135:18;7116:38;:::i;7165:952::-;7249:6;7280:2;7323;7311:9;7302:7;7298:23;7294:32;7291:52;;;7339:1;7336;7329:12;7291:52;7379:9;7366:23;-1:-1:-1;;;;;7449:2:1;7441:6;7438:14;7435:34;;;7465:1;7462;7455:12;7435:34;7503:6;7492:9;7488:22;7478:32;;7548:7;7541:4;7537:2;7533:13;7529:27;7519:55;;7570:1;7567;7560:12;7519:55;7606:2;7593:16;7628:2;7624;7621:10;7618:36;;;7634:18;;:::i;:::-;7680:2;7677:1;7673:10;7663:20;;7703:28;7727:2;7723;7719:11;7703:28;:::i;:::-;7765:15;;;7835:11;;;7831:20;;;7796:12;;;;7863:19;;;7860:39;;;7895:1;7892;7885:12;7860:39;7919:11;;;;7939:148;7955:6;7950:3;7947:15;7939:148;;;8021:23;8040:3;8021:23;:::i;:::-;8009:36;;7972:12;;;;8065;;;;7939:148;;;8106:5;7165:952;-1:-1:-1;;;;;;;;7165:952:1:o;8122:380::-;8201:1;8197:12;;;;8244;;;8265:61;;8319:4;8311:6;8307:17;8297:27;;8265:61;8372:2;8364:6;8361:14;8341:18;8338:38;8335:161;;8418:10;8413:3;8409:20;8406:1;8399:31;8453:4;8450:1;8443:15;8481:4;8478:1;8471:15;8335:161;;8122:380;;;:::o;8507:356::-;8709:2;8691:21;;;8728:18;;;8721:30;8787:34;8782:2;8767:18;;8760:62;8854:2;8839:18;;8507:356::o;9177:245::-;9244:6;9297:2;9285:9;9276:7;9272:23;9268:32;9265:52;;;9313:1;9310;9303:12;9265:52;9345:9;9339:16;9364:28;9386:5;9364:28;:::i;9427:127::-;9488:10;9483:3;9479:20;9476:1;9469:31;9519:4;9516:1;9509:15;9543:4;9540:1;9533:15;9559:168;9632:9;;;9663;;9680:15;;;9674:22;;9660:37;9650:71;;9701:18;;:::i;9732:127::-;9793:10;9788:3;9784:20;9781:1;9774:31;9824:4;9821:1;9814:15;9848:4;9845:1;9838:15;9864:120;9904:1;9930;9920:35;;9935:18;;:::i;:::-;-1:-1:-1;9969:9:1;;9864:120::o;10325:545::-;10427:2;10422:3;10419:11;10416:448;;;10463:1;10488:5;10484:2;10477:17;10533:4;10529:2;10519:19;10603:2;10591:10;10587:19;10584:1;10580:27;10574:4;10570:38;10639:4;10627:10;10624:20;10621:47;;;-1:-1:-1;10662:4:1;10621:47;10717:2;10712:3;10708:12;10705:1;10701:20;10695:4;10691:31;10681:41;;10772:82;10790:2;10783:5;10780:13;10772:82;;;10835:17;;;10816:1;10805:13;10772:82;;;10776:3;;;10325:545;;;:::o;11046:1352::-;11172:3;11166:10;-1:-1:-1;;;;;11191:6:1;11188:30;11185:56;;;11221:18;;:::i;:::-;11250:97;11340:6;11300:38;11332:4;11326:11;11300:38;:::i;:::-;11294:4;11250:97;:::i;:::-;11402:4;;11466:2;11455:14;;11483:1;11478:663;;;;12185:1;12202:6;12199:89;;;-1:-1:-1;12254:19:1;;;12248:26;12199:89;-1:-1:-1;;11003:1:1;10999:11;;;10995:24;10991:29;10981:40;11027:1;11023:11;;;10978:57;12301:81;;11448:944;;11478:663;10272:1;10265:14;;;10309:4;10296:18;;-1:-1:-1;;11514:20:1;;;11632:236;11646:7;11643:1;11640:14;11632:236;;;11735:19;;;11729:26;11714:42;;11827:27;;;;11795:1;11783:14;;;;11662:19;;11632:236;;;11636:3;11896:6;11887:7;11884:19;11881:201;;;11957:19;;;11951:26;-1:-1:-1;;12040:1:1;12036:14;;;12052:3;12032:24;12028:37;12024:42;12009:58;11994:74;;11881:201;-1:-1:-1;;;;;12128:1:1;12112:14;;;12108:22;12095:36;;-1:-1:-1;11046:1352:1:o;13115:125::-;13180:9;;;13201:10;;;13198:36;;;13214:18;;:::i;13944:128::-;14011:9;;;14032:11;;;14029:37;;;14046:18;;:::i;14841:663::-;15121:3;15159:6;15153:13;15175:66;15234:6;15229:3;15222:4;15214:6;15210:17;15175:66;:::i;:::-;15304:13;;15263:16;;;;15326:70;15304:13;15263:16;15373:4;15361:17;;15326:70;:::i;:::-;-1:-1:-1;;;15418:20:1;;15447:22;;;15496:1;15485:13;;14841:663;-1:-1:-1;;;;14841:663:1:o;15916:127::-;15977:10;15972:3;15968:20;15965:1;15958:31;16008:4;16005:1;15998:15;16032:4;16029:1;16022:15;16048:135;16087:3;16108:17;;;16105:43;;16128:18;;:::i;:::-;-1:-1:-1;16175:1:1;16164:13;;16048:135::o;16953:112::-;16985:1;17011;17001:35;;17016:18;;:::i;:::-;-1:-1:-1;17050:9:1;;16953:112::o;17070:489::-;-1:-1:-1;;;;;17339:15:1;;;17321:34;;17391:15;;17386:2;17371:18;;17364:43;17438:2;17423:18;;17416:34;;;17486:3;17481:2;17466:18;;17459:31;;;17264:4;;17507:46;;17533:19;;17525:6;17507:46;:::i;:::-;17499:54;17070:489;-1:-1:-1;;;;;;17070:489:1:o;17564:249::-;17633:6;17686:2;17674:9;17665:7;17661:23;17657:32;17654:52;;;17702:1;17699;17692:12;17654:52;17734:9;17728:16;17753:30;17777:5;17753:30;:::i
Swarm Source
ipfs://7389c68f6bff87e64a7e7f3c2b7b626d5b1ed0028bb2f0f5699c82286fd04ad4
Loading...
Loading
Loading...
Loading
OVERVIEW
Public mint live now! Pepe Sicilian is not just a MEME, we are not a Trend.It is PEPE time to rise, embrace the PEPE, the memes, the fun, and share your blood with Sicilian Family.Net Worth in USD
$20.89
Net Worth in ETH
0.01102
Token Allocations
ETH
100.00%
Multichain Portfolio | 34 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|---|---|---|---|---|
| ETH | 100.00% | $1,899.36 | 0.011 | $20.89 |
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ 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.