ETH Price: $2,722.95 (+0.74%)

Token

Llama AI NFT (LMA)
 

Overview

Max Total Supply

1,000 LMA

Holders

629

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 LMA
0x410ebD67158f72783479BD34E463fC406b366c17
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
LlamaAI

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion
File 1 of 16 : LlamaAI.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
pragma solidity >=0.8.9 <0.9.0;
import 'erc721a/contracts/extensions/ERC721AQueryable.sol';
import '@openzeppelin/contracts/access/Ownable.sol';
import '@openzeppelin/contracts/utils/cryptography/MerkleProof.sol';
import '@openzeppelin/contracts/security/ReentrancyGuard.sol';
contract LlamaAI is ERC721AQueryable, Ownable, ReentrancyGuard {
using Strings for uint256;
bytes32 public merkleRoot;
mapping(address => bool) public whitelistClaimed;
string public uriPrefix = '';
string public uriSuffix = '.json';
uint256 public cost;
uint256 public maxSupply;
uint256 public maxMintAmountPerTx;
bool public paused = true;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 2 of 16 : ERC721AQueryable.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
// ERC721A Contracts v3.3.0
// Creator: Chiru Labs
pragma solidity ^0.8.4;
import './IERC721AQueryable.sol';
import '../ERC721A.sol';
/**
* @title ERC721A Queryable
* @dev ERC721A subclass with convenience query functions.
*/
abstract contract ERC721AQueryable is ERC721A, IERC721AQueryable {
/**
* @dev Returns the `TokenOwnership` struct at `tokenId` without reverting.
*
* If the `tokenId` is out of bounds:
* - `addr` = `address(0)`
* - `startTimestamp` = `0`
* - `burned` = `false`
*
* If the `tokenId` is burned:
* - `addr` = `<Address of owner before token was burned>`
* - `startTimestamp` = `<Timestamp when token was burned>`
* - `burned = `true`
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 3 of 16 : Ownable.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)
pragma solidity ^0.8.0;
import "../utils/Context.sol";
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 4 of 16 : MerkleProof.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/cryptography/MerkleProof.sol)
pragma solidity ^0.8.0;
/**
* @dev These functions deal with verification of Merkle Trees 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.
*/
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) {
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 5 of 16 : ReentrancyGuard.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
// 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
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 6 of 16 : IERC721AQueryable.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
// ERC721A Contracts v3.3.0
// Creator: Chiru Labs
pragma solidity ^0.8.4;
import '../IERC721A.sol';
/**
* @dev Interface of an ERC721AQueryable compliant contract.
*/
interface IERC721AQueryable is IERC721A {
/**
* Invalid query range (`start` >= `stop`).
*/
error InvalidQueryRange();
/**
* @dev Returns the `TokenOwnership` struct at `tokenId` without reverting.
*
* If the `tokenId` is out of bounds:
* - `addr` = `address(0)`
* - `startTimestamp` = `0`
* - `burned` = `false`
*
* If the `tokenId` is burned:
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 7 of 16 : ERC721A.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
// ERC721A Contracts v3.3.0
// Creator: Chiru Labs
pragma solidity ^0.8.4;
import './IERC721A.sol';
import '@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol';
import '@openzeppelin/contracts/utils/Address.sol';
import '@openzeppelin/contracts/utils/Context.sol';
import '@openzeppelin/contracts/utils/Strings.sol';
import '@openzeppelin/contracts/utils/introspection/ERC165.sol';
/**
* @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, IERC721A {
using Address for address;
using Strings for uint256;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 8 of 16 : IERC721A.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
// ERC721A Contracts v3.3.0
// Creator: Chiru Labs
pragma solidity ^0.8.4;
import '@openzeppelin/contracts/token/ERC721/IERC721.sol';
import '@openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol';
/**
* @dev Interface of an ERC721A compliant contract.
*/
interface IERC721A is IERC721, IERC721Metadata {
/**
* The caller must own the token or be an approved operator.
*/
error ApprovalCallerNotOwnerNorApproved();
/**
* The token does not exist.
*/
error ApprovalQueryForNonexistentToken();
/**
* The caller cannot approve to their own address.
*/
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 9 of 16 : IERC721.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)
pragma solidity ^0.8.0;
import "../../utils/introspection/IERC165.sol";
/**
* @dev Required interface of an ERC721 compliant contract.
*/
interface IERC721 is IERC165 {
/**
* @dev Emitted when `tokenId` token is transferred from `from` to `to`.
*/
event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
*/
event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);
/**
* @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
*/
event ApprovalForAll(address indexed owner, address indexed operator, bool approved);
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 10 of 16 : IERC721Metadata.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)
pragma solidity ^0.8.0;
import "../IERC721.sol";
/**
* @title ERC-721 Non-Fungible Token Standard, optional metadata extension
* @dev See https://eips.ethereum.org/EIPS/eip-721
*/
interface IERC721Metadata is IERC721 {
/**
* @dev Returns the token collection name.
*/
function name() external view returns (string memory);
/**
* @dev Returns the token collection symbol.
*/
function symbol() external view returns (string memory);
/**
* @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
*/
function tokenURI(uint256 tokenId) external view returns (string memory);
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 11 of 16 : IERC165.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// SPDX-License-Identifier: MIT
// 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);
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 12 of 16 : IERC721Receiver.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)
pragma solidity ^0.8.0;
/**
* @title ERC721 token receiver interface
* @dev Interface for any contract that wants to support safeTransfers
* from ERC721 asset contracts.
*/
interface IERC721Receiver {
/**
* @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
* by `operator` from `from`, this function is called.
*
* It must return its Solidity selector to confirm the token transfer.
* If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
*
* The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
*/
function onERC721Received(
address operator,
address from,
uint256 tokenId,
bytes calldata data
) external returns (bytes4);
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 13 of 16 : Address.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
// 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
* ====
*
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 14 of 16 : Context.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// SPDX-License-Identifier: MIT
// 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;
}
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 15 of 16 : Strings.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
// 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;
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

File 16 of 16 : ERC165.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)
pragma solidity ^0.8.0;
import "./IERC165.sol";
/**
* @dev Implementation of the {IERC165} interface.
*
* Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
* for the additional interface id that will be supported. For example:
*
* ```solidity
* function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
* return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
* }
* ```
*
* Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
*/
abstract contract ERC165 is IERC165 {
/**
* @dev See {IERC165-supportsInterface}.
*/
function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Settings
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
"optimizer": {
"enabled": true,
"runs": 200
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
},
"libraries": {}
}
XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_tokenName","type":"string"},{"internalType":"string","name":"_tokenSymbol","type":"string"},{"internalType":"uint256","name":"_cost","type":"uint256"},{"internalType":"uint256","name":"_maxSupply","type":"uint256"},{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"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":"InvalidQueryRange","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","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"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"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":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"airdrop","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":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"explicitOwnershipOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"}],"internalType":"struct IERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"explicitOwnershipsOf","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"},{"internalType":"bool","name":"burned","type":"bool"}],"internalType":"struct IERC721A.TokenOwnership[]","name":"","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","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":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setWhitelistMintEnabled","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":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"start","type":"uint256"},{"internalType":"uint256","name":"stop","type":"uint256"}],"name":"tokensOfOwnerIn","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"whitelistMintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a06040819052600060808190526200001b91600c91620001ec565b5060408051808201909152600580825264173539b7b760d91b60209092019182526200004a91600d91620001ec565b506011805461ffff191660011790553480156200006657600080fd5b5060405162002ec138038062002ec183398101604081905262000089916200035f565b845185908590620000a2906002906020850190620001ec565b508051620000b8906003906020840190620001ec565b5050600160005550620000cb33620000f6565b6001600955620000db8362000148565b600f829055620000eb816200019c565b505050505062000421565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6008546001600160a01b03163314620001975760405162461bcd60e51b8152602060048201819052602482015260008051602062002ea183398151915260448201526064015b60405180910390fd5b600e55565b6008546001600160a01b03163314620001e75760405162461bcd60e51b8152602060048201819052602482015260008051602062002ea183398151915260448201526064016200018e565b601055565b828054620001fa90620003e4565b90600052602060002090601f0160209004810192826200021e576000855562000269565b82601f106200023957805160ff191683800117855562000269565b8280016001018555821562000269579182015b82811115620002695782518255916020019190600101906200024c565b50620002779291506200027b565b5090565b5b808211156200027757600081556001016200027c565b634e487b7160e01b600052604160045260246000fd5b600082601f830112620002ba57600080fd5b81516001600160401b0380821115620002d757620002d762000292565b604051601f8301601f19908116603f0116810190828211818310171562000302576200030262000292565b816040528381526020925086838588010111156200031f57600080fd5b600091505b8382101562000343578582018301518183018401529082019062000324565b83821115620003555760008385830101525b9695505050505050565b600080600080600060a086880312156200037857600080fd5b85516001600160401b03808211156200039057600080fd5b6200039e89838a01620002a8565b96506020880151915080821115620003b557600080fd5b50620003c488828901620002a8565b60408801516060890151608090990151979a919950979695509350505050565b600181811c90821680620003f957607f821691505b602082108114156200041b57634e487b7160e01b600052602260045260246000fd5b50919050565b612a7080620004316000396000f3fe6080604052600436106102515760003560e01c80637cb6475911610139578063b767a098116100b6578063d2cab0561161007a578063d2cab056146106cf578063d5abeb01146106e2578063db4bec44146106f8578063e985e9c514610728578063efbd73f414610748578063f2fde38b1461076857600080fd5b8063b767a09814610622578063b88d4fde14610642578063bc63f02e14610662578063c23dc68f14610682578063c87b56dd146106af57600080fd5b806395d89b41116100fd57806395d89b411461059a57806399a2557a146105af578063a0712d68146105cf578063a22cb465146105e2578063b071401b1461060257600080fd5b80637cb64759146104f95780637ec4a659146105195780638462151c146105395780638da5cb5b1461056657806394354fd01461058457600080fd5b80633ccfd60b116101d25780635c975abb116101965780635c975abb1461045657806362b99ad4146104705780636352211e146104855780636caede3d146104a557806370a08231146104c4578063715018a6146104e457600080fd5b80633ccfd60b146103bf57806342842e0e146103d457806344a0d68a146103f45780635503a0e8146104145780635bbb21771461042957600080fd5b806316ba10e01161021957806316ba10e01461032b57806316c38b3c1461034b57806318160ddd1461036b57806323b872dd146103895780632eb4a7ab146103a957600080fd5b806301ffc9a71461025657806306fdde031461028b578063081812fc146102ad578063095ea7b3146102e557806313faede614610307575b600080fd5b34801561026257600080fd5b50610276610271366004612207565b610788565b60405190151581526020015b60405180910390f35b34801561029757600080fd5b506102a06107da565b604051610282919061227c565b3480156102b957600080fd5b506102cd6102c836600461228f565b61086c565b6040516001600160a01b039091168152602001610282565b3480156102f157600080fd5b506103056103003660046122c4565b6108b0565b005b34801561031357600080fd5b5061031d600e5481565b604051908152602001610282565b34801561033757600080fd5b5061030561034636600461238b565b610937565b34801561035757600080fd5b506103056103663660046123e3565b610981565b34801561037757600080fd5b5061031d600154600054036000190190565b34801561039557600080fd5b506103056103a43660046123fe565b6109be565b3480156103b557600080fd5b5061031d600a5481565b3480156103cb57600080fd5b506103056109c9565b3480156103e057600080fd5b506103056103ef3660046123fe565b610b36565b34801561040057600080fd5b5061030561040f36600461228f565b610b51565b34801561042057600080fd5b506102a0610b80565b34801561043557600080fd5b5061044961044436600461243a565b610c0e565b60405161028291906124df565b34801561046257600080fd5b506011546102769060ff1681565b34801561047c57600080fd5b506102a0610cd4565b34801561049157600080fd5b506102cd6104a036600461228f565b610ce1565b3480156104b157600080fd5b5060115461027690610100900460ff1681565b3480156104d057600080fd5b5061031d6104df366004612549565b610cf3565b3480156104f057600080fd5b50610305610d41565b34801561050557600080fd5b5061030561051436600461228f565b610d77565b34801561052557600080fd5b5061030561053436600461238b565b610da6565b34801561054557600080fd5b50610559610554366004612549565b610de3565b6040516102829190612564565b34801561057257600080fd5b506008546001600160a01b03166102cd565b34801561059057600080fd5b5061031d60105481565b3480156105a657600080fd5b506102a0610f30565b3480156105bb57600080fd5b506105596105ca36600461259c565b610f3f565b6103056105dd36600461228f565b611105565b3480156105ee57600080fd5b506103056105fd3660046125cf565b611222565b34801561060e57600080fd5b5061030561061d36600461228f565b6112b8565b34801561062e57600080fd5b5061030561063d3660046123e3565b6112e7565b34801561064e57600080fd5b5061030561065d366004612602565b61132b565b34801561066e57600080fd5b5061030561067d36600461267d565b611375565b34801561068e57600080fd5b506106a261069d36600461228f565b6113a9565b60405161028291906126a0565b3480156106bb57600080fd5b506102a06106ca36600461228f565b611463565b6103056106dd3660046126d5565b611530565b3480156106ee57600080fd5b5061031d600f5481565b34801561070457600080fd5b50610276610713366004612549565b600b6020526000908152604090205460ff1681565b34801561073457600080fd5b50610276610743366004612753565b611795565b34801561075457600080fd5b5061030561076336600461267d565b6117c3565b34801561077457600080fd5b50610305610783366004612549565b611863565b60006001600160e01b031982166380ac58cd60e01b14806107b957506001600160e01b03198216635b5e139f60e01b145b806107d457506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546107e99061277d565b80601f01602080910402602001604051908101604052809291908181526020018280546108159061277d565b80156108625780601f1061083757610100808354040283529160200191610862565b820191906000526020600020905b81548152906001019060200180831161084557829003601f168201915b5050505050905090565b6000610877826118fe565b610894576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006108bb82610ce1565b9050806001600160a01b0316836001600160a01b031614156108f05760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216146109275761090a8133611795565b610927576040516367d9dca160e11b815260040160405180910390fd5b610932838383611937565b505050565b6008546001600160a01b0316331461096a5760405162461bcd60e51b8152600401610961906127b8565b60405180910390fd5b805161097d90600d906020840190612158565b5050565b6008546001600160a01b031633146109ab5760405162461bcd60e51b8152600401610961906127b8565b6011805460ff1916911515919091179055565b610932838383611993565b6008546001600160a01b031633146109f35760405162461bcd60e51b8152600401610961906127b8565b60026009541415610a465760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610961565b6002600955604051600090737e34f97c67ed8355c66c20bbbfd664c1811f2e6f90671bc16d674ec80000908381818185875af1925050503d8060008114610aa9576040519150601f19603f3d011682016040523d82523d6000602084013e610aae565b606091505b5050905080610abc57600080fd5b6000610ad06008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610b1a576040519150601f19603f3d011682016040523d82523d6000602084013e610b1f565b606091505b5050905080610b2d57600080fd5b50506001600955565b6109328383836040518060200160405280600081525061132b565b6008546001600160a01b03163314610b7b5760405162461bcd60e51b8152600401610961906127b8565b600e55565b600d8054610b8d9061277d565b80601f0160208091040260200160405190810160405280929190818152602001828054610bb99061277d565b8015610c065780601f10610bdb57610100808354040283529160200191610c06565b820191906000526020600020905b815481529060010190602001808311610be957829003601f168201915b505050505081565b80516060906000816001600160401b03811115610c2d57610c2d6122ee565b604051908082528060200260200182016040528015610c7857816020015b6040805160608101825260008082526020808301829052928201528252600019909201910181610c4b5790505b50905060005b828114610ccc57610ca7858281518110610c9a57610c9a6127ed565b60200260200101516113a9565b828281518110610cb957610cb96127ed565b6020908102919091010152600101610c7e565b509392505050565b600c8054610b8d9061277d565b6000610cec82611b80565b5192915050565b60006001600160a01b038216610d1c576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b03163314610d6b5760405162461bcd60e51b8152600401610961906127b8565b610d756000611ca2565b565b6008546001600160a01b03163314610da15760405162461bcd60e51b8152600401610961906127b8565b600a55565b6008546001600160a01b03163314610dd05760405162461bcd60e51b8152600401610961906127b8565b805161097d90600c906020840190612158565b60606000806000610df385610cf3565b90506000816001600160401b03811115610e0f57610e0f6122ee565b604051908082528060200260200182016040528015610e38578160200160208202803683370190505b509050610e5e604080516060810182526000808252602082018190529181019190915290565b60015b838614610f2457600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16158015928201929092529250610ec757610f1c565b81516001600160a01b031615610edc57815194505b876001600160a01b0316856001600160a01b03161415610f1c5780838780600101985081518110610f0f57610f0f6127ed565b6020026020010181815250505b600101610e61565b50909695505050505050565b6060600380546107e99061277d565b6060818310610f6157604051631960ccad60e11b815260040160405180910390fd5b600080546001851015610f7357600194505b80841115610f7f578093505b6000610f8a87610cf3565b905084861015610fa95785850381811015610fa3578091505b50610fad565b5060005b6000816001600160401b03811115610fc757610fc76122ee565b604051908082528060200260200182016040528015610ff0578160200160208202803683370190505b509050816110035793506110fe92505050565b600061100e886113a9565b90506000816040015161101f575080515b885b8881141580156110315750848714155b156110f257600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16158015928201929092529350611095576110ea565b82516001600160a01b0316156110aa57825191505b8a6001600160a01b0316826001600160a01b031614156110ea57808488806001019950815181106110dd576110dd6127ed565b6020026020010181815250505b600101611021565b50505092835250909150505b9392505050565b8060008111801561111857506010548111155b6111345760405162461bcd60e51b815260040161096190612803565b600f5481611149600154600054036000190190565b6111539190612847565b11156111715760405162461bcd60e51b81526004016109619061285f565b8180600e54611180919061288d565b3410156111c55760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610961565b60115460ff16156112185760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e747261637420697320706175736564210000000000000000006044820152606401610961565b6109323384611cf4565b6001600160a01b03821633141561124c5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b031633146112e25760405162461bcd60e51b8152600401610961906127b8565b601055565b6008546001600160a01b031633146113115760405162461bcd60e51b8152600401610961906127b8565b601180549115156101000261ff0019909216919091179055565b611336848484611993565b6001600160a01b0383163b1561136f5761135284848484611d0e565b61136f576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b0316331461139f5760405162461bcd60e51b8152600401610961906127b8565b61097d8183611cf4565b604080516060808201835260008083526020808401829052838501829052845192830185528183528201819052928101929092529060018310806113ef57506000548310155b156113fa5792915050565b50600082815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16158015928201929092529061145a5792915050565b6110fe83611b80565b606061146e826118fe565b6114d25760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610961565b60006114dc611e06565b905060008151116114fc57604051806020016040528060008152506110fe565b8061150684611e15565b600d60405160200161151a939291906128ac565b6040516020818303038152906040529392505050565b8260008111801561154357506010548111155b61155f5760405162461bcd60e51b815260040161096190612803565b600f5481611574600154600054036000190190565b61157e9190612847565b111561159c5760405162461bcd60e51b81526004016109619061285f565b8380600e546115ab919061288d565b3410156115f05760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610961565b601154610100900460ff166116525760405162461bcd60e51b815260206004820152602260248201527f5468652077686974656c6973742073616c65206973206e6f7420656e61626c65604482015261642160f01b6064820152608401610961565b336000908152600b602052604090205460ff16156116b25760405162461bcd60e51b815260206004820152601860248201527f4164647265737320616c726561647920636c61696d65642100000000000000006044820152606401610961565b6040516bffffffffffffffffffffffff193360601b16602082015260009060340160405160208183030381529060405280519060200120905061172c85858080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600a549150849050611f12565b6117695760405162461bcd60e51b815260206004820152600e60248201526d496e76616c69642070726f6f662160901b6044820152606401610961565b336000818152600b60205260409020805460ff1916600117905561178d9087611cf4565b505050505050565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b816000811180156117d657506010548111155b6117f25760405162461bcd60e51b815260040161096190612803565b600f5481611807600154600054036000190190565b6118119190612847565b111561182f5760405162461bcd60e51b81526004016109619061285f565b6008546001600160a01b031633146118595760405162461bcd60e51b8152600401610961906127b8565b6109328284611cf4565b6008546001600160a01b0316331461188d5760405162461bcd60e51b8152600401610961906127b8565b6001600160a01b0381166118f25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610961565b6118fb81611ca2565b50565b600081600111158015611912575060005482105b80156107d4575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061199e82611b80565b9050836001600160a01b031681600001516001600160a01b0316146119d55760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806119f357506119f38533611795565b80611a0e575033611a038461086c565b6001600160a01b0316145b905080611a2e57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416611a5557604051633a954ecd60e21b815260040160405180910390fd5b611a6160008487611937565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116611b35576000548214611b3557805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b60408051606081018252600080825260208201819052918101919091528180600111611c8957600054811015611c8957600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290611c875780516001600160a01b031615611c1e579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611c82579392505050565b611c1e565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61097d828260405180602001604052806000815250611f28565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611d43903390899088908890600401612970565b602060405180830381600087803b158015611d5d57600080fd5b505af1925050508015611d8d575060408051601f3d908101601f19168201909252611d8a918101906129ad565b60015b611de8573d808015611dbb576040519150601f19603f3d011682016040523d82523d6000602084013e611dc0565b606091505b508051611de0576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600c80546107e99061277d565b606081611e395750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611e635780611e4d816129ca565b9150611e5c9050600a836129fb565b9150611e3d565b6000816001600160401b03811115611e7d57611e7d6122ee565b6040519080825280601f01601f191660200182016040528015611ea7576020820181803683370190505b5090505b8415611dfe57611ebc600183612a0f565b9150611ec9600a86612a26565b611ed4906030612847565b60f81b818381518110611ee957611ee96127ed565b60200101906001600160f81b031916908160001a905350611f0b600a866129fb565b9450611eab565b600082611f1f85846120ec565b14949350505050565b6000546001600160a01b038416611f5157604051622e076360e81b815260040160405180910390fd5b82611f6f5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038416600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168b0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168b01811690920217909155858452600490925290912080546001600160e01b0319168317600160a01b42909316929092029190911790558190818501903b15612097575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46120606000878480600101955087611d0e565b61207d576040516368d2bf6b60e11b815260040160405180910390fd5b80821061201557826000541461209257600080fd5b6120dc565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210612098575b50600090815561136f9085838684565b600081815b8451811015610ccc57600085828151811061210e5761210e6127ed565b602002602001015190508083116121345760008381526020829052604090209250612145565b600081815260208490526040902092505b5080612150816129ca565b9150506120f1565b8280546121649061277d565b90600052602060002090601f01602090048101928261218657600085556121cc565b82601f1061219f57805160ff19168380011785556121cc565b828001600101855582156121cc579182015b828111156121cc5782518255916020019190600101906121b1565b506121d89291506121dc565b5090565b5b808211156121d857600081556001016121dd565b6001600160e01b0319811681146118fb57600080fd5b60006020828403121561221957600080fd5b81356110fe816121f1565b60005b8381101561223f578181015183820152602001612227565b8381111561136f5750506000910152565b60008151808452612268816020860160208601612224565b601f01601f19169290920160200192915050565b6020815260006110fe6020830184612250565b6000602082840312156122a157600080fd5b5035919050565b80356001600160a01b03811681146122bf57600080fd5b919050565b600080604083850312156122d757600080fd5b6122e0836122a8565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b038111828210171561232c5761232c6122ee565b604052919050565b60006001600160401b0383111561234d5761234d6122ee565b612360601f8401601f1916602001612304565b905082815283838301111561237457600080fd5b828260208301376000602084830101529392505050565b60006020828403121561239d57600080fd5b81356001600160401b038111156123b357600080fd5b8201601f810184136123c457600080fd5b611dfe84823560208401612334565b803580151581146122bf57600080fd5b6000602082840312156123f557600080fd5b6110fe826123d3565b60008060006060848603121561241357600080fd5b61241c846122a8565b925061242a602085016122a8565b9150604084013590509250925092565b6000602080838503121561244d57600080fd5b82356001600160401b038082111561246457600080fd5b818501915085601f83011261247857600080fd5b81358181111561248a5761248a6122ee565b8060051b915061249b848301612304565b81815291830184019184810190888411156124b557600080fd5b938501935b838510156124d3578435825293850193908501906124ba565b98975050505050505050565b6020808252825182820181905260009190848201906040850190845b81811015610f245761253683855180516001600160a01b031682526020808201516001600160401b0316908301526040908101511515910152565b92840192606092909201916001016124fb565b60006020828403121561255b57600080fd5b6110fe826122a8565b6020808252825182820181905260009190848201906040850190845b81811015610f2457835183529284019291840191600101612580565b6000806000606084860312156125b157600080fd5b6125ba846122a8565b95602085013595506040909401359392505050565b600080604083850312156125e257600080fd5b6125eb836122a8565b91506125f9602084016123d3565b90509250929050565b6000806000806080858703121561261857600080fd5b612621856122a8565b935061262f602086016122a8565b92506040850135915060608501356001600160401b0381111561265157600080fd5b8501601f8101871361266257600080fd5b61267187823560208401612334565b91505092959194509250565b6000806040838503121561269057600080fd5b823591506125f9602084016122a8565b81516001600160a01b031681526020808301516001600160401b031690820152604080830151151590820152606081016107d4565b6000806000604084860312156126ea57600080fd5b8335925060208401356001600160401b038082111561270857600080fd5b818601915086601f83011261271c57600080fd5b81358181111561272b57600080fd5b8760208260051b850101111561274057600080fd5b6020830194508093505050509250925092565b6000806040838503121561276657600080fd5b61276f836122a8565b91506125f9602084016122a8565b600181811c9082168061279157607f821691505b602082108114156127b257634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b602080825260149082015273496e76616c6964206d696e7420616d6f756e742160601b604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000821982111561285a5761285a612831565b500190565b6020808252601490820152734d617820737570706c792065786365656465642160601b604082015260600190565b60008160001904831182151516156128a7576128a7612831565b500290565b6000845160206128bf8285838a01612224565b8551918401916128d28184848a01612224565b8554920191600090600181811c90808316806128ef57607f831692505b85831081141561290d57634e487b7160e01b85526022600452602485fd5b80801561292157600181146129325761295f565b60ff1985168852838801955061295f565b60008b81526020902060005b858110156129575781548a82015290840190880161293e565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906129a390830184612250565b9695505050505050565b6000602082840312156129bf57600080fd5b81516110fe816121f1565b60006000198214156129de576129de612831565b5060010190565b634e487b7160e01b600052601260045260246000fd5b600082612a0a57612a0a6129e5565b500490565b600082821015612a2157612a21612831565b500390565b600082612a3557612a356129e5565b50069056fea2646970667358221220fe4103c579bafbbccefc313522ccda7171741843ab64f458e391f51f46c990eb64736f6c634300080900334f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657200000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000002386f26fc1000000000000000000000000000000000000000000000000000000000000000003e80000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000c4c6c616d61204149204e4654000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034c4d410000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102515760003560e01c80637cb6475911610139578063b767a098116100b6578063d2cab0561161007a578063d2cab056146106cf578063d5abeb01146106e2578063db4bec44146106f8578063e985e9c514610728578063efbd73f414610748578063f2fde38b1461076857600080fd5b8063b767a09814610622578063b88d4fde14610642578063bc63f02e14610662578063c23dc68f14610682578063c87b56dd146106af57600080fd5b806395d89b41116100fd57806395d89b411461059a57806399a2557a146105af578063a0712d68146105cf578063a22cb465146105e2578063b071401b1461060257600080fd5b80637cb64759146104f95780637ec4a659146105195780638462151c146105395780638da5cb5b1461056657806394354fd01461058457600080fd5b80633ccfd60b116101d25780635c975abb116101965780635c975abb1461045657806362b99ad4146104705780636352211e146104855780636caede3d146104a557806370a08231146104c4578063715018a6146104e457600080fd5b80633ccfd60b146103bf57806342842e0e146103d457806344a0d68a146103f45780635503a0e8146104145780635bbb21771461042957600080fd5b806316ba10e01161021957806316ba10e01461032b57806316c38b3c1461034b57806318160ddd1461036b57806323b872dd146103895780632eb4a7ab146103a957600080fd5b806301ffc9a71461025657806306fdde031461028b578063081812fc146102ad578063095ea7b3146102e557806313faede614610307575b600080fd5b34801561026257600080fd5b50610276610271366004612207565b610788565b60405190151581526020015b60405180910390f35b34801561029757600080fd5b506102a06107da565b604051610282919061227c565b3480156102b957600080fd5b506102cd6102c836600461228f565b61086c565b6040516001600160a01b039091168152602001610282565b3480156102f157600080fd5b506103056103003660046122c4565b6108b0565b005b34801561031357600080fd5b5061031d600e5481565b604051908152602001610282565b34801561033757600080fd5b5061030561034636600461238b565b610937565b34801561035757600080fd5b506103056103663660046123e3565b610981565b34801561037757600080fd5b5061031d600154600054036000190190565b34801561039557600080fd5b506103056103a43660046123fe565b6109be565b3480156103b557600080fd5b5061031d600a5481565b3480156103cb57600080fd5b506103056109c9565b3480156103e057600080fd5b506103056103ef3660046123fe565b610b36565b34801561040057600080fd5b5061030561040f36600461228f565b610b51565b34801561042057600080fd5b506102a0610b80565b34801561043557600080fd5b5061044961044436600461243a565b610c0e565b60405161028291906124df565b34801561046257600080fd5b506011546102769060ff1681565b34801561047c57600080fd5b506102a0610cd4565b34801561049157600080fd5b506102cd6104a036600461228f565b610ce1565b3480156104b157600080fd5b5060115461027690610100900460ff1681565b3480156104d057600080fd5b5061031d6104df366004612549565b610cf3565b3480156104f057600080fd5b50610305610d41565b34801561050557600080fd5b5061030561051436600461228f565b610d77565b34801561052557600080fd5b5061030561053436600461238b565b610da6565b34801561054557600080fd5b50610559610554366004612549565b610de3565b6040516102829190612564565b34801561057257600080fd5b506008546001600160a01b03166102cd565b34801561059057600080fd5b5061031d60105481565b3480156105a657600080fd5b506102a0610f30565b3480156105bb57600080fd5b506105596105ca36600461259c565b610f3f565b6103056105dd36600461228f565b611105565b3480156105ee57600080fd5b506103056105fd3660046125cf565b611222565b34801561060e57600080fd5b5061030561061d36600461228f565b6112b8565b34801561062e57600080fd5b5061030561063d3660046123e3565b6112e7565b34801561064e57600080fd5b5061030561065d366004612602565b61132b565b34801561066e57600080fd5b5061030561067d36600461267d565b611375565b34801561068e57600080fd5b506106a261069d36600461228f565b6113a9565b60405161028291906126a0565b3480156106bb57600080fd5b506102a06106ca36600461228f565b611463565b6103056106dd3660046126d5565b611530565b3480156106ee57600080fd5b5061031d600f5481565b34801561070457600080fd5b50610276610713366004612549565b600b6020526000908152604090205460ff1681565b34801561073457600080fd5b50610276610743366004612753565b611795565b34801561075457600080fd5b5061030561076336600461267d565b6117c3565b34801561077457600080fd5b50610305610783366004612549565b611863565b60006001600160e01b031982166380ac58cd60e01b14806107b957506001600160e01b03198216635b5e139f60e01b145b806107d457506301ffc9a760e01b6001600160e01b03198316145b92915050565b6060600280546107e99061277d565b80601f01602080910402602001604051908101604052809291908181526020018280546108159061277d565b80156108625780601f1061083757610100808354040283529160200191610862565b820191906000526020600020905b81548152906001019060200180831161084557829003601f168201915b5050505050905090565b6000610877826118fe565b610894576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b60006108bb82610ce1565b9050806001600160a01b0316836001600160a01b031614156108f05760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b038216146109275761090a8133611795565b610927576040516367d9dca160e11b815260040160405180910390fd5b610932838383611937565b505050565b6008546001600160a01b0316331461096a5760405162461bcd60e51b8152600401610961906127b8565b60405180910390fd5b805161097d90600d906020840190612158565b5050565b6008546001600160a01b031633146109ab5760405162461bcd60e51b8152600401610961906127b8565b6011805460ff1916911515919091179055565b610932838383611993565b6008546001600160a01b031633146109f35760405162461bcd60e51b8152600401610961906127b8565b60026009541415610a465760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610961565b6002600955604051600090737e34f97c67ed8355c66c20bbbfd664c1811f2e6f90671bc16d674ec80000908381818185875af1925050503d8060008114610aa9576040519150601f19603f3d011682016040523d82523d6000602084013e610aae565b606091505b5050905080610abc57600080fd5b6000610ad06008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610b1a576040519150601f19603f3d011682016040523d82523d6000602084013e610b1f565b606091505b5050905080610b2d57600080fd5b50506001600955565b6109328383836040518060200160405280600081525061132b565b6008546001600160a01b03163314610b7b5760405162461bcd60e51b8152600401610961906127b8565b600e55565b600d8054610b8d9061277d565b80601f0160208091040260200160405190810160405280929190818152602001828054610bb99061277d565b8015610c065780601f10610bdb57610100808354040283529160200191610c06565b820191906000526020600020905b815481529060010190602001808311610be957829003601f168201915b505050505081565b80516060906000816001600160401b03811115610c2d57610c2d6122ee565b604051908082528060200260200182016040528015610c7857816020015b6040805160608101825260008082526020808301829052928201528252600019909201910181610c4b5790505b50905060005b828114610ccc57610ca7858281518110610c9a57610c9a6127ed565b60200260200101516113a9565b828281518110610cb957610cb96127ed565b6020908102919091010152600101610c7e565b509392505050565b600c8054610b8d9061277d565b6000610cec82611b80565b5192915050565b60006001600160a01b038216610d1c576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b03163314610d6b5760405162461bcd60e51b8152600401610961906127b8565b610d756000611ca2565b565b6008546001600160a01b03163314610da15760405162461bcd60e51b8152600401610961906127b8565b600a55565b6008546001600160a01b03163314610dd05760405162461bcd60e51b8152600401610961906127b8565b805161097d90600c906020840190612158565b60606000806000610df385610cf3565b90506000816001600160401b03811115610e0f57610e0f6122ee565b604051908082528060200260200182016040528015610e38578160200160208202803683370190505b509050610e5e604080516060810182526000808252602082018190529181019190915290565b60015b838614610f2457600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16158015928201929092529250610ec757610f1c565b81516001600160a01b031615610edc57815194505b876001600160a01b0316856001600160a01b03161415610f1c5780838780600101985081518110610f0f57610f0f6127ed565b6020026020010181815250505b600101610e61565b50909695505050505050565b6060600380546107e99061277d565b6060818310610f6157604051631960ccad60e11b815260040160405180910390fd5b600080546001851015610f7357600194505b80841115610f7f578093505b6000610f8a87610cf3565b905084861015610fa95785850381811015610fa3578091505b50610fad565b5060005b6000816001600160401b03811115610fc757610fc76122ee565b604051908082528060200260200182016040528015610ff0578160200160208202803683370190505b509050816110035793506110fe92505050565b600061100e886113a9565b90506000816040015161101f575080515b885b8881141580156110315750848714155b156110f257600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16158015928201929092529350611095576110ea565b82516001600160a01b0316156110aa57825191505b8a6001600160a01b0316826001600160a01b031614156110ea57808488806001019950815181106110dd576110dd6127ed565b6020026020010181815250505b600101611021565b50505092835250909150505b9392505050565b8060008111801561111857506010548111155b6111345760405162461bcd60e51b815260040161096190612803565b600f5481611149600154600054036000190190565b6111539190612847565b11156111715760405162461bcd60e51b81526004016109619061285f565b8180600e54611180919061288d565b3410156111c55760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610961565b60115460ff16156112185760405162461bcd60e51b815260206004820152601760248201527f54686520636f6e747261637420697320706175736564210000000000000000006044820152606401610961565b6109323384611cf4565b6001600160a01b03821633141561124c5760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b031633146112e25760405162461bcd60e51b8152600401610961906127b8565b601055565b6008546001600160a01b031633146113115760405162461bcd60e51b8152600401610961906127b8565b601180549115156101000261ff0019909216919091179055565b611336848484611993565b6001600160a01b0383163b1561136f5761135284848484611d0e565b61136f576040516368d2bf6b60e11b815260040160405180910390fd5b50505050565b6008546001600160a01b0316331461139f5760405162461bcd60e51b8152600401610961906127b8565b61097d8183611cf4565b604080516060808201835260008083526020808401829052838501829052845192830185528183528201819052928101929092529060018310806113ef57506000548310155b156113fa5792915050565b50600082815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16158015928201929092529061145a5792915050565b6110fe83611b80565b606061146e826118fe565b6114d25760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610961565b60006114dc611e06565b905060008151116114fc57604051806020016040528060008152506110fe565b8061150684611e15565b600d60405160200161151a939291906128ac565b6040516020818303038152906040529392505050565b8260008111801561154357506010548111155b61155f5760405162461bcd60e51b815260040161096190612803565b600f5481611574600154600054036000190190565b61157e9190612847565b111561159c5760405162461bcd60e51b81526004016109619061285f565b8380600e546115ab919061288d565b3410156115f05760405162461bcd60e51b8152602060048201526013602482015272496e73756666696369656e742066756e64732160681b6044820152606401610961565b601154610100900460ff166116525760405162461bcd60e51b815260206004820152602260248201527f5468652077686974656c6973742073616c65206973206e6f7420656e61626c65604482015261642160f01b6064820152608401610961565b336000908152600b602052604090205460ff16156116b25760405162461bcd60e51b815260206004820152601860248201527f4164647265737320616c726561647920636c61696d65642100000000000000006044820152606401610961565b6040516bffffffffffffffffffffffff193360601b16602082015260009060340160405160208183030381529060405280519060200120905061172c85858080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600a549150849050611f12565b6117695760405162461bcd60e51b815260206004820152600e60248201526d496e76616c69642070726f6f662160901b6044820152606401610961565b336000818152600b60205260409020805460ff1916600117905561178d9087611cf4565b505050505050565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b816000811180156117d657506010548111155b6117f25760405162461bcd60e51b815260040161096190612803565b600f5481611807600154600054036000190190565b6118119190612847565b111561182f5760405162461bcd60e51b81526004016109619061285f565b6008546001600160a01b031633146118595760405162461bcd60e51b8152600401610961906127b8565b6109328284611cf4565b6008546001600160a01b0316331461188d5760405162461bcd60e51b8152600401610961906127b8565b6001600160a01b0381166118f25760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610961565b6118fb81611ca2565b50565b600081600111158015611912575060005482105b80156107d4575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061199e82611b80565b9050836001600160a01b031681600001516001600160a01b0316146119d55760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806119f357506119f38533611795565b80611a0e575033611a038461086c565b6001600160a01b0316145b905080611a2e57604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b038416611a5557604051633a954ecd60e21b815260040160405180910390fd5b611a6160008487611937565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b42909216919091021783558701808452922080549193909116611b35576000548214611b3557805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050505050565b60408051606081018252600080825260208201819052918101919091528180600111611c8957600054811015611c8957600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16151591810182905290611c875780516001600160a01b031615611c1e579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215611c82579392505050565b611c1e565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61097d828260405180602001604052806000815250611f28565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a0290611d43903390899088908890600401612970565b602060405180830381600087803b158015611d5d57600080fd5b505af1925050508015611d8d575060408051601f3d908101601f19168201909252611d8a918101906129ad565b60015b611de8573d808015611dbb576040519150601f19603f3d011682016040523d82523d6000602084013e611dc0565b606091505b508051611de0576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600c80546107e99061277d565b606081611e395750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611e635780611e4d816129ca565b9150611e5c9050600a836129fb565b9150611e3d565b6000816001600160401b03811115611e7d57611e7d6122ee565b6040519080825280601f01601f191660200182016040528015611ea7576020820181803683370190505b5090505b8415611dfe57611ebc600183612a0f565b9150611ec9600a86612a26565b611ed4906030612847565b60f81b818381518110611ee957611ee96127ed565b60200101906001600160f81b031916908160001a905350611f0b600a866129fb565b9450611eab565b600082611f1f85846120ec565b14949350505050565b6000546001600160a01b038416611f5157604051622e076360e81b815260040160405180910390fd5b82611f6f5760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038416600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168b0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168b01811690920217909155858452600490925290912080546001600160e01b0319168317600160a01b42909316929092029190911790558190818501903b15612097575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46120606000878480600101955087611d0e565b61207d576040516368d2bf6b60e11b815260040160405180910390fd5b80821061201557826000541461209257600080fd5b6120dc565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210612098575b50600090815561136f9085838684565b600081815b8451811015610ccc57600085828151811061210e5761210e6127ed565b602002602001015190508083116121345760008381526020829052604090209250612145565b600081815260208490526040902092505b5080612150816129ca565b9150506120f1565b8280546121649061277d565b90600052602060002090601f01602090048101928261218657600085556121cc565b82601f1061219f57805160ff19168380011785556121cc565b828001600101855582156121cc579182015b828111156121cc5782518255916020019190600101906121b1565b506121d89291506121dc565b5090565b5b808211156121d857600081556001016121dd565b6001600160e01b0319811681146118fb57600080fd5b60006020828403121561221957600080fd5b81356110fe816121f1565b60005b8381101561223f578181015183820152602001612227565b8381111561136f5750506000910152565b60008151808452612268816020860160208601612224565b601f01601f19169290920160200192915050565b6020815260006110fe6020830184612250565b6000602082840312156122a157600080fd5b5035919050565b80356001600160a01b03811681146122bf57600080fd5b919050565b600080604083850312156122d757600080fd5b6122e0836122a8565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b038111828210171561232c5761232c6122ee565b604052919050565b60006001600160401b0383111561234d5761234d6122ee565b612360601f8401601f1916602001612304565b905082815283838301111561237457600080fd5b828260208301376000602084830101529392505050565b60006020828403121561239d57600080fd5b81356001600160401b038111156123b357600080fd5b8201601f810184136123c457600080fd5b611dfe84823560208401612334565b803580151581146122bf57600080fd5b6000602082840312156123f557600080fd5b6110fe826123d3565b60008060006060848603121561241357600080fd5b61241c846122a8565b925061242a602085016122a8565b9150604084013590509250925092565b6000602080838503121561244d57600080fd5b82356001600160401b038082111561246457600080fd5b818501915085601f83011261247857600080fd5b81358181111561248a5761248a6122ee565b8060051b915061249b848301612304565b81815291830184019184810190888411156124b557600080fd5b938501935b838510156124d3578435825293850193908501906124ba565b98975050505050505050565b6020808252825182820181905260009190848201906040850190845b81811015610f245761253683855180516001600160a01b031682526020808201516001600160401b0316908301526040908101511515910152565b92840192606092909201916001016124fb565b60006020828403121561255b57600080fd5b6110fe826122a8565b6020808252825182820181905260009190848201906040850190845b81811015610f2457835183529284019291840191600101612580565b6000806000606084860312156125b157600080fd5b6125ba846122a8565b95602085013595506040909401359392505050565b600080604083850312156125e257600080fd5b6125eb836122a8565b91506125f9602084016123d3565b90509250929050565b6000806000806080858703121561261857600080fd5b612621856122a8565b935061262f602086016122a8565b92506040850135915060608501356001600160401b0381111561265157600080fd5b8501601f8101871361266257600080fd5b61267187823560208401612334565b91505092959194509250565b6000806040838503121561269057600080fd5b823591506125f9602084016122a8565b81516001600160a01b031681526020808301516001600160401b031690820152604080830151151590820152606081016107d4565b6000806000604084860312156126ea57600080fd5b8335925060208401356001600160401b038082111561270857600080fd5b818601915086601f83011261271c57600080fd5b81358181111561272b57600080fd5b8760208260051b850101111561274057600080fd5b6020830194508093505050509250925092565b6000806040838503121561276657600080fd5b61276f836122a8565b91506125f9602084016122a8565b600181811c9082168061279157607f821691505b602082108114156127b257634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b602080825260149082015273496e76616c6964206d696e7420616d6f756e742160601b604082015260600190565b634e487b7160e01b600052601160045260246000fd5b6000821982111561285a5761285a612831565b500190565b6020808252601490820152734d617820737570706c792065786365656465642160601b604082015260600190565b60008160001904831182151516156128a7576128a7612831565b500290565b6000845160206128bf8285838a01612224565b8551918401916128d28184848a01612224565b8554920191600090600181811c90808316806128ef57607f831692505b85831081141561290d57634e487b7160e01b85526022600452602485fd5b80801561292157600181146129325761295f565b60ff1985168852838801955061295f565b60008b81526020902060005b858110156129575781548a82015290840190880161293e565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906129a390830184612250565b9695505050505050565b6000602082840312156129bf57600080fd5b81516110fe816121f1565b60006000198214156129de576129de612831565b5060010190565b634e487b7160e01b600052601260045260246000fd5b600082612a0a57612a0a6129e5565b500490565b600082821015612a2157612a21612831565b500390565b600082612a3557612a356129e5565b50069056fea2646970667358221220fe4103c579bafbbccefc313522ccda7171741843ab64f458e391f51f46c990eb64736f6c63430008090033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

00000000000000000000000000000000000000000000000000000000000000a000000000000000000000000000000000000000000000000000000000000000e0000000000000000000000000000000000000000000000000002386f26fc1000000000000000000000000000000000000000000000000000000000000000003e80000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000c4c6c616d61204149204e4654000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034c4d410000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _tokenName (string): Llama AI NFT
Arg [1] : _tokenSymbol (string): LMA
Arg [2] : _cost (uint256): 10000000000000000
Arg [3] : _maxSupply (uint256): 1000
Arg [4] : _maxMintAmountPerTx (uint256): 1

-----Encoded View---------------
9 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [2] : 000000000000000000000000000000000000000000000000002386f26fc10000
Arg [3] : 00000000000000000000000000000000000000000000000000000000000003e8
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [5] : 000000000000000000000000000000000000000000000000000000000000000c
Arg [6] : 4c6c616d61204149204e46540000000000000000000000000000000000000000
Arg [7] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [8] : 4c4d410000000000000000000000000000000000000000000000000000000000


Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.