ETH Price: $3,383.90 (-1.84%)
Gas: 3 Gwei

Token

SaveTheDate (STD)
 

Overview

Max Total Supply

1,193 STD

Holders

580

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 STD
0xE999Deefa21Db483630480a9Ba381c2bACcD6BEE
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:
WhatIsYourDate

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 16 of 16: WhatIsYourDate.sol
// SPDX-License-Identifier: MIT
/***
 *  
 *  8""""8                      
 *  8      eeeee ee   e eeee    
 *  8eeeee 8   8 88   8 8       
 *      88 8eee8 88  e8 8eee    
 *  e   88 88  8  8  8  88      
 *  8eee88 88  8  8ee8  88ee    
 *  ""8""                       
 *    8   e   e eeee            
 *    8e  8   8 8               
 *    88  8eee8 8eee            
 *    88  88  8 88              
 *    88  88  8 88ee            
 *  8""""8                      
 *  8    8 eeeee eeeee eeee     
 *  8e   8 8   8   8   8        
 *  88   8 8eee8   8e  8eee     
 *  88   8 88  8   88  88       
 *  88eee8 88  8   88  88ee     
 *  
 */
pragma solidity >=0.8.9 <0.9.0;

import './ERC721AQueryable.sol';
import './MerkleProof.sol';
import './Ownable.sol';
import './ReentrancyGuard.sol';

contract WhatIsYourDate is ERC721AQueryable, Ownable, ReentrancyGuard {
  using Strings for uint256;

  event DatesMinted(address owner, string[] dates, uint256 currentIndex, uint256 mintAmount);
  event RandomDatesMinted(address owner, uint256 currentIndex, uint256 mintAmount);

  bytes32 public merkleRoot;
  mapping(address => bool) public freelistClaimed;
  mapping(address => bool) public freelist;
  mapping(address => IERC721) public communities;


  string public uriPrefix = '';
  string public uriSuffix = '.json';  
  uint256 public cost = 0.1 ether;
  uint256 public randomDateCost = 0.05 ether;

  uint256 public maxSupply = 18000;
  uint256 public maxMintAmountPerTx = 4;
  string  public tokenName = "SaveTheDate";
  string  public tokenSymbol = "STD";

  bool public paused = true;
  bool public whitelistMintEnabled = false;

  constructor(string memory baseURI
  ) ERC721A(tokenName, tokenSymbol) {
      setUriPrefix(baseURI);
  }

  modifier mintCompliance(uint256 _mintAmount) {
    require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, 'Invalid mint amount!');
    require(totalSupply() + _mintAmount <= maxSupply, 'Max supply exceeded!');
    _;
  }

  modifier mintPriceCompliance(uint256 _mintAmount) {
    require(msg.value >= cost * _mintAmount, 'Insufficient funds!');
    _;
  }

  modifier mintRandomDatePriceCompliance(uint256 _mintAmount) {
    require(msg.value >= randomDateCost * _mintAmount, 'Insufficient funds!');
    _;
  }

  function communityMint(uint256 _mintAmount, string[] memory _dates, address _community, uint256 _nftId) public payable mintCompliance(_mintAmount) mintPriceCompliance(_mintAmount) {
    verifyCommunityRequirements(_community, _nftId);
    mintDates(_msgSender(), _mintAmount, _dates);
  }

 function communityRandomMint(uint256 _mintAmount, address _community, uint256 _nftId) public payable mintCompliance(_mintAmount) mintRandomDatePriceCompliance(_mintAmount) {
    verifyCommunityRequirements(_community, _nftId);
    mintRandomDates(_msgSender(), _mintAmount);
  }

  function verifyCommunityRequirements(address _community, uint256 _nftId) internal view {
    require(whitelistMintEnabled, 'The whitelist sale is not enabled!');
    IERC721 communityContract = communities[_community];
    address _owner = communityContract.ownerOf(_nftId);
    require(_owner == msg.sender, "Must be Owner of OG collection to mint");
  }

  function whitelistMint(uint256 _mintAmount, string[] memory _dates, bytes32[] calldata _merkleProof) public payable mintCompliance(_mintAmount) mintPriceCompliance(_mintAmount) {
    verifyWhitelistRequirements(_merkleProof);
    mintDates(_msgSender(), _mintAmount, _dates);
  }

  function whitelistRandomMint(uint256 _mintAmount, bytes32[] calldata _merkleProof) public payable mintCompliance(_mintAmount) mintRandomDatePriceCompliance(_mintAmount) {
    verifyWhitelistRequirements(_merkleProof);
    mintRandomDates(_msgSender(), _mintAmount);
  }

  function verifyWhitelistRequirements(bytes32[] calldata _merkleProof) internal view {
    require(whitelistMintEnabled, 'The whitelist sale is not enabled!');
    bytes32 leaf = keccak256(abi.encodePacked(_msgSender()));
    require(MerkleProof.verify(_merkleProof, merkleRoot, leaf), 'Invalid proof!');
  }

   function freeMint(string memory _date) public payable {
    require(whitelistMintEnabled, 'The whitelist sale is not enabled!');
    require(!freelistClaimed[_msgSender()], 'Address already claimed!');
    require(freelist[_msgSender()], 'Address is not allowed for free mint');
    string[] memory tmp = new string[](1);
    tmp[0] = _date;
    mintDates(_msgSender(), 1, tmp);
  }

  function mint(uint256 _mintAmount, string[] memory _dates) public payable mintCompliance(_mintAmount) mintPriceCompliance(_mintAmount) {
    require(!paused, 'The contract is paused!');
    mintDates(_msgSender(), _mintAmount, _dates);
  }

  function randomDateMint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) mintRandomDatePriceCompliance(_mintAmount) {
    require(!paused, 'The contract is paused!');
    mintRandomDates(_msgSender(), _mintAmount);
  }

  function mintDates(address to, uint256 _mintAmount, string[] memory _dates) internal {
    uint256 currentIndex = _currentIndex;
    _safeMint(to, _mintAmount);
    emit DatesMinted(to, _dates, currentIndex, _mintAmount);
  }

  function mintRandomDates(address to, uint256 _mintAmount) internal {
    uint256 currentIndex = _currentIndex;
    _safeMint(to, _mintAmount);
    emit RandomDatesMinted(to, currentIndex, _mintAmount);
  }

 function internalRandomMint(uint256 _teamAmount) external onlyOwner  {
    require(totalSupply() + _teamAmount <= maxSupply, 'Max supply exceeded!');
    mintRandomDates(_msgSender(), _teamAmount);
  }

 function internalMint(uint256 _teamAmount, string[] memory _dates) external onlyOwner  {
    require(totalSupply() + _teamAmount <= maxSupply, 'Max supply exceeded!');
    mintDates(_msgSender(), _teamAmount, _dates);
  }
   
  function mintForAddress(uint256 _mintAmount, string[] memory _dates, address _receiver) public mintCompliance(_mintAmount) onlyOwner {
    mintDates(_receiver, _mintAmount, _dates);
  }

  function mintForAddresses(string[] memory _dates, address[] memory _addresses) public onlyOwner {
    string[] memory tmp = new string[](1);
    for (uint i = 0; i < _addresses.length; i++) {
        tmp[0] = _dates[i];
        mintForAddress(1, tmp, _addresses[i]);
    }
  }

  function _startTokenId() internal view virtual override returns (uint256) {
    return 1;
  }

  function setCost(uint256 _cost) public onlyOwner {
    cost = _cost;
  }

  function addCommunities(address[] memory _communities) public onlyOwner {
    for (uint i = 0; i < _communities.length; i++) {
        communities[_communities[i]] = IERC721(_communities[i]);
    }
  }

  function removeCommunities(address[] memory _communities) public onlyOwner {
    for (uint i = 0; i < _communities.length; i++) {
        delete communities[_communities[i]];
    }
  }

  function addToFreelist(address[] memory addresses) public onlyOwner {
    for (uint i = 0; i < addresses.length; i++) {
        freelist[addresses[i]] = true;
    }
  }

  function removeFromFreelist(address[] memory addresses) public onlyOwner {
    for (uint i = 0; i < addresses.length; i++) {
        delete freelist[addresses[i]];
    }
  }

  function setRandomDateCost(uint256 _randomDateCost) public onlyOwner {
    randomDateCost = _randomDateCost;
  }

  function setMaxSupply(uint256 _maxSupply) public onlyOwner {
    maxSupply = _maxSupply;
  }

  function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx) public onlyOwner {
    maxMintAmountPerTx = _maxMintAmountPerTx;
  }

  function setUriPrefix(string memory _uriPrefix) public onlyOwner {
    uriPrefix = _uriPrefix;
  }

  function setUriSuffix(string memory _uriSuffix) public onlyOwner {
    uriSuffix = _uriSuffix;
  }

  function setPaused(bool _state) public onlyOwner {
    paused = _state;
  }

  function setMerkleRoot(bytes32 _merkleRoot) public onlyOwner {
    merkleRoot = _merkleRoot;
  }

  function setWhitelistMintEnabled(bool _state) public onlyOwner {
    whitelistMintEnabled = _state;
  }

  function withdraw() public onlyOwner nonReentrant {
    (bool os, ) = payable(owner()).call{value: address(this).balance}('');
    require(os);
  }

  function _baseURI() internal view virtual override returns (string memory) {
    return uriPrefix;
  }
}

File 1 of 16: Address.sol
// 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
     * ====
     *
     * [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 2 of 16: Context.sol
// 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;
    }
}

File 3 of 16: ERC165.sol
// 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) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

File 4 of 16: ERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import './IERC721A.sol';
import './IERC721Receiver.sol';
import './Address.sol';
import './Context.sol';
import './Strings.sol';
import './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;

    // 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 0;
    }

    /**
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view override 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) if (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) if(!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()) if(!_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;
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    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 {
        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 (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 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) 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;

            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 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 5 of 16: ERC721AQueryable.sol
// 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`
     *
     * Otherwise:
     *   - `addr` = `<Address of owner>`
     *   - `startTimestamp` = `<Timestamp of start of ownership>`
     *   - `burned = `false`
     */
    function explicitOwnershipOf(uint256 tokenId) public view override returns (TokenOwnership memory) {
        TokenOwnership memory ownership;
        if (tokenId < _startTokenId() || tokenId >= _currentIndex) {
            return ownership;
        }
        ownership = _ownerships[tokenId];
        if (ownership.burned) {
            return ownership;
        }
        return _ownershipOf(tokenId);
    }

    /**
     * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order.
     * See {ERC721AQueryable-explicitOwnershipOf}
     */
    function explicitOwnershipsOf(uint256[] memory tokenIds) external view override returns (TokenOwnership[] memory) {
        unchecked {
            uint256 tokenIdsLength = tokenIds.length;
            TokenOwnership[] memory ownerships = new TokenOwnership[](tokenIdsLength);
            for (uint256 i; i != tokenIdsLength; ++i) {
                ownerships[i] = explicitOwnershipOf(tokenIds[i]);
            }
            return ownerships;
        }
    }

    /**
     * @dev Returns an array of token IDs owned by `owner`,
     * in the range [`start`, `stop`)
     * (i.e. `start <= tokenId < stop`).
     *
     * This function allows for tokens to be queried if the collection
     * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}.
     *
     * Requirements:
     *
     * - `start` < `stop`
     */
    function tokensOfOwnerIn(
        address owner,
        uint256 start,
        uint256 stop
    ) external view override returns (uint256[] memory) {
        unchecked {
            if (start >= stop) revert InvalidQueryRange();
            uint256 tokenIdsIdx;
            uint256 stopLimit = _currentIndex;
            // Set `start = max(start, _startTokenId())`.
            if (start < _startTokenId()) {
                start = _startTokenId();
            }
            // Set `stop = min(stop, _currentIndex)`.
            if (stop > stopLimit) {
                stop = stopLimit;
            }
            uint256 tokenIdsMaxLength = balanceOf(owner);
            // Set `tokenIdsMaxLength = min(balanceOf(owner), stop - start)`,
            // to cater for cases where `balanceOf(owner)` is too big.
            if (start < stop) {
                uint256 rangeLength = stop - start;
                if (rangeLength < tokenIdsMaxLength) {
                    tokenIdsMaxLength = rangeLength;
                }
            } else {
                tokenIdsMaxLength = 0;
            }
            uint256[] memory tokenIds = new uint256[](tokenIdsMaxLength);
            if (tokenIdsMaxLength == 0) {
                return tokenIds;
            }
            // We need to call `explicitOwnershipOf(start)`,
            // because the slot at `start` may not be initialized.
            TokenOwnership memory ownership = explicitOwnershipOf(start);
            address currOwnershipAddr;
            // If the starting slot exists (i.e. not burned), initialize `currOwnershipAddr`.
            // `ownership.address` will not be zero, as `start` is clamped to the valid token ID range.
            if (!ownership.burned) {
                currOwnershipAddr = ownership.addr;
            }
            for (uint256 i = start; i != stop && tokenIdsIdx != tokenIdsMaxLength; ++i) {
                ownership = _ownerships[i];
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    tokenIds[tokenIdsIdx++] = i;
                }
            }
            // Downsize the array to fit.
            assembly {
                mstore(tokenIds, tokenIdsIdx)
            }
            return tokenIds;
        }
    }

    /**
     * @dev Returns an array of token IDs owned by `owner`.
     *
     * This function scans the ownership mapping and is O(totalSupply) in complexity.
     * It is meant to be called off-chain.
     *
     * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into
     * multiple smaller scans if the collection is large enough to cause
     * an out-of-gas error (10K pfp collections should be fine).
     */
    function tokensOfOwner(address owner) external view override returns (uint256[] memory) {
        unchecked {
            uint256 tokenIdsIdx;
            address currOwnershipAddr;
            uint256 tokenIdsLength = balanceOf(owner);
            uint256[] memory tokenIds = new uint256[](tokenIdsLength);
            TokenOwnership memory ownership;
            for (uint256 i = _startTokenId(); tokenIdsIdx != tokenIdsLength; ++i) {
                ownership = _ownerships[i];
                if (ownership.burned) {
                    continue;
                }
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    tokenIds[tokenIdsIdx++] = i;
                }
            }
            return tokenIds;
        }
    }
}

File 6 of 16: IERC165.sol
// 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);
}

File 7 of 16: IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @dev Required interface of an ERC721 compliant contract.
 */
interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;
}

File 8 of 16: IERC721A.sol
// SPDX-License-Identifier: MIT
// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

import './IERC721.sol';
import './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.
     */
    error ApproveToCaller();

    /**
     * The caller cannot approve to the current owner.
     */
    error ApprovalToCurrentOwner();

    /**
     * Cannot query the balance for the zero address.
     */
    error BalanceQueryForZeroAddress();

    /**
     * Cannot mint to the zero address.
     */
    error MintToZeroAddress();

    /**
     * The quantity of tokens minted must be more than zero.
     */
    error MintZeroQuantity();

    /**
     * The token does not exist.
     */
    error OwnerQueryForNonexistentToken();

    /**
     * The caller must own the token or be an approved operator.
     */
    error TransferCallerNotOwnerNorApproved();

    /**
     * The token must be owned by `from`.
     */
    error TransferFromIncorrectOwner();

    /**
     * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface.
     */
    error TransferToNonERC721ReceiverImplementer();

    /**
     * Cannot transfer to the zero address.
     */
    error TransferToZeroAddress();

    /**
     * The token does not exist.
     */
    error URIQueryForNonexistentToken();

    // 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;
    }

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     * 
     * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens.
     */
    function totalSupply() external view returns (uint256);
}

File 9 of 16: IERC721AQueryable.sol
// 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:
     *   - `addr` = `<Address of owner before token was burned>`
     *   - `startTimestamp` = `<Timestamp when token was burned>`
     *   - `burned = `true`
     *
     * Otherwise:
     *   - `addr` = `<Address of owner>`
     *   - `startTimestamp` = `<Timestamp of start of ownership>`
     *   - `burned = `false`
     */
    function explicitOwnershipOf(uint256 tokenId) external view returns (TokenOwnership memory);

    /**
     * @dev Returns an array of `TokenOwnership` structs at `tokenIds` in order.
     * See {ERC721AQueryable-explicitOwnershipOf}
     */
    function explicitOwnershipsOf(uint256[] memory tokenIds) external view returns (TokenOwnership[] memory);

    /**
     * @dev Returns an array of token IDs owned by `owner`,
     * in the range [`start`, `stop`)
     * (i.e. `start <= tokenId < stop`).
     *
     * This function allows for tokens to be queried if the collection
     * grows too big for a single call of {ERC721AQueryable-tokensOfOwner}.
     *
     * Requirements:
     *
     * - `start` < `stop`
     */
    function tokensOfOwnerIn(
        address owner,
        uint256 start,
        uint256 stop
    ) external view returns (uint256[] memory);

    /**
     * @dev Returns an array of token IDs owned by `owner`.
     *
     * This function scans the ownership mapping and is O(totalSupply) in complexity.
     * It is meant to be called off-chain.
     *
     * See {ERC721AQueryable-tokensOfOwnerIn} for splitting the scan into
     * multiple smaller scans if the collection is large enough to cause
     * an out-of-gas error (10K pfp collections should be fine).
     */
    function tokensOfOwner(address owner) external view returns (uint256[] memory);
}

File 10 of 16: IERC721Metadata.sol
// 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);
}

File 11 of 16: IERC721Receiver.sol
// 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);
}

File 12 of 16: MerkleProof.sol
// 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) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merklee 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++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = _efficientHash(computedHash, proofElement);
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = _efficientHash(proofElement, computedHash);
            }
        }
        return computedHash;
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

File 13 of 16: Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

import "./Context.sol";

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _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 14 of 16: ReentrancyGuard.sol
// 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
    // 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 15 of 16: Strings.sol
// 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;
        }
        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);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"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":false,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"string[]","name":"dates","type":"string[]"},{"indexed":false,"internalType":"uint256","name":"currentIndex","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"mintAmount","type":"uint256"}],"name":"DatesMinted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"uint256","name":"currentIndex","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"mintAmount","type":"uint256"}],"name":"RandomDatesMinted","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":"address[]","name":"_communities","type":"address[]"}],"name":"addCommunities","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"addToFreelist","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":[{"internalType":"address","name":"","type":"address"}],"name":"communities","outputs":[{"internalType":"contract IERC721","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"string[]","name":"_dates","type":"string[]"},{"internalType":"address","name":"_community","type":"address"},{"internalType":"uint256","name":"_nftId","type":"uint256"}],"name":"communityMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_community","type":"address"},{"internalType":"uint256","name":"_nftId","type":"uint256"}],"name":"communityRandomMint","outputs":[],"stateMutability":"payable","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":"string","name":"_date","type":"string"}],"name":"freeMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"freelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"freelistClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"uint256","name":"_teamAmount","type":"uint256"},{"internalType":"string[]","name":"_dates","type":"string[]"}],"name":"internalMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_teamAmount","type":"uint256"}],"name":"internalRandomMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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"},{"internalType":"string[]","name":"_dates","type":"string[]"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"string[]","name":"_dates","type":"string[]"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string[]","name":"_dates","type":"string[]"},{"internalType":"address[]","name":"_addresses","type":"address[]"}],"name":"mintForAddresses","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":"randomDateCost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"randomDateMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_communities","type":"address[]"}],"name":"removeCommunities","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"removeFromFreelist","outputs":[],"stateMutability":"nonpayable","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":"uint256","name":"_maxSupply","type":"uint256"}],"name":"setMaxSupply","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":"uint256","name":"_randomDateCost","type":"uint256"}],"name":"setRandomDateCost","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":[],"name":"tokenName","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenSymbol","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":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"string[]","name":"_dates","type":"string[]"},{"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":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"whitelistRandomMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60a06040819052600060808190526200001b91600e9162000352565b5060408051808201909152600580825264173539b7b760d91b60209092019182526200004a91600f9162000352565b5067016345785d8a000060105566b1a2bc2ec50000601155614650601255600460135560408051808201909152600b8082526a536176655468654461746560a81b6020909201918252620000a19160149162000352565b506040805180820190915260038082526214d51160ea1b6020909201918252620000ce9160159162000352565b506016805461ffff19166001179055348015620000ea57600080fd5b5060405162003f1438038062003f148339810160408190526200010d916200040e565b601480546200011c90620004ea565b80601f01602080910402602001604051908101604052809291908181526020018280546200014a90620004ea565b80156200019b5780601f106200016f576101008083540402835291602001916200019b565b820191906000526020600020905b8154815290600101906020018083116200017d57829003601f168201915b505050505060158054620001af90620004ea565b80601f0160208091040260200160405190810160405280929190818152602001828054620001dd90620004ea565b80156200022e5780601f1062000202576101008083540402835291602001916200022e565b820191906000526020600020905b8154815290600101906020018083116200021057829003601f168201915b505084516200024893506002925060208601915062000352565b5080516200025e90600390602084019062000352565b5050600160005550620002713362000288565b60016009556200028181620002da565b5062000527565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6008546001600160a01b03163314620003395760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b80516200034e90600e90602084019062000352565b5050565b8280546200036090620004ea565b90600052602060002090601f016020900481019282620003845760008555620003cf565b82601f106200039f57805160ff1916838001178555620003cf565b82800160010185558215620003cf579182015b82811115620003cf578251825591602001919060010190620003b2565b50620003dd929150620003e1565b5090565b5b80821115620003dd5760008155600101620003e2565b634e487b7160e01b600052604160045260246000fd5b600060208083850312156200042257600080fd5b82516001600160401b03808211156200043a57600080fd5b818501915085601f8301126200044f57600080fd5b815181811115620004645762000464620003f8565b604051601f8201601f19908116603f011681019083821181831017156200048f576200048f620003f8565b816040528281528886848701011115620004a857600080fd5b600093505b82841015620004cc5784840186015181850187015292850192620004ad565b82841115620004de5760008684830101525b98975050505050505050565b600181811c90821680620004ff57607f821691505b602082108114156200052157634e487b7160e01b600052602260045260246000fd5b50919050565b6139dd80620005376000396000f3fe6080604052600436106103965760003560e01c80636d68b82c116101dc57806394354fd011610102578063b88d4fde116100a0578063e37fdd7d1161006f578063e37fdd7d14610a53578063e737ab0614610a73578063e985e9c514610a89578063f2fde38b14610aa957600080fd5b8063b88d4fde146109d0578063c23dc68f146109f0578063c87b56dd14610a1d578063d5abeb0114610a3d57600080fd5b8063a0a22486116100dc578063a0a224861461095d578063a22cb46514610970578063b071401b14610990578063b767a098146109b057600080fd5b806394354fd01461091257806395d89b411461092857806399a2557a1461093d57600080fd5b80637cb647591161017a57806385cab7201161014957806385cab720146108a15780638a1bbf86146108c15780638acde89c146108d45780638da5cb5b146108f457600080fd5b80637cb64759146107fe5780637ec4a6591461081e5780637f2813d21461083e5780638462151c1461087457600080fd5b8063715018a6116101b6578063715018a6146107845780637227548b146107995780637789e8aa146107c95780637b61c320146107e957600080fd5b80636d68b82c146107145780636f8b44b01461074457806370a082311461076457600080fd5b80632be8f9be116102c15780635503a0e81161025f57806362b99ad41161022e57806362b99ad4146106ab5780636352211e146106c05780636c02a931146106e05780636caede3d146106f557600080fd5b80635503a0e81461062f5780635bbb2177146106445780635c4e0d6c146106715780635c975abb1461069157600080fd5b80633ccfd60b1161029b5780633ccfd60b146105ba5780633d8e45a9146105cf57806342842e0e146105ef57806344a0d68a1461060f57600080fd5b80632be8f9be146105715780632eb4a7ab1461059157806337500f3c146105a757600080fd5b806313faede611610339578063196429c011610308578063196429c01461050b5780631ce83f321461052b5780631d64b7c11461053e57806323b872dd1461055157600080fd5b806313faede61461049257806316ba10e0146104b657806316c38b3c146104d657806318160ddd146104f657600080fd5b8063081812fc11610375578063081812fc14610407578063095ea7b31461043f5780630c0ac42a1461045f578063136f54461461047257600080fd5b80621284141461039b57806301ffc9a7146103b057806306fdde03146103e5575b600080fd5b6103ae6103a9366004612f2c565b610ac9565b005b3480156103bc57600080fd5b506103d06103cb366004612fa2565b610b80565b60405190151581526020015b60405180910390f35b3480156103f157600080fd5b506103fa610bd2565b6040516103dc9190613017565b34801561041357600080fd5b5061042761042236600461302a565b610c64565b6040516001600160a01b0390911681526020016103dc565b34801561044b57600080fd5b506103ae61045a366004613043565b610ca8565b6103ae61046d3660046130ba565b610d2f565b34801561047e57600080fd5b506103ae61048d366004613169565b610ddb565b34801561049e57600080fd5b506104a860105481565b6040519081526020016103dc565b3480156104c257600080fd5b506103ae6104d136600461319d565b610e68565b3480156104e257600080fd5b506103ae6104f13660046131e6565b610ea5565b34801561050257600080fd5b506104a8610ee2565b34801561051757600080fd5b506103ae610526366004613201565b610ef0565b6103ae61053936600461302a565b610fc9565b6103ae61054c36600461319d565b6110b1565b34801561055d57600080fd5b506103ae61056c366004613264565b611202565b34801561057d57600080fd5b506103ae61058c36600461302a565b61120d565b34801561059d57600080fd5b506104a8600a5481565b6103ae6105b53660046132a5565b611278565b3480156105c657600080fd5b506103ae611313565b3480156105db57600080fd5b506103ae6105ea366004613169565b61140e565b3480156105fb57600080fd5b506103ae61060a366004613264565b6114a0565b34801561061b57600080fd5b506103ae61062a36600461302a565b6114bb565b34801561063b57600080fd5b506103fa6114ea565b34801561065057600080fd5b5061066461065f366004613314565b611578565b6040516103dc91906133a4565b34801561067d57600080fd5b506103ae61068c366004613169565b61163e565b34801561069d57600080fd5b506016546103d09060ff1681565b3480156106b757600080fd5b506103fa611703565b3480156106cc57600080fd5b506104276106db36600461302a565b611710565b3480156106ec57600080fd5b506103fa611722565b34801561070157600080fd5b506016546103d090610100900460ff1681565b34801561072057600080fd5b506103d061072f36600461340e565b600b6020526000908152604090205460ff1681565b34801561075057600080fd5b506103ae61075f36600461302a565b61172f565b34801561077057600080fd5b506104a861077f36600461340e565b61175e565b34801561079057600080fd5b506103ae6117ac565b3480156107a557600080fd5b506103d06107b436600461340e565b600c6020526000908152604090205460ff1681565b3480156107d557600080fd5b506103ae6107e4366004613169565b6117e2565b3480156107f557600080fd5b506103fa611871565b34801561080a57600080fd5b506103ae61081936600461302a565b61187e565b34801561082a57600080fd5b506103ae61083936600461319d565b6118ad565b34801561084a57600080fd5b5061042761085936600461340e565b600d602052600090815260409020546001600160a01b031681565b34801561088057600080fd5b5061089461088f36600461340e565b6118ea565b6040516103dc919061342b565b3480156108ad57600080fd5b506103ae6108bc36600461302a565b611a37565b6103ae6108cf366004613463565b611a66565b3480156108e057600080fd5b506103ae6108ef36600461349f565b611b4f565b34801561090057600080fd5b506008546001600160a01b0316610427565b34801561091e57600080fd5b506104a860135481565b34801561093457600080fd5b506103fa611be7565b34801561094957600080fd5b506108946109583660046134f9565b611bf6565b6103ae61096b36600461352e565b611dbc565b34801561097c57600080fd5b506103ae61098b366004613555565b611e57565b34801561099c57600080fd5b506103ae6109ab36600461302a565b611eed565b3480156109bc57600080fd5b506103ae6109cb3660046131e6565b611f1c565b3480156109dc57600080fd5b506103ae6109eb36600461358a565b611f60565b3480156109fc57600080fd5b50610a10610a0b36600461302a565b611fa4565b6040516103dc9190613609565b348015610a2957600080fd5b506103fa610a3836600461302a565b61205e565b348015610a4957600080fd5b506104a860125481565b348015610a5f57600080fd5b506103ae610a6e366004613463565b6120e2565b348015610a7f57600080fd5b506104a860115481565b348015610a9557600080fd5b506103d0610aa436600461363e565b61214b565b348015610ab557600080fd5b506103ae610ac436600461340e565b612179565b83600081118015610adc57506013548111155b610b015760405162461bcd60e51b8152600401610af890613677565b60405180910390fd5b60125481610b0d610ee2565b610b1791906136bb565b1115610b355760405162461bcd60e51b8152600401610af8906136d3565b8480601054610b449190613701565b341015610b635760405162461bcd60e51b8152600401610af890613720565b610b6d8484612211565b610b7833878761232d565b505050505050565b60006001600160e01b031982166380ac58cd60e01b1480610bb157506001600160e01b03198216635b5e139f60e01b145b80610bcc57506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060028054610be19061374d565b80601f0160208091040260200160405190810160405280929190818152602001828054610c0d9061374d565b8015610c5a5780601f10610c2f57610100808354040283529160200191610c5a565b820191906000526020600020905b815481529060010190602001808311610c3d57829003601f168201915b5050505050905090565b6000610c6f8261237d565b610c8c576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610cb382611710565b9050806001600160a01b0316836001600160a01b03161415610ce85760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614610d1f57610d02813361214b565b610d1f576040516367d9dca160e11b815260040160405180910390fd5b610d2a8383836123b6565b505050565b82600081118015610d4257506013548111155b610d5e5760405162461bcd60e51b8152600401610af890613677565b60125481610d6a610ee2565b610d7491906136bb565b1115610d925760405162461bcd60e51b8152600401610af8906136d3565b8380601154610da19190613701565b341015610dc05760405162461bcd60e51b8152600401610af890613720565b610dca8484612412565b610dd433866124f0565b5050505050565b6008546001600160a01b03163314610e055760405162461bcd60e51b8152600401610af890613788565b60005b8151811015610e6457600c6000838381518110610e2757610e276137bd565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916905580610e5c816137d3565b915050610e08565b5050565b6008546001600160a01b03163314610e925760405162461bcd60e51b8152600401610af890613788565b8051610e6490600f906020840190612d0f565b6008546001600160a01b03163314610ecf5760405162461bcd60e51b8152600401610af890613788565b6016805460ff1916911515919091179055565b600154600054036000190190565b6008546001600160a01b03163314610f1a5760405162461bcd60e51b8152600401610af890613788565b604080516001808252818301909252600091816020015b6060815260200190600190039081610f3157905050905060005b8251811015610fc357838181518110610f6657610f666137bd565b602002602001015182600081518110610f8157610f816137bd565b6020026020010181905250610fb1600183858481518110610fa457610fa46137bd565b6020026020010151611b4f565b80610fbb816137d3565b915050610f4b565b50505050565b80600081118015610fdc57506013548111155b610ff85760405162461bcd60e51b8152600401610af890613677565b60125481611004610ee2565b61100e91906136bb565b111561102c5760405162461bcd60e51b8152600401610af8906136d3565b818060115461103b9190613701565b34101561105a5760405162461bcd60e51b8152600401610af890613720565b60165460ff16156110a75760405162461bcd60e51b815260206004820152601760248201527654686520636f6e7472616374206973207061757365642160481b6044820152606401610af8565b610d2a33846124f0565b601654610100900460ff166110d85760405162461bcd60e51b8152600401610af8906137ee565b336000908152600b602052604090205460ff16156111385760405162461bcd60e51b815260206004820152601860248201527f4164647265737320616c726561647920636c61696d65642100000000000000006044820152606401610af8565b336000908152600c602052604090205460ff166111a35760405162461bcd60e51b8152602060048201526024808201527f41646472657373206973206e6f7420616c6c6f77656420666f722066726565206044820152631b5a5b9d60e21b6064820152608401610af8565b604080516001808252818301909252600091816020015b60608152602001906001900390816111ba57905050905081816000815181106111e5576111e56137bd565b6020026020010181905250610e646111fa3390565b60018361232d565b610d2a83838361254c565b6008546001600160a01b031633146112375760405162461bcd60e51b8152600401610af890613788565b60125481611243610ee2565b61124d91906136bb565b111561126b5760405162461bcd60e51b8152600401610af8906136d3565b61127533826124f0565b50565b8360008111801561128b57506013548111155b6112a75760405162461bcd60e51b8152600401610af890613677565b601254816112b3610ee2565b6112bd91906136bb565b11156112db5760405162461bcd60e51b8152600401610af8906136d3565b84806010546112ea9190613701565b3410156113095760405162461bcd60e51b8152600401610af890613720565b610b6d8484612412565b6008546001600160a01b0316331461133d5760405162461bcd60e51b8152600401610af890613788565b600260095414156113905760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610af8565b600260095560006113a96008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d80600081146113f3576040519150601f19603f3d011682016040523d82523d6000602084013e6113f8565b606091505b505090508061140657600080fd5b506001600955565b6008546001600160a01b031633146114385760405162461bcd60e51b8152600401610af890613788565b60005b8151811015610e64576001600c600084848151811061145c5761145c6137bd565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580611498816137d3565b91505061143b565b610d2a83838360405180602001604052806000815250611f60565b6008546001600160a01b031633146114e55760405162461bcd60e51b8152600401610af890613788565b601055565b600f80546114f79061374d565b80601f01602080910402602001604051908101604052809291908181526020018280546115239061374d565b80156115705780601f1061154557610100808354040283529160200191611570565b820191906000526020600020905b81548152906001019060200180831161155357829003601f168201915b505050505081565b80516060906000816001600160401b0381111561159757611597612da8565b6040519080825280602002602001820160405280156115e257816020015b60408051606081018252600080825260208083018290529282015282526000199092019101816115b55790505b50905060005b82811461163657611611858281518110611604576116046137bd565b6020026020010151611fa4565b828281518110611623576116236137bd565b60209081029190910101526001016115e8565b509392505050565b6008546001600160a01b031633146116685760405162461bcd60e51b8152600401610af890613788565b60005b8151811015610e6457818181518110611686576116866137bd565b6020026020010151600d60008484815181106116a4576116a46137bd565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002060006101000a8154816001600160a01b0302191690836001600160a01b0316021790555080806116fb906137d3565b91505061166b565b600e80546114f79061374d565b600061171b82612737565b5192915050565b601480546114f79061374d565b6008546001600160a01b031633146117595760405162461bcd60e51b8152600401610af890613788565b601255565b60006001600160a01b038216611787576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b031633146117d65760405162461bcd60e51b8152600401610af890613788565b6117e06000612859565b565b6008546001600160a01b0316331461180c5760405162461bcd60e51b8152600401610af890613788565b60005b8151811015610e6457600d600083838151811061182e5761182e6137bd565b6020908102919091018101516001600160a01b0316825281019190915260400160002080546001600160a01b031916905580611869816137d3565b91505061180f565b601580546114f79061374d565b6008546001600160a01b031633146118a85760405162461bcd60e51b8152600401610af890613788565b600a55565b6008546001600160a01b031633146118d75760405162461bcd60e51b8152600401610af890613788565b8051610e6490600e906020840190612d0f565b606060008060006118fa8561175e565b90506000816001600160401b0381111561191657611916612da8565b60405190808252806020026020018201604052801561193f578160200160208202803683370190505b509050611965604080516060810182526000808252602082018190529181019190915290565b60015b838614611a2b57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161580159282019290925292506119ce57611a23565b81516001600160a01b0316156119e357815194505b876001600160a01b0316856001600160a01b03161415611a235780838780600101985081518110611a1657611a166137bd565b6020026020010181815250505b600101611968565b50909695505050505050565b6008546001600160a01b03163314611a615760405162461bcd60e51b8152600401610af890613788565b601155565b81600081118015611a7957506013548111155b611a955760405162461bcd60e51b8152600401610af890613677565b60125481611aa1610ee2565b611aab91906136bb565b1115611ac95760405162461bcd60e51b8152600401610af8906136d3565b8280601054611ad89190613701565b341015611af75760405162461bcd60e51b8152600401610af890613720565b60165460ff1615611b445760405162461bcd60e51b815260206004820152601760248201527654686520636f6e7472616374206973207061757365642160481b6044820152606401610af8565b610fc333858561232d565b82600081118015611b6257506013548111155b611b7e5760405162461bcd60e51b8152600401610af890613677565b60125481611b8a610ee2565b611b9491906136bb565b1115611bb25760405162461bcd60e51b8152600401610af8906136d3565b6008546001600160a01b03163314611bdc5760405162461bcd60e51b8152600401610af890613788565b610fc382858561232d565b606060038054610be19061374d565b6060818310611c1857604051631960ccad60e11b815260040160405180910390fd5b600080546001851015611c2a57600194505b80841115611c36578093505b6000611c418761175e565b905084861015611c605785850381811015611c5a578091505b50611c64565b5060005b6000816001600160401b03811115611c7e57611c7e612da8565b604051908082528060200260200182016040528015611ca7578160200160208202803683370190505b50905081611cba579350611db592505050565b6000611cc588611fa4565b905060008160400151611cd6575080515b885b888114158015611ce85750848714155b15611da957600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16158015928201929092529350611d4c57611da1565b82516001600160a01b031615611d6157825191505b8a6001600160a01b0316826001600160a01b03161415611da15780848880600101995081518110611d9457611d946137bd565b6020026020010181815250505b600101611cd8565b50505092835250909150505b9392505050565b82600081118015611dcf57506013548111155b611deb5760405162461bcd60e51b8152600401610af890613677565b60125481611df7610ee2565b611e0191906136bb565b1115611e1f5760405162461bcd60e51b8152600401610af8906136d3565b8380601154611e2e9190613701565b341015611e4d5760405162461bcd60e51b8152600401610af890613720565b610dca8484612211565b6001600160a01b038216331415611e815760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b03163314611f175760405162461bcd60e51b8152600401610af890613788565b601355565b6008546001600160a01b03163314611f465760405162461bcd60e51b8152600401610af890613788565b601680549115156101000261ff0019909216919091179055565b611f6b84848461254c565b6001600160a01b0383163b15610fc357611f87848484846128ab565b610fc3576040516368d2bf6b60e11b815260040160405180910390fd5b60408051606080820183526000808352602080840182905283850182905284519283018552818352820181905292810192909252906001831080611fea57506000548310155b15611ff55792915050565b50600082815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff1615801592820192909252906120555792915050565b611db583612737565b60606120698261237d565b61208657604051630a14c4b560e41b815260040160405180910390fd5b60006120906129a3565b90508051600014156120b15760405180602001604052806000815250611db5565b806120bb846129b2565b6040516020016120cc929190613830565b6040516020818303038152906040529392505050565b6008546001600160a01b0316331461210c5760405162461bcd60e51b8152600401610af890613788565b60125482612118610ee2565b61212291906136bb565b11156121405760405162461bcd60e51b8152600401610af8906136d3565b610e6433838361232d565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6008546001600160a01b031633146121a35760405162461bcd60e51b8152600401610af890613788565b6001600160a01b0381166122085760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610af8565b61127581612859565b601654610100900460ff166122385760405162461bcd60e51b8152600401610af8906137ee565b6001600160a01b038281166000908152600d60205260408082205490516331a9108f60e11b8152600481018590529216918290636352211e9060240160206040518083038186803b15801561228c57600080fd5b505afa1580156122a0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122c4919061385f565b90506001600160a01b0381163314610fc35760405162461bcd60e51b815260206004820152602660248201527f4d757374206265204f776e6572206f66204f4720636f6c6c656374696f6e20746044820152651bc81b5a5b9d60d21b6064820152608401610af8565b60005461233a8484612aaf565b7f014b4e1f4fe04cdbbce2ca2531450ee1bcf90117995e709f6b35363a7fcad8468483838660405161236f949392919061387c565b60405180910390a150505050565b600081600111158015612391575060005482105b8015610bcc575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b601654610100900460ff166124395760405162461bcd60e51b8152600401610af8906137ee565b6040516bffffffffffffffffffffffff193360601b1660208201526000906034016040516020818303038152906040528051906020012090506124b383838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600a549150849050612ac9565b610d2a5760405162461bcd60e51b815260206004820152600e60248201526d496e76616c69642070726f6f662160901b6044820152606401610af8565b6000546124fd8383612aaf565b604080516001600160a01b0385168152602081018390529081018390527f0c4ba0fdb6124314e8d5e0a52082b36ceb5560fda685725f4e1e28b56f0e4c239060600160405180910390a1505050565b600061255782612737565b9050836001600160a01b031681600001516001600160a01b03161461258e5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806125ac57506125ac853361214b565b806125c75750336125bc84610c64565b6001600160a01b0316145b9050806125e757604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661260e57604051633a954ecd60e21b815260040160405180910390fd5b61261a600084876123b6565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217835587018084529220805491939091166126ee5760005482146126ee57805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610dd4565b604080516060810182526000808252602082018190529181019190915281806001116128405760005481101561284057600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff1615159181018290529061283e5780516001600160a01b0316156127d5579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215612839579392505050565b6127d5565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906128e09033908990889088906004016138f8565b602060405180830381600087803b1580156128fa57600080fd5b505af192505050801561292a575060408051601f3d908101601f1916820190925261292791810190613935565b60015b612985573d808015612958576040519150601f19603f3d011682016040523d82523d6000602084013e61295d565b606091505b50805161297d576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600e8054610be19061374d565b6060816129d65750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612a0057806129ea816137d3565b91506129f99050600a83613968565b91506129da565b6000816001600160401b03811115612a1a57612a1a612da8565b6040519080825280601f01601f191660200182016040528015612a44576020820181803683370190505b5090505b841561299b57612a5960018361397c565b9150612a66600a86613993565b612a719060306136bb565b60f81b818381518110612a8657612a866137bd565b60200101906001600160f81b031916908160001a905350612aa8600a86613968565b9450612a48565b610e64828260405180602001604052806000815250612adf565b600082612ad68584612ca3565b14949350505050565b6000546001600160a01b038416612b0857604051622e076360e81b815260040160405180910390fd5b82612b265760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038416600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168b0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168b01811690920217909155858452600490925290912080546001600160e01b0319168317600160a01b42909316929092029190911790558190818501903b15612c4e575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4612c1760008784806001019550876128ab565b612c34576040516368d2bf6b60e11b815260040160405180910390fd5b808210612bcc578260005414612c4957600080fd5b612c93565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210612c4f575b506000908155610fc39085838684565b600081815b8451811015611636576000858281518110612cc557612cc56137bd565b60200260200101519050808311612ceb5760008381526020829052604090209250612cfc565b600081815260208490526040902092505b5080612d07816137d3565b915050612ca8565b828054612d1b9061374d565b90600052602060002090601f016020900481019282612d3d5760008555612d83565b82601f10612d5657805160ff1916838001178555612d83565b82800160010185558215612d83579182015b82811115612d83578251825591602001919060010190612d68565b50612d8f929150612d93565b5090565b5b80821115612d8f5760008155600101612d94565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b0381118282101715612de657612de6612da8565b604052919050565b60006001600160401b03821115612e0757612e07612da8565b5060051b60200190565b60006001600160401b03831115612e2a57612e2a612da8565b612e3d601f8401601f1916602001612dbe565b9050828152838383011115612e5157600080fd5b828260208301376000602084830101529392505050565b600082601f830112612e7957600080fd5b611db583833560208501612e11565b600082601f830112612e9957600080fd5b81356020612eae612ea983612dee565b612dbe565b82815260059290921b84018101918181019086841115612ecd57600080fd5b8286015b84811015612f0c5780356001600160401b03811115612ef05760008081fd5b612efe8986838b0101612e68565b845250918301918301612ed1565b509695505050505050565b6001600160a01b038116811461127557600080fd5b60008060008060808587031215612f4257600080fd5b8435935060208501356001600160401b03811115612f5f57600080fd5b612f6b87828801612e88565b9350506040850135612f7c81612f17565b9396929550929360600135925050565b6001600160e01b03198116811461127557600080fd5b600060208284031215612fb457600080fd5b8135611db581612f8c565b60005b83811015612fda578181015183820152602001612fc2565b83811115610fc35750506000910152565b60008151808452613003816020860160208601612fbf565b601f01601f19169290920160200192915050565b602081526000611db56020830184612feb565b60006020828403121561303c57600080fd5b5035919050565b6000806040838503121561305657600080fd5b823561306181612f17565b946020939093013593505050565b60008083601f84011261308157600080fd5b5081356001600160401b0381111561309857600080fd5b6020830191508360208260051b85010111156130b357600080fd5b9250929050565b6000806000604084860312156130cf57600080fd5b8335925060208401356001600160401b038111156130ec57600080fd5b6130f88682870161306f565b9497909650939450505050565b600082601f83011261311657600080fd5b81356020613126612ea983612dee565b82815260059290921b8401810191818101908684111561314557600080fd5b8286015b84811015612f0c57803561315c81612f17565b8352918301918301613149565b60006020828403121561317b57600080fd5b81356001600160401b0381111561319157600080fd5b61299b84828501613105565b6000602082840312156131af57600080fd5b81356001600160401b038111156131c557600080fd5b61299b84828501612e68565b803580151581146131e157600080fd5b919050565b6000602082840312156131f857600080fd5b611db5826131d1565b6000806040838503121561321457600080fd5b82356001600160401b038082111561322b57600080fd5b61323786838701612e88565b9350602085013591508082111561324d57600080fd5b5061325a85828601613105565b9150509250929050565b60008060006060848603121561327957600080fd5b833561328481612f17565b9250602084013561329481612f17565b929592945050506040919091013590565b600080600080606085870312156132bb57600080fd5b8435935060208501356001600160401b03808211156132d957600080fd5b6132e588838901612e88565b945060408701359150808211156132fb57600080fd5b506133088782880161306f565b95989497509550505050565b6000602080838503121561332757600080fd5b82356001600160401b0381111561333d57600080fd5b8301601f8101851361334e57600080fd5b803561335c612ea982612dee565b81815260059190911b8201830190838101908783111561337b57600080fd5b928401925b8284101561339957833582529284019290840190613380565b979650505050505050565b6020808252825182820181905260009190848201906040850190845b81811015611a2b576133fb83855180516001600160a01b031682526020808201516001600160401b0316908301526040908101511515910152565b92840192606092909201916001016133c0565b60006020828403121561342057600080fd5b8135611db581612f17565b6020808252825182820181905260009190848201906040850190845b81811015611a2b57835183529284019291840191600101613447565b6000806040838503121561347657600080fd5b8235915060208301356001600160401b0381111561349357600080fd5b61325a85828601612e88565b6000806000606084860312156134b457600080fd5b8335925060208401356001600160401b038111156134d157600080fd5b6134dd86828701612e88565b92505060408401356134ee81612f17565b809150509250925092565b60008060006060848603121561350e57600080fd5b833561351981612f17565b95602085013595506040909401359392505050565b60008060006060848603121561354357600080fd5b83359250602084013561329481612f17565b6000806040838503121561356857600080fd5b823561357381612f17565b9150613581602084016131d1565b90509250929050565b600080600080608085870312156135a057600080fd5b84356135ab81612f17565b935060208501356135bb81612f17565b92506040850135915060608501356001600160401b038111156135dd57600080fd5b8501601f810187136135ee57600080fd5b6135fd87823560208401612e11565b91505092959194509250565b81516001600160a01b031681526020808301516001600160401b03169082015260408083015115159082015260608101610bcc565b6000806040838503121561365157600080fd5b823561365c81612f17565b9150602083013561366c81612f17565b809150509250929050565b602080825260149082015273496e76616c6964206d696e7420616d6f756e742160601b604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600082198211156136ce576136ce6136a5565b500190565b6020808252601490820152734d617820737570706c792065786365656465642160601b604082015260600190565b600081600019048311821515161561371b5761371b6136a5565b500290565b602080825260139082015272496e73756666696369656e742066756e64732160681b604082015260600190565b600181811c9082168061376157607f821691505b6020821081141561378257634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b60006000198214156137e7576137e76136a5565b5060010190565b60208082526022908201527f5468652077686974656c6973742073616c65206973206e6f7420656e61626c65604082015261642160f01b606082015260800190565b60008351613842818460208801612fbf565b835190830190613856818360208801612fbf565b01949350505050565b60006020828403121561387157600080fd5b8151611db581612f17565b60006080820160018060a01b0387168352602060808185015281875180845260a08601915060a08160051b870101935082890160005b828110156138e057609f198887030184526138ce868351612feb565b955092840192908401906001016138b2565b50505050506040830194909452506060015292915050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061392b90830184612feb565b9695505050505050565b60006020828403121561394757600080fd5b8151611db581612f8c565b634e487b7160e01b600052601260045260246000fd5b60008261397757613977613952565b500490565b60008282101561398e5761398e6136a5565b500390565b6000826139a2576139a2613952565b50069056fea26469706673582212204b5237bef3689ae40068db70b94359f7e6e714b9d77e6716fc7c9d0c9dceb69d64736f6c6343000809003300000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000027687474703a2f2f6170692e776861746973796f7572646174652e78797a2f6d657461646174612f00000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106103965760003560e01c80636d68b82c116101dc57806394354fd011610102578063b88d4fde116100a0578063e37fdd7d1161006f578063e37fdd7d14610a53578063e737ab0614610a73578063e985e9c514610a89578063f2fde38b14610aa957600080fd5b8063b88d4fde146109d0578063c23dc68f146109f0578063c87b56dd14610a1d578063d5abeb0114610a3d57600080fd5b8063a0a22486116100dc578063a0a224861461095d578063a22cb46514610970578063b071401b14610990578063b767a098146109b057600080fd5b806394354fd01461091257806395d89b411461092857806399a2557a1461093d57600080fd5b80637cb647591161017a57806385cab7201161014957806385cab720146108a15780638a1bbf86146108c15780638acde89c146108d45780638da5cb5b146108f457600080fd5b80637cb64759146107fe5780637ec4a6591461081e5780637f2813d21461083e5780638462151c1461087457600080fd5b8063715018a6116101b6578063715018a6146107845780637227548b146107995780637789e8aa146107c95780637b61c320146107e957600080fd5b80636d68b82c146107145780636f8b44b01461074457806370a082311461076457600080fd5b80632be8f9be116102c15780635503a0e81161025f57806362b99ad41161022e57806362b99ad4146106ab5780636352211e146106c05780636c02a931146106e05780636caede3d146106f557600080fd5b80635503a0e81461062f5780635bbb2177146106445780635c4e0d6c146106715780635c975abb1461069157600080fd5b80633ccfd60b1161029b5780633ccfd60b146105ba5780633d8e45a9146105cf57806342842e0e146105ef57806344a0d68a1461060f57600080fd5b80632be8f9be146105715780632eb4a7ab1461059157806337500f3c146105a757600080fd5b806313faede611610339578063196429c011610308578063196429c01461050b5780631ce83f321461052b5780631d64b7c11461053e57806323b872dd1461055157600080fd5b806313faede61461049257806316ba10e0146104b657806316c38b3c146104d657806318160ddd146104f657600080fd5b8063081812fc11610375578063081812fc14610407578063095ea7b31461043f5780630c0ac42a1461045f578063136f54461461047257600080fd5b80621284141461039b57806301ffc9a7146103b057806306fdde03146103e5575b600080fd5b6103ae6103a9366004612f2c565b610ac9565b005b3480156103bc57600080fd5b506103d06103cb366004612fa2565b610b80565b60405190151581526020015b60405180910390f35b3480156103f157600080fd5b506103fa610bd2565b6040516103dc9190613017565b34801561041357600080fd5b5061042761042236600461302a565b610c64565b6040516001600160a01b0390911681526020016103dc565b34801561044b57600080fd5b506103ae61045a366004613043565b610ca8565b6103ae61046d3660046130ba565b610d2f565b34801561047e57600080fd5b506103ae61048d366004613169565b610ddb565b34801561049e57600080fd5b506104a860105481565b6040519081526020016103dc565b3480156104c257600080fd5b506103ae6104d136600461319d565b610e68565b3480156104e257600080fd5b506103ae6104f13660046131e6565b610ea5565b34801561050257600080fd5b506104a8610ee2565b34801561051757600080fd5b506103ae610526366004613201565b610ef0565b6103ae61053936600461302a565b610fc9565b6103ae61054c36600461319d565b6110b1565b34801561055d57600080fd5b506103ae61056c366004613264565b611202565b34801561057d57600080fd5b506103ae61058c36600461302a565b61120d565b34801561059d57600080fd5b506104a8600a5481565b6103ae6105b53660046132a5565b611278565b3480156105c657600080fd5b506103ae611313565b3480156105db57600080fd5b506103ae6105ea366004613169565b61140e565b3480156105fb57600080fd5b506103ae61060a366004613264565b6114a0565b34801561061b57600080fd5b506103ae61062a36600461302a565b6114bb565b34801561063b57600080fd5b506103fa6114ea565b34801561065057600080fd5b5061066461065f366004613314565b611578565b6040516103dc91906133a4565b34801561067d57600080fd5b506103ae61068c366004613169565b61163e565b34801561069d57600080fd5b506016546103d09060ff1681565b3480156106b757600080fd5b506103fa611703565b3480156106cc57600080fd5b506104276106db36600461302a565b611710565b3480156106ec57600080fd5b506103fa611722565b34801561070157600080fd5b506016546103d090610100900460ff1681565b34801561072057600080fd5b506103d061072f36600461340e565b600b6020526000908152604090205460ff1681565b34801561075057600080fd5b506103ae61075f36600461302a565b61172f565b34801561077057600080fd5b506104a861077f36600461340e565b61175e565b34801561079057600080fd5b506103ae6117ac565b3480156107a557600080fd5b506103d06107b436600461340e565b600c6020526000908152604090205460ff1681565b3480156107d557600080fd5b506103ae6107e4366004613169565b6117e2565b3480156107f557600080fd5b506103fa611871565b34801561080a57600080fd5b506103ae61081936600461302a565b61187e565b34801561082a57600080fd5b506103ae61083936600461319d565b6118ad565b34801561084a57600080fd5b5061042761085936600461340e565b600d602052600090815260409020546001600160a01b031681565b34801561088057600080fd5b5061089461088f36600461340e565b6118ea565b6040516103dc919061342b565b3480156108ad57600080fd5b506103ae6108bc36600461302a565b611a37565b6103ae6108cf366004613463565b611a66565b3480156108e057600080fd5b506103ae6108ef36600461349f565b611b4f565b34801561090057600080fd5b506008546001600160a01b0316610427565b34801561091e57600080fd5b506104a860135481565b34801561093457600080fd5b506103fa611be7565b34801561094957600080fd5b506108946109583660046134f9565b611bf6565b6103ae61096b36600461352e565b611dbc565b34801561097c57600080fd5b506103ae61098b366004613555565b611e57565b34801561099c57600080fd5b506103ae6109ab36600461302a565b611eed565b3480156109bc57600080fd5b506103ae6109cb3660046131e6565b611f1c565b3480156109dc57600080fd5b506103ae6109eb36600461358a565b611f60565b3480156109fc57600080fd5b50610a10610a0b36600461302a565b611fa4565b6040516103dc9190613609565b348015610a2957600080fd5b506103fa610a3836600461302a565b61205e565b348015610a4957600080fd5b506104a860125481565b348015610a5f57600080fd5b506103ae610a6e366004613463565b6120e2565b348015610a7f57600080fd5b506104a860115481565b348015610a9557600080fd5b506103d0610aa436600461363e565b61214b565b348015610ab557600080fd5b506103ae610ac436600461340e565b612179565b83600081118015610adc57506013548111155b610b015760405162461bcd60e51b8152600401610af890613677565b60405180910390fd5b60125481610b0d610ee2565b610b1791906136bb565b1115610b355760405162461bcd60e51b8152600401610af8906136d3565b8480601054610b449190613701565b341015610b635760405162461bcd60e51b8152600401610af890613720565b610b6d8484612211565b610b7833878761232d565b505050505050565b60006001600160e01b031982166380ac58cd60e01b1480610bb157506001600160e01b03198216635b5e139f60e01b145b80610bcc57506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060028054610be19061374d565b80601f0160208091040260200160405190810160405280929190818152602001828054610c0d9061374d565b8015610c5a5780601f10610c2f57610100808354040283529160200191610c5a565b820191906000526020600020905b815481529060010190602001808311610c3d57829003601f168201915b5050505050905090565b6000610c6f8261237d565b610c8c576040516333d1c03960e21b815260040160405180910390fd5b506000908152600660205260409020546001600160a01b031690565b6000610cb382611710565b9050806001600160a01b0316836001600160a01b03161415610ce85760405163250fdee360e21b815260040160405180910390fd5b336001600160a01b03821614610d1f57610d02813361214b565b610d1f576040516367d9dca160e11b815260040160405180910390fd5b610d2a8383836123b6565b505050565b82600081118015610d4257506013548111155b610d5e5760405162461bcd60e51b8152600401610af890613677565b60125481610d6a610ee2565b610d7491906136bb565b1115610d925760405162461bcd60e51b8152600401610af8906136d3565b8380601154610da19190613701565b341015610dc05760405162461bcd60e51b8152600401610af890613720565b610dca8484612412565b610dd433866124f0565b5050505050565b6008546001600160a01b03163314610e055760405162461bcd60e51b8152600401610af890613788565b60005b8151811015610e6457600c6000838381518110610e2757610e276137bd565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916905580610e5c816137d3565b915050610e08565b5050565b6008546001600160a01b03163314610e925760405162461bcd60e51b8152600401610af890613788565b8051610e6490600f906020840190612d0f565b6008546001600160a01b03163314610ecf5760405162461bcd60e51b8152600401610af890613788565b6016805460ff1916911515919091179055565b600154600054036000190190565b6008546001600160a01b03163314610f1a5760405162461bcd60e51b8152600401610af890613788565b604080516001808252818301909252600091816020015b6060815260200190600190039081610f3157905050905060005b8251811015610fc357838181518110610f6657610f666137bd565b602002602001015182600081518110610f8157610f816137bd565b6020026020010181905250610fb1600183858481518110610fa457610fa46137bd565b6020026020010151611b4f565b80610fbb816137d3565b915050610f4b565b50505050565b80600081118015610fdc57506013548111155b610ff85760405162461bcd60e51b8152600401610af890613677565b60125481611004610ee2565b61100e91906136bb565b111561102c5760405162461bcd60e51b8152600401610af8906136d3565b818060115461103b9190613701565b34101561105a5760405162461bcd60e51b8152600401610af890613720565b60165460ff16156110a75760405162461bcd60e51b815260206004820152601760248201527654686520636f6e7472616374206973207061757365642160481b6044820152606401610af8565b610d2a33846124f0565b601654610100900460ff166110d85760405162461bcd60e51b8152600401610af8906137ee565b336000908152600b602052604090205460ff16156111385760405162461bcd60e51b815260206004820152601860248201527f4164647265737320616c726561647920636c61696d65642100000000000000006044820152606401610af8565b336000908152600c602052604090205460ff166111a35760405162461bcd60e51b8152602060048201526024808201527f41646472657373206973206e6f7420616c6c6f77656420666f722066726565206044820152631b5a5b9d60e21b6064820152608401610af8565b604080516001808252818301909252600091816020015b60608152602001906001900390816111ba57905050905081816000815181106111e5576111e56137bd565b6020026020010181905250610e646111fa3390565b60018361232d565b610d2a83838361254c565b6008546001600160a01b031633146112375760405162461bcd60e51b8152600401610af890613788565b60125481611243610ee2565b61124d91906136bb565b111561126b5760405162461bcd60e51b8152600401610af8906136d3565b61127533826124f0565b50565b8360008111801561128b57506013548111155b6112a75760405162461bcd60e51b8152600401610af890613677565b601254816112b3610ee2565b6112bd91906136bb565b11156112db5760405162461bcd60e51b8152600401610af8906136d3565b84806010546112ea9190613701565b3410156113095760405162461bcd60e51b8152600401610af890613720565b610b6d8484612412565b6008546001600160a01b0316331461133d5760405162461bcd60e51b8152600401610af890613788565b600260095414156113905760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006044820152606401610af8565b600260095560006113a96008546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d80600081146113f3576040519150601f19603f3d011682016040523d82523d6000602084013e6113f8565b606091505b505090508061140657600080fd5b506001600955565b6008546001600160a01b031633146114385760405162461bcd60e51b8152600401610af890613788565b60005b8151811015610e64576001600c600084848151811061145c5761145c6137bd565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580611498816137d3565b91505061143b565b610d2a83838360405180602001604052806000815250611f60565b6008546001600160a01b031633146114e55760405162461bcd60e51b8152600401610af890613788565b601055565b600f80546114f79061374d565b80601f01602080910402602001604051908101604052809291908181526020018280546115239061374d565b80156115705780601f1061154557610100808354040283529160200191611570565b820191906000526020600020905b81548152906001019060200180831161155357829003601f168201915b505050505081565b80516060906000816001600160401b0381111561159757611597612da8565b6040519080825280602002602001820160405280156115e257816020015b60408051606081018252600080825260208083018290529282015282526000199092019101816115b55790505b50905060005b82811461163657611611858281518110611604576116046137bd565b6020026020010151611fa4565b828281518110611623576116236137bd565b60209081029190910101526001016115e8565b509392505050565b6008546001600160a01b031633146116685760405162461bcd60e51b8152600401610af890613788565b60005b8151811015610e6457818181518110611686576116866137bd565b6020026020010151600d60008484815181106116a4576116a46137bd565b60200260200101516001600160a01b03166001600160a01b0316815260200190815260200160002060006101000a8154816001600160a01b0302191690836001600160a01b0316021790555080806116fb906137d3565b91505061166b565b600e80546114f79061374d565b600061171b82612737565b5192915050565b601480546114f79061374d565b6008546001600160a01b031633146117595760405162461bcd60e51b8152600401610af890613788565b601255565b60006001600160a01b038216611787576040516323d3ad8160e21b815260040160405180910390fd5b506001600160a01b03166000908152600560205260409020546001600160401b031690565b6008546001600160a01b031633146117d65760405162461bcd60e51b8152600401610af890613788565b6117e06000612859565b565b6008546001600160a01b0316331461180c5760405162461bcd60e51b8152600401610af890613788565b60005b8151811015610e6457600d600083838151811061182e5761182e6137bd565b6020908102919091018101516001600160a01b0316825281019190915260400160002080546001600160a01b031916905580611869816137d3565b91505061180f565b601580546114f79061374d565b6008546001600160a01b031633146118a85760405162461bcd60e51b8152600401610af890613788565b600a55565b6008546001600160a01b031633146118d75760405162461bcd60e51b8152600401610af890613788565b8051610e6490600e906020840190612d0f565b606060008060006118fa8561175e565b90506000816001600160401b0381111561191657611916612da8565b60405190808252806020026020018201604052801561193f578160200160208202803683370190505b509050611965604080516060810182526000808252602082018190529181019190915290565b60015b838614611a2b57600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff161580159282019290925292506119ce57611a23565b81516001600160a01b0316156119e357815194505b876001600160a01b0316856001600160a01b03161415611a235780838780600101985081518110611a1657611a166137bd565b6020026020010181815250505b600101611968565b50909695505050505050565b6008546001600160a01b03163314611a615760405162461bcd60e51b8152600401610af890613788565b601155565b81600081118015611a7957506013548111155b611a955760405162461bcd60e51b8152600401610af890613677565b60125481611aa1610ee2565b611aab91906136bb565b1115611ac95760405162461bcd60e51b8152600401610af8906136d3565b8280601054611ad89190613701565b341015611af75760405162461bcd60e51b8152600401610af890613720565b60165460ff1615611b445760405162461bcd60e51b815260206004820152601760248201527654686520636f6e7472616374206973207061757365642160481b6044820152606401610af8565b610fc333858561232d565b82600081118015611b6257506013548111155b611b7e5760405162461bcd60e51b8152600401610af890613677565b60125481611b8a610ee2565b611b9491906136bb565b1115611bb25760405162461bcd60e51b8152600401610af8906136d3565b6008546001600160a01b03163314611bdc5760405162461bcd60e51b8152600401610af890613788565b610fc382858561232d565b606060038054610be19061374d565b6060818310611c1857604051631960ccad60e11b815260040160405180910390fd5b600080546001851015611c2a57600194505b80841115611c36578093505b6000611c418761175e565b905084861015611c605785850381811015611c5a578091505b50611c64565b5060005b6000816001600160401b03811115611c7e57611c7e612da8565b604051908082528060200260200182016040528015611ca7578160200160208202803683370190505b50905081611cba579350611db592505050565b6000611cc588611fa4565b905060008160400151611cd6575080515b885b888114158015611ce85750848714155b15611da957600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff16158015928201929092529350611d4c57611da1565b82516001600160a01b031615611d6157825191505b8a6001600160a01b0316826001600160a01b03161415611da15780848880600101995081518110611d9457611d946137bd565b6020026020010181815250505b600101611cd8565b50505092835250909150505b9392505050565b82600081118015611dcf57506013548111155b611deb5760405162461bcd60e51b8152600401610af890613677565b60125481611df7610ee2565b611e0191906136bb565b1115611e1f5760405162461bcd60e51b8152600401610af8906136d3565b8380601154611e2e9190613701565b341015611e4d5760405162461bcd60e51b8152600401610af890613720565b610dca8484612211565b6001600160a01b038216331415611e815760405163b06307db60e01b815260040160405180910390fd5b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6008546001600160a01b03163314611f175760405162461bcd60e51b8152600401610af890613788565b601355565b6008546001600160a01b03163314611f465760405162461bcd60e51b8152600401610af890613788565b601680549115156101000261ff0019909216919091179055565b611f6b84848461254c565b6001600160a01b0383163b15610fc357611f87848484846128ab565b610fc3576040516368d2bf6b60e11b815260040160405180910390fd5b60408051606080820183526000808352602080840182905283850182905284519283018552818352820181905292810192909252906001831080611fea57506000548310155b15611ff55792915050565b50600082815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff1615801592820192909252906120555792915050565b611db583612737565b60606120698261237d565b61208657604051630a14c4b560e41b815260040160405180910390fd5b60006120906129a3565b90508051600014156120b15760405180602001604052806000815250611db5565b806120bb846129b2565b6040516020016120cc929190613830565b6040516020818303038152906040529392505050565b6008546001600160a01b0316331461210c5760405162461bcd60e51b8152600401610af890613788565b60125482612118610ee2565b61212291906136bb565b11156121405760405162461bcd60e51b8152600401610af8906136d3565b610e6433838361232d565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b6008546001600160a01b031633146121a35760405162461bcd60e51b8152600401610af890613788565b6001600160a01b0381166122085760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610af8565b61127581612859565b601654610100900460ff166122385760405162461bcd60e51b8152600401610af8906137ee565b6001600160a01b038281166000908152600d60205260408082205490516331a9108f60e11b8152600481018590529216918290636352211e9060240160206040518083038186803b15801561228c57600080fd5b505afa1580156122a0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906122c4919061385f565b90506001600160a01b0381163314610fc35760405162461bcd60e51b815260206004820152602660248201527f4d757374206265204f776e6572206f66204f4720636f6c6c656374696f6e20746044820152651bc81b5a5b9d60d21b6064820152608401610af8565b60005461233a8484612aaf565b7f014b4e1f4fe04cdbbce2ca2531450ee1bcf90117995e709f6b35363a7fcad8468483838660405161236f949392919061387c565b60405180910390a150505050565b600081600111158015612391575060005482105b8015610bcc575050600090815260046020526040902054600160e01b900460ff161590565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b601654610100900460ff166124395760405162461bcd60e51b8152600401610af8906137ee565b6040516bffffffffffffffffffffffff193360601b1660208201526000906034016040516020818303038152906040528051906020012090506124b383838080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525050600a549150849050612ac9565b610d2a5760405162461bcd60e51b815260206004820152600e60248201526d496e76616c69642070726f6f662160901b6044820152606401610af8565b6000546124fd8383612aaf565b604080516001600160a01b0385168152602081018390529081018390527f0c4ba0fdb6124314e8d5e0a52082b36ceb5560fda685725f4e1e28b56f0e4c239060600160405180910390a1505050565b600061255782612737565b9050836001600160a01b031681600001516001600160a01b03161461258e5760405162a1148160e81b815260040160405180910390fd5b6000336001600160a01b03861614806125ac57506125ac853361214b565b806125c75750336125bc84610c64565b6001600160a01b0316145b9050806125e757604051632ce44b5f60e11b815260040160405180910390fd5b6001600160a01b03841661260e57604051633a954ecd60e21b815260040160405180910390fd5b61261a600084876123b6565b6001600160a01b038581166000908152600560209081526040808320805467ffffffffffffffff198082166001600160401b0392831660001901831617909255898616808652838620805493841693831660019081018416949094179055898652600490945282852080546001600160e01b031916909417600160a01b429092169190910217835587018084529220805491939091166126ee5760005482146126ee57805460208601516001600160401b0316600160a01b026001600160e01b03199091166001600160a01b038a16171781555b50505082846001600160a01b0316866001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4610dd4565b604080516060810182526000808252602082018190529181019190915281806001116128405760005481101561284057600081815260046020908152604091829020825160608101845290546001600160a01b0381168252600160a01b81046001600160401b031692820192909252600160e01b90910460ff1615159181018290529061283e5780516001600160a01b0316156127d5579392505050565b5060001901600081815260046020908152604091829020825160608101845290546001600160a01b038116808352600160a01b82046001600160401b031693830193909352600160e01b900460ff1615159281019290925215612839579392505050565b6127d5565b505b604051636f96cda160e11b815260040160405180910390fd5b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b604051630a85bd0160e11b81526000906001600160a01b0385169063150b7a02906128e09033908990889088906004016138f8565b602060405180830381600087803b1580156128fa57600080fd5b505af192505050801561292a575060408051601f3d908101601f1916820190925261292791810190613935565b60015b612985573d808015612958576040519150601f19603f3d011682016040523d82523d6000602084013e61295d565b606091505b50805161297d576040516368d2bf6b60e11b815260040160405180910390fd5b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490505b949350505050565b6060600e8054610be19061374d565b6060816129d65750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612a0057806129ea816137d3565b91506129f99050600a83613968565b91506129da565b6000816001600160401b03811115612a1a57612a1a612da8565b6040519080825280601f01601f191660200182016040528015612a44576020820181803683370190505b5090505b841561299b57612a5960018361397c565b9150612a66600a86613993565b612a719060306136bb565b60f81b818381518110612a8657612a866137bd565b60200101906001600160f81b031916908160001a905350612aa8600a86613968565b9450612a48565b610e64828260405180602001604052806000815250612adf565b600082612ad68584612ca3565b14949350505050565b6000546001600160a01b038416612b0857604051622e076360e81b815260040160405180910390fd5b82612b265760405163b562e8dd60e01b815260040160405180910390fd5b6001600160a01b038416600081815260056020908152604080832080546fffffffffffffffffffffffffffffffff1981166001600160401b038083168b0181169182176801000000000000000067ffffffffffffffff1990941690921783900481168b01811690920217909155858452600490925290912080546001600160e01b0319168317600160a01b42909316929092029190911790558190818501903b15612c4e575b60405182906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4612c1760008784806001019550876128ab565b612c34576040516368d2bf6b60e11b815260040160405180910390fd5b808210612bcc578260005414612c4957600080fd5b612c93565b5b6040516001830192906001600160a01b038816906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4808210612c4f575b506000908155610fc39085838684565b600081815b8451811015611636576000858281518110612cc557612cc56137bd565b60200260200101519050808311612ceb5760008381526020829052604090209250612cfc565b600081815260208490526040902092505b5080612d07816137d3565b915050612ca8565b828054612d1b9061374d565b90600052602060002090601f016020900481019282612d3d5760008555612d83565b82601f10612d5657805160ff1916838001178555612d83565b82800160010185558215612d83579182015b82811115612d83578251825591602001919060010190612d68565b50612d8f929150612d93565b5090565b5b80821115612d8f5760008155600101612d94565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f191681016001600160401b0381118282101715612de657612de6612da8565b604052919050565b60006001600160401b03821115612e0757612e07612da8565b5060051b60200190565b60006001600160401b03831115612e2a57612e2a612da8565b612e3d601f8401601f1916602001612dbe565b9050828152838383011115612e5157600080fd5b828260208301376000602084830101529392505050565b600082601f830112612e7957600080fd5b611db583833560208501612e11565b600082601f830112612e9957600080fd5b81356020612eae612ea983612dee565b612dbe565b82815260059290921b84018101918181019086841115612ecd57600080fd5b8286015b84811015612f0c5780356001600160401b03811115612ef05760008081fd5b612efe8986838b0101612e68565b845250918301918301612ed1565b509695505050505050565b6001600160a01b038116811461127557600080fd5b60008060008060808587031215612f4257600080fd5b8435935060208501356001600160401b03811115612f5f57600080fd5b612f6b87828801612e88565b9350506040850135612f7c81612f17565b9396929550929360600135925050565b6001600160e01b03198116811461127557600080fd5b600060208284031215612fb457600080fd5b8135611db581612f8c565b60005b83811015612fda578181015183820152602001612fc2565b83811115610fc35750506000910152565b60008151808452613003816020860160208601612fbf565b601f01601f19169290920160200192915050565b602081526000611db56020830184612feb565b60006020828403121561303c57600080fd5b5035919050565b6000806040838503121561305657600080fd5b823561306181612f17565b946020939093013593505050565b60008083601f84011261308157600080fd5b5081356001600160401b0381111561309857600080fd5b6020830191508360208260051b85010111156130b357600080fd5b9250929050565b6000806000604084860312156130cf57600080fd5b8335925060208401356001600160401b038111156130ec57600080fd5b6130f88682870161306f565b9497909650939450505050565b600082601f83011261311657600080fd5b81356020613126612ea983612dee565b82815260059290921b8401810191818101908684111561314557600080fd5b8286015b84811015612f0c57803561315c81612f17565b8352918301918301613149565b60006020828403121561317b57600080fd5b81356001600160401b0381111561319157600080fd5b61299b84828501613105565b6000602082840312156131af57600080fd5b81356001600160401b038111156131c557600080fd5b61299b84828501612e68565b803580151581146131e157600080fd5b919050565b6000602082840312156131f857600080fd5b611db5826131d1565b6000806040838503121561321457600080fd5b82356001600160401b038082111561322b57600080fd5b61323786838701612e88565b9350602085013591508082111561324d57600080fd5b5061325a85828601613105565b9150509250929050565b60008060006060848603121561327957600080fd5b833561328481612f17565b9250602084013561329481612f17565b929592945050506040919091013590565b600080600080606085870312156132bb57600080fd5b8435935060208501356001600160401b03808211156132d957600080fd5b6132e588838901612e88565b945060408701359150808211156132fb57600080fd5b506133088782880161306f565b95989497509550505050565b6000602080838503121561332757600080fd5b82356001600160401b0381111561333d57600080fd5b8301601f8101851361334e57600080fd5b803561335c612ea982612dee565b81815260059190911b8201830190838101908783111561337b57600080fd5b928401925b8284101561339957833582529284019290840190613380565b979650505050505050565b6020808252825182820181905260009190848201906040850190845b81811015611a2b576133fb83855180516001600160a01b031682526020808201516001600160401b0316908301526040908101511515910152565b92840192606092909201916001016133c0565b60006020828403121561342057600080fd5b8135611db581612f17565b6020808252825182820181905260009190848201906040850190845b81811015611a2b57835183529284019291840191600101613447565b6000806040838503121561347657600080fd5b8235915060208301356001600160401b0381111561349357600080fd5b61325a85828601612e88565b6000806000606084860312156134b457600080fd5b8335925060208401356001600160401b038111156134d157600080fd5b6134dd86828701612e88565b92505060408401356134ee81612f17565b809150509250925092565b60008060006060848603121561350e57600080fd5b833561351981612f17565b95602085013595506040909401359392505050565b60008060006060848603121561354357600080fd5b83359250602084013561329481612f17565b6000806040838503121561356857600080fd5b823561357381612f17565b9150613581602084016131d1565b90509250929050565b600080600080608085870312156135a057600080fd5b84356135ab81612f17565b935060208501356135bb81612f17565b92506040850135915060608501356001600160401b038111156135dd57600080fd5b8501601f810187136135ee57600080fd5b6135fd87823560208401612e11565b91505092959194509250565b81516001600160a01b031681526020808301516001600160401b03169082015260408083015115159082015260608101610bcc565b6000806040838503121561365157600080fd5b823561365c81612f17565b9150602083013561366c81612f17565b809150509250929050565b602080825260149082015273496e76616c6964206d696e7420616d6f756e742160601b604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600082198211156136ce576136ce6136a5565b500190565b6020808252601490820152734d617820737570706c792065786365656465642160601b604082015260600190565b600081600019048311821515161561371b5761371b6136a5565b500290565b602080825260139082015272496e73756666696369656e742066756e64732160681b604082015260600190565b600181811c9082168061376157607f821691505b6020821081141561378257634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052603260045260246000fd5b60006000198214156137e7576137e76136a5565b5060010190565b60208082526022908201527f5468652077686974656c6973742073616c65206973206e6f7420656e61626c65604082015261642160f01b606082015260800190565b60008351613842818460208801612fbf565b835190830190613856818360208801612fbf565b01949350505050565b60006020828403121561387157600080fd5b8151611db581612f17565b60006080820160018060a01b0387168352602060808185015281875180845260a08601915060a08160051b870101935082890160005b828110156138e057609f198887030184526138ce868351612feb565b955092840192908401906001016138b2565b50505050506040830194909452506060015292915050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061392b90830184612feb565b9695505050505050565b60006020828403121561394757600080fd5b8151611db581612f8c565b634e487b7160e01b600052601260045260246000fd5b60008261397757613977613952565b500490565b60008282101561398e5761398e6136a5565b500390565b6000826139a2576139a2613952565b50069056fea26469706673582212204b5237bef3689ae40068db70b94359f7e6e714b9d77e6716fc7c9d0c9dceb69d64736f6c63430008090033

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

00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000027687474703a2f2f6170692e776861746973796f7572646174652e78797a2f6d657461646174612f00000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : baseURI (string): http://api.whatisyourdate.xyz/metadata/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000027
Arg [2] : 687474703a2f2f6170692e776861746973796f7572646174652e78797a2f6d65
Arg [3] : 7461646174612f00000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

826:7687:15:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2347:291;;;;;;:::i;:::-;;:::i;:::-;;2986:305:3;;;;;;;;;;-1:-1:-1;2986:305:3;;;;;:::i;:::-;;:::i;:::-;;;3465:14:16;;3458:22;3440:41;;3428:2;3413:18;2986:305:3;;;;;;;;6101:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;7605:204::-;;;;;;;;;;-1:-1:-1;7605:204:3;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;4592:32:16;;;4574:51;;4562:2;4547:18;7605:204:3;4428:203:16;7167:372:3;;;;;;;;;;-1:-1:-1;7167:372:3;;;;;:::i;:::-;;:::i;3584:272:15:-;;;;;;:::i;:::-;;:::i;7201:177::-;;;;;;;;;;-1:-1:-1;7201:177:15;;;;;:::i;:::-;;:::i;1370:31::-;;;;;;;;;;;;;;;;;;;7078:25:16;;;7066:2;7051:18;1370:31:15;6932:177:16;7846:100:15;;;;;;;;;;-1:-1:-1;7846:100:15;;;;;:::i;:::-;;:::i;7952:77::-;;;;;;;;;;-1:-1:-1;7952:77:15;;;;;:::i;:::-;;:::i;2226:312:3:-;;;;;;;;;;;;;:::i;6149:282:15:-;;;;;;;;;;-1:-1:-1;6149:282:15;;;;;:::i;:::-;;:::i;4823:236::-;;;;;;:::i;:::-;;:::i;4180:389::-;;;;;;:::i;:::-;;:::i;8470:170:3:-;;;;;;;;;;-1:-1:-1;8470:170:3;;;;;:::i;:::-;;:::i;5514:204:15:-;;;;;;;;;;-1:-1:-1;5514:204:15;;;;;:::i;:::-;;:::i;1115:25::-;;;;;;;;;;;;;;;;3296:282;;;;;;:::i;:::-;;:::i;8250:150::-;;;;;;;;;;;;;:::i;7023:172::-;;;;;;;;;;-1:-1:-1;7023:172:15;;;;;:::i;:::-;;:::i;8711:185:3:-;;;;;;;;;;-1:-1:-1;8711:185:3;;;;;:::i;:::-;;:::i;6538:74:15:-;;;;;;;;;;-1:-1:-1;6538:74:15;;;;;:::i;:::-;;:::i;1330:33::-;;;;;;;;;;;;;:::i;1547:468:4:-;;;;;;;;;;-1:-1:-1;1547:468:4;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;6618:205:15:-;;;;;;;;;;-1:-1:-1;6618:205:15;;;;;:::i;:::-;;:::i;1620:25::-;;;;;;;;;;-1:-1:-1;1620:25:15;;;;;;;;1297:28;;;;;;;;;;;;;:::i;5909:125:3:-;;;;;;;;;;-1:-1:-1;5909:125:3;;;;;:::i;:::-;;:::i;1534:40:15:-;;;;;;;;;;;;;:::i;1650:::-;;;;;;;;;;-1:-1:-1;1650:40:15;;;;;;;;;;;1145:47;;;;;;;;;;-1:-1:-1;1145:47:15;;;;;:::i;:::-;;;;;;;;;;;;;;;;7504:94;;;;;;;;;;-1:-1:-1;7504:94:15;;;;;:::i;:::-;;:::i;3355:206:3:-;;;;;;;;;;-1:-1:-1;3355:206:3;;;;;:::i;:::-;;:::i;1714:103:12:-;;;;;;;;;;;;;:::i;1197:40:15:-;;;;;;;;;;-1:-1:-1;1197:40:15;;;;;:::i;:::-;;;;;;;;;;;;;;;;6829:188;;;;;;;;;;-1:-1:-1;6829:188:15;;;;;:::i;:::-;;:::i;1579:34::-;;;;;;;;;;;;;:::i;8035:98::-;;;;;;;;;;-1:-1:-1;8035:98:15;;;;;:::i;:::-;;:::i;7740:100::-;;;;;;;;;;-1:-1:-1;7740:100:15;;;;;:::i;:::-;;:::i;1242:46::-;;;;;;;;;;-1:-1:-1;1242:46:15;;;;;:::i;:::-;;;;;;;;;;;;-1:-1:-1;;;;;1242:46:15;;;5361:891:4;;;;;;;;;;-1:-1:-1;5361:891:4;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;7384:114:15:-;;;;;;;;;;-1:-1:-1;7384:114:15;;;;;:::i;:::-;;:::i;4575:242::-;;;;;;:::i;:::-;;:::i;5956:187::-;;;;;;;;;;-1:-1:-1;5956:187:15;;;;;:::i;:::-;;:::i;1063:87:12:-;;;;;;;;;;-1:-1:-1;1136:6:12;;-1:-1:-1;;;;;1136:6:12;1063:87;;1492:37:15;;;;;;;;;;;;;;;;6270:104:3;;;;;;;;;;;;;:::i;2405:2507:4:-;;;;;;;;;;-1:-1:-1;2405:2507:4;;;;;:::i;:::-;;:::i;2643:281:15:-;;;;;;:::i;:::-;;:::i;7881:287:3:-;;;;;;;;;;-1:-1:-1;7881:287:3;;;;;:::i;:::-;;:::i;7604:130:15:-;;;;;;;;;;-1:-1:-1;7604:130:15;;;;;:::i;:::-;;:::i;8139:105::-;;;;;;;;;;-1:-1:-1;8139:105:15;;;;;:::i;:::-;;:::i;8967:370:3:-;;;;;;;;;;-1:-1:-1;8967:370:3;;;;;:::i;:::-;;:::i;970:418:4:-;;;;;;;;;;-1:-1:-1;970:418:4;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;6445:318:3:-;;;;;;;;;;-1:-1:-1;6445:318:3;;;;;:::i;:::-;;:::i;1455:32:15:-;;;;;;;;;;;;;;;;5723:224;;;;;;;;;;-1:-1:-1;5723:224:15;;;;;:::i;:::-;;:::i;1406:42::-;;;;;;;;;;;;;;;;8239:164:3;;;;;;;;;;-1:-1:-1;8239:164:3;;;;;:::i;:::-;;:::i;1972:201:12:-;;;;;;;;;;-1:-1:-1;1972:201:12;;;;;:::i;:::-;;:::i;2347:291:15:-;2481:11;1884:1;1870:11;:15;:52;;;;;1904:18;;1889:11;:33;;1870:52;1862:85;;;;-1:-1:-1;;;1862:85:15;;;;;;;:::i;:::-;;;;;;;;;1993:9;;1978:11;1962:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;1954:73;;;;-1:-1:-1;;;1954:73:15;;;;;;;:::i;:::-;2514:11:::1;2132;2125:4;;:18;;;;:::i;:::-;2112:9;:31;;2104:63;;;;-1:-1:-1::0;;;2104:63:15::1;;;;;;;:::i;:::-;2534:47:::2;2562:10;2574:6;2534:27;:47::i;:::-;2588:44;736:10:1::0;2612:11:15::2;2625:6;2588:9;:44::i;:::-;2034:1:::1;2347:291:::0;;;;;:::o;2986:305:3:-;3088:4;-1:-1:-1;;;;;;3125:40:3;;-1:-1:-1;;;3125:40:3;;:105;;-1:-1:-1;;;;;;;3182:48:3;;-1:-1:-1;;;3182:48:3;3125:105;:158;;;-1:-1:-1;;;;;;;;;;963:40:2;;;3247:36:3;3105:178;2986:305;-1:-1:-1;;2986:305:3:o;6101:100::-;6155:13;6188:5;6181:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6101:100;:::o;7605:204::-;7673:7;7698:16;7706:7;7698;:16::i;:::-;7693:64;;7723:34;;-1:-1:-1;;;7723:34:3;;;;;;;;;;;7693:64;-1:-1:-1;7777:24:3;;;;:15;:24;;;;;;-1:-1:-1;;;;;7777:24:3;;7605:204::o;7167:372::-;7240:13;7256:24;7272:7;7256:15;:24::i;:::-;7240:40;;7301:5;-1:-1:-1;;;;;7295:11:3;:2;-1:-1:-1;;;;;7295:11:3;;7291:48;;;7315:24;;-1:-1:-1;;;7315:24:3;;;;;;;;;;;7291:48;736:10:1;-1:-1:-1;;;;;7356:21:3;;;7352:139;;7383:37;7400:5;736:10:1;8239:164:3;:::i;7383:37::-;7379:112;;7444:35;;-1:-1:-1;;;7444:35:3;;;;;;;;;;;7379:112;7503:28;7512:2;7516:7;7525:5;7503:8;:28::i;:::-;7229:310;7167:372;;:::o;3584:272:15:-;3697:11;1884:1;1870:11;:15;:52;;;;;1904:18;;1889:11;:33;;1870:52;1862:85;;;;-1:-1:-1;;;1862:85:15;;;;;;;:::i;:::-;1993:9;;1978:11;1962:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;1954:73;;;;-1:-1:-1;;;1954:73:15;;;;;;;:::i;:::-;3740:11:::1;2292;2275:14;;:28;;;;:::i;:::-;2262:9;:41;;2254:73;;;;-1:-1:-1::0;;;2254:73:15::1;;;;;;;:::i;:::-;3760:41:::2;3788:12;;3760:27;:41::i;:::-;3808:42;736:10:1::0;3838:11:15::2;3808:15;:42::i;:::-;2034:1:::1;3584:272:::0;;;;:::o;7201:177::-;1136:6:12;;-1:-1:-1;;;;;1136:6:12;736:10:1;1283:23:12;1275:68;;;;-1:-1:-1;;;1275:68:12;;;;;;;:::i;:::-;7286:6:15::1;7281:92;7302:9;:16;7298:1;:20;7281:92;;;7343:8;:22;7352:9;7362:1;7352:12;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;7343:22:15::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;7343:22:15;7336:29;;-1:-1:-1;;7336:29:15::1;::::0;;7320:3;::::1;::::0;::::1;:::i;:::-;;;;7281:92;;;;7201:177:::0;:::o;7846:100::-;1136:6:12;;-1:-1:-1;;;;;1136:6:12;736:10:1;1283:23:12;1275:68;;;;-1:-1:-1;;;1275:68:12;;;;;;;:::i;:::-;7918:22:15;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;7952:77::-:0;1136:6:12;;-1:-1:-1;;;;;1136:6:12;736:10:1;1283:23:12;1275:68;;;;-1:-1:-1;;;1275:68:12;;;;;;;:::i;:::-;8008:6:15::1;:15:::0;;-1:-1:-1;;8008:15:15::1;::::0;::::1;;::::0;;;::::1;::::0;;7952:77::o;2226:312:3:-;6525:1:15;2489:12:3;2279:7;2473:13;:28;-1:-1:-1;;2473:46:3;;2226:312::o;6149:282:15:-;1136:6:12;;-1:-1:-1;;;;;1136:6:12;736:10:1;1283:23:12;1275:68;;;;-1:-1:-1;;;1275:68:12;;;;;;;:::i;:::-;6274:15:15::1;::::0;;6287:1:::1;6274:15:::0;;;;;::::1;::::0;;;6252:19:::1;::::0;6274:15:::1;;;;;;;;;;;;;;;;;;;;6252:37;;6301:6;6296:130;6317:10;:17;6313:1;:21;6296:130;;;6361:6;6368:1;6361:9;;;;;;;;:::i;:::-;;;;;;;6352:3;6356:1;6352:6;;;;;;;;:::i;:::-;;;;;;:18;;;;6381:37;6396:1;6399:3;6404:10;6415:1;6404:13;;;;;;;;:::i;:::-;;;;;;;6381:14;:37::i;:::-;6336:3:::0;::::1;::::0;::::1;:::i;:::-;;;;6296:130;;;;6245:186;6149:282:::0;;:::o;4823:236::-;4898:11;1884:1;1870:11;:15;:52;;;;;1904:18;;1889:11;:33;;1870:52;1862:85;;;;-1:-1:-1;;;1862:85:15;;;;;;;:::i;:::-;1993:9;;1978:11;1962:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;1954:73;;;;-1:-1:-1;;;1954:73:15;;;;;;;:::i;:::-;4941:11:::1;2292;2275:14;;:28;;;;:::i;:::-;2262:9;:41;;2254:73;;;;-1:-1:-1::0;;;2254:73:15::1;;;;;;;:::i;:::-;4970:6:::2;::::0;::::2;;4969:7;4961:43;;;::::0;-1:-1:-1;;;4961:43:15;;19274:2:16;4961:43:15::2;::::0;::::2;19256:21:16::0;19313:2;19293:18;;;19286:30;-1:-1:-1;;;19332:18:16;;;19325:53;19395:18;;4961:43:15::2;19072:347:16::0;4961:43:15::2;5011:42;736:10:1::0;5041:11:15::2;5011:15;:42::i;4180:389::-:0;4249:20;;;;;;;4241:67;;;;-1:-1:-1;;;4241:67:15;;;;;;;:::i;:::-;736:10:1;4324:29:15;;;;:15;:29;;;;;;;;4323:30;4315:67;;;;-1:-1:-1;;;4315:67:15;;20029:2:16;4315:67:15;;;20011:21:16;20068:2;20048:18;;;20041:30;20107:26;20087:18;;;20080:54;20151:18;;4315:67:15;19827:348:16;4315:67:15;736:10:1;4397:22:15;;;;:8;:22;;;;;;;;4389:71;;;;-1:-1:-1;;;4389:71:15;;20382:2:16;4389:71:15;;;20364:21:16;20421:2;20401:18;;;20394:30;20460:34;20440:18;;;20433:62;-1:-1:-1;;;20511:18:16;;;20504:34;20555:19;;4389:71:15;20180:400:16;4389:71:15;4489:15;;;4502:1;4489:15;;;;;;;;;4467:19;;4489:15;;;;;;;;;;;;;;;;;;;;4467:37;;4520:5;4511:3;4515:1;4511:6;;;;;;;;:::i;:::-;;;;;;:14;;;;4532:31;4542:12;736:10:1;;656:98;4542:12:15;4556:1;4559:3;4532:9;:31::i;8470:170:3:-;8604:28;8614:4;8620:2;8624:7;8604:9;:28::i;5514:204:15:-;1136:6:12;;-1:-1:-1;;;;;1136:6:12;736:10:1;1283:23:12;1275:68;;;;-1:-1:-1;;;1275:68:12;;;;;;;:::i;:::-;5629:9:15::1;;5614:11;5598:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;5590:73;;;;-1:-1:-1::0;;;5590:73:15::1;;;;;;;:::i;:::-;5670:42;736:10:1::0;5700:11:15::1;5670:15;:42::i;:::-;5514:204:::0;:::o;3296:282::-;3427:11;1884:1;1870:11;:15;:52;;;;;1904:18;;1889:11;:33;;1870:52;1862:85;;;;-1:-1:-1;;;1862:85:15;;;;;;;:::i;:::-;1993:9;;1978:11;1962:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;1954:73;;;;-1:-1:-1;;;1954:73:15;;;;;;;:::i;:::-;3460:11:::1;2132;2125:4;;:18;;;;:::i;:::-;2112:9;:31;;2104:63;;;;-1:-1:-1::0;;;2104:63:15::1;;;;;;;:::i;:::-;3480:41:::2;3508:12;;3480:27;:41::i;8250:150::-:0;1136:6:12;;-1:-1:-1;;;;;1136:6:12;736:10:1;1283:23:12;1275:68;;;;-1:-1:-1;;;1275:68:12;;;;;;;:::i;:::-;1778:1:13::1;2376:7;;:19;;2368:63;;;::::0;-1:-1:-1;;;2368:63:13;;20787:2:16;2368:63:13::1;::::0;::::1;20769:21:16::0;20826:2;20806:18;;;20799:30;20865:33;20845:18;;;20838:61;20916:18;;2368:63:13::1;20585:355:16::0;2368:63:13::1;1778:1;2509:7;:18:::0;8308:7:15::2;8329;1136:6:12::0;;-1:-1:-1;;;;;1136:6:12;;1063:87;8329:7:15::2;-1:-1:-1::0;;;;;8321:21:15::2;8350;8321:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8307:69;;;8391:2;8383:11;;;::::0;::::2;;-1:-1:-1::0;1734:1:13::1;2688:7;:22:::0;8250:150:15:o;7023:172::-;1136:6:12;;-1:-1:-1;;;;;1136:6:12;736:10:1;1283:23:12;1275:68;;;;-1:-1:-1;;;1275:68:12;;;;;;;:::i;:::-;7103:6:15::1;7098:92;7119:9;:16;7115:1;:20;7098:92;;;7178:4;7153:8;:22;7162:9;7172:1;7162:12;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;7153:22:15::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;7153:22:15;:29;;-1:-1:-1;;7153:29:15::1;::::0;::::1;;::::0;;;::::1;::::0;;7137:3;::::1;::::0;::::1;:::i;:::-;;;;7098:92;;8711:185:3::0;8849:39;8866:4;8872:2;8876:7;8849:39;;;;;;;;;;;;:16;:39::i;6538:74:15:-;1136:6:12;;-1:-1:-1;;;;;1136:6:12;736:10:1;1283:23:12;1275:68;;;;-1:-1:-1;;;1275:68:12;;;;;;;:::i;:::-;6594:4:15::1;:12:::0;6538:74::o;1330:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;1547:468:4:-;1722:15;;1636:23;;1697:22;1722:15;-1:-1:-1;;;;;1789:36:4;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;1789:36:4;;-1:-1:-1;;1789:36:4;;;;;;;;;;;;1752:73;;1845:9;1840:125;1861:14;1856:1;:19;1840:125;;1917:32;1937:8;1946:1;1937:11;;;;;;;;:::i;:::-;;;;;;;1917:19;:32::i;:::-;1901:10;1912:1;1901:13;;;;;;;;:::i;:::-;;;;;;;;;;:48;1877:3;;1840:125;;;-1:-1:-1;1986:10:4;1547:468;-1:-1:-1;;;1547:468:4:o;6618:205:15:-;1136:6:12;;-1:-1:-1;;;;;1136:6:12;736:10:1;1283:23:12;1275:68;;;;-1:-1:-1;;;1275:68:12;;;;;;;:::i;:::-;6702:6:15::1;6697:121;6718:12;:19;6714:1;:23;6697:121;;;6794:12;6807:1;6794:15;;;;;;;;:::i;:::-;;;;;;;6755:11;:28;6767:12;6780:1;6767:15;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;6755:28:15::1;-1:-1:-1::0;;;;;6755:28:15::1;;;;;;;;;;;;;:55;;;;;-1:-1:-1::0;;;;;6755:55:15::1;;;;;-1:-1:-1::0;;;;;6755:55:15::1;;;;;;6739:3;;;;;:::i;:::-;;;;6697:121;;1297:28:::0;;;;;;;:::i;5909:125:3:-;5973:7;6000:21;6013:7;6000:12;:21::i;:::-;:26;;5909:125;-1:-1:-1;;5909:125:3:o;1534:40:15:-;;;;;;;:::i;7504:94::-;1136:6:12;;-1:-1:-1;;;;;1136:6:12;736:10:1;1283:23:12;1275:68;;;;-1:-1:-1;;;1275:68:12;;;;;;;:::i;:::-;7570:9:15::1;:22:::0;7504:94::o;3355:206:3:-;3419:7;-1:-1:-1;;;;;3443:19:3;;3439:60;;3471:28;;-1:-1:-1;;;3471:28:3;;;;;;;;;;;3439:60;-1:-1:-1;;;;;;3525:19:3;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;3525:27:3;;3355:206::o;1714:103:12:-;1136:6;;-1:-1:-1;;;;;1136:6:12;736:10:1;1283:23:12;1275:68;;;;-1:-1:-1;;;1275:68:12;;;;;;;:::i;:::-;1779:30:::1;1806:1;1779:18;:30::i;:::-;1714:103::o:0;6829:188:15:-;1136:6:12;;-1:-1:-1;;;;;1136:6:12;736:10:1;1283:23:12;1275:68;;;;-1:-1:-1;;;1275:68:12;;;;;;;:::i;:::-;6916:6:15::1;6911:101;6932:12;:19;6928:1;:23;6911:101;;;6976:11;:28;6988:12;7001:1;6988:15;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;6976:28:15::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;6976:28:15;6969:35;;-1:-1:-1;;;;;;6969:35:15::1;::::0;;6953:3;::::1;::::0;::::1;:::i;:::-;;;;6911:101;;1579:34:::0;;;;;;;:::i;8035:98::-;1136:6:12;;-1:-1:-1;;;;;1136:6:12;736:10:1;1283:23:12;1275:68;;;;-1:-1:-1;;;1275:68:12;;;;;;;:::i;:::-;8103:10:15::1;:24:::0;8035:98::o;7740:100::-;1136:6:12;;-1:-1:-1;;;;;1136:6:12;736:10:1;1283:23:12;1275:68;;;;-1:-1:-1;;;1275:68:12;;;;;;;:::i;:::-;7812:22:15;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;5361:891:4:-:0;5431:16;5485:19;5519:25;5559:22;5584:16;5594:5;5584:9;:16::i;:::-;5559:41;;5615:25;5657:14;-1:-1:-1;;;;;5643:29:4;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;5643:29:4;;5615:57;;5687:31;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;5687:31:4;6525:1:15;5733:471:4;5782:14;5767:11;:29;5733:471;;5834:14;;;;:11;:14;;;;;;;;;5822:26;;;;;;;;;-1:-1:-1;;;;;5822:26:4;;;;-1:-1:-1;;;5822:26:4;;-1:-1:-1;;;;;5822:26:4;;;;;;;;-1:-1:-1;;;5822:26:4;;;;;;;;;;;;;;;;-1:-1:-1;5867:73:4;;5912:8;;5867:73;5962:14;;-1:-1:-1;;;;;5962:28:4;;5958:111;;6035:14;;;-1:-1:-1;5958:111:4;6112:5;-1:-1:-1;;;;;6091:26:4;:17;-1:-1:-1;;;;;6091:26:4;;6087:102;;;6168:1;6142:8;6151:13;;;;;;6142:23;;;;;;;;:::i;:::-;;;;;;:27;;;;;6087:102;5798:3;;5733:471;;;-1:-1:-1;6225:8:4;;5361:891;-1:-1:-1;;;;;;5361:891:4:o;7384:114:15:-;1136:6:12;;-1:-1:-1;;;;;1136:6:12;736:10:1;1283:23:12;1275:68;;;;-1:-1:-1;;;1275:68:12;;;;;;;:::i;:::-;7460:14:15::1;:32:::0;7384:114::o;4575:242::-;4664:11;1884:1;1870:11;:15;:52;;;;;1904:18;;1889:11;:33;;1870:52;1862:85;;;;-1:-1:-1;;;1862:85:15;;;;;;;:::i;:::-;1993:9;;1978:11;1962:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;1954:73;;;;-1:-1:-1;;;1954:73:15;;;;;;;:::i;:::-;4697:11:::1;2132;2125:4;;:18;;;;:::i;:::-;2112:9;:31;;2104:63;;;;-1:-1:-1::0;;;2104:63:15::1;;;;;;;:::i;:::-;4726:6:::2;::::0;::::2;;4725:7;4717:43;;;::::0;-1:-1:-1;;;4717:43:15;;19274:2:16;4717:43:15::2;::::0;::::2;19256:21:16::0;19313:2;19293:18;;;19286:30;-1:-1:-1;;;19332:18:16;;;19325:53;19395:18;;4717:43:15::2;19072:347:16::0;4717:43:15::2;4767:44;736:10:1::0;4791:11:15::2;4804:6;4767:9;:44::i;5956:187::-:0;6066:11;1884:1;1870:11;:15;:52;;;;;1904:18;;1889:11;:33;;1870:52;1862:85;;;;-1:-1:-1;;;1862:85:15;;;;;;;:::i;:::-;1993:9;;1978:11;1962:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;1954:73;;;;-1:-1:-1;;;1954:73:15;;;;;;;:::i;:::-;1136:6:12;;-1:-1:-1;;;;;1136:6:12;736:10:1;1283:23:12::1;1275:68;;;;-1:-1:-1::0;;;1275:68:12::1;;;;;;;:::i;:::-;6096:41:15::2;6106:9;6117:11;6130:6;6096:9;:41::i;6270:104:3:-:0;6326:13;6359:7;6352:14;;;;;:::i;2405:2507:4:-;2540:16;2607:4;2598:5;:13;2594:45;;2620:19;;-1:-1:-1;;;2620:19:4;;;;;;;;;;;2594:45;2654:19;2708:13;;6525:1:15;2799:5:4;:23;2795:87;;;6525:1:15;2843:23:4;;2795:87;2962:9;2955:4;:16;2951:73;;;2999:9;2992:16;;2951:73;3038:25;3066:16;3076:5;3066:9;:16::i;:::-;3038:44;;3260:4;3252:5;:12;3248:278;;;3307:12;;;3342:31;;;3338:111;;;3418:11;3398:31;;3338:111;3266:198;3248:278;;;-1:-1:-1;3509:1:4;3248:278;3540:25;3582:17;-1:-1:-1;;;;;3568:32:4;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3568:32:4;-1:-1:-1;3540:60:4;-1:-1:-1;3619:22:4;3615:78;;3669:8;-1:-1:-1;3662:15:4;;-1:-1:-1;;;3662:15:4;3615:78;3837:31;3871:26;3891:5;3871:19;:26::i;:::-;3837:60;;3912:25;4157:9;:16;;;4152:92;;-1:-1:-1;4214:14:4;;4152:92;4275:5;4258:477;4287:4;4282:1;:9;;:45;;;;;4310:17;4295:11;:32;;4282:45;4258:477;;;4365:14;;;;:11;:14;;;;;;;;;4353:26;;;;;;;;;-1:-1:-1;;;;;4353:26:4;;;;-1:-1:-1;;;4353:26:4;;-1:-1:-1;;;;;4353:26:4;;;;;;;;-1:-1:-1;;;4353:26:4;;;;;;;;;;;;;;;;-1:-1:-1;4398:73:4;;4443:8;;4398:73;4493:14;;-1:-1:-1;;;;;4493:28:4;;4489:111;;4566:14;;;-1:-1:-1;4489:111:4;4643:5;-1:-1:-1;;;;;4622:26:4;:17;-1:-1:-1;;;;;4622:26:4;;4618:102;;;4699:1;4673:8;4682:13;;;;;;4673:23;;;;;;;;:::i;:::-;;;;;;:27;;;;;4618:102;4329:3;;4258:477;;;-1:-1:-1;;;4820:29:4;;;-1:-1:-1;4827:8:4;;-1:-1:-1;;2405:2507:4;;;;;;:::o;2643:281:15:-;2759:11;1884:1;1870:11;:15;:52;;;;;1904:18;;1889:11;:33;;1870:52;1862:85;;;;-1:-1:-1;;;1862:85:15;;;;;;;:::i;:::-;1993:9;;1978:11;1962:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;1954:73;;;;-1:-1:-1;;;1954:73:15;;;;;;;:::i;:::-;2802:11:::1;2292;2275:14;;:28;;;;:::i;:::-;2262:9;:41;;2254:73;;;;-1:-1:-1::0;;;2254:73:15::1;;;;;;;:::i;:::-;2822:47:::2;2850:10;2862:6;2822:27;:47::i;7881:287:3:-:0;-1:-1:-1;;;;;7980:24:3;;736:10:1;7980:24:3;7976:54;;;8013:17;;-1:-1:-1;;;8013:17:3;;;;;;;;;;;7976:54;736:10:1;8043:32:3;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;8043:42:3;;;;;;;;;;;;:53;;-1:-1:-1;;8043:53:3;;;;;;;;;;8112:48;;3440:41:16;;;8043:42:3;;736:10:1;8112:48:3;;3413:18:16;8112:48:3;;;;;;;7881:287;;:::o;7604:130:15:-;1136:6:12;;-1:-1:-1;;;;;1136:6:12;736:10:1;1283:23:12;1275:68;;;;-1:-1:-1;;;1275:68:12;;;;;;;:::i;:::-;7688:18:15::1;:40:::0;7604:130::o;8139:105::-;1136:6:12;;-1:-1:-1;;;;;1136:6:12;736:10:1;1283:23:12;1275:68;;;;-1:-1:-1;;;1275:68:12;;;;;;;:::i;:::-;8209:20:15::1;:29:::0;;;::::1;;;;-1:-1:-1::0;;8209:29:15;;::::1;::::0;;;::::1;::::0;;8139:105::o;8967:370:3:-;9134:28;9144:4;9150:2;9154:7;9134:9;:28::i;:::-;-1:-1:-1;;;;;9177:13:3;;1505:19:0;:23;9173:157:3;;9198:56;9229:4;9235:2;9239:7;9248:5;9198:30;:56::i;:::-;9194:136;;9278:40;;-1:-1:-1;;;9278:40:3;;;;;;;;;;;970:418:4;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6525:1:15;1126:25:4;;;:53;;;1166:13;;1155:7;:24;;1126:53;1122:102;;;1203:9;970:418;-1:-1:-1;;970:418:4:o;1122:102::-;-1:-1:-1;1246:20:4;;;;:11;:20;;;;;;;;;1234:32;;;;;;;;;-1:-1:-1;;;;;1234:32:4;;;;-1:-1:-1;;;1234:32:4;;-1:-1:-1;;;;;1234:32:4;;;;;;;;-1:-1:-1;;;1234:32:4;;;;;;;;;;;;;;;;1277:65;;1321:9;970:418;-1:-1:-1;;970:418:4:o;1277:65::-;1359:21;1372:7;1359:12;:21::i;6445:318:3:-;6518:13;6549:16;6557:7;6549;:16::i;:::-;6544:59;;6574:29;;-1:-1:-1;;;6574:29:3;;;;;;;;;;;6544:59;6616:21;6640:10;:8;:10::i;:::-;6616:34;;6674:7;6668:21;6693:1;6668:26;;:87;;;;;;;;;;;;;;;;;6721:7;6730:18;:7;:16;:18::i;:::-;6704:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;6661:94;6445:318;-1:-1:-1;;;6445:318:3:o;5723:224:15:-;1136:6:12;;-1:-1:-1;;;;;1136:6:12;736:10:1;1283:23:12;1275:68;;;;-1:-1:-1;;;1275:68:12;;;;;;;:::i;:::-;5856:9:15::1;;5841:11;5825:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;5817:73;;;;-1:-1:-1::0;;;5817:73:15::1;;;;;;;:::i;:::-;5897:44;736:10:1::0;5921:11:15::1;5934:6;5897:9;:44::i;8239:164:3:-:0;-1:-1:-1;;;;;8360:25:3;;;8336:4;8360:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;8239:164::o;1972:201:12:-;1136:6;;-1:-1:-1;;;;;1136:6:12;736:10:1;1283:23:12;1275:68;;;;-1:-1:-1;;;1275:68:12;;;;;;;:::i;:::-;-1:-1:-1;;;;;2061:22:12;::::1;2053:73;;;::::0;-1:-1:-1;;;2053:73:12;;21832:2:16;2053:73:12::1;::::0;::::1;21814:21:16::0;21871:2;21851:18;;;21844:30;21910:34;21890:18;;;21883:62;-1:-1:-1;;;21961:18:16;;;21954:36;22007:19;;2053:73:12::1;21630:402:16::0;2053:73:12::1;2137:28;2156:8;2137:18;:28::i;2930:360:15:-:0;3032:20;;;;;;;3024:67;;;;-1:-1:-1;;;3024:67:15;;;;;;;:::i;:::-;-1:-1:-1;;;;;3126:23:15;;;3098:25;3126:23;;;:11;:23;;;;;;;3173:33;;-1:-1:-1;;;3173:33:15;;;;;7078:25:16;;;3126:23:15;;;;;3173:25;;7051:18:16;;3173:33:15;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;3156:50;-1:-1:-1;;;;;;3221:20:15;;3231:10;3221:20;3213:71;;;;-1:-1:-1;;;3213:71:15;;22495:2:16;3213:71:15;;;22477:21:16;22534:2;22514:18;;;22507:30;22573:34;22553:18;;;22546:62;-1:-1:-1;;;22624:18:16;;;22617:36;22670:19;;3213:71:15;22293:402:16;5065:229:15;5157:20;5180:13;5200:26;5210:2;5214:11;5200:9;:26::i;:::-;5238:50;5250:2;5254:6;5262:12;5276:11;5238:50;;;;;;;;;:::i;:::-;;;;;;;;5150:144;5065:229;;;:::o;9592:174:3:-;9649:4;9692:7;6525:1:15;9673:26:3;;:53;;;;;9713:13;;9703:7;:23;9673:53;:85;;;;-1:-1:-1;;9731:20:3;;;;:11;:20;;;;;:27;-1:-1:-1;;;9731:27:3;;;;9730:28;;9592:174::o;18814:196::-;18929:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;18929:29:3;-1:-1:-1;;;;;18929:29:3;;;;;;;;;18974:28;;18929:24;;18974:28;;;;;;;18814:196;;;:::o;3862:311:15:-;3961:20;;;;;;;3953:67;;;;-1:-1:-1;;;3953:67:15;;;;;;;:::i;:::-;4052:30;;-1:-1:-1;;736:10:1;23901:2:16;23897:15;23893:53;4052:30:15;;;23881:66:16;4027:12:15;;23963::16;;4052:30:15;;;;;;;;;;;;4042:41;;;;;;4027:56;;4098:50;4117:12;;4098:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;4131:10:15;;;-1:-1:-1;4143:4:15;;-1:-1:-1;4098:18:15;:50::i;:::-;4090:77;;;;-1:-1:-1;;;4090:77:15;;24188:2:16;4090:77:15;;;24170:21:16;24227:2;24207:18;;;24200:30;-1:-1:-1;;;24246:18:16;;;24239:44;24300:18;;4090:77:15;23986:338:16;5300:209:15;5374:20;5397:13;5417:26;5427:2;5431:11;5417:9;:26::i;:::-;5455:48;;;-1:-1:-1;;;;;24549:32:16;;24531:51;;24613:2;24598:18;;24591:34;;;24641:18;;;24634:34;;;5455:48:15;;24519:2:16;24504:18;5455:48:15;;;;;;;5367:142;5300:209;;:::o;13762:2130:3:-;13877:35;13915:21;13928:7;13915:12;:21::i;:::-;13877:59;;13975:4;-1:-1:-1;;;;;13953:26:3;:13;:18;;;-1:-1:-1;;;;;13953:26:3;;13949:67;;13988:28;;-1:-1:-1;;;13988:28:3;;;;;;;;;;;13949:67;14029:22;736:10:1;-1:-1:-1;;;;;14055:20:3;;;;:73;;-1:-1:-1;14092:36:3;14109:4;736:10:1;8239:164:3;:::i;14092:36::-;14055:126;;;-1:-1:-1;736:10:1;14145:20:3;14157:7;14145:11;:20::i;:::-;-1:-1:-1;;;;;14145:36:3;;14055:126;14029:153;;14200:17;14195:66;;14226:35;;-1:-1:-1;;;14226:35:3;;;;;;;;;;;14195:66;-1:-1:-1;;;;;14276:16:3;;14272:52;;14301:23;;-1:-1:-1;;;14301:23:3;;;;;;;;;;;14272:52;14445:35;14462:1;14466:7;14475:4;14445:8;:35::i;:::-;-1:-1:-1;;;;;14776:18:3;;;;;;;:12;:18;;;;;;;;:31;;-1:-1:-1;;14776:31:3;;;-1:-1:-1;;;;;14776:31:3;;;-1:-1:-1;;14776:31:3;;;;;;;14822:16;;;;;;;;;:29;;;;;;;;-1:-1:-1;14822:29:3;;;;;;;;;;;14902:20;;;:11;:20;;;;;;14937:18;;-1:-1:-1;;;;;;14970:49:3;;;;-1:-1:-1;;;15003:15:3;14970:49;;;;;;;;;;15293:11;;15353:24;;;;;15396:13;;14902:20;;15353:24;;15396:13;15392:384;;15606:13;;15591:11;:28;15587:174;;15644:20;;15713:28;;;;-1:-1:-1;;;;;15687:54:3;-1:-1:-1;;;15687:54:3;-1:-1:-1;;;;;;15687:54:3;;;-1:-1:-1;;;;;15644:20:3;;15687:54;;;;15587:174;14751:1036;;;15823:7;15819:2;-1:-1:-1;;;;;15804:27:3;15813:4;-1:-1:-1;;;;;15804:27:3;;;;;;;;;;;15842:42;6149:282:15;4736:1111:3;-1:-1:-1;;;;;;;;;;;;;;;;;;;;;;;;;4847:7:3;;6525:1:15;4896:23:3;4892:888;;4932:13;;4925:4;:20;4921:859;;;4966:31;5000:17;;;:11;:17;;;;;;;;;4966:51;;;;;;;;;-1:-1:-1;;;;;4966:51:3;;;;-1:-1:-1;;;4966:51:3;;-1:-1:-1;;;;;4966:51:3;;;;;;;;-1:-1:-1;;;4966:51:3;;;;;;;;;;;;;;5036:729;;5086:14;;-1:-1:-1;;;;;5086:28:3;;5082:101;;5150:9;4736:1111;-1:-1:-1;;;4736:1111:3:o;5082:101::-;-1:-1:-1;;;5525:6:3;5570:17;;;;:11;:17;;;;;;;;;5558:29;;;;;;;;;-1:-1:-1;;;;;5558:29:3;;;;;-1:-1:-1;;;5558:29:3;;-1:-1:-1;;;;;5558:29:3;;;;;;;;-1:-1:-1;;;5558:29:3;;;;;;;;;;;;;5618:28;5614:109;;5686:9;4736:1111;-1:-1:-1;;;4736:1111:3:o;5614:109::-;5485:261;;;4947:833;4921:859;5808:31;;-1:-1:-1;;;5808:31:3;;;;;;;;;;;2333:191:12;2426:6;;;-1:-1:-1;;;;;2443:17:12;;;-1:-1:-1;;;;;;2443:17:12;;;;;;;2476:40;;2426:6;;;2443:17;2426:6;;2476:40;;2407:16;;2476:40;2396:128;2333:191;:::o;19502:667:3:-;19686:72;;-1:-1:-1;;;19686:72:3;;19665:4;;-1:-1:-1;;;;;19686:36:3;;;;;:72;;736:10:1;;19737:4:3;;19743:7;;19752:5;;19686:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;19686:72:3;;;;;;;;-1:-1:-1;;19686:72:3;;;;;;;;;;;;:::i;:::-;;;19682:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;19920:13:3;;19916:235;;19966:40;;-1:-1:-1;;;19966:40:3;;;;;;;;;;;19916:235;20109:6;20103:13;20094:6;20090:2;20086:15;20079:38;19682:480;-1:-1:-1;;;;;;19805:55:3;-1:-1:-1;;;19805:55:3;;-1:-1:-1;19682:480:3;19502:667;;;;;;:::o;8406:104:15:-;8466:13;8495:9;8488:16;;;;;:::i;342:723:14:-;398:13;619:10;615:53;;-1:-1:-1;;646:10:14;;;;;;;;;;;;-1:-1:-1;;;646:10:14;;;;;342:723::o;615:53::-;693:5;678:12;734:78;741:9;;734:78;;767:8;;;;:::i;:::-;;-1:-1:-1;790:10:14;;-1:-1:-1;798:2:14;790:10;;:::i;:::-;;;734:78;;;822:19;854:6;-1:-1:-1;;;;;844:17:14;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;844:17:14;;822:39;;872:154;879:10;;872:154;;906:11;916:1;906:11;;:::i;:::-;;-1:-1:-1;975:10:14;983:2;975:5;:10;:::i;:::-;962:24;;:2;:24;:::i;:::-;949:39;;932:6;939;932:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;932:56:14;;;;;;;;-1:-1:-1;1003:11:14;1012:2;1003:11;;:::i;:::-;;;872:154;;9850:104:3;9919:27;9929:2;9933:8;9919:27;;;;;;;;;;;;:9;:27::i;883:190:11:-;1008:4;1061;1032:25;1045:5;1052:4;1032:12;:25::i;:::-;:33;;883:190;-1:-1:-1;;;;883:190:11:o;10327:1749:3:-;10450:20;10473:13;-1:-1:-1;;;;;10501:16:3;;10497:48;;10526:19;;-1:-1:-1;;;10526:19:3;;;;;;;;;;;10497:48;10560:13;10556:44;;10582:18;;-1:-1:-1;;;10582:18:3;;;;;;;;;;;10556:44;-1:-1:-1;;;;;10951:16:3;;;;;;:12;:16;;;;;;;;:44;;-1:-1:-1;;11010:49:3;;-1:-1:-1;;;;;10951:44:3;;;;;;;11010:49;;;;-1:-1:-1;;10951:44:3;;;;;;11010:49;;;;;;;;;;;;;;;;11076:25;;;:11;:25;;;;;;:35;;-1:-1:-1;;;;;;11126:66:3;;;-1:-1:-1;;;11176:15:3;11126:66;;;;;;;;;;;;;11076:25;;11273:23;;;;1505:19:0;:23;11313:631:3;;11353:313;11384:38;;11409:12;;-1:-1:-1;;;;;11384:38:3;;;11401:1;;11384:38;;11401:1;;11384:38;11450:69;11489:1;11493:2;11497:14;;;;;;11513:5;11450:30;:69::i;:::-;11445:174;;11555:40;;-1:-1:-1;;;11555:40:3;;;;;;;;;;;11445:174;11661:3;11646:12;:18;11353:313;;11747:12;11730:13;;:29;11726:43;;11761:8;;;11726:43;11313:631;;;11810:119;11841:40;;11866:14;;;;;-1:-1:-1;;;;;11841:40:3;;;11858:1;;11841:40;;11858:1;;11841:40;11924:3;11909:12;:18;11810:119;;11313:631;-1:-1:-1;11958:13:3;:28;;;12008:60;;12041:2;12045:12;12059:8;12008:60;:::i;1435:675:11:-;1518:7;1561:4;1518:7;1576:497;1600:5;:12;1596:1;:16;1576:497;;;1634:20;1657:5;1663:1;1657:8;;;;;;;;:::i;:::-;;;;;;;1634:31;;1700:12;1684;:28;1680:382;;2186:13;2236:15;;;2272:4;2265:15;;;2319:4;2303:21;;1812:57;;1680:382;;;2186:13;2236:15;;;2272:4;2265:15;;;2319:4;2303:21;;1989:57;;1680:382;-1:-1:-1;1614:3:11;;;;:::i;:::-;;;;1576:497;;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:127:16;75:10;70:3;66:20;63:1;56:31;106:4;103:1;96:15;130:4;127:1;120:15;146:275;217:2;211:9;282:2;263:13;;-1:-1:-1;;259:27:16;247:40;;-1:-1:-1;;;;;302:34:16;;338:22;;;299:62;296:88;;;364:18;;:::i;:::-;400:2;393:22;146:275;;-1:-1:-1;146:275:16:o;426:182::-;485:4;-1:-1:-1;;;;;510:6:16;507:30;504:56;;;540:18;;:::i;:::-;-1:-1:-1;585:1:16;581:14;597:4;577:25;;426:182::o;613:407::-;678:5;-1:-1:-1;;;;;704:6:16;701:30;698:56;;;734:18;;:::i;:::-;772:57;817:2;796:15;;-1:-1:-1;;792:29:16;823:4;788:40;772:57;:::i;:::-;763:66;;852:6;845:5;838:21;892:3;883:6;878:3;874:16;871:25;868:45;;;909:1;906;899:12;868:45;958:6;953:3;946:4;939:5;935:16;922:43;1012:1;1005:4;996:6;989:5;985:18;981:29;974:40;613:407;;;;;:::o;1025:222::-;1068:5;1121:3;1114:4;1106:6;1102:17;1098:27;1088:55;;1139:1;1136;1129:12;1088:55;1161:80;1237:3;1228:6;1215:20;1208:4;1200:6;1196:17;1161:80;:::i;1252:887::-;1305:5;1358:3;1351:4;1343:6;1339:17;1335:27;1325:55;;1376:1;1373;1366:12;1325:55;1412:6;1399:20;1438:4;1462:59;1478:42;1517:2;1478:42;:::i;:::-;1462:59;:::i;:::-;1555:15;;;1641:1;1637:10;;;;1625:23;;1621:32;;;1586:12;;;;1665:15;;;1662:35;;;1693:1;1690;1683:12;1662:35;1729:2;1721:6;1717:15;1741:369;1757:6;1752:3;1749:15;1741:369;;;1843:3;1830:17;-1:-1:-1;;;;;1866:11:16;1863:35;1860:125;;;1939:1;1968:2;1964;1957:14;1860:125;2010:57;2063:3;2058:2;2044:11;2036:6;2032:24;2028:33;2010:57;:::i;:::-;1998:70;;-1:-1:-1;2088:12:16;;;;1774;;1741:369;;;-1:-1:-1;2128:5:16;1252:887;-1:-1:-1;;;;;;1252:887:16:o;2144:131::-;-1:-1:-1;;;;;2219:31:16;;2209:42;;2199:70;;2265:1;2262;2255:12;2280:629;2401:6;2409;2417;2425;2478:3;2466:9;2457:7;2453:23;2449:33;2446:53;;;2495:1;2492;2485:12;2446:53;2531:9;2518:23;2508:33;;2592:2;2581:9;2577:18;2564:32;-1:-1:-1;;;;;2611:6:16;2608:30;2605:50;;;2651:1;2648;2641:12;2605:50;2674:60;2726:7;2717:6;2706:9;2702:22;2674:60;:::i;:::-;2664:70;;;2784:2;2773:9;2769:18;2756:32;2797:31;2822:5;2797:31;:::i;:::-;2280:629;;;;-1:-1:-1;2847:5:16;;2899:2;2884:18;2871:32;;-1:-1:-1;;2280:629:16:o;2914:131::-;-1:-1:-1;;;;;;2988:32:16;;2978:43;;2968:71;;3035:1;3032;3025:12;3050:245;3108:6;3161:2;3149:9;3140:7;3136:23;3132:32;3129:52;;;3177:1;3174;3167:12;3129:52;3216:9;3203:23;3235:30;3259:5;3235:30;:::i;3492:258::-;3564:1;3574:113;3588:6;3585:1;3582:13;3574:113;;;3664:11;;;3658:18;3645:11;;;3638:39;3610:2;3603:10;3574:113;;;3705:6;3702:1;3699:13;3696:48;;;-1:-1:-1;;3740:1:16;3722:16;;3715:27;3492:258::o;3755:::-;3797:3;3835:5;3829:12;3862:6;3857:3;3850:19;3878:63;3934:6;3927:4;3922:3;3918:14;3911:4;3904:5;3900:16;3878:63;:::i;:::-;3995:2;3974:15;-1:-1:-1;;3970:29:16;3961:39;;;;4002:4;3957:50;;3755:258;-1:-1:-1;;3755:258:16:o;4018:220::-;4167:2;4156:9;4149:21;4130:4;4187:45;4228:2;4217:9;4213:18;4205:6;4187:45;:::i;4243:180::-;4302:6;4355:2;4343:9;4334:7;4330:23;4326:32;4323:52;;;4371:1;4368;4361:12;4323:52;-1:-1:-1;4394:23:16;;4243:180;-1:-1:-1;4243:180:16:o;4636:315::-;4704:6;4712;4765:2;4753:9;4744:7;4740:23;4736:32;4733:52;;;4781:1;4778;4771:12;4733:52;4820:9;4807:23;4839:31;4864:5;4839:31;:::i;:::-;4889:5;4941:2;4926:18;;;;4913:32;;-1:-1:-1;;;4636:315:16:o;4956:367::-;5019:8;5029:6;5083:3;5076:4;5068:6;5064:17;5060:27;5050:55;;5101:1;5098;5091:12;5050:55;-1:-1:-1;5124:20:16;;-1:-1:-1;;;;;5156:30:16;;5153:50;;;5199:1;5196;5189:12;5153:50;5236:4;5228:6;5224:17;5212:29;;5296:3;5289:4;5279:6;5276:1;5272:14;5264:6;5260:27;5256:38;5253:47;5250:67;;;5313:1;5310;5303:12;5250:67;4956:367;;;;;:::o;5328:505::-;5423:6;5431;5439;5492:2;5480:9;5471:7;5467:23;5463:32;5460:52;;;5508:1;5505;5498:12;5460:52;5544:9;5531:23;5521:33;;5605:2;5594:9;5590:18;5577:32;-1:-1:-1;;;;;5624:6:16;5621:30;5618:50;;;5664:1;5661;5654:12;5618:50;5703:70;5765:7;5756:6;5745:9;5741:22;5703:70;:::i;:::-;5328:505;;5792:8;;-1:-1:-1;5677:96:16;;-1:-1:-1;;;;5328:505:16:o;5838:736::-;5892:5;5945:3;5938:4;5930:6;5926:17;5922:27;5912:55;;5963:1;5960;5953:12;5912:55;5999:6;5986:20;6025:4;6049:59;6065:42;6104:2;6065:42;:::i;6049:59::-;6142:15;;;6228:1;6224:10;;;;6212:23;;6208:32;;;6173:12;;;;6252:15;;;6249:35;;;6280:1;6277;6270:12;6249:35;6316:2;6308:6;6304:15;6328:217;6344:6;6339:3;6336:15;6328:217;;;6424:3;6411:17;6441:31;6466:5;6441:31;:::i;:::-;6485:18;;6523:12;;;;6361;;6328:217;;6579:348;6663:6;6716:2;6704:9;6695:7;6691:23;6687:32;6684:52;;;6732:1;6729;6722:12;6684:52;6772:9;6759:23;-1:-1:-1;;;;;6797:6:16;6794:30;6791:50;;;6837:1;6834;6827:12;6791:50;6860:61;6913:7;6904:6;6893:9;6889:22;6860:61;:::i;7114:322::-;7183:6;7236:2;7224:9;7215:7;7211:23;7207:32;7204:52;;;7252:1;7249;7242:12;7204:52;7292:9;7279:23;-1:-1:-1;;;;;7317:6:16;7314:30;7311:50;;;7357:1;7354;7347:12;7311:50;7380;7422:7;7413:6;7402:9;7398:22;7380:50;:::i;7441:160::-;7506:20;;7562:13;;7555:21;7545:32;;7535:60;;7591:1;7588;7581:12;7535:60;7441:160;;;:::o;7606:180::-;7662:6;7715:2;7703:9;7694:7;7690:23;7686:32;7683:52;;;7731:1;7728;7721:12;7683:52;7754:26;7770:9;7754:26;:::i;7791:604::-;7919:6;7927;7980:2;7968:9;7959:7;7955:23;7951:32;7948:52;;;7996:1;7993;7986:12;7948:52;8036:9;8023:23;-1:-1:-1;;;;;8106:2:16;8098:6;8095:14;8092:34;;;8122:1;8119;8112:12;8092:34;8145:60;8197:7;8188:6;8177:9;8173:22;8145:60;:::i;:::-;8135:70;;8258:2;8247:9;8243:18;8230:32;8214:48;;8287:2;8277:8;8274:16;8271:36;;;8303:1;8300;8293:12;8271:36;;8326:63;8381:7;8370:8;8359:9;8355:24;8326:63;:::i;:::-;8316:73;;;7791:604;;;;;:::o;8400:456::-;8477:6;8485;8493;8546:2;8534:9;8525:7;8521:23;8517:32;8514:52;;;8562:1;8559;8552:12;8514:52;8601:9;8588:23;8620:31;8645:5;8620:31;:::i;:::-;8670:5;-1:-1:-1;8727:2:16;8712:18;;8699:32;8740:33;8699:32;8740:33;:::i;:::-;8400:456;;8792:7;;-1:-1:-1;;;8846:2:16;8831:18;;;;8818:32;;8400:456::o;9043:761::-;9182:6;9190;9198;9206;9259:2;9247:9;9238:7;9234:23;9230:32;9227:52;;;9275:1;9272;9265:12;9227:52;9311:9;9298:23;9288:33;;9372:2;9361:9;9357:18;9344:32;-1:-1:-1;;;;;9436:2:16;9428:6;9425:14;9422:34;;;9452:1;9449;9442:12;9422:34;9475:60;9527:7;9518:6;9507:9;9503:22;9475:60;:::i;:::-;9465:70;;9588:2;9577:9;9573:18;9560:32;9544:48;;9617:2;9607:8;9604:16;9601:36;;;9633:1;9630;9623:12;9601:36;;9672:72;9736:7;9725:8;9714:9;9710:24;9672:72;:::i;:::-;9043:761;;;;-1:-1:-1;9763:8:16;-1:-1:-1;;;;9043:761:16:o;9809:890::-;9893:6;9924:2;9967;9955:9;9946:7;9942:23;9938:32;9935:52;;;9983:1;9980;9973:12;9935:52;10023:9;10010:23;-1:-1:-1;;;;;10048:6:16;10045:30;10042:50;;;10088:1;10085;10078:12;10042:50;10111:22;;10164:4;10156:13;;10152:27;-1:-1:-1;10142:55:16;;10193:1;10190;10183:12;10142:55;10229:2;10216:16;10252:59;10268:42;10307:2;10268:42;:::i;10252:59::-;10345:15;;;10427:1;10423:10;;;;10415:19;;10411:28;;;10376:12;;;;10451:19;;;10448:39;;;10483:1;10480;10473:12;10448:39;10507:11;;;;10527:142;10543:6;10538:3;10535:15;10527:142;;;10609:17;;10597:30;;10560:12;;;;10647;;;;10527:142;;;10688:5;9809:890;-1:-1:-1;;;;;;;9809:890:16:o;10987:724::-;11222:2;11274:21;;;11344:13;;11247:18;;;11366:22;;;11193:4;;11222:2;11445:15;;;;11419:2;11404:18;;;11193:4;11488:197;11502:6;11499:1;11496:13;11488:197;;;11551:52;11599:3;11590:6;11584:13;10788:12;;-1:-1:-1;;;;;10784:38:16;10772:51;;10876:4;10865:16;;;10859:23;-1:-1:-1;;;;;10855:48:16;10839:14;;;10832:72;10967:4;10956:16;;;10950:23;10943:31;10936:39;10920:14;;10913:63;10704:278;11551:52;11660:15;;;;11632:4;11623:14;;;;;11524:1;11517:9;11488:197;;11716:247;11775:6;11828:2;11816:9;11807:7;11803:23;11799:32;11796:52;;;11844:1;11841;11834:12;11796:52;11883:9;11870:23;11902:31;11927:5;11902:31;:::i;12377:632::-;12548:2;12600:21;;;12670:13;;12573:18;;;12692:22;;;12519:4;;12548:2;12771:15;;;;12745:2;12730:18;;;12519:4;12814:169;12828:6;12825:1;12822:13;12814:169;;;12889:13;;12877:26;;12958:15;;;;12923:12;;;;12850:1;12843:9;12814:169;;13014:425;13117:6;13125;13178:2;13166:9;13157:7;13153:23;13149:32;13146:52;;;13194:1;13191;13184:12;13146:52;13230:9;13217:23;13207:33;;13291:2;13280:9;13276:18;13263:32;-1:-1:-1;;;;;13310:6:16;13307:30;13304:50;;;13350:1;13347;13340:12;13304:50;13373:60;13425:7;13416:6;13405:9;13401:22;13373:60;:::i;13444:560::-;13556:6;13564;13572;13625:2;13613:9;13604:7;13600:23;13596:32;13593:52;;;13641:1;13638;13631:12;13593:52;13677:9;13664:23;13654:33;;13738:2;13727:9;13723:18;13710:32;-1:-1:-1;;;;;13757:6:16;13754:30;13751:50;;;13797:1;13794;13787:12;13751:50;13820:60;13872:7;13863:6;13852:9;13848:22;13820:60;:::i;:::-;13810:70;;;13930:2;13919:9;13915:18;13902:32;13943:31;13968:5;13943:31;:::i;:::-;13993:5;13983:15;;;13444:560;;;;;:::o;14009:383::-;14086:6;14094;14102;14155:2;14143:9;14134:7;14130:23;14126:32;14123:52;;;14171:1;14168;14161:12;14123:52;14210:9;14197:23;14229:31;14254:5;14229:31;:::i;:::-;14279:5;14331:2;14316:18;;14303:32;;-1:-1:-1;14382:2:16;14367:18;;;14354:32;;14009:383;-1:-1:-1;;;14009:383:16:o;14397:::-;14474:6;14482;14490;14543:2;14531:9;14522:7;14518:23;14514:32;14511:52;;;14559:1;14556;14549:12;14511:52;14595:9;14582:23;14572:33;;14655:2;14644:9;14640:18;14627:32;14668:31;14693:5;14668:31;:::i;14785:315::-;14850:6;14858;14911:2;14899:9;14890:7;14886:23;14882:32;14879:52;;;14927:1;14924;14917:12;14879:52;14966:9;14953:23;14985:31;15010:5;14985:31;:::i;:::-;15035:5;-1:-1:-1;15059:35:16;15090:2;15075:18;;15059:35;:::i;:::-;15049:45;;14785:315;;;;;:::o;15105:795::-;15200:6;15208;15216;15224;15277:3;15265:9;15256:7;15252:23;15248:33;15245:53;;;15294:1;15291;15284:12;15245:53;15333:9;15320:23;15352:31;15377:5;15352:31;:::i;:::-;15402:5;-1:-1:-1;15459:2:16;15444:18;;15431:32;15472:33;15431:32;15472:33;:::i;:::-;15524:7;-1:-1:-1;15578:2:16;15563:18;;15550:32;;-1:-1:-1;15633:2:16;15618:18;;15605:32;-1:-1:-1;;;;;15649:30:16;;15646:50;;;15692:1;15689;15682:12;15646:50;15715:22;;15768:4;15760:13;;15756:27;-1:-1:-1;15746:55:16;;15797:1;15794;15787:12;15746:55;15820:74;15886:7;15881:2;15868:16;15863:2;15859;15855:11;15820:74;:::i;:::-;15810:84;;;15105:795;;;;;;;:::o;15905:267::-;10788:12;;-1:-1:-1;;;;;10784:38:16;10772:51;;10876:4;10865:16;;;10859:23;-1:-1:-1;;;;;10855:48:16;10839:14;;;10832:72;10967:4;10956:16;;;10950:23;10943:31;10936:39;10920:14;;;10913:63;16103:2;16088:18;;16115:51;10704:278;16177:388;16245:6;16253;16306:2;16294:9;16285:7;16281:23;16277:32;16274:52;;;16322:1;16319;16312:12;16274:52;16361:9;16348:23;16380:31;16405:5;16380:31;:::i;:::-;16430:5;-1:-1:-1;16487:2:16;16472:18;;16459:32;16500:33;16459:32;16500:33;:::i;:::-;16552:7;16542:17;;;16177:388;;;;;:::o;16570:344::-;16772:2;16754:21;;;16811:2;16791:18;;;16784:30;-1:-1:-1;;;16845:2:16;16830:18;;16823:50;16905:2;16890:18;;16570:344::o;16919:127::-;16980:10;16975:3;16971:20;16968:1;16961:31;17011:4;17008:1;17001:15;17035:4;17032:1;17025:15;17051:128;17091:3;17122:1;17118:6;17115:1;17112:13;17109:39;;;17128:18;;:::i;:::-;-1:-1:-1;17164:9:16;;17051:128::o;17184:344::-;17386:2;17368:21;;;17425:2;17405:18;;;17398:30;-1:-1:-1;;;17459:2:16;17444:18;;17437:50;17519:2;17504:18;;17184:344::o;17533:168::-;17573:7;17639:1;17635;17631:6;17627:14;17624:1;17621:21;17616:1;17609:9;17602:17;17598:45;17595:71;;;17646:18;;:::i;:::-;-1:-1:-1;17686:9:16;;17533:168::o;17706:343::-;17908:2;17890:21;;;17947:2;17927:18;;;17920:30;-1:-1:-1;;;17981:2:16;17966:18;;17959:49;18040:2;18025:18;;17706:343::o;18054:380::-;18133:1;18129:12;;;;18176;;;18197:61;;18251:4;18243:6;18239:17;18229:27;;18197:61;18304:2;18296:6;18293:14;18273:18;18270:38;18267:161;;;18350:10;18345:3;18341:20;18338:1;18331:31;18385:4;18382:1;18375:15;18413:4;18410:1;18403:15;18267:161;;18054:380;;;:::o;18439:356::-;18641:2;18623:21;;;18660:18;;;18653:30;18719:34;18714:2;18699:18;;18692:62;18786:2;18771:18;;18439:356::o;18800:127::-;18861:10;18856:3;18852:20;18849:1;18842:31;18892:4;18889:1;18882:15;18916:4;18913:1;18906:15;18932:135;18971:3;-1:-1:-1;;18992:17:16;;18989:43;;;19012:18;;:::i;:::-;-1:-1:-1;19059:1:16;19048:13;;18932:135::o;19424:398::-;19626:2;19608:21;;;19665:2;19645:18;;;19638:30;19704:34;19699:2;19684:18;;19677:62;-1:-1:-1;;;19770:2:16;19755:18;;19748:32;19812:3;19797:19;;19424:398::o;21155:470::-;21334:3;21372:6;21366:13;21388:53;21434:6;21429:3;21422:4;21414:6;21410:17;21388:53;:::i;:::-;21504:13;;21463:16;;;;21526:57;21504:13;21463:16;21560:4;21548:17;;21526:57;:::i;:::-;21599:20;;21155:470;-1:-1:-1;;;;21155:470:16:o;22037:251::-;22107:6;22160:2;22148:9;22139:7;22135:23;22131:32;22128:52;;;22176:1;22173;22166:12;22128:52;22208:9;22202:16;22227:31;22252:5;22227:31;:::i;22700:1047::-;22946:4;22994:3;22983:9;22979:19;23054:1;23050;23045:3;23041:11;23037:19;23029:6;23025:32;23014:9;23007:51;23077:2;23115:3;23110:2;23099:9;23095:18;23088:31;23139:6;23174;23168:13;23205:6;23197;23190:22;23243:3;23232:9;23228:19;23221:26;;23306:3;23296:6;23293:1;23289:14;23278:9;23274:30;23270:40;23256:54;;23345:2;23337:6;23333:15;23366:1;23376:256;23390:6;23387:1;23384:13;23376:256;;;23483:3;23479:8;23467:9;23459:6;23455:22;23451:37;23446:3;23439:50;23512:40;23545:6;23536;23530:13;23512:40;:::i;:::-;23502:50;-1:-1:-1;23610:12:16;;;;23575:15;;;;23412:1;23405:9;23376:256;;;-1:-1:-1;;;;;23686:2:16;23671:18;;23664:34;;;;-1:-1:-1;23729:2:16;23714:18;23707:34;23649:6;22700:1047;-1:-1:-1;;22700:1047:16:o;24679:489::-;-1:-1:-1;;;;;24948:15:16;;;24930:34;;25000:15;;24995:2;24980:18;;24973:43;25047:2;25032:18;;25025:34;;;25095:3;25090:2;25075:18;;25068:31;;;24873:4;;25116:46;;25142:19;;25134:6;25116:46;:::i;:::-;25108:54;24679:489;-1:-1:-1;;;;;;24679:489:16:o;25173:249::-;25242:6;25295:2;25283:9;25274:7;25270:23;25266:32;25263:52;;;25311:1;25308;25301:12;25263:52;25343:9;25337:16;25362:30;25386:5;25362:30;:::i;25427:127::-;25488:10;25483:3;25479:20;25476:1;25469:31;25519:4;25516:1;25509:15;25543:4;25540:1;25533:15;25559:120;25599:1;25625;25615:35;;25630:18;;:::i;:::-;-1:-1:-1;25664:9:16;;25559:120::o;25684:125::-;25724:4;25752:1;25749;25746:8;25743:34;;;25757:18;;:::i;:::-;-1:-1:-1;25794:9:16;;25684:125::o;25814:112::-;25846:1;25872;25862:35;;25877:18;;:::i;:::-;-1:-1:-1;25911:9:16;;25814:112::o

Swarm Source

ipfs://4b5237bef3689ae40068db70b94359f7e6e714b9d77e6716fc7c9d0c9dceb69d
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.