ETH Price: $3,042.76 (+2.82%)
Gas: 3 Gwei

Token

POUR KOKO NFT (POUR KOKO NFT)
 

Overview

Max Total Supply

790 POUR KOKO NFT

Holders

175

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 POUR KOKO NFT
0x6713b26Cc0962Fe0d50F22cA061010723a89882F
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:
PourKokoNFT

Compiler Version
v0.8.1+commit.df193b15

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 12 of 13: PourKokoNFT.sol
// SPDX-License-Identifier: MIT
// Made by: NFT Stack
//          https://nftstack.info
//

pragma solidity ^0.8.1;

import "./Ownable.sol";
import "./MerkleProof.sol";
import "./ERC721A.sol";

contract PourKokoNFT is ERC721A, Ownable {
  using MerkleProof for bytes32[];

  bytes32 public root;

  uint256 public mintPrice = 0.065 ether;
  uint256 public preSaleMintPrice = 0.061 ether;

  uint256 private reserveAtATime = 165;
  uint256 private reservedCount = 0;
  uint256 private maxReserveCount = 495;

  string _baseTokenURI;

  bool public isMintActive = false;
  bool public isPreSaleMintActive = false;
  bool public isClosedMintForever = false;
  bool public isSellOpen = false;

  uint256 public maximumMintSupply = 4995;
  uint256 public maximumAllowedTokensPerWallet = 5;
  uint256 public allowListMaxMint = 5;
  uint256 public immutable maxPerAddressDuringMint;

  address private OtherAddress1 = 0xa567a1937dd130e5E692a8C90C831Ab51E692f2e;
  address private OtherAddress2 = 0x2e970e58Be3A71ea714A27aaA052A2ebC7153Ad7;

  mapping(address => bool) private _allowList;
  mapping(address => uint256) private _allowListClaimed;
  mapping(address => uint256) private _publicMintClaimed;

  event AssetMinted(uint256 tokenId, address sender);
  event SaleActivation(bool isMintActive);

  constructor(
    string memory baseURI,
    uint256 maxBatchSize_,
    uint256 collectionSize_
  ) ERC721A("POUR KOKO NFT", "POUR KOKO NFT", maxBatchSize_, collectionSize_) {
    setBaseURI(baseURI);
    maxPerAddressDuringMint = maxBatchSize_;
  }

  modifier saleIsOpen {
    require(totalSupply() <= maximumMintSupply, "Sale has ended.");
    _;
  }

  modifier onlyAuthorized() {
    require(owner() == msg.sender);
    _;
  }

  modifier callerIsUser() {
    require(tx.origin == msg.sender, "The caller is another contract");
    _;
  }

  function setMaximumAllowedTokensPerWallet(uint256 _count) public onlyAuthorized {
    maximumAllowedTokensPerWallet = _count;
  }

  function setMintActive(bool val) public onlyAuthorized {
    isMintActive = val;
    emit SaleActivation(val);
  }

  function setMaxMintSupply(uint256 maxMintSupply) external  onlyAuthorized {
    maximumMintSupply = maxMintSupply;
  }

  function setIsPreSaleMintActive(bool _isPreSaleMintActive) external onlyAuthorized {
    isPreSaleMintActive = _isPreSaleMintActive;
  }

  function setIsSellOpen(bool _isSellOpen) external onlyAuthorized {
    isSellOpen = _isSellOpen;
  }

  function setAllowListMaxMint(uint256 maxMint) external  onlyAuthorized {
    allowListMaxMint = maxMint;
  }

  function addToAllowList(address[] calldata addresses) external onlyAuthorized {
    for (uint256 i = 0; i < addresses.length; i++) {
      require(addresses[i] != address(0), "Can't add a null address");
      _allowList[addresses[i]] = true;
      _allowListClaimed[addresses[i]] > 0 ? _allowListClaimed[addresses[i]] : 0;
    }
  }

  function checkIfOnAllowList(address addr) external view returns (bool) {
    return _allowList[addr];
  }

  function removeFromAllowList(address[] calldata addresses) external onlyAuthorized {
    for (uint256 i = 0; i < addresses.length; i++) {
      require(addresses[i] != address(0), "Can't add a null address");
      _allowList[addresses[i]] = false;
    }
  }

  function allowListClaimedBy(address owner) external view returns (uint256){
    require(owner != address(0), 'Zero address not on Allow List');
    return _allowListClaimed[owner];
  }

  function publicMintClaimed(address owner) external view returns (uint256){
    require(owner != address(0), 'Zero address not on Allow List');
    return _publicMintClaimed[owner];
  }

  function setReserveAtATime(uint256 val) public onlyAuthorized {
    reserveAtATime = val;
  }

  function setMaxReserve(uint256 val) public onlyAuthorized {
    maxReserveCount = val;
  }

  function setMintPrice(uint256 _price) public onlyAuthorized {
    mintPrice = _price;
  }

  function setPreSaleMintPrice(uint256 _price) public onlyAuthorized {
    preSaleMintPrice = _price;
  }

  function setBaseURI(string memory baseURI) public onlyAuthorized {
    _baseTokenURI = baseURI;
  }

  function getMintPrice() external view returns (uint256) {
    return mintPrice;
  }

  function getPreSaleMintPrice() external view returns (uint256) {
    return preSaleMintPrice;
  }

  function getIsClosedMintForever() external view returns (bool) {
    return isClosedMintForever;
  }

  function setIsClosedMintForever() external onlyAuthorized {
    isClosedMintForever = true;
  }

  function setRoot(bytes32 _root) public onlyAuthorized {
    root = _root;
  }

  function getReserveAtATime() external view returns (uint256) {
    return reserveAtATime;
  }

  function getTotalSupply() external view returns (uint256) {
    return totalSupply();
  }

  function getRoot() external view returns (bytes32) {
    return root;
  }

  function getContractOwner() public view returns (address) {
    return owner();
  }

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

  function reserveNft() public onlyAuthorized {
    require(reservedCount <= maxReserveCount, "Max Reserves taken already!");
    require(totalSupply() + reserveAtATime <= maximumMintSupply, "Total supply exceeded.");
    require(totalSupply() <= maximumMintSupply, "Total supply spent.");

    reservedCount += reserveAtATime;
    _safeMint(msg.sender, reserveAtATime);
  }

  function reserveToCustomWallet(address _walletAddress, uint256 _count) public onlyAuthorized {
    require(totalSupply() + _count <= maximumMintSupply, "Total supply exceeded.");
    require(totalSupply() <= maximumMintSupply, "Total supply spent.");

    _safeMint(_walletAddress, _count);
  }

  function mint(address _to, uint256 _count) public payable saleIsOpen callerIsUser {
    if (msg.sender != owner()) {
      require(isMintActive, "Sale is not active currently.");
    }

    if(_to != owner()) {
      require(balanceOf(_to) + _count <= maximumAllowedTokensPerWallet, "Max holding cap reached.");
    }

    require(_publicMintClaimed[msg.sender] + _count <= maximumAllowedTokensPerWallet, "Purchase exceeds max allowed");
    require(totalSupply() + _count <= maximumMintSupply, "Total supply exceeded.");
    require(totalSupply() <= maximumMintSupply, "Total supply spent.");
    require(
      numberMinted(msg.sender) + _count <= maxPerAddressDuringMint,
      "can not mint this many"
    );
    require(!isClosedMintForever, "Mint Closed Forever");
    require(msg.value >= mintPrice * _count, "Insuffient ETH amount sent.");

    _publicMintClaimed[msg.sender] += _count;
    _safeMint(_to, _count);
  }

  function preSaleMint(uint256 _count, bytes32[] memory _proof) public payable saleIsOpen {
    bytes32 leaf = keccak256(abi.encodePacked(msg.sender));

    require(isPreSaleMintActive, "PreSale is not active");
    require(_proof.verify(root, leaf), "invalid proof");
    require(totalSupply() < maximumMintSupply, "All tokens have been minted");
    require(_count <= allowListMaxMint, "Cannot purchase this many tokens");
    require(_allowListClaimed[msg.sender] + _count <= allowListMaxMint, "Purchase exceeds max allowed");
    require(msg.value >= preSaleMintPrice * _count, "Insuffient ETH amount sent.");
    require(!isClosedMintForever, "Mint Closed Forever");
    _allowListClaimed[msg.sender] += _count;

    _safeMint(msg.sender, _count);
  }

  function numberMinted(address owner) public view returns (uint256) {
    return _numberMinted(owner);
  }

  function walletOfOwner(address _owner) external view returns(uint256[] memory) {
    uint tokenCount = balanceOf(_owner);
    uint256[] memory tokensId = new uint256[](tokenCount);

    for(uint i = 0; i < tokenCount; i++){
      tokensId[i] = tokenOfOwnerByIndex(_owner, i);
    }
    return tokensId;
  }

  function withdraw() external onlyAuthorized {
    uint balance = address(this).balance;
    payable(OtherAddress1).transfer(balance * 5000 / 10000);
    payable(OtherAddress2).transfer(balance * 5000 / 10000);
    payable(owner()).transfer(balance * 0 / 10000);
  }
}

File 1 of 13: 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 13: 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 13: 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 13: ERC721A.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./IERC721Metadata.sol";
import "./IERC721Enumerable.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 and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Assumes the number of issuable tokens (collection size) is capped and fits in a uint128.
 *
 * Does not support burning tokens to address(0).
 */
contract ERC721A is
  Context,
  ERC165,
  IERC721,
  IERC721Metadata,
  IERC721Enumerable
{
  using Address for address;
  using Strings for uint256;

  struct TokenOwnership {
    address addr;
    uint64 startTimestamp;
  }

  struct AddressData {
    uint128 balance;
    uint128 numberMinted;
  }

  uint256 private currentIndex = 0;

  uint256 internal immutable collectionSize;
  uint256 internal immutable maxBatchSize;

  // 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) private _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;

  /**
   * @dev
   * `maxBatchSize` refers to how much a minter can mint at a time.
   * `collectionSize_` refers to how many tokens are in the collection.
   */
  constructor(
    string memory name_,
    string memory symbol_,
    uint256 maxBatchSize_,
    uint256 collectionSize_
  ) {
    require(
      collectionSize_ > 0,
      "ERC721A: collection must have a nonzero supply"
    );
    require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero");
    _name = name_;
    _symbol = symbol_;
    maxBatchSize = maxBatchSize_;
    collectionSize = collectionSize_;
  }

  /**
   * @dev See {IERC721Enumerable-totalSupply}.
   */
  function totalSupply() public view override returns (uint256) {
    return currentIndex;
  }

  /**
   * @dev See {IERC721Enumerable-tokenByIndex}.
   */
  function tokenByIndex(uint256 index) public view override returns (uint256) {
    require(index < totalSupply(), "ERC721A: global index out of bounds");
    return index;
  }

  /**
   * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
   * This read function is O(collectionSize). If calling from a separate contract, be sure to test gas first.
   * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
   */
  function tokenOfOwnerByIndex(address owner, uint256 index)
    public
    view
    override
    returns (uint256)
  {
    require(index < balanceOf(owner), "ERC721A: owner index out of bounds");
    uint256 numMintedSoFar = totalSupply();
    uint256 tokenIdsIdx = 0;
    address currOwnershipAddr = address(0);
    for (uint256 i = 0; i < numMintedSoFar; i++) {
      TokenOwnership memory ownership = _ownerships[i];
      if (ownership.addr != address(0)) {
        currOwnershipAddr = ownership.addr;
      }
      if (currOwnershipAddr == owner) {
        if (tokenIdsIdx == index) {
          return i;
        }
        tokenIdsIdx++;
      }
    }
    revert("ERC721A: unable to get token of owner by index");
  }

  /**
   * @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 ||
      interfaceId == type(IERC721Enumerable).interfaceId ||
      super.supportsInterface(interfaceId);
  }

  /**
   * @dev See {IERC721-balanceOf}.
   */
  function balanceOf(address owner) public view override returns (uint256) {
    require(owner != address(0), "ERC721A: balance query for the zero address");
    return uint256(_addressData[owner].balance);
  }

  function _numberMinted(address owner) internal view returns (uint256) {
    require(
      owner != address(0),
      "ERC721A: number minted query for the zero address"
    );
    return uint256(_addressData[owner].numberMinted);
  }

  function ownershipOf(uint256 tokenId)
    internal
    view
    returns (TokenOwnership memory)
  {
    require(_exists(tokenId), "ERC721A: owner query for nonexistent token");

    uint256 lowestTokenToCheck;
    if (tokenId >= maxBatchSize) {
      lowestTokenToCheck = tokenId - maxBatchSize + 1;
    }

    for (uint256 curr = tokenId; curr >= lowestTokenToCheck; curr--) {
      TokenOwnership memory ownership = _ownerships[curr];
      if (ownership.addr != address(0)) {
        return ownership;
      }
    }

    revert("ERC721A: unable to determine the owner of token");
  }

  /**
   * @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)
  {
    require(
      _exists(tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );

    string memory baseURI = _baseURI();
    return
      bytes(baseURI).length > 0
        ? string(abi.encodePacked(baseURI, tokenId.toString()))
        : "";
  }

  /**
   * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
   * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
   * by default, can be overriden in child contracts.
   */
  function _baseURI() internal view virtual returns (string memory) {
    return "";
  }

  /**
   * @dev See {IERC721-approve}.
   */
  function approve(address to, uint256 tokenId) public override {
    address owner = ERC721A.ownerOf(tokenId);
    require(to != owner, "ERC721A: approval to current owner");

    require(
      _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
      "ERC721A: approve caller is not owner nor approved for all"
    );

    _approve(to, tokenId, owner);
  }

  /**
   * @dev See {IERC721-getApproved}.
   */
  function getApproved(uint256 tokenId) public view override returns (address) {
    require(_exists(tokenId), "ERC721A: approved query for nonexistent token");

    return _tokenApprovals[tokenId];
  }

  /**
   * @dev See {IERC721-setApprovalForAll}.
   */
  function setApprovalForAll(address operator, bool approved) public override {
    require(operator != _msgSender(), "ERC721A: approve to caller");

    _operatorApprovals[_msgSender()][operator] = approved;
    emit ApprovalForAll(_msgSender(), operator, approved);
  }

  /**
   * @dev See {IERC721-isApprovedForAll}.
   */
  function isApprovedForAll(address owner, address operator)
    public
    view
    virtual
    override
    returns (bool)
  {
    return _operatorApprovals[owner][operator];
  }

  /**
   * @dev See {IERC721-transferFrom}.
   */
  function transferFrom(
    address from,
    address to,
    uint256 tokenId
  ) public override {
    _transfer(from, to, tokenId);
  }

  /**
   * @dev See {IERC721-safeTransferFrom}.
   */
  function safeTransferFrom(
    address from,
    address to,
    uint256 tokenId
  ) public override {
    safeTransferFrom(from, to, tokenId, "");
  }

  /**
   * @dev See {IERC721-safeTransferFrom}.
   */
  function safeTransferFrom(
    address from,
    address to,
    uint256 tokenId,
    bytes memory _data
  ) public override {
    _transfer(from, to, tokenId);
    require(
      _checkOnERC721Received(from, to, tokenId, _data),
      "ERC721A: transfer to non ERC721Receiver implementer"
    );
  }

  /**
   * @dev Returns whether `tokenId` exists.
   *
   * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
   *
   * Tokens start existing when they are minted (`_mint`),
   */
  function _exists(uint256 tokenId) internal view returns (bool) {
    return tokenId < currentIndex;
  }

  function _safeMint(address to, uint256 quantity) internal {
    _safeMint(to, quantity, "");
  }

  /**
   * @dev Mints `quantity` tokens and transfers them to `to`.
   *
   * Requirements:
   *
   * - there must be `quantity` tokens remaining unminted in the total collection.
   * - `to` cannot be the zero address.
   * - `quantity` cannot be larger than the max batch size.
   *
   * Emits a {Transfer} event.
   */
  function _safeMint(
    address to,
    uint256 quantity,
    bytes memory _data
  ) internal {
    uint256 startTokenId = currentIndex;
    require(to != address(0), "ERC721A: mint to the zero address");
    // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering.
    require(!_exists(startTokenId), "ERC721A: token already minted");
    require(quantity <= maxBatchSize, "ERC721A: quantity to mint too high");

    _beforeTokenTransfers(address(0), to, startTokenId, quantity);

    AddressData memory addressData = _addressData[to];
    _addressData[to] = AddressData(
      addressData.balance + uint128(quantity),
      addressData.numberMinted + uint128(quantity)
    );
    _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp));

    uint256 updatedIndex = startTokenId;

    for (uint256 i = 0; i < quantity; i++) {
      emit Transfer(address(0), to, updatedIndex);
      require(
        _checkOnERC721Received(address(0), to, updatedIndex, _data),
        "ERC721A: transfer to non ERC721Receiver implementer"
      );
      updatedIndex++;
    }

    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);

    bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
      getApproved(tokenId) == _msgSender() ||
      isApprovedForAll(prevOwnership.addr, _msgSender()));

    require(
      isApprovedOrOwner,
      "ERC721A: transfer caller is not owner nor approved"
    );

    require(
      prevOwnership.addr == from,
      "ERC721A: transfer from incorrect owner"
    );
    require(to != address(0), "ERC721A: transfer to the zero address");

    _beforeTokenTransfers(from, to, tokenId, 1);

    // Clear approvals from the previous owner
    _approve(address(0), tokenId, prevOwnership.addr);

    _addressData[from].balance -= 1;
    _addressData[to].balance += 1;
    _ownerships[tokenId] = TokenOwnership(to, 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;
    if (_ownerships[nextTokenId].addr == address(0)) {
      if (_exists(nextTokenId)) {
        _ownerships[nextTokenId] = TokenOwnership(
          prevOwnership.addr,
          prevOwnership.startTimestamp
        );
      }
    }

    emit Transfer(from, to, tokenId);
    _afterTokenTransfers(from, to, tokenId, 1);
  }

  /**
   * @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);
  }

  uint256 public nextOwnerToExplicitlySet = 0;

  /**
   * @dev Explicitly set `owners` to eliminate loops in future calls of ownerOf().
   */
  function _setOwnersExplicit(uint256 quantity) internal {
    uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet;
    require(quantity > 0, "quantity must be nonzero");
    uint256 endIndex = oldNextOwnerToSet + quantity - 1;
    if (endIndex > collectionSize - 1) {
      endIndex = collectionSize - 1;
    }
    // We know if the last one in the group exists, all in the group exist, due to serial ordering.
    require(_exists(endIndex), "not enough minted yet for this cleanup");
    for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) {
      if (_ownerships[i].addr == address(0)) {
        TokenOwnership memory ownership = ownershipOf(i);
        _ownerships[i] = TokenOwnership(
          ownership.addr,
          ownership.startTimestamp
        );
      }
    }
    nextOwnerToExplicitlySet = endIndex + 1;
  }

  /**
   * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
   * The call is not executed if the target address is not a contract.
   *
   * @param from address representing the previous owner of the given token ID
   * @param to target address that will receive the tokens
   * @param tokenId uint256 ID of the token to be transferred
   * @param _data bytes optional data to send along with the call
   * @return bool whether the call correctly returned the expected magic value
   */
  function _checkOnERC721Received(
    address from,
    address to,
    uint256 tokenId,
    bytes memory _data
  ) private returns (bool) {
    if (to.isContract()) {
      try
        IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data)
      returns (bytes4 retval) {
        return retval == IERC721Receiver(to).onERC721Received.selector;
      } catch (bytes memory reason) {
        if (reason.length == 0) {
          revert("ERC721A: transfer to non ERC721Receiver implementer");
        } else {
          assembly {
            revert(add(32, reason), mload(reason))
          }
        }
      }
    } else {
      return true;
    }
  }

  /**
   * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
   *
   * 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`.
   */
  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.
   *
   * 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` and `to` are never both zero.
   */
  function _afterTokenTransfers(
    address from,
    address to,
    uint256 startTokenId,
    uint256 quantity
  ) internal virtual {}
}

File 5 of 13: 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 6 of 13: IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (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`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;

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

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

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

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

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

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

File 7 of 13: IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "./IERC721.sol";

/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

File 8 of 13: 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 9 of 13: IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

File 10 of 13: MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.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.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            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 11 of 13: 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 13 of 13: 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"},{"internalType":"uint256","name":"maxBatchSize_","type":"uint256"},{"internalType":"uint256","name":"collectionSize_","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"address","name":"sender","type":"address"}],"name":"AssetMinted","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":"bool","name":"isMintActive","type":"bool"}],"name":"SaleActivation","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":"addresses","type":"address[]"}],"name":"addToAllowList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"allowListClaimedBy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"allowListMaxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"checkIfOnAllowList","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":[],"name":"getContractOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getIsClosedMintForever","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPreSaleMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getReserveAtATime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isClosedMintForever","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isMintActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPreSaleMintActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isSellOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerAddressDuringMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maximumAllowedTokensPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maximumMintSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"uint256","name":"_count","type":"uint256"},{"internalType":"bytes32[]","name":"_proof","type":"bytes32[]"}],"name":"preSaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"preSaleMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"publicMintClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"removeFromAllowList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserveNft","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_walletAddress","type":"address"},{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"reserveToCustomWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"root","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxMint","type":"uint256"}],"name":"setAllowListMaxMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setIsClosedMintForever","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isPreSaleMintActive","type":"bool"}],"name":"setIsPreSaleMintActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isSellOpen","type":"bool"}],"name":"setIsSellOpen","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxMintSupply","type":"uint256"}],"name":"setMaxMintSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"val","type":"uint256"}],"name":"setMaxReserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"setMaximumAllowedTokensPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"val","type":"bool"}],"name":"setMintActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPreSaleMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"val","type":"uint256"}],"name":"setReserveAtATime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_root","type":"bytes32"}],"name":"setRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60e06040526000808055600781905566e6ed27d6668000600a5566d8b72d434c8000600b5560a5600c55600d556101ef600e556010805463ffffffff1916905561138360115560056012819055601355601480546001600160a01b031990811673a567a1937dd130e5e692a8c90c831ab51e692f2e1790915560158054909116732e970e58be3a71ea714a27aaa052a2ebc7153ad7179055348015620000a457600080fd5b5060405162003efa38038062003efa833981016040819052620000c79162000309565b6040518060400160405280600d81526020016c1413d5548812d3d2d3c8139195609a1b8152506040518060400160405280600d81526020016c1413d5548812d3d2d3c8139195609a1b815250838360008111620001415760405162461bcd60e51b815260040162000138906200043a565b60405180910390fd5b60008211620001645760405162461bcd60e51b81526004016200013890620003f3565b83516200017990600190602087019062000263565b5082516200018f90600290602086019062000263565b5060a09190915260805250620001b09050620001aa620001c6565b620001ca565b620001bb836200021c565b5060c05250620004db565b3390565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b336200022762000254565b6001600160a01b0316146200023b57600080fd5b80516200025090600f90602084019062000263565b5050565b6008546001600160a01b031690565b828054620002719062000488565b90600052602060002090601f016020900481019282620002955760008555620002e0565b82601f10620002b057805160ff1916838001178555620002e0565b82800160010185558215620002e0579182015b82811115620002e0578251825591602001919060010190620002c3565b50620002ee929150620002f2565b5090565b5b80821115620002ee5760008155600101620002f3565b6000806000606084860312156200031e578283fd5b83516001600160401b038082111562000335578485fd5b818601915086601f83011262000349578485fd5b8151818111156200035e576200035e620004c5565b604051601f8201601f19908116603f01168101908382118183101715620003895762000389620004c5565b81604052828152602093508984848701011115620003a5578788fd5b8791505b82821015620003c85784820184015181830185015290830190620003a9565b82821115620003d957878484830101525b928801516040909801519299979850919695505050505050565b60208082526027908201527f455243373231413a206d61782062617463682073697a65206d757374206265206040820152666e6f6e7a65726f60c81b606082015260800190565b6020808252602e908201527f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060408201526d6e6f6e7a65726f20737570706c7960901b606082015260800190565b6002810460018216806200049d57607f821691505b60208210811415620004bf57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b60805160a05160c0516139dd6200051d600039600081816110d801526118fc01526000818161223e01528181612268015261265b0152600050506139dd6000f3fe6080604052600436106103b75760003560e01c80637389fbb7116101f2578063c87b56dd1161010d578063ebf0c717116100a0578063f2fde38b1161006f578063f2fde38b14610a25578063f4a0a52814610a45578063f6c9d9e314610a65578063f7cb9e5414610a85576103b7565b8063ebf0c717146109c6578063ec7d0991146109db578063ee1cc944146109f0578063f132dc2914610a10576103b7565b8063dc33e681116100dc578063dc33e68114610951578063e7b62d9614610971578063e985e9c514610986578063ea6eb836146109a6576103b7565b8063c87b56dd146108e7578063cadf881814610907578063d7224ba01461091c578063dab5f34014610931576103b7565b806395d89b4111610185578063a51312c811610154578063a51312c81461087d578063a7f93ebd1461089d578063b88d4fde146108b2578063c4e41b22146108d2576103b7565b806395d89b411461081357806398590a39146108285780639ccb0fea14610848578063a22cb4651461085d576103b7565b80637f44ab2f116101c15780637f44ab2f146107bf5780638bc35c2f146107d45780638da5cb5b146107e9578063932ecebc146107fe576103b7565b80637389fbb71461074a57806377b501b91461076a5780637a6685f11461078a5780637d26f470146107aa576103b7565b8063431adcb1116102e25780635b92ac0d1161027557806370a082311161024457806370a08231146106e0578063715018a61461070057806371e3500c146107155780637263cfe21461072a576103b7565b80635b92ac0d146106815780635ca1e165146106965780636352211e146106ab5780636817c76c146106cb576103b7565b80634d0550de116102b15780634d0550de1461060c5780634f6ccce71461062157806355f804b31461064157806356a87caa14610661576103b7565b8063431adcb1146105a2578063438b6300146105b7578063442890d5146105e45780634c220f6e146105f9576103b7565b806323b872dd1161035a5780633ccfd60b116103295780633ccfd60b1461053a5780633cfac5701461054f57806340c10f191461056f57806342842e0e14610582576103b7565b806323b872dd146104ba5780632c1205f4146104da5780632f745c59146104fa5780633b9ee7e41461051a576103b7565b8063081812fc11610396578063081812fc14610441578063095ea7b31461046e57806318160ddd1461049057806321a911f8146104a5576103b7565b806208ffdd146103bc57806301ffc9a7146103f257806306fdde031461041f575b600080fd5b3480156103c857600080fd5b506103dc6103d7366004612a36565b610aa5565b6040516103e99190612e6e565b60405180910390f35b3480156103fe57600080fd5b5061041261040d366004612c27565b610af6565b6040516103e99190612e63565b34801561042b57600080fd5b50610434610b57565b6040516103e99190612e77565b34801561044d57600080fd5b5061046161045c366004612c0f565b610be9565b6040516103e99190612dce565b34801561047a57600080fd5b5061048e610489366004612b5e565b610c2c565b005b34801561049c57600080fd5b506103dc610cc5565b3480156104b157600080fd5b506103dc610ccb565b3480156104c657600080fd5b5061048e6104d5366004612a82565b610cd1565b3480156104e657600080fd5b506104126104f5366004612a36565b610cdc565b34801561050657600080fd5b506103dc610515366004612b5e565b610cfa565b34801561052657600080fd5b5061048e610535366004612c0f565b610def565b34801561054657600080fd5b5061048e610e10565b34801561055b57600080fd5b5061048e61056a366004612bf5565b610f28565b61048e61057d366004612b5e565b610f5e565b34801561058e57600080fd5b5061048e61059d366004612a82565b6111ae565b3480156105ae57600080fd5b506104126111c9565b3480156105c357600080fd5b506105d76105d2366004612a36565b6111d9565b6040516103e99190612e1f565b3480156105f057600080fd5b50610461611296565b61048e610607366004612ca4565b6112a5565b34801561061857600080fd5b506103dc61145b565b34801561062d57600080fd5b506103dc61063c366004612c0f565b611461565b34801561064d57600080fd5b5061048e61065c366004612c5f565b61148d565b34801561066d57600080fd5b5061048e61067c366004612c0f565b6114bc565b34801561068d57600080fd5b506104126114dd565b3480156106a257600080fd5b506103dc6114e6565b3480156106b757600080fd5b506104616106c6366004612c0f565b6114ec565b3480156106d757600080fd5b506103dc6114fe565b3480156106ec57600080fd5b506103dc6106fb366004612a36565b611504565b34801561070c57600080fd5b5061048e611551565b34801561072157600080fd5b5061048e61159c565b34801561073657600080fd5b5061048e610745366004612b87565b611662565b34801561075657600080fd5b5061048e610765366004612c0f565b611820565b34801561077657600080fd5b5061048e610785366004612b5e565b611841565b34801561079657600080fd5b5061048e6107a5366004612c0f565b6118c4565b3480156107b657600080fd5b506104126118e5565b3480156107cb57600080fd5b506103dc6118f4565b3480156107e057600080fd5b506103dc6118fa565b3480156107f557600080fd5b5061046161191e565b34801561080a57600080fd5b5061048e61192d565b34801561081f57600080fd5b5061043461195c565b34801561083457600080fd5b5061048e610843366004612bf5565b61196b565b34801561085457600080fd5b506104126119a5565b34801561086957600080fd5b5061048e610878366004612b35565b6119b3565b34801561088957600080fd5b5061048e610898366004612b87565b611a81565b3480156108a957600080fd5b506103dc611b7b565b3480156108be57600080fd5b5061048e6108cd366004612abd565b611b81565b3480156108de57600080fd5b506103dc611bba565b3480156108f357600080fd5b50610434610902366004612c0f565b611bc4565b34801561091357600080fd5b506103dc611c47565b34801561092857600080fd5b506103dc611c4d565b34801561093d57600080fd5b5061048e61094c366004612c0f565b611c53565b34801561095d57600080fd5b506103dc61096c366004612a36565b611c74565b34801561097d57600080fd5b506103dc611c7f565b34801561099257600080fd5b506104126109a1366004612a50565b611c85565b3480156109b257600080fd5b5061048e6109c1366004612c0f565b611cb3565b3480156109d257600080fd5b506103dc611cd4565b3480156109e757600080fd5b506103dc611cda565b3480156109fc57600080fd5b5061048e610a0b366004612bf5565b611ce0565b348015610a1c57600080fd5b50610412611d45565b348015610a3157600080fd5b5061048e610a40366004612a36565b611d54565b348015610a5157600080fd5b5061048e610a60366004612c0f565b611dc5565b348015610a7157600080fd5b5061048e610a80366004612c0f565b611de6565b348015610a9157600080fd5b506103dc610aa0366004612a36565b611e07565b60006001600160a01b038216610ad65760405162461bcd60e51b8152600401610acd906132c1565b60405180910390fd5b506001600160a01b0381166000908152601760205260409020545b919050565b60006001600160e01b031982166380ac58cd60e01b1480610b2757506001600160e01b03198216635b5e139f60e01b145b80610b4257506001600160e01b0319821663780e9d6360e01b145b80610b515750610b5182611e4b565b92915050565b606060018054610b66906138e5565b80601f0160208091040260200160405190810160405280929190818152602001828054610b92906138e5565b8015610bdf5780601f10610bb457610100808354040283529160200191610bdf565b820191906000526020600020905b815481529060010190602001808311610bc257829003601f168201915b5050505050905090565b6000610bf482611e64565b610c105760405162461bcd60e51b8152600401610acd90613702565b506000908152600560205260409020546001600160a01b031690565b6000610c37826114ec565b9050806001600160a01b0316836001600160a01b03161415610c6b5760405162461bcd60e51b8152600401610acd9061342f565b806001600160a01b0316610c7d611e6b565b6001600160a01b03161480610c995750610c99816109a1611e6b565b610cb55760405162461bcd60e51b8152600401610acd90613167565b610cc0838383611e6f565b505050565b60005490565b600b5490565b610cc0838383611ecb565b6001600160a01b031660009081526016602052604090205460ff1690565b6000610d0583611504565b8210610d235760405162461bcd60e51b8152600401610acd90612e8a565b6000610d2d610cc5565b905060008060005b83811015610dd6576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215610d8757805192505b876001600160a01b0316836001600160a01b03161415610dc35786841415610db557509350610b5192505050565b83610dbf81613920565b9450505b5080610dce81613920565b915050610d35565b5060405162461bcd60e51b8152600401610acd906135f7565b33610df861191e565b6001600160a01b031614610e0b57600080fd5b600b55565b33610e1961191e565b6001600160a01b031614610e2c57600080fd5b60145447906001600160a01b03166108fc612710610e4c84611388613844565b610e569190613830565b6040518115909202916000818181858888f19350505050158015610e7e573d6000803e3d6000fd5b506015546001600160a01b03166108fc612710610e9d84611388613844565b610ea79190613830565b6040518115909202916000818181858888f19350505050158015610ecf573d6000803e3d6000fd5b50610ed861191e565b6001600160a01b03166108fc612710610ef2846000613844565b610efc9190613830565b6040518115909202916000818181858888f19350505050158015610f24573d6000803e3d6000fd5b5050565b33610f3161191e565b6001600160a01b031614610f4457600080fd5b601080549115156101000261ff0019909216919091179055565b601154610f69610cc5565b1115610f875760405162461bcd60e51b8152600401610acd90613071565b323314610fa65760405162461bcd60e51b8152600401610acd90613130565b610fae61191e565b6001600160a01b0316336001600160a01b031614610fe85760105460ff16610fe85760405162461bcd60e51b8152600401610acd90612f03565b610ff061191e565b6001600160a01b0316826001600160a01b03161461103d576012548161101584611504565b61101f9190613818565b111561103d5760405162461bcd60e51b8152600401610acd90612ff7565b6012543360009081526018602052604090205461105b908390613818565b11156110795760405162461bcd60e51b8152600401610acd90613645565b60115481611085610cc5565b61108f9190613818565b11156110ad5760405162461bcd60e51b8152600401610acd906133ff565b6011546110b8610cc5565b11156110d65760405162461bcd60e51b8152600401610acd90613593565b7f00000000000000000000000000000000000000000000000000000000000000008161110133611c74565b61110b9190613818565b11156111295760405162461bcd60e51b8152600401610acd90613563565b60105462010000900460ff16156111525760405162461bcd60e51b8152600401610acd90612fca565b80600a546111609190613844565b34101561117f5760405162461bcd60e51b8152600401610acd906135c0565b336000908152601860205260408120805483929061119e908490613818565b90915550610f24905082826121dd565b610cc083838360405180602001604052806000815250611b81565b6010546301000000900460ff1681565b606060006111e683611504565b90506000816001600160401b0381111561121057634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015611239578160200160208202803683370190505b50905060005b8281101561128e576112518582610cfa565b82828151811061127157634e487b7160e01b600052603260045260246000fd5b60209081029190910101528061128681613920565b91505061123f565b509392505050565b60006112a061191e565b905090565b6011546112b0610cc5565b11156112ce5760405162461bcd60e51b8152600401610acd90613071565b6000336040516020016112e19190612d82565b604051602081830303815290604052805190602001209050601060019054906101000a900460ff166113255760405162461bcd60e51b8152600401610acd906132f8565b600954611334908390836121f7565b6113505760405162461bcd60e51b8152600401610acd906134fb565b60115461135b610cc5565b106113785760405162461bcd60e51b8152600401610acd906136cb565b60135483111561139a5760405162461bcd60e51b8152600401610acd90613791565b601354336000908152601760205260409020546113b8908590613818565b11156113d65760405162461bcd60e51b8152600401610acd90613645565b82600b546113e49190613844565b3410156114035760405162461bcd60e51b8152600401610acd906135c0565b60105462010000900460ff161561142c5760405162461bcd60e51b8152600401610acd90612fca565b336000908152601760205260408120805485929061144b908490613818565b90915550610cc0905033846121dd565b60115481565b600061146b610cc5565b82106114895760405162461bcd60e51b8152600401610acd9061302e565b5090565b3361149661191e565b6001600160a01b0316146114a957600080fd5b8051610f2490600f90602084019061290c565b336114c561191e565b6001600160a01b0316146114d857600080fd5b600e55565b60105460ff1681565b60095490565b60006114f78261220d565b5192915050565b600a5481565b60006001600160a01b03821661152c5760405162461bcd60e51b8152600401610acd906131c4565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b611559611e6b565b6001600160a01b031661156a61191e565b6001600160a01b0316146115905760405162461bcd60e51b8152600401610acd9061328c565b61159a600061231f565b565b336115a561191e565b6001600160a01b0316146115b857600080fd5b600e54600d5411156115dc5760405162461bcd60e51b8152600401610acd90612ecc565b601154600c546115ea610cc5565b6115f49190613818565b11156116125760405162461bcd60e51b8152600401610acd906133ff565b60115461161d610cc5565b111561163b5760405162461bcd60e51b8152600401610acd90613593565b600c54600d600082825461164f9190613818565b9250508190555061159a33600c546121dd565b3361166b61191e565b6001600160a01b03161461167e57600080fd5b60005b81811015610cc05760008383838181106116ab57634e487b7160e01b600052603260045260246000fd5b90506020020160208101906116c09190612a36565b6001600160a01b031614156116e75760405162461bcd60e51b8152600401610acd90613255565b60016016600085858581811061170d57634e487b7160e01b600052603260045260246000fd5b90506020020160208101906117229190612a36565b6001600160a01b0316815260208101919091526040016000908120805460ff19169215159290921790915560178185858581811061177057634e487b7160e01b600052603260045260246000fd5b90506020020160208101906117859190612a36565b6001600160a01b03166001600160a01b0316815260200190815260200160002054116117b257600061180d565b601760008484848181106117d657634e487b7160e01b600052603260045260246000fd5b90506020020160208101906117eb9190612a36565b6001600160a01b03166001600160a01b03168152602001908152602001600020545b508061181881613920565b915050611681565b3361182961191e565b6001600160a01b03161461183c57600080fd5b601155565b3361184a61191e565b6001600160a01b03161461185d57600080fd5b60115481611869610cc5565b6118739190613818565b11156118915760405162461bcd60e51b8152600401610acd906133ff565b60115461189c610cc5565b11156118ba5760405162461bcd60e51b8152600401610acd90613593565b610f2482826121dd565b336118cd61191e565b6001600160a01b0316146118e057600080fd5b601355565b60105462010000900460ff1681565b60135481565b7f000000000000000000000000000000000000000000000000000000000000000081565b6008546001600160a01b031690565b3361193661191e565b6001600160a01b03161461194957600080fd5b6010805462ff0000191662010000179055565b606060028054610b66906138e5565b3361197461191e565b6001600160a01b03161461198757600080fd5b6010805491151563010000000263ff00000019909216919091179055565b601054610100900460ff1681565b6119bb611e6b565b6001600160a01b0316826001600160a01b031614156119ec5760405162461bcd60e51b8152600401610acd90613376565b80600660006119f9611e6b565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155611a3d611e6b565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a759190612e63565b60405180910390a35050565b33611a8a61191e565b6001600160a01b031614611a9d57600080fd5b60005b81811015610cc0576000838383818110611aca57634e487b7160e01b600052603260045260246000fd5b9050602002016020810190611adf9190612a36565b6001600160a01b03161415611b065760405162461bcd60e51b8152600401610acd90613255565b600060166000858585818110611b2c57634e487b7160e01b600052603260045260246000fd5b9050602002016020810190611b419190612a36565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580611b7381613920565b915050611aa0565b600a5490565b611b8c848484611ecb565b611b9884848484612371565b611bb45760405162461bcd60e51b8152600401610acd90613471565b50505050565b60006112a0610cc5565b6060611bcf82611e64565b611beb5760405162461bcd60e51b8152600401610acd90613327565b6000611bf561248d565b90506000815111611c155760405180602001604052806000815250611c40565b80611c1f8461249c565b604051602001611c30929190612d9f565b6040516020818303038152906040525b9392505050565b60125481565b60075481565b33611c5c61191e565b6001600160a01b031614611c6f57600080fd5b600955565b6000610b51826125b6565b600c5490565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b33611cbc61191e565b6001600160a01b031614611ccf57600080fd5b601255565b60095481565b600b5481565b33611ce961191e565b6001600160a01b031614611cfc57600080fd5b6010805460ff19168215151790556040517f58655b75d3df612fe99ead00dbf0812d415d35078fe06217a94c0818bb13967f90611d3a908390612e63565b60405180910390a150565b60105462010000900460ff1690565b611d5c611e6b565b6001600160a01b0316611d6d61191e565b6001600160a01b031614611d935760405162461bcd60e51b8152600401610acd9061328c565b6001600160a01b038116611db95760405162461bcd60e51b8152600401610acd90612f3a565b611dc28161231f565b50565b33611dce61191e565b6001600160a01b031614611de157600080fd5b600a55565b33611def61191e565b6001600160a01b031614611e0257600080fd5b600c55565b60006001600160a01b038216611e2f5760405162461bcd60e51b8152600401610acd906132c1565b506001600160a01b031660009081526018602052604090205490565b6001600160e01b031981166301ffc9a760e01b14919050565b6000541190565b3390565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611ed68261220d565b9050600081600001516001600160a01b0316611ef0611e6b565b6001600160a01b03161480611f255750611f08611e6b565b6001600160a01b0316611f1a84610be9565b6001600160a01b0316145b80611f3957508151611f39906109a1611e6b565b905080611f585760405162461bcd60e51b8152600401610acd906133ad565b846001600160a01b031682600001516001600160a01b031614611f8d5760405162461bcd60e51b8152600401610acd9061320f565b6001600160a01b038416611fb35760405162461bcd60e51b8152600401610acd9061309a565b611fc08585856001611bb4565b611fd06000848460000151611e6f565b6001600160a01b03851660009081526004602052604081208054600192906120029084906001600160801b0316613863565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b0386166000908152600460205260408120805460019450909261204e918591166137f6565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b0380871682526001600160401b03428116602080850191825260008981526003909152948520935184549151909216600160a01b0267ffffffffffffffff60a01b19929093166001600160a01b031990911617161790556120e3846001613818565b6000818152600360205260409020549091506001600160a01b03166121875761210b81611e64565b156121875760408051808201825284516001600160a01b0390811682526020808701516001600160401b0390811682850190815260008781526003909352949091209251835494516001600160a01b031990951692169190911767ffffffffffffffff60a01b1916600160a01b93909116929092029190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46121d58686866001611bb4565b505050505050565b610f2482826040518060200160405280600081525061260a565b600082612204858461287c565b14949350505050565b61221561298c565b61221e82611e64565b61223a5760405162461bcd60e51b8152600401610acd90612f80565b60007f0000000000000000000000000000000000000000000000000000000000000000831061229b5761228d7f00000000000000000000000000000000000000000000000000000000000000008461388b565b612298906001613818565b90505b825b818110612306576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b031691830191909152156122f3579250610af1915050565b50806122fe816138ce565b91505061229d565b5060405162461bcd60e51b8152600401610acd9061367c565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000612385846001600160a01b03166128ee565b1561248157836001600160a01b031663150b7a026123a1611e6b565b8786866040518563ffffffff1660e01b81526004016123c39493929190612de2565b602060405180830381600087803b1580156123dd57600080fd5b505af192505050801561240d575060408051601f3d908101601f1916820190925261240a91810190612c43565b60015b612467573d80801561243b576040519150601f19603f3d011682016040523d82523d6000602084013e612440565b606091505b50805161245f5760405162461bcd60e51b8152600401610acd90613471565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612485565b5060015b949350505050565b6060600f8054610b66906138e5565b6060816124c157506040805180820190915260018152600360fc1b6020820152610af1565b8160005b81156124eb57806124d581613920565b91506124e49050600a83613830565b91506124c5565b6000816001600160401b0381111561251357634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561253d576020820181803683370190505b5090505b84156124855761255260018361388b565b915061255f600a8661393b565b61256a906030613818565b60f81b81838151811061258d57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506125af600a86613830565b9450612541565b60006001600160a01b0382166125de5760405162461bcd60e51b8152600401610acd906130df565b506001600160a01b0316600090815260046020526040902054600160801b90046001600160801b031690565b6000546001600160a01b0384166126335760405162461bcd60e51b8152600401610acd90613522565b61263c81611e64565b156126595760405162461bcd60e51b8152600401610acd906134c4565b7f00000000000000000000000000000000000000000000000000000000000000008311156126995760405162461bcd60e51b8152600401610acd9061374f565b6126a66000858386611bb4565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b90910416918101919091528151808301909252805190919081906127029087906137f6565b6001600160801b0316815260200185836020015161272091906137f6565b6001600160801b039081169091526001600160a01b03808816600081815260046020908152604080832087518154988401518816600160801b029088166fffffffffffffffffffffffffffffffff199099169890981790961696909617909455845180860186529182526001600160401b034281168386019081528883526003909552948120915182549451909516600160a01b0267ffffffffffffffff60a01b19959093166001600160a01b031990941693909317939093161790915582905b8581101561286a5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461282e6000888488612371565b61284a5760405162461bcd60e51b8152600401610acd90613471565b8161285481613920565b925050808061286290613920565b9150506127e1565b5060008181556121d590878588611bb4565b600081815b845181101561128e5760008582815181106128ac57634e487b7160e01b600052603260045260246000fd5b602002602001015190508083116128ce576128c783826128fd565b92506128db565b6128d881846128fd565b92505b50806128e681613920565b915050612881565b6001600160a01b03163b151590565b60009182526020526040902090565b828054612918906138e5565b90600052602060002090601f01602090048101928261293a5760008555612980565b82601f1061295357805160ff1916838001178555612980565b82800160010185558215612980579182015b82811115612980578251825591602001919060010190612965565b506114899291506129a3565b604080518082019091526000808252602082015290565b5b8082111561148957600081556001016129a4565b60006001600160401b038311156129d1576129d161397b565b6129e4601f8401601f19166020016137c6565b90508281528383830111156129f857600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114610af157600080fd5b80358015158114610af157600080fd5b600060208284031215612a47578081fd5b611c4082612a0f565b60008060408385031215612a62578081fd5b612a6b83612a0f565b9150612a7960208401612a0f565b90509250929050565b600080600060608486031215612a96578081fd5b612a9f84612a0f565b9250612aad60208501612a0f565b9150604084013590509250925092565b60008060008060808587031215612ad2578081fd5b612adb85612a0f565b9350612ae960208601612a0f565b92506040850135915060608501356001600160401b03811115612b0a578182fd5b8501601f81018713612b1a578182fd5b612b29878235602084016129b8565b91505092959194509250565b60008060408385031215612b47578182fd5b612b5083612a0f565b9150612a7960208401612a26565b60008060408385031215612b70578182fd5b612b7983612a0f565b946020939093013593505050565b60008060208385031215612b99578182fd5b82356001600160401b0380821115612baf578384fd5b818501915085601f830112612bc2578384fd5b813581811115612bd0578485fd5b8660208083028501011115612be3578485fd5b60209290920196919550909350505050565b600060208284031215612c06578081fd5b611c4082612a26565b600060208284031215612c20578081fd5b5035919050565b600060208284031215612c38578081fd5b8135611c4081613991565b600060208284031215612c54578081fd5b8151611c4081613991565b600060208284031215612c70578081fd5b81356001600160401b03811115612c85578182fd5b8201601f81018413612c95578182fd5b612485848235602084016129b8565b60008060408385031215612cb6578182fd5b823591506020808401356001600160401b0380821115612cd4578384fd5b818601915086601f830112612ce7578384fd5b813581811115612cf957612cf961397b565b8381029150612d098483016137c6565b8181528481019084860184860187018b1015612d23578788fd5b8795505b83861015612d45578035835260019590950194918601918601612d27565b508096505050505050509250929050565b60008151808452612d6e8160208601602086016138a2565b601f01601f19169290920160200192915050565b60609190911b6bffffffffffffffffffffffff1916815260140190565b60008351612db18184602088016138a2565b835190830190612dc58183602088016138a2565b01949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612e1590830184612d56565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612e5757835183529284019291840191600101612e3b565b50909695505050505050565b901515815260200190565b90815260200190565b600060208252611c406020830184612d56565b60208082526022908201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b6020808252601b908201527f4d61782052657365727665732074616b656e20616c7265616479210000000000604082015260600190565b6020808252601d908201527f53616c65206973206e6f74206163746976652063757272656e746c792e000000604082015260600190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252602a908201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736040820152693a32b73a103a37b5b2b760b11b606082015260800190565b60208082526013908201527226b4b73a1021b637b9b2b2102337b932bb32b960691b604082015260600190565b60208082526018908201527f4d617820686f6c64696e672063617020726561636865642e0000000000000000604082015260600190565b60208082526023908201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756040820152626e647360e81b606082015260800190565b6020808252600f908201526e29b0b632903430b99032b73232b21760891b604082015260600190565b60208082526025908201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526031908201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260408201527020746865207a65726f206164647265737360781b606082015260800190565b6020808252601e908201527f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000604082015260600190565b60208082526039908201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60408201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606082015260800190565b6020808252602b908201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60408201526a65726f206164647265737360a81b606082015260800190565b60208082526026908201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746040820152651037bbb732b960d11b606082015260800190565b60208082526018908201527f43616e2774206164642061206e756c6c20616464726573730000000000000000604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601e908201527f5a65726f2061646472657373206e6f74206f6e20416c6c6f77204c6973740000604082015260600190565b60208082526015908201527450726553616c65206973206e6f742061637469766560581b604082015260600190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b6020808252601a908201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604082015260600190565b60208082526032908201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206040820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606082015260800190565b6020808252601690820152752a37ba30b61039bab838363c9032bc31b2b2b232b21760511b604082015260600190565b60208082526022908201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60408201526132b960f11b606082015260800190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b6020808252601d908201527f455243373231413a20746f6b656e20616c7265616479206d696e746564000000604082015260600190565b6020808252600d908201526c34b73b30b634b210383937b7b360991b604082015260600190565b60208082526021908201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526016908201527563616e206e6f74206d696e742074686973206d616e7960501b604082015260600190565b6020808252601390820152722a37ba30b61039bab838363c9039b832b73a1760691b604082015260600190565b6020808252601b908201527f496e7375666669656e742045544820616d6f756e742073656e742e0000000000604082015260600190565b6020808252602e908201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060408201526d0deeedccae440c4f240d2dcc8caf60931b606082015260800190565b6020808252601c908201527f50757263686173652065786365656473206d617820616c6c6f77656400000000604082015260600190565b6020808252602f908201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560408201526e1037bbb732b91037b3103a37b5b2b760891b606082015260800190565b6020808252601b908201527f416c6c20746f6b656e732068617665206265656e206d696e7465640000000000604082015260600190565b6020808252602d908201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560408201526c3c34b9ba32b73a103a37b5b2b760991b606082015260800190565b60208082526022908201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696040820152610ced60f31b606082015260800190565b6020808252818101527f43616e6e6f742070757263686173652074686973206d616e7920746f6b656e73604082015260600190565b604051601f8201601f191681016001600160401b03811182821017156137ee576137ee61397b565b604052919050565b60006001600160801b03808316818516808303821115612dc557612dc561394f565b6000821982111561382b5761382b61394f565b500190565b60008261383f5761383f613965565b500490565b600081600019048311821515161561385e5761385e61394f565b500290565b60006001600160801b03838116908316818110156138835761388361394f565b039392505050565b60008282101561389d5761389d61394f565b500390565b60005b838110156138bd5781810151838201526020016138a5565b83811115611bb45750506000910152565b6000816138dd576138dd61394f565b506000190190565b6002810460018216806138f957607f821691505b6020821081141561391a57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156139345761393461394f565b5060010190565b60008261394a5761394a613965565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114611dc257600080fdfea2646970667358221220b2228a87e7428b102a41a5804ddd4c02c5c62323407e7c3632171f25f08311c364736f6c63430008010033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000013830000000000000000000000000000000000000000000000000000000000001383000000000000000000000000000000000000000000000000000000000000006368747470733a2f2f6379616e2d757267656e742d76756c747572652d3939382e6d7970696e6174612e636c6f75642f697066732f516d54386576456e6366644e36413173366977364569576b674851555073534c765a5a56507055557675626361362f0000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106103b75760003560e01c80637389fbb7116101f2578063c87b56dd1161010d578063ebf0c717116100a0578063f2fde38b1161006f578063f2fde38b14610a25578063f4a0a52814610a45578063f6c9d9e314610a65578063f7cb9e5414610a85576103b7565b8063ebf0c717146109c6578063ec7d0991146109db578063ee1cc944146109f0578063f132dc2914610a10576103b7565b8063dc33e681116100dc578063dc33e68114610951578063e7b62d9614610971578063e985e9c514610986578063ea6eb836146109a6576103b7565b8063c87b56dd146108e7578063cadf881814610907578063d7224ba01461091c578063dab5f34014610931576103b7565b806395d89b4111610185578063a51312c811610154578063a51312c81461087d578063a7f93ebd1461089d578063b88d4fde146108b2578063c4e41b22146108d2576103b7565b806395d89b411461081357806398590a39146108285780639ccb0fea14610848578063a22cb4651461085d576103b7565b80637f44ab2f116101c15780637f44ab2f146107bf5780638bc35c2f146107d45780638da5cb5b146107e9578063932ecebc146107fe576103b7565b80637389fbb71461074a57806377b501b91461076a5780637a6685f11461078a5780637d26f470146107aa576103b7565b8063431adcb1116102e25780635b92ac0d1161027557806370a082311161024457806370a08231146106e0578063715018a61461070057806371e3500c146107155780637263cfe21461072a576103b7565b80635b92ac0d146106815780635ca1e165146106965780636352211e146106ab5780636817c76c146106cb576103b7565b80634d0550de116102b15780634d0550de1461060c5780634f6ccce71461062157806355f804b31461064157806356a87caa14610661576103b7565b8063431adcb1146105a2578063438b6300146105b7578063442890d5146105e45780634c220f6e146105f9576103b7565b806323b872dd1161035a5780633ccfd60b116103295780633ccfd60b1461053a5780633cfac5701461054f57806340c10f191461056f57806342842e0e14610582576103b7565b806323b872dd146104ba5780632c1205f4146104da5780632f745c59146104fa5780633b9ee7e41461051a576103b7565b8063081812fc11610396578063081812fc14610441578063095ea7b31461046e57806318160ddd1461049057806321a911f8146104a5576103b7565b806208ffdd146103bc57806301ffc9a7146103f257806306fdde031461041f575b600080fd5b3480156103c857600080fd5b506103dc6103d7366004612a36565b610aa5565b6040516103e99190612e6e565b60405180910390f35b3480156103fe57600080fd5b5061041261040d366004612c27565b610af6565b6040516103e99190612e63565b34801561042b57600080fd5b50610434610b57565b6040516103e99190612e77565b34801561044d57600080fd5b5061046161045c366004612c0f565b610be9565b6040516103e99190612dce565b34801561047a57600080fd5b5061048e610489366004612b5e565b610c2c565b005b34801561049c57600080fd5b506103dc610cc5565b3480156104b157600080fd5b506103dc610ccb565b3480156104c657600080fd5b5061048e6104d5366004612a82565b610cd1565b3480156104e657600080fd5b506104126104f5366004612a36565b610cdc565b34801561050657600080fd5b506103dc610515366004612b5e565b610cfa565b34801561052657600080fd5b5061048e610535366004612c0f565b610def565b34801561054657600080fd5b5061048e610e10565b34801561055b57600080fd5b5061048e61056a366004612bf5565b610f28565b61048e61057d366004612b5e565b610f5e565b34801561058e57600080fd5b5061048e61059d366004612a82565b6111ae565b3480156105ae57600080fd5b506104126111c9565b3480156105c357600080fd5b506105d76105d2366004612a36565b6111d9565b6040516103e99190612e1f565b3480156105f057600080fd5b50610461611296565b61048e610607366004612ca4565b6112a5565b34801561061857600080fd5b506103dc61145b565b34801561062d57600080fd5b506103dc61063c366004612c0f565b611461565b34801561064d57600080fd5b5061048e61065c366004612c5f565b61148d565b34801561066d57600080fd5b5061048e61067c366004612c0f565b6114bc565b34801561068d57600080fd5b506104126114dd565b3480156106a257600080fd5b506103dc6114e6565b3480156106b757600080fd5b506104616106c6366004612c0f565b6114ec565b3480156106d757600080fd5b506103dc6114fe565b3480156106ec57600080fd5b506103dc6106fb366004612a36565b611504565b34801561070c57600080fd5b5061048e611551565b34801561072157600080fd5b5061048e61159c565b34801561073657600080fd5b5061048e610745366004612b87565b611662565b34801561075657600080fd5b5061048e610765366004612c0f565b611820565b34801561077657600080fd5b5061048e610785366004612b5e565b611841565b34801561079657600080fd5b5061048e6107a5366004612c0f565b6118c4565b3480156107b657600080fd5b506104126118e5565b3480156107cb57600080fd5b506103dc6118f4565b3480156107e057600080fd5b506103dc6118fa565b3480156107f557600080fd5b5061046161191e565b34801561080a57600080fd5b5061048e61192d565b34801561081f57600080fd5b5061043461195c565b34801561083457600080fd5b5061048e610843366004612bf5565b61196b565b34801561085457600080fd5b506104126119a5565b34801561086957600080fd5b5061048e610878366004612b35565b6119b3565b34801561088957600080fd5b5061048e610898366004612b87565b611a81565b3480156108a957600080fd5b506103dc611b7b565b3480156108be57600080fd5b5061048e6108cd366004612abd565b611b81565b3480156108de57600080fd5b506103dc611bba565b3480156108f357600080fd5b50610434610902366004612c0f565b611bc4565b34801561091357600080fd5b506103dc611c47565b34801561092857600080fd5b506103dc611c4d565b34801561093d57600080fd5b5061048e61094c366004612c0f565b611c53565b34801561095d57600080fd5b506103dc61096c366004612a36565b611c74565b34801561097d57600080fd5b506103dc611c7f565b34801561099257600080fd5b506104126109a1366004612a50565b611c85565b3480156109b257600080fd5b5061048e6109c1366004612c0f565b611cb3565b3480156109d257600080fd5b506103dc611cd4565b3480156109e757600080fd5b506103dc611cda565b3480156109fc57600080fd5b5061048e610a0b366004612bf5565b611ce0565b348015610a1c57600080fd5b50610412611d45565b348015610a3157600080fd5b5061048e610a40366004612a36565b611d54565b348015610a5157600080fd5b5061048e610a60366004612c0f565b611dc5565b348015610a7157600080fd5b5061048e610a80366004612c0f565b611de6565b348015610a9157600080fd5b506103dc610aa0366004612a36565b611e07565b60006001600160a01b038216610ad65760405162461bcd60e51b8152600401610acd906132c1565b60405180910390fd5b506001600160a01b0381166000908152601760205260409020545b919050565b60006001600160e01b031982166380ac58cd60e01b1480610b2757506001600160e01b03198216635b5e139f60e01b145b80610b4257506001600160e01b0319821663780e9d6360e01b145b80610b515750610b5182611e4b565b92915050565b606060018054610b66906138e5565b80601f0160208091040260200160405190810160405280929190818152602001828054610b92906138e5565b8015610bdf5780601f10610bb457610100808354040283529160200191610bdf565b820191906000526020600020905b815481529060010190602001808311610bc257829003601f168201915b5050505050905090565b6000610bf482611e64565b610c105760405162461bcd60e51b8152600401610acd90613702565b506000908152600560205260409020546001600160a01b031690565b6000610c37826114ec565b9050806001600160a01b0316836001600160a01b03161415610c6b5760405162461bcd60e51b8152600401610acd9061342f565b806001600160a01b0316610c7d611e6b565b6001600160a01b03161480610c995750610c99816109a1611e6b565b610cb55760405162461bcd60e51b8152600401610acd90613167565b610cc0838383611e6f565b505050565b60005490565b600b5490565b610cc0838383611ecb565b6001600160a01b031660009081526016602052604090205460ff1690565b6000610d0583611504565b8210610d235760405162461bcd60e51b8152600401610acd90612e8a565b6000610d2d610cc5565b905060008060005b83811015610dd6576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215610d8757805192505b876001600160a01b0316836001600160a01b03161415610dc35786841415610db557509350610b5192505050565b83610dbf81613920565b9450505b5080610dce81613920565b915050610d35565b5060405162461bcd60e51b8152600401610acd906135f7565b33610df861191e565b6001600160a01b031614610e0b57600080fd5b600b55565b33610e1961191e565b6001600160a01b031614610e2c57600080fd5b60145447906001600160a01b03166108fc612710610e4c84611388613844565b610e569190613830565b6040518115909202916000818181858888f19350505050158015610e7e573d6000803e3d6000fd5b506015546001600160a01b03166108fc612710610e9d84611388613844565b610ea79190613830565b6040518115909202916000818181858888f19350505050158015610ecf573d6000803e3d6000fd5b50610ed861191e565b6001600160a01b03166108fc612710610ef2846000613844565b610efc9190613830565b6040518115909202916000818181858888f19350505050158015610f24573d6000803e3d6000fd5b5050565b33610f3161191e565b6001600160a01b031614610f4457600080fd5b601080549115156101000261ff0019909216919091179055565b601154610f69610cc5565b1115610f875760405162461bcd60e51b8152600401610acd90613071565b323314610fa65760405162461bcd60e51b8152600401610acd90613130565b610fae61191e565b6001600160a01b0316336001600160a01b031614610fe85760105460ff16610fe85760405162461bcd60e51b8152600401610acd90612f03565b610ff061191e565b6001600160a01b0316826001600160a01b03161461103d576012548161101584611504565b61101f9190613818565b111561103d5760405162461bcd60e51b8152600401610acd90612ff7565b6012543360009081526018602052604090205461105b908390613818565b11156110795760405162461bcd60e51b8152600401610acd90613645565b60115481611085610cc5565b61108f9190613818565b11156110ad5760405162461bcd60e51b8152600401610acd906133ff565b6011546110b8610cc5565b11156110d65760405162461bcd60e51b8152600401610acd90613593565b7f00000000000000000000000000000000000000000000000000000000000013838161110133611c74565b61110b9190613818565b11156111295760405162461bcd60e51b8152600401610acd90613563565b60105462010000900460ff16156111525760405162461bcd60e51b8152600401610acd90612fca565b80600a546111609190613844565b34101561117f5760405162461bcd60e51b8152600401610acd906135c0565b336000908152601860205260408120805483929061119e908490613818565b90915550610f24905082826121dd565b610cc083838360405180602001604052806000815250611b81565b6010546301000000900460ff1681565b606060006111e683611504565b90506000816001600160401b0381111561121057634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015611239578160200160208202803683370190505b50905060005b8281101561128e576112518582610cfa565b82828151811061127157634e487b7160e01b600052603260045260246000fd5b60209081029190910101528061128681613920565b91505061123f565b509392505050565b60006112a061191e565b905090565b6011546112b0610cc5565b11156112ce5760405162461bcd60e51b8152600401610acd90613071565b6000336040516020016112e19190612d82565b604051602081830303815290604052805190602001209050601060019054906101000a900460ff166113255760405162461bcd60e51b8152600401610acd906132f8565b600954611334908390836121f7565b6113505760405162461bcd60e51b8152600401610acd906134fb565b60115461135b610cc5565b106113785760405162461bcd60e51b8152600401610acd906136cb565b60135483111561139a5760405162461bcd60e51b8152600401610acd90613791565b601354336000908152601760205260409020546113b8908590613818565b11156113d65760405162461bcd60e51b8152600401610acd90613645565b82600b546113e49190613844565b3410156114035760405162461bcd60e51b8152600401610acd906135c0565b60105462010000900460ff161561142c5760405162461bcd60e51b8152600401610acd90612fca565b336000908152601760205260408120805485929061144b908490613818565b90915550610cc0905033846121dd565b60115481565b600061146b610cc5565b82106114895760405162461bcd60e51b8152600401610acd9061302e565b5090565b3361149661191e565b6001600160a01b0316146114a957600080fd5b8051610f2490600f90602084019061290c565b336114c561191e565b6001600160a01b0316146114d857600080fd5b600e55565b60105460ff1681565b60095490565b60006114f78261220d565b5192915050565b600a5481565b60006001600160a01b03821661152c5760405162461bcd60e51b8152600401610acd906131c4565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b611559611e6b565b6001600160a01b031661156a61191e565b6001600160a01b0316146115905760405162461bcd60e51b8152600401610acd9061328c565b61159a600061231f565b565b336115a561191e565b6001600160a01b0316146115b857600080fd5b600e54600d5411156115dc5760405162461bcd60e51b8152600401610acd90612ecc565b601154600c546115ea610cc5565b6115f49190613818565b11156116125760405162461bcd60e51b8152600401610acd906133ff565b60115461161d610cc5565b111561163b5760405162461bcd60e51b8152600401610acd90613593565b600c54600d600082825461164f9190613818565b9250508190555061159a33600c546121dd565b3361166b61191e565b6001600160a01b03161461167e57600080fd5b60005b81811015610cc05760008383838181106116ab57634e487b7160e01b600052603260045260246000fd5b90506020020160208101906116c09190612a36565b6001600160a01b031614156116e75760405162461bcd60e51b8152600401610acd90613255565b60016016600085858581811061170d57634e487b7160e01b600052603260045260246000fd5b90506020020160208101906117229190612a36565b6001600160a01b0316815260208101919091526040016000908120805460ff19169215159290921790915560178185858581811061177057634e487b7160e01b600052603260045260246000fd5b90506020020160208101906117859190612a36565b6001600160a01b03166001600160a01b0316815260200190815260200160002054116117b257600061180d565b601760008484848181106117d657634e487b7160e01b600052603260045260246000fd5b90506020020160208101906117eb9190612a36565b6001600160a01b03166001600160a01b03168152602001908152602001600020545b508061181881613920565b915050611681565b3361182961191e565b6001600160a01b03161461183c57600080fd5b601155565b3361184a61191e565b6001600160a01b03161461185d57600080fd5b60115481611869610cc5565b6118739190613818565b11156118915760405162461bcd60e51b8152600401610acd906133ff565b60115461189c610cc5565b11156118ba5760405162461bcd60e51b8152600401610acd90613593565b610f2482826121dd565b336118cd61191e565b6001600160a01b0316146118e057600080fd5b601355565b60105462010000900460ff1681565b60135481565b7f000000000000000000000000000000000000000000000000000000000000138381565b6008546001600160a01b031690565b3361193661191e565b6001600160a01b03161461194957600080fd5b6010805462ff0000191662010000179055565b606060028054610b66906138e5565b3361197461191e565b6001600160a01b03161461198757600080fd5b6010805491151563010000000263ff00000019909216919091179055565b601054610100900460ff1681565b6119bb611e6b565b6001600160a01b0316826001600160a01b031614156119ec5760405162461bcd60e51b8152600401610acd90613376565b80600660006119f9611e6b565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155611a3d611e6b565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611a759190612e63565b60405180910390a35050565b33611a8a61191e565b6001600160a01b031614611a9d57600080fd5b60005b81811015610cc0576000838383818110611aca57634e487b7160e01b600052603260045260246000fd5b9050602002016020810190611adf9190612a36565b6001600160a01b03161415611b065760405162461bcd60e51b8152600401610acd90613255565b600060166000858585818110611b2c57634e487b7160e01b600052603260045260246000fd5b9050602002016020810190611b419190612a36565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580611b7381613920565b915050611aa0565b600a5490565b611b8c848484611ecb565b611b9884848484612371565b611bb45760405162461bcd60e51b8152600401610acd90613471565b50505050565b60006112a0610cc5565b6060611bcf82611e64565b611beb5760405162461bcd60e51b8152600401610acd90613327565b6000611bf561248d565b90506000815111611c155760405180602001604052806000815250611c40565b80611c1f8461249c565b604051602001611c30929190612d9f565b6040516020818303038152906040525b9392505050565b60125481565b60075481565b33611c5c61191e565b6001600160a01b031614611c6f57600080fd5b600955565b6000610b51826125b6565b600c5490565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b33611cbc61191e565b6001600160a01b031614611ccf57600080fd5b601255565b60095481565b600b5481565b33611ce961191e565b6001600160a01b031614611cfc57600080fd5b6010805460ff19168215151790556040517f58655b75d3df612fe99ead00dbf0812d415d35078fe06217a94c0818bb13967f90611d3a908390612e63565b60405180910390a150565b60105462010000900460ff1690565b611d5c611e6b565b6001600160a01b0316611d6d61191e565b6001600160a01b031614611d935760405162461bcd60e51b8152600401610acd9061328c565b6001600160a01b038116611db95760405162461bcd60e51b8152600401610acd90612f3a565b611dc28161231f565b50565b33611dce61191e565b6001600160a01b031614611de157600080fd5b600a55565b33611def61191e565b6001600160a01b031614611e0257600080fd5b600c55565b60006001600160a01b038216611e2f5760405162461bcd60e51b8152600401610acd906132c1565b506001600160a01b031660009081526018602052604090205490565b6001600160e01b031981166301ffc9a760e01b14919050565b6000541190565b3390565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b6000611ed68261220d565b9050600081600001516001600160a01b0316611ef0611e6b565b6001600160a01b03161480611f255750611f08611e6b565b6001600160a01b0316611f1a84610be9565b6001600160a01b0316145b80611f3957508151611f39906109a1611e6b565b905080611f585760405162461bcd60e51b8152600401610acd906133ad565b846001600160a01b031682600001516001600160a01b031614611f8d5760405162461bcd60e51b8152600401610acd9061320f565b6001600160a01b038416611fb35760405162461bcd60e51b8152600401610acd9061309a565b611fc08585856001611bb4565b611fd06000848460000151611e6f565b6001600160a01b03851660009081526004602052604081208054600192906120029084906001600160801b0316613863565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b0386166000908152600460205260408120805460019450909261204e918591166137f6565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b0380871682526001600160401b03428116602080850191825260008981526003909152948520935184549151909216600160a01b0267ffffffffffffffff60a01b19929093166001600160a01b031990911617161790556120e3846001613818565b6000818152600360205260409020549091506001600160a01b03166121875761210b81611e64565b156121875760408051808201825284516001600160a01b0390811682526020808701516001600160401b0390811682850190815260008781526003909352949091209251835494516001600160a01b031990951692169190911767ffffffffffffffff60a01b1916600160a01b93909116929092029190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46121d58686866001611bb4565b505050505050565b610f2482826040518060200160405280600081525061260a565b600082612204858461287c565b14949350505050565b61221561298c565b61221e82611e64565b61223a5760405162461bcd60e51b8152600401610acd90612f80565b60007f0000000000000000000000000000000000000000000000000000000000001383831061229b5761228d7f00000000000000000000000000000000000000000000000000000000000013838461388b565b612298906001613818565b90505b825b818110612306576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b031691830191909152156122f3579250610af1915050565b50806122fe816138ce565b91505061229d565b5060405162461bcd60e51b8152600401610acd9061367c565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000612385846001600160a01b03166128ee565b1561248157836001600160a01b031663150b7a026123a1611e6b565b8786866040518563ffffffff1660e01b81526004016123c39493929190612de2565b602060405180830381600087803b1580156123dd57600080fd5b505af192505050801561240d575060408051601f3d908101601f1916820190925261240a91810190612c43565b60015b612467573d80801561243b576040519150601f19603f3d011682016040523d82523d6000602084013e612440565b606091505b50805161245f5760405162461bcd60e51b8152600401610acd90613471565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612485565b5060015b949350505050565b6060600f8054610b66906138e5565b6060816124c157506040805180820190915260018152600360fc1b6020820152610af1565b8160005b81156124eb57806124d581613920565b91506124e49050600a83613830565b91506124c5565b6000816001600160401b0381111561251357634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561253d576020820181803683370190505b5090505b84156124855761255260018361388b565b915061255f600a8661393b565b61256a906030613818565b60f81b81838151811061258d57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506125af600a86613830565b9450612541565b60006001600160a01b0382166125de5760405162461bcd60e51b8152600401610acd906130df565b506001600160a01b0316600090815260046020526040902054600160801b90046001600160801b031690565b6000546001600160a01b0384166126335760405162461bcd60e51b8152600401610acd90613522565b61263c81611e64565b156126595760405162461bcd60e51b8152600401610acd906134c4565b7f00000000000000000000000000000000000000000000000000000000000013838311156126995760405162461bcd60e51b8152600401610acd9061374f565b6126a66000858386611bb4565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b90910416918101919091528151808301909252805190919081906127029087906137f6565b6001600160801b0316815260200185836020015161272091906137f6565b6001600160801b039081169091526001600160a01b03808816600081815260046020908152604080832087518154988401518816600160801b029088166fffffffffffffffffffffffffffffffff199099169890981790961696909617909455845180860186529182526001600160401b034281168386019081528883526003909552948120915182549451909516600160a01b0267ffffffffffffffff60a01b19959093166001600160a01b031990941693909317939093161790915582905b8581101561286a5760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a461282e6000888488612371565b61284a5760405162461bcd60e51b8152600401610acd90613471565b8161285481613920565b925050808061286290613920565b9150506127e1565b5060008181556121d590878588611bb4565b600081815b845181101561128e5760008582815181106128ac57634e487b7160e01b600052603260045260246000fd5b602002602001015190508083116128ce576128c783826128fd565b92506128db565b6128d881846128fd565b92505b50806128e681613920565b915050612881565b6001600160a01b03163b151590565b60009182526020526040902090565b828054612918906138e5565b90600052602060002090601f01602090048101928261293a5760008555612980565b82601f1061295357805160ff1916838001178555612980565b82800160010185558215612980579182015b82811115612980578251825591602001919060010190612965565b506114899291506129a3565b604080518082019091526000808252602082015290565b5b8082111561148957600081556001016129a4565b60006001600160401b038311156129d1576129d161397b565b6129e4601f8401601f19166020016137c6565b90508281528383830111156129f857600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114610af157600080fd5b80358015158114610af157600080fd5b600060208284031215612a47578081fd5b611c4082612a0f565b60008060408385031215612a62578081fd5b612a6b83612a0f565b9150612a7960208401612a0f565b90509250929050565b600080600060608486031215612a96578081fd5b612a9f84612a0f565b9250612aad60208501612a0f565b9150604084013590509250925092565b60008060008060808587031215612ad2578081fd5b612adb85612a0f565b9350612ae960208601612a0f565b92506040850135915060608501356001600160401b03811115612b0a578182fd5b8501601f81018713612b1a578182fd5b612b29878235602084016129b8565b91505092959194509250565b60008060408385031215612b47578182fd5b612b5083612a0f565b9150612a7960208401612a26565b60008060408385031215612b70578182fd5b612b7983612a0f565b946020939093013593505050565b60008060208385031215612b99578182fd5b82356001600160401b0380821115612baf578384fd5b818501915085601f830112612bc2578384fd5b813581811115612bd0578485fd5b8660208083028501011115612be3578485fd5b60209290920196919550909350505050565b600060208284031215612c06578081fd5b611c4082612a26565b600060208284031215612c20578081fd5b5035919050565b600060208284031215612c38578081fd5b8135611c4081613991565b600060208284031215612c54578081fd5b8151611c4081613991565b600060208284031215612c70578081fd5b81356001600160401b03811115612c85578182fd5b8201601f81018413612c95578182fd5b612485848235602084016129b8565b60008060408385031215612cb6578182fd5b823591506020808401356001600160401b0380821115612cd4578384fd5b818601915086601f830112612ce7578384fd5b813581811115612cf957612cf961397b565b8381029150612d098483016137c6565b8181528481019084860184860187018b1015612d23578788fd5b8795505b83861015612d45578035835260019590950194918601918601612d27565b508096505050505050509250929050565b60008151808452612d6e8160208601602086016138a2565b601f01601f19169290920160200192915050565b60609190911b6bffffffffffffffffffffffff1916815260140190565b60008351612db18184602088016138a2565b835190830190612dc58183602088016138a2565b01949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612e1590830184612d56565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612e5757835183529284019291840191600101612e3b565b50909695505050505050565b901515815260200190565b90815260200190565b600060208252611c406020830184612d56565b60208082526022908201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b6020808252601b908201527f4d61782052657365727665732074616b656e20616c7265616479210000000000604082015260600190565b6020808252601d908201527f53616c65206973206e6f74206163746976652063757272656e746c792e000000604082015260600190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252602a908201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736040820152693a32b73a103a37b5b2b760b11b606082015260800190565b60208082526013908201527226b4b73a1021b637b9b2b2102337b932bb32b960691b604082015260600190565b60208082526018908201527f4d617820686f6c64696e672063617020726561636865642e0000000000000000604082015260600190565b60208082526023908201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756040820152626e647360e81b606082015260800190565b6020808252600f908201526e29b0b632903430b99032b73232b21760891b604082015260600190565b60208082526025908201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526031908201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260408201527020746865207a65726f206164647265737360781b606082015260800190565b6020808252601e908201527f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000604082015260600190565b60208082526039908201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60408201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606082015260800190565b6020808252602b908201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60408201526a65726f206164647265737360a81b606082015260800190565b60208082526026908201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746040820152651037bbb732b960d11b606082015260800190565b60208082526018908201527f43616e2774206164642061206e756c6c20616464726573730000000000000000604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601e908201527f5a65726f2061646472657373206e6f74206f6e20416c6c6f77204c6973740000604082015260600190565b60208082526015908201527450726553616c65206973206e6f742061637469766560581b604082015260600190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b6020808252601a908201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604082015260600190565b60208082526032908201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206040820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606082015260800190565b6020808252601690820152752a37ba30b61039bab838363c9032bc31b2b2b232b21760511b604082015260600190565b60208082526022908201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60408201526132b960f11b606082015260800190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b6020808252601d908201527f455243373231413a20746f6b656e20616c7265616479206d696e746564000000604082015260600190565b6020808252600d908201526c34b73b30b634b210383937b7b360991b604082015260600190565b60208082526021908201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526016908201527563616e206e6f74206d696e742074686973206d616e7960501b604082015260600190565b6020808252601390820152722a37ba30b61039bab838363c9039b832b73a1760691b604082015260600190565b6020808252601b908201527f496e7375666669656e742045544820616d6f756e742073656e742e0000000000604082015260600190565b6020808252602e908201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060408201526d0deeedccae440c4f240d2dcc8caf60931b606082015260800190565b6020808252601c908201527f50757263686173652065786365656473206d617820616c6c6f77656400000000604082015260600190565b6020808252602f908201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560408201526e1037bbb732b91037b3103a37b5b2b760891b606082015260800190565b6020808252601b908201527f416c6c20746f6b656e732068617665206265656e206d696e7465640000000000604082015260600190565b6020808252602d908201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560408201526c3c34b9ba32b73a103a37b5b2b760991b606082015260800190565b60208082526022908201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696040820152610ced60f31b606082015260800190565b6020808252818101527f43616e6e6f742070757263686173652074686973206d616e7920746f6b656e73604082015260600190565b604051601f8201601f191681016001600160401b03811182821017156137ee576137ee61397b565b604052919050565b60006001600160801b03808316818516808303821115612dc557612dc561394f565b6000821982111561382b5761382b61394f565b500190565b60008261383f5761383f613965565b500490565b600081600019048311821515161561385e5761385e61394f565b500290565b60006001600160801b03838116908316818110156138835761388361394f565b039392505050565b60008282101561389d5761389d61394f565b500390565b60005b838110156138bd5781810151838201526020016138a5565b83811115611bb45750506000910152565b6000816138dd576138dd61394f565b506000190190565b6002810460018216806138f957607f821691505b6020821081141561391a57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156139345761393461394f565b5060010190565b60008261394a5761394a613965565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114611dc257600080fdfea2646970667358221220b2228a87e7428b102a41a5804ddd4c02c5c62323407e7c3632171f25f08311c364736f6c63430008010033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000013830000000000000000000000000000000000000000000000000000000000001383000000000000000000000000000000000000000000000000000000000000006368747470733a2f2f6379616e2d757267656e742d76756c747572652d3939382e6d7970696e6174612e636c6f75642f697066732f516d54386576456e6366644e36413173366977364569576b674851555073534c765a5a56507055557675626361362f0000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : baseURI (string): https://cyan-urgent-vulture-998.mypinata.cloud/ipfs/QmT8evEncfdN6A1s6iw6EiWkgHQUPsSLvZZVPpUUvubca6/
Arg [1] : maxBatchSize_ (uint256): 4995
Arg [2] : collectionSize_ (uint256): 4995

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 0000000000000000000000000000000000000000000000000000000000001383
Arg [2] : 0000000000000000000000000000000000000000000000000000000000001383
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000063
Arg [4] : 68747470733a2f2f6379616e2d757267656e742d76756c747572652d3939382e
Arg [5] : 6d7970696e6174612e636c6f75642f697066732f516d54386576456e6366644e
Arg [6] : 36413173366977364569576b674851555073534c765a5a565070555576756263
Arg [7] : 61362f0000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

194:7940:11:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3280:184;;;;;;;;;;-1:-1:-1;3280:184:11;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3826:358:3;;;;;;;;;;-1:-1:-1;3826:358:3;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;5490:92::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;6955:200::-;;;;;;;;;;-1:-1:-1;6955:200:3;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;6533:369::-;;;;;;;;;;-1:-1:-1;6533:369:3;;;;;:::i;:::-;;:::i;:::-;;2432:92;;;;;;;;;;;;;:::i;4237:97:11:-;;;;;;;;;;;;;:::i;7773:136:3:-;;;;;;;;;;-1:-1:-1;7773:136:3;;;;;:::i;:::-;;:::i;2909:105:11:-;;;;;;;;;;-1:-1:-1;2909:105:11;;;;;:::i;:::-;;:::i;3046:721:3:-;;;;;;;;;;-1:-1:-1;3046:721:3;;;;;:::i;:::-;;:::i;3940:103:11:-;;;;;;;;;;-1:-1:-1;3940:103:11;;;;;:::i;:::-;;:::i;7867:265::-;;;;;;;;;;;;;:::i;2216:136::-;;;;;;;;;;-1:-1:-1;2216:136:11;;;;;:::i;:::-;;:::i;5760:926::-;;;;;;:::i;:::-;;:::i;7967:151:3:-;;;;;;;;;;-1:-1:-1;7967:151:3;;;;;:::i;:::-;;:::i;657:30:11:-;;;;;;;;;;;;;:::i;7557:306::-;;;;;;;;;;-1:-1:-1;7557:306:11;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;4889:83::-;;;;;;;;;;;;;:::i;6690:754::-;;;;;;:::i;:::-;;:::i;692:39::-;;;;;;;;;;;;;:::i;2588:174:3:-;;;;;;;;;;-1:-1:-1;2588:174:3;;;;;:::i;:::-;;:::i;4047:99:11:-;;;;;;;;;;-1:-1:-1;4047:99:11;;;;;:::i;:::-;;:::i;3753:90::-;;;;;;;;;;-1:-1:-1;3753:90:11;;;;;:::i;:::-;;:::i;535:32::-;;;;;;;;;;;;;:::i;4812:73::-;;;;;;;;;;;;;:::i;5320:116:3:-;;;;;;;;;;-1:-1:-1;5320:116:3;;;;;:::i;:::-;;:::i;299:38:11:-;;;;;;;;;;;;;:::i;4235:208:3:-;;;;;;;;;;-1:-1:-1;4235:208:3;;;;;:::i;:::-;;:::i;1661:101:10:-;;;;;;;;;;;;;:::i;5086:372:11:-;;;;;;;;;;;;;:::i;2572:333::-;;;;;;;;;;-1:-1:-1;2572:333:11;;;;;:::i;:::-;;:::i;2094:118::-;;;;;;;;;;-1:-1:-1;2094:118:11;;;;;:::i;:::-;;:::i;5462:294::-;;;;;;;;;;-1:-1:-1;5462:294:11;;;;;:::i;:::-;;:::i;2460:108::-;;;;;;;;;;-1:-1:-1;2460:108:11;;;;;:::i;:::-;;:::i;614:39::-;;;;;;;;;;;;;:::i;787:35::-;;;;;;;;;;;;;:::i;826:48::-;;;;;;;;;;;;;:::i;1029:85:10:-;;;;;;;;;;;;;:::i;4442:95:11:-;;;;;;;;;;;;;:::i;5638:96:3:-;;;;;;;;;;;;;:::i;2356:100:11:-;;;;;;;;;;-1:-1:-1;2356:100:11;;;;;:::i;:::-;;:::i;571:39::-;;;;;;;;;;;;;:::i;7214:269:3:-;;;;;;;;;;-1:-1:-1;7214:269:3;;;;;:::i;:::-;;:::i;3018:258:11:-;;;;;;;;;;-1:-1:-1;3018:258:11;;;;;:::i;:::-;;:::i;4150:83::-;;;;;;;;;;;;;:::i;8176:300:3:-;;;;;;;;;;-1:-1:-1;8176:300:3;;;;;:::i;:::-;;:::i;4719:89:11:-;;;;;;;;;;;;;:::i;5792:377:3:-;;;;;;;;;;-1:-1:-1;5792:377:3;;;;;:::i;:::-;;:::i;735:48:11:-;;;;;;;;;;;;;:::i;12446:43:3:-;;;;;;;;;;;;;:::i;4541:77:11:-;;;;;;;;;;-1:-1:-1;4541:77:11;;;;;:::i;:::-;;:::i;7448:105::-;;;;;;;;;;-1:-1:-1;7448:105:11;;;;;:::i;:::-;;:::i;4622:93::-;;;;;;;;;;;;;:::i;7541:178:3:-;;;;;;;;;;-1:-1:-1;7541:178:3;;;;;:::i;:::-;;:::i;1843:129:11:-;;;;;;;;;;-1:-1:-1;1843:129:11;;;;;:::i;:::-;;:::i;275:19::-;;;;;;;;;;;;;:::i;341:45::-;;;;;;;;;;;;;:::i;1976:114::-;;;;;;;;;;-1:-1:-1;1976:114:11;;;;;:::i;:::-;;:::i;4338:100::-;;;;;;;;;;;;;:::i;1911:198:10:-;;;;;;;;;;-1:-1:-1;1911:198:10;;;;;:::i;:::-;;:::i;3847:89:11:-;;;;;;;;;;-1:-1:-1;3847:89:11;;;;;:::i;:::-;;:::i;3656:93::-;;;;;;;;;;-1:-1:-1;3656:93:11;;;;;:::i;:::-;;:::i;3468:184::-;;;;;;;;;;-1:-1:-1;3468:184:11;;;;;:::i;:::-;;:::i;3280:::-;3346:7;-1:-1:-1;;;;;3368:19:11;;3360:62;;;;-1:-1:-1;;;3360:62:11;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;;;;;;3435:24:11;;;;;;:17;:24;;;;;;3280:184;;;;:::o;3826:358:3:-;3948:4;-1:-1:-1;;;;;;3975:40:3;;-1:-1:-1;;;3975:40:3;;:98;;-1:-1:-1;;;;;;;4025:48:3;;-1:-1:-1;;;4025:48:3;3975:98;:158;;;-1:-1:-1;;;;;;;4083:50:3;;-1:-1:-1;;;4083:50:3;3975:158;:204;;;;4143:36;4167:11;4143:23;:36::i;:::-;3962:217;3826:358;-1:-1:-1;;3826:358:3:o;5490:92::-;5544:13;5572:5;5565:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5490:92;:::o;6955:200::-;7023:7;7046:16;7054:7;7046;:16::i;:::-;7038:74;;;;-1:-1:-1;;;7038:74:3;;;;;;;:::i;:::-;-1:-1:-1;7126:24:3;;;;:15;:24;;;;;;-1:-1:-1;;;;;7126:24:3;;6955:200::o;6533:369::-;6601:13;6617:24;6633:7;6617:15;:24::i;:::-;6601:40;;6661:5;-1:-1:-1;;;;;6655:11:3;:2;-1:-1:-1;;;;;6655:11:3;;;6647:58;;;;-1:-1:-1;;;6647:58:3;;;;;;;:::i;:::-;6743:5;-1:-1:-1;;;;;6727:21:3;:12;:10;:12::i;:::-;-1:-1:-1;;;;;6727:21:3;;:62;;;;6752:37;6769:5;6776:12;:10;:12::i;6752:37::-;6712:150;;;;-1:-1:-1;;;6712:150:3;;;;;;;:::i;:::-;6869:28;6878:2;6882:7;6891:5;6869:8;:28::i;:::-;6533:369;;;:::o;2432:92::-;2485:7;2507:12;2432:92;:::o;4237:97:11:-;4313:16;;4237:97;:::o;7773:136:3:-;7876:28;7886:4;7892:2;7896:7;7876:9;:28::i;2909:105:11:-;-1:-1:-1;;;;;2993:16:11;2974:4;2993:16;;;:10;:16;;;;;;;;;2909:105::o;3046:721:3:-;3151:7;3184:16;3194:5;3184:9;:16::i;:::-;3176:5;:24;3168:71;;;;-1:-1:-1;;;3168:71:3;;;;;;;:::i;:::-;3245:22;3270:13;:11;:13::i;:::-;3245:38;;3289:19;3318:25;3367:9;3362:339;3386:14;3382:1;:18;3362:339;;;3415:31;3449:14;;;:11;:14;;;;;;;;;3415:48;;;;;;;;;-1:-1:-1;;;;;3415:48:3;;;;;-1:-1:-1;;;3415:48:3;;;-1:-1:-1;;;;;3415:48:3;;;;;;;;3475:28;3471:87;;3535:14;;;-1:-1:-1;3471:87:3;3590:5;-1:-1:-1;;;;;3569:26:3;:17;-1:-1:-1;;;;;3569:26:3;;3565:130;;;3626:5;3611:11;:20;3607:57;;;-1:-1:-1;3652:1:3;-1:-1:-1;3645:8:3;;-1:-1:-1;;;3645:8:3;3607:57;3673:13;;;;:::i;:::-;;;;3565:130;-1:-1:-1;3402:3:3;;;;:::i;:::-;;;;3362:339;;;;3706:56;;-1:-1:-1;;;3706:56:3;;;;;;;:::i;3940:103:11:-;1704:10;1693:7;:5;:7::i;:::-;-1:-1:-1;;;;;1693:21:11;;1685:30;;;;;;4013:16:::1;:25:::0;3940:103::o;7867:265::-;1704:10;1693:7;:5;:7::i;:::-;-1:-1:-1;;;;;1693:21:11;;1685:30;;;;;;7967:13:::1;::::0;7932:21:::1;::::0;-1:-1:-1;;;;;7967:13:11::1;7959:55;8008:5;7991:14;7932:21:::0;8001:4:::1;7991:14;:::i;:::-;:22;;;;:::i;:::-;7959:55;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;8028:13:11::1;::::0;-1:-1:-1;;;;;8028:13:11::1;8020:55;8069:5;8052:14;:7:::0;8062:4:::1;8052:14;:::i;:::-;:22;;;;:::i;:::-;8020:55;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;8089:7;:5;:7::i;:::-;-1:-1:-1::0;;;;;8081:25:11::1;:46;8121:5;8107:11;:7:::0;8117:1:::1;8107:11;:::i;:::-;:19;;;;:::i;:::-;8081:46;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;1721:1;7867:265::o:0;2216:136::-;1704:10;1693:7;:5;:7::i;:::-;-1:-1:-1;;;;;1693:21:11;;1685:30;;;;;;2305:19:::1;:42:::0;;;::::1;;;;-1:-1:-1::0;;2305:42:11;;::::1;::::0;;;::::1;::::0;;2216:136::o;5760:926::-;1600:17;;1583:13;:11;:13::i;:::-;:34;;1575:62;;;;-1:-1:-1;;;1575:62:11;;;;;;;:::i;:::-;1769:9:::1;1782:10;1769:23;1761:66;;;;-1:-1:-1::0;;;1761:66:11::1;;;;;;;:::i;:::-;5866:7:::2;:5;:7::i;:::-;-1:-1:-1::0;;;;;5852:21:11::2;:10;-1:-1:-1::0;;;;;5852:21:11::2;;5848:96;;5891:12;::::0;::::2;;5883:54;;;;-1:-1:-1::0;;;5883:54:11::2;;;;;;;:::i;:::-;5960:7;:5;:7::i;:::-;-1:-1:-1::0;;;;;5953:14:11::2;:3;-1:-1:-1::0;;;;;5953:14:11::2;;5950:127;;6012:29;;6002:6;5985:14;5995:3;5985:9;:14::i;:::-;:23;;;;:::i;:::-;:56;;5977:93;;;;-1:-1:-1::0;;;5977:93:11::2;;;;;;;:::i;:::-;6134:29;::::0;6110:10:::2;6091:30;::::0;;;:18:::2;:30;::::0;;;;;:39:::2;::::0;6124:6;;6091:39:::2;:::i;:::-;:72;;6083:113;;;;-1:-1:-1::0;;;6083:113:11::2;;;;;;;:::i;:::-;6236:17;;6226:6;6210:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:43;;6202:78;;;;-1:-1:-1::0;;;6202:78:11::2;;;;;;;:::i;:::-;6311:17;;6294:13;:11;:13::i;:::-;:34;;6286:66;;;;-1:-1:-1::0;;;6286:66:11::2;;;;;;;:::i;:::-;6410:23;6400:6;6373:24;6386:10;6373:12;:24::i;:::-;:33;;;;:::i;:::-;:60;;6358:113;;;;-1:-1:-1::0;;;6358:113:11::2;;;;;;;:::i;:::-;6486:19;::::0;;;::::2;;;6485:20;6477:52;;;;-1:-1:-1::0;;;6477:52:11::2;;;;;;;:::i;:::-;6568:6;6556:9;;:18;;;;:::i;:::-;6543:9;:31;;6535:71;;;;-1:-1:-1::0;;;6535:71:11::2;;;;;;;:::i;:::-;6632:10;6613:30;::::0;;;:18:::2;:30;::::0;;;;:40;;6647:6;;6613:30;:40:::2;::::0;6647:6;;6613:40:::2;:::i;:::-;::::0;;;-1:-1:-1;6659:22:11::2;::::0;-1:-1:-1;6669:3:11;6674:6;6659:9:::2;:22::i;7967:151:3:-:0;8074:39;8091:4;8097:2;8101:7;8074:39;;;;;;;;;;;;:16;:39::i;657:30:11:-;;;;;;;;;:::o;7557:306::-;7618:16;7642:15;7660:17;7670:6;7660:9;:17::i;:::-;7642:35;;7683:25;7725:10;-1:-1:-1;;;;;7711:25:11;;;;;-1:-1:-1;;;7711:25:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;7711:25:11;;7683:53;;7747:6;7743:95;7763:10;7759:1;:14;7743:95;;;7801:30;7821:6;7829:1;7801:19;:30::i;:::-;7787:8;7796:1;7787:11;;;;;;-1:-1:-1;;;7787:11:11;;;;;;;;;;;;;;;;;;:44;7775:3;;;;:::i;:::-;;;;7743:95;;;-1:-1:-1;7850:8:11;7557:306;-1:-1:-1;;;7557:306:11:o;4889:83::-;4938:7;4960;:5;:7::i;:::-;4953:14;;4889:83;:::o;6690:754::-;1600:17;;1583:13;:11;:13::i;:::-;:34;;1575:62;;;;-1:-1:-1;;;1575:62:11;;;;;;;:::i;:::-;6784:12:::1;6826:10;6809:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;6799:39;;;;;;6784:54;;6853:19;;;;;;;;;;;6845:53;;;;-1:-1:-1::0;;;6845:53:11::1;;;;;;;:::i;:::-;6926:4;::::0;6912:25:::1;::::0;:6;;6932:4;6912:13:::1;:25::i;:::-;6904:51;;;;-1:-1:-1::0;;;6904:51:11::1;;;;;;;:::i;:::-;6985:17;;6969:13;:11;:13::i;:::-;:33;6961:73;;;;-1:-1:-1::0;;;6961:73:11::1;;;;;;;:::i;:::-;7058:16;;7048:6;:26;;7040:71;;;;-1:-1:-1::0;;;7040:71:11::1;;;;;;;:::i;:::-;7167:16;::::0;7143:10:::1;7125:29;::::0;;;:17:::1;:29;::::0;;;;;:38:::1;::::0;7157:6;;7125:38:::1;:::i;:::-;:58;;7117:99;;;;-1:-1:-1::0;;;7117:99:11::1;;;;;;;:::i;:::-;7262:6;7243:16;;:25;;;;:::i;:::-;7230:9;:38;;7222:78;;;;-1:-1:-1::0;;;7222:78:11::1;;;;;;;:::i;:::-;7315:19;::::0;;;::::1;;;7314:20;7306:52;;;;-1:-1:-1::0;;;7306:52:11::1;;;;;;;:::i;:::-;7382:10;7364:29;::::0;;;:17:::1;:29;::::0;;;;:39;;7397:6;;7364:29;:39:::1;::::0;7397:6;;7364:39:::1;:::i;:::-;::::0;;;-1:-1:-1;7410:29:11::1;::::0;-1:-1:-1;7420:10:11::1;7432:6:::0;7410:9:::1;:29::i;692:39::-:0;;;;:::o;2588:174:3:-;2655:7;2686:13;:11;:13::i;:::-;2678:5;:21;2670:69;;;;-1:-1:-1;;;2670:69:3;;;;;;;:::i;:::-;-1:-1:-1;2752:5:3;2588:174::o;4047:99:11:-;1704:10;1693:7;:5;:7::i;:::-;-1:-1:-1;;;;;1693:21:11;;1685:30;;;;;;4118:23;;::::1;::::0;:13:::1;::::0;:23:::1;::::0;::::1;::::0;::::1;:::i;3753:90::-:0;1704:10;1693:7;:5;:7::i;:::-;-1:-1:-1;;;;;1693:21:11;;1685:30;;;;;;3817:15:::1;:21:::0;3753:90::o;535:32::-;;;;;;:::o;4812:73::-;4876:4;;4812:73;:::o;5320:116:3:-;5384:7;5406:20;5418:7;5406:11;:20::i;:::-;:25;;5320:116;-1:-1:-1;;5320:116:3:o;299:38:11:-;;;;:::o;4235:208:3:-;4299:7;-1:-1:-1;;;;;4322:19:3;;4314:75;;;;-1:-1:-1;;;4314:75:3;;;;;;;:::i;:::-;-1:-1:-1;;;;;;4410:19:3;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;4410:27:3;;4235:208::o;1661:101:10:-;1252:12;:10;:12::i;:::-;-1:-1:-1;;;;;1241:23:10;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1241:23:10;;1233:68;;;;-1:-1:-1;;;1233:68:10;;;;;;;:::i;:::-;1725:30:::1;1752:1;1725:18;:30::i;:::-;1661:101::o:0;5086:372:11:-;1704:10;1693:7;:5;:7::i;:::-;-1:-1:-1;;;;;1693:21:11;;1685:30;;;;;;5161:15:::1;;5144:13;;:32;;5136:72;;;;-1:-1:-1::0;;;5136:72:11::1;;;;;;;:::i;:::-;5256:17;;5238:14;;5222:13;:11;:13::i;:::-;:30;;;;:::i;:::-;:51;;5214:86;;;;-1:-1:-1::0;;;5214:86:11::1;;;;;;;:::i;:::-;5331:17;;5314:13;:11;:13::i;:::-;:34;;5306:66;;;;-1:-1:-1::0;;;5306:66:11::1;;;;;;;:::i;:::-;5396:14;;5379:13;;:31;;;;;;;:::i;:::-;;;;;;;;5416:37;5426:10;5438:14;;5416:9;:37::i;2572:333::-:0;1704:10;1693:7;:5;:7::i;:::-;-1:-1:-1;;;;;1693:21:11;;1685:30;;;;;;2661:9:::1;2656:245;2676:20:::0;;::::1;2656:245;;;2743:1;2719:9:::0;;2729:1;2719:12;;::::1;;;-1:-1:-1::0;;;2719:12:11::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;2719:26:11::1;;;2711:63;;;;-1:-1:-1::0;;;2711:63:11::1;;;;;;;:::i;:::-;2809:4;2782:10;:24;2793:9;;2803:1;2793:12;;;;;-1:-1:-1::0;;;2793:12:11::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;2782:24:11::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;2782:24:11;;;:31;;-1:-1:-1;;2782:31:11::1;::::0;::::1;;::::0;;;::::1;::::0;;;2821:17:::1;-1:-1:-1::0;2839:9:11;;2849:1;2839:12;;::::1;;;-1:-1:-1::0;;;2839:12:11::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;2821:31:11::1;-1:-1:-1::0;;;;;2821:31:11::1;;;;;;;;;;;;;:35;:73;;2893:1;2821:73;;;2859:17;:31;2877:9;;2887:1;2877:12;;;;;-1:-1:-1::0;;;2877:12:11::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;2859:31:11::1;-1:-1:-1::0;;;;;2859:31:11::1;;;;;;;;;;;;;2821:73;-1:-1:-1::0;2698:3:11;::::1;::::0;::::1;:::i;:::-;;;;2656:245;;2094:118:::0;1704:10;1693:7;:5;:7::i;:::-;-1:-1:-1;;;;;1693:21:11;;1685:30;;;;;;2174:17:::1;:33:::0;2094:118::o;5462:294::-;1704:10;1693:7;:5;:7::i;:::-;-1:-1:-1;;;;;1693:21:11;;1685:30;;;;;;5595:17:::1;;5585:6;5569:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:43;;5561:78;;;;-1:-1:-1::0;;;5561:78:11::1;;;;;;;:::i;:::-;5670:17;;5653:13;:11;:13::i;:::-;:34;;5645:66;;;;-1:-1:-1::0;;;5645:66:11::1;;;;;;;:::i;:::-;5718:33;5728:14;5744:6;5718:9;:33::i;2460:108::-:0;1704:10;1693:7;:5;:7::i;:::-;-1:-1:-1;;;;;1693:21:11;;1685:30;;;;;;2537:16:::1;:26:::0;2460:108::o;614:39::-;;;;;;;;;:::o;787:35::-;;;;:::o;826:48::-;;;:::o;1029:85:10:-;1101:6;;-1:-1:-1;;;;;1101:6:10;1029:85;:::o;4442:95:11:-;1704:10;1693:7;:5;:7::i;:::-;-1:-1:-1;;;;;1693:21:11;;1685:30;;;;;;4506:19:::1;:26:::0;;-1:-1:-1;;4506:26:11::1;::::0;::::1;::::0;;4442:95::o;5638:96:3:-;5694:13;5722:7;5715:14;;;;;:::i;2356:100:11:-;1704:10;1693:7;:5;:7::i;:::-;-1:-1:-1;;;;;1693:21:11;;1685:30;;;;;;2427:10:::1;:24:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;2427:24:11;;::::1;::::0;;;::::1;::::0;;2356:100::o;571:39::-;;;;;;;;;:::o;7214:269:3:-;7316:12;:10;:12::i;:::-;-1:-1:-1;;;;;7304:24:3;:8;-1:-1:-1;;;;;7304:24:3;;;7296:63;;;;-1:-1:-1;;;7296:63:3;;;;;;;:::i;:::-;7411:8;7366:18;:32;7385:12;:10;:12::i;:::-;-1:-1:-1;;;;;7366:32:3;;;;;;;;;;;;;;;;;-1:-1:-1;7366:32:3;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;7366:53:3;;;;;;;;;;;7445:12;:10;:12::i;:::-;-1:-1:-1;;;;;7430:48:3;;7469:8;7430:48;;;;;;:::i;:::-;;;;;;;;7214:269;;:::o;3018:258:11:-;1704:10;1693:7;:5;:7::i;:::-;-1:-1:-1;;;;;1693:21:11;;1685:30;;;;;;3112:9:::1;3107:165;3127:20:::0;;::::1;3107:165;;;3194:1;3170:9:::0;;3180:1;3170:12;;::::1;;;-1:-1:-1::0;;;3170:12:11::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;3170:26:11::1;;;3162:63;;;;-1:-1:-1::0;;;3162:63:11::1;;;;;;;:::i;:::-;3260:5;3233:10;:24;3244:9;;3254:1;3244:12;;;;;-1:-1:-1::0;;;3244:12:11::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;3233:24:11::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;3233:24:11;:32;;-1:-1:-1;;3233:32:11::1;::::0;::::1;;::::0;;;::::1;::::0;;3149:3;::::1;::::0;::::1;:::i;:::-;;;;3107:165;;4150:83:::0;4219:9;;4150:83;:::o;8176:300:3:-;8307:28;8317:4;8323:2;8327:7;8307:9;:28::i;:::-;8356:48;8379:4;8385:2;8389:7;8398:5;8356:22;:48::i;:::-;8341:130;;;;-1:-1:-1;;;8341:130:3;;;;;;;:::i;:::-;8176:300;;;;:::o;4719:89:11:-;4768:7;4790:13;:11;:13::i;5792:377:3:-;5885:13;5923:16;5931:7;5923;:16::i;:::-;5908:94;;;;-1:-1:-1;;;5908:94:3;;;;;;;:::i;:::-;6009:21;6033:10;:8;:10::i;:::-;6009:34;;6086:1;6068:7;6062:21;:25;:102;;;;;;;;;;;;;;;;;6122:7;6131:18;:7;:16;:18::i;:::-;6105:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;6062:102;6049:115;5792:377;-1:-1:-1;;;5792:377:3:o;735:48:11:-;;;;:::o;12446:43:3:-;;;;:::o;4541:77:11:-;1704:10;1693:7;:5;:7::i;:::-;-1:-1:-1;;;;;1693:21:11;;1685:30;;;;;;4601:4:::1;:12:::0;4541:77::o;7448:105::-;7506:7;7528:20;7542:5;7528:13;:20::i;4622:93::-;4696:14;;4622:93;:::o;7541:178:3:-;-1:-1:-1;;;;;7679:25:3;;;7658:4;7679:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;7541:178::o;1843:129:11:-;1704:10;1693:7;:5;:7::i;:::-;-1:-1:-1;;;;;1693:21:11;;1685:30;;;;;;1929:29:::1;:38:::0;1843:129::o;275:19::-;;;;:::o;341:45::-;;;;:::o;1976:114::-;1704:10;1693:7;:5;:7::i;:::-;-1:-1:-1;;;;;1693:21:11;;1685:30;;;;;;2037:12:::1;:18:::0;;-1:-1:-1;;2037:18:11::1;::::0;::::1;;;::::0;;2066:19:::1;::::0;::::1;::::0;::::1;::::0;2037:18;;2066:19:::1;:::i;:::-;;;;;;;;1976:114:::0;:::o;4338:100::-;4414:19;;;;;;;;4338:100::o;1911:198:10:-;1252:12;:10;:12::i;:::-;-1:-1:-1;;;;;1241:23:10;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1241:23:10;;1233:68;;;;-1:-1:-1;;;1233:68:10;;;;;;;:::i;:::-;-1:-1:-1;;;;;1999:22:10;::::1;1991:73;;;;-1:-1:-1::0;;;1991:73:10::1;;;;;;;:::i;:::-;2074:28;2093:8;2074:18;:28::i;:::-;1911:198:::0;:::o;3847:89:11:-;1704:10;1693:7;:5;:7::i;:::-;-1:-1:-1;;;;;1693:21:11;;1685:30;;;;;;3913:9:::1;:18:::0;3847:89::o;3656:93::-;1704:10;1693:7;:5;:7::i;:::-;-1:-1:-1;;;;;1693:21:11;;1685:30;;;;;;3724:14:::1;:20:::0;3656:93::o;3468:184::-;3533:7;-1:-1:-1;;;;;3555:19:11;;3547:62;;;;-1:-1:-1;;;3547:62:11;;;;;;;:::i;:::-;-1:-1:-1;;;;;;3622:25:11;;;;;:18;:25;;;;;;;3468:184::o;829:155:2:-;-1:-1:-1;;;;;;937:40:2;;-1:-1:-1;;;937:40:2;829:155;;;:::o;8706:103:3:-;8763:4;8792:12;-1:-1:-1;8782:22:3;8706:103::o;640:96:1:-;719:10;640:96;:::o;12277:165:3:-;12369:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;12369:29:3;-1:-1:-1;;;;;12369:29:3;;;;;;;;;12409:28;;12369:24;;12409:28;;;;;;;12277:165;;;:::o;10694:1484::-;10786:35;10824:20;10836:7;10824:11;:20::i;:::-;10786:58;;10851:22;10893:13;:18;;;-1:-1:-1;;;;;10877:34:3;:12;:10;:12::i;:::-;-1:-1:-1;;;;;10877:34:3;;:80;;;;10945:12;:10;:12::i;:::-;-1:-1:-1;;;;;10921:36:3;:20;10933:7;10921:11;:20::i;:::-;-1:-1:-1;;;;;10921:36:3;;10877:80;:140;;;-1:-1:-1;10984:18:3;;10967:50;;11004:12;:10;:12::i;10967:50::-;10851:167;;11040:17;11025:98;;;;-1:-1:-1;;;11025:98:3;;;;;;;:::i;:::-;11167:4;-1:-1:-1;;;;;11145:26:3;:13;:18;;;-1:-1:-1;;;;;11145:26:3;;11130:95;;;;-1:-1:-1;;;11130:95:3;;;;;;;:::i;:::-;-1:-1:-1;;;;;11239:16:3;;11231:66;;;;-1:-1:-1;;;11231:66:3;;;;;;;:::i;:::-;11304:43;11326:4;11332:2;11336:7;11345:1;11304:21;:43::i;:::-;11401:49;11418:1;11422:7;11431:13;:18;;;11401:8;:49::i;:::-;-1:-1:-1;;;;;11457:18:3;;;;;;:12;:18;;;;;:31;;11487:1;;11457:18;:31;;11487:1;;-1:-1:-1;;;;;11457:31:3;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;11457:31:3;;;;;;;;;;;;;;;-1:-1:-1;;;;;11494:16:3;;-1:-1:-1;11494:16:3;;;:12;:16;;;;;:29;;-1:-1:-1;;;11494:16:3;;:29;;-1:-1:-1;;11494:29:3;;:::i;:::-;;;-1:-1:-1;;;;;11494:29:3;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;11552:43:3;;;;;;;;-1:-1:-1;;;;;11552:43:3;;;;;-1:-1:-1;;;;;11578:15:3;11552:43;;;;;;;;;-1:-1:-1;11529:20:3;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;11529:66:3;-1:-1:-1;;;;11529:66:3;;;;-1:-1:-1;;;;;;11529:66:3;;;;;;;;11841:11;11541:7;-1:-1:-1;11841:11:3;:::i;:::-;11903:1;11862:24;;;:11;:24;;;;;:29;11819:33;;-1:-1:-1;;;;;;11862:29:3;11858:229;;11919:20;11927:11;11919:7;:20::i;:::-;11915:166;;;11978:94;;;;;;;;12004:18;;-1:-1:-1;;;;;11978:94:3;;;;;;12034:28;;;;-1:-1:-1;;;;;11978:94:3;;;;;;;;;-1:-1:-1;11951:24:3;;;:11;:24;;;;;;;:121;;;;;;-1:-1:-1;;;;;;11951:121:3;;;;;;;;;-1:-1:-1;;;;11951:121:3;-1:-1:-1;;;11951:121:3;;;;;;;;;;;;;;11915:166;12117:7;12113:2;-1:-1:-1;;;;;12098:27:3;12107:4;-1:-1:-1;;;;;12098:27:3;;;;;;;;;;;12131:42;12152:4;12158:2;12162:7;12171:1;12131:20;:42::i;:::-;10694:1484;;;;;;:::o;8813:96::-;8877:27;8887:2;8891:8;8877:27;;;;;;;;;;;;:9;:27::i;1154:184:9:-;1275:4;1327;1298:25;1311:5;1318:4;1298:12;:25::i;:::-;:33;;1154:184;-1:-1:-1;;;;1154:184:9:o;4685:586:3:-;4758:21;;:::i;:::-;4797:16;4805:7;4797;:16::i;:::-;4789:71;;;;-1:-1:-1;;;4789:71:3;;;;;;;:::i;:::-;4867:26;4914:12;4903:7;:23;4899:91;;4957:22;4967:12;4957:7;:22;:::i;:::-;:26;;4982:1;4957:26;:::i;:::-;4936:47;;4899:91;5016:7;4996:207;5033:18;5025:4;:26;4996:207;;5069:31;5103:17;;;:11;:17;;;;;;;;;5069:51;;;;;;;;;-1:-1:-1;;;;;5069:51:3;;;;;-1:-1:-1;;;5069:51:3;;;-1:-1:-1;;;;;5069:51:3;;;;;;;;5132:28;5128:69;;5179:9;-1:-1:-1;5172:16:3;;-1:-1:-1;;5172:16:3;5128:69;-1:-1:-1;5053:6:3;;;;:::i;:::-;;;;4996:207;;;;5209:57;;-1:-1:-1;;;5209:57:3;;;;;;;:::i;2263:187:10:-;2355:6;;;-1:-1:-1;;;;;2371:17:10;;;-1:-1:-1;;;;;;2371:17:10;;;;;;;2403:40;;2355:6;;;2371:17;2355:6;;2403:40;;2336:16;;2403:40;2263:187;;:::o;13947:667:3:-;14079:4;14095:15;:2;-1:-1:-1;;;;;14095:13:3;;:15::i;:::-;14091:519;;;14148:2;-1:-1:-1;;;;;14132:36:3;;14169:12;:10;:12::i;:::-;14183:4;14189:7;14198:5;14132:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;14132:72:3;;;;;;;;-1:-1:-1;;14132:72:3;;;;;;;;;;;;:::i;:::-;;;14120:452;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;14359:13:3;;14355:209;;14391:61;;-1:-1:-1;;;14391:61:3;;;;;;;:::i;14355:209::-;14534:6;14528:13;14519:6;14515:2;14511:15;14504:38;14120:452;-1:-1:-1;;;;;;14252:55:3;-1:-1:-1;;;14252:55:3;;-1:-1:-1;14245:62:3;;14091:519;-1:-1:-1;14599:4:3;14091:519;13947:667;;;;;;:::o;4976:106:11:-;5036:13;5064;5057:20;;;;;:::i;328:703:12:-;384:13;601:10;597:51;;-1:-1:-1;627:10:12;;;;;;;;;;;;-1:-1:-1;;;627:10:12;;;;;;597:51;672:5;657:12;711:75;718:9;;711:75;;743:8;;;;:::i;:::-;;-1:-1:-1;765:10:12;;-1:-1:-1;773:2:12;765:10;;:::i;:::-;;;711:75;;;795:19;827:6;-1:-1:-1;;;;;817:17:12;;;;;-1:-1:-1;;;817:17:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;817:17:12;;795:39;;844:150;851:10;;844:150;;877:11;887:1;877:11;;:::i;:::-;;-1:-1:-1;945:10:12;953:2;945:5;:10;:::i;:::-;932:24;;:2;:24;:::i;:::-;919:39;;902:6;909;902:14;;;;;;-1:-1:-1;;;902:14:12;;;;;;;;;;;;:56;-1:-1:-1;;;;;902:56:12;;;;;;;;-1:-1:-1;972:11:12;981:2;972:11;;:::i;:::-;;;844:150;;4447:234:3;4508:7;-1:-1:-1;;;;;4538:19:3;;4523:99;;;;-1:-1:-1;;;4523:99:3;;;;;;;:::i;:::-;-1:-1:-1;;;;;;4643:19:3;;;;;:12;:19;;;;;:32;-1:-1:-1;;;4643:32:3;;-1:-1:-1;;;;;4643:32:3;;4447:234::o;9235:1239::-;9335:20;9358:12;-1:-1:-1;;;;;9384:16:3;;9376:62;;;;-1:-1:-1;;;9376:62:3;;;;;;;:::i;:::-;9573:21;9581:12;9573:7;:21::i;:::-;9572:22;9564:64;;;;-1:-1:-1;;;9564:64:3;;;;;;;:::i;:::-;9654:12;9642:8;:24;;9634:71;;;;-1:-1:-1;;;9634:71:3;;;;;;;:::i;:::-;9712:61;9742:1;9746:2;9750:12;9764:8;9712:21;:61::i;:::-;-1:-1:-1;;;;;9813:16:3;;9780:30;9813:16;;;:12;:16;;;;;;;;;9780:49;;;;;;;;;-1:-1:-1;;;;;9780:49:3;;;;;-1:-1:-1;;;9780:49:3;;;;;;;;;;;9854:116;;;;;;;;9873:19;;9780:49;;9854:116;;;9873:39;;9903:8;;9873:39;:::i;:::-;-1:-1:-1;;;;;9854:116:3;;;;;9955:8;9920:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;9854:116:3;;;;;;-1:-1:-1;;;;;9835:16:3;;;;;;;:12;:16;;;;;;;;:135;;;;;;;;;;-1:-1:-1;;;9835:135:3;;;;-1:-1:-1;;9835:135:3;;;;;;;;;;;;;;;;;10004:43;;;;;;;;;;-1:-1:-1;;;;;10030:15:3;10004:43;;;;;;;;9976:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;9976:71:3;-1:-1:-1;;;;9976:71:3;;;;-1:-1:-1;;;;;;9976:71:3;;;;;;;;;;;;;;;9988:12;;10096:274;10120:8;10116:1;:12;10096:274;;;10148:38;;10173:12;;-1:-1:-1;;;;;10148:38:3;;;10165:1;;10148:38;;10165:1;;10148:38;10211:59;10242:1;10246:2;10250:12;10264:5;10211:22;:59::i;:::-;10194:147;;;;-1:-1:-1;;;10194:147:3;;;;;;;:::i;:::-;10349:14;;;;:::i;:::-;;;;10130:3;;;;;:::i;:::-;;;;10096:274;;;-1:-1:-1;10376:12:3;:27;;;10409:60;;10442:2;10446:12;10460:8;10409:20;:60::i;1689:662:9:-;1772:7;1814:4;1772:7;1828:488;1852:5;:12;1848:1;:16;1828:488;;;1885:20;1908:5;1914:1;1908:8;;;;;;-1:-1:-1;;;1908:8:9;;;;;;;;;;;;;;;1885:31;;1950:12;1934;:28;1930:376;;2075:42;2090:12;2104;2075:14;:42::i;:::-;2060:57;;1930:376;;;2249:42;2264:12;2278;2249:14;:42::i;:::-;2234:57;;1930:376;-1:-1:-1;1866:3:9;;;;:::i;:::-;;;;1828:488;;1175:320:0;-1:-1:-1;;;;;1465:19:0;;:23;;;1175:320::o;2357:218:9:-;2425:13;2473:15;;;2508:4;2501:15;2554:4;2538:21;;;2459:110::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;14:408:13;;-1:-1:-1;;;;;106:6:13;103:30;100:2;;;136:18;;:::i;:::-;174:57;219:2;198:15;;-1:-1:-1;;194:29:13;225:4;190:40;174:57;:::i;:::-;165:66;;254:6;247:5;240:21;294:3;285:6;280:3;276:16;273:25;270:2;;;311:1;308;301:12;270:2;360:6;355:3;348:4;341:5;337:16;324:43;414:1;407:4;398:6;391:5;387:18;383:29;376:40;90:332;;;;;:::o;427:175::-;497:20;;-1:-1:-1;;;;;546:31:13;;536:42;;526:2;;592:1;589;582:12;607:162;674:20;;730:13;;723:21;713:32;;703:2;;759:1;756;749:12;774:198;;886:2;874:9;865:7;861:23;857:32;854:2;;;907:6;899;892:22;854:2;935:31;956:9;935:31;:::i;977:274::-;;;1106:2;1094:9;1085:7;1081:23;1077:32;1074:2;;;1127:6;1119;1112:22;1074:2;1155:31;1176:9;1155:31;:::i;:::-;1145:41;;1205:40;1241:2;1230:9;1226:18;1205:40;:::i;:::-;1195:50;;1064:187;;;;;:::o;1256:342::-;;;;1402:2;1390:9;1381:7;1377:23;1373:32;1370:2;;;1423:6;1415;1408:22;1370:2;1451:31;1472:9;1451:31;:::i;:::-;1441:41;;1501:40;1537:2;1526:9;1522:18;1501:40;:::i;:::-;1491:50;;1588:2;1577:9;1573:18;1560:32;1550:42;;1360:238;;;;;:::o;1603:702::-;;;;;1775:3;1763:9;1754:7;1750:23;1746:33;1743:2;;;1797:6;1789;1782:22;1743:2;1825:31;1846:9;1825:31;:::i;:::-;1815:41;;1875:40;1911:2;1900:9;1896:18;1875:40;:::i;:::-;1865:50;;1962:2;1951:9;1947:18;1934:32;1924:42;;2017:2;2006:9;2002:18;1989:32;-1:-1:-1;;;;;2036:6:13;2033:30;2030:2;;;2081:6;2073;2066:22;2030:2;2109:22;;2162:4;2154:13;;2150:27;-1:-1:-1;2140:2:13;;2196:6;2188;2181:22;2140:2;2224:75;2291:7;2286:2;2273:16;2268:2;2264;2260:11;2224:75;:::i;:::-;2214:85;;;1733:572;;;;;;;:::o;2310:268::-;;;2436:2;2424:9;2415:7;2411:23;2407:32;2404:2;;;2457:6;2449;2442:22;2404:2;2485:31;2506:9;2485:31;:::i;:::-;2475:41;;2535:37;2568:2;2557:9;2553:18;2535:37;:::i;2583:266::-;;;2712:2;2700:9;2691:7;2687:23;2683:32;2680:2;;;2733:6;2725;2718:22;2680:2;2761:31;2782:9;2761:31;:::i;:::-;2751:41;2839:2;2824:18;;;;2811:32;;-1:-1:-1;;;2670:179:13:o;2854:666::-;;;3001:2;2989:9;2980:7;2976:23;2972:32;2969:2;;;3022:6;3014;3007:22;2969:2;3067:9;3054:23;-1:-1:-1;;;;;3137:2:13;3129:6;3126:14;3123:2;;;3158:6;3150;3143:22;3123:2;3201:6;3190:9;3186:22;3176:32;;3246:7;3239:4;3235:2;3231:13;3227:27;3217:2;;3273:6;3265;3258:22;3217:2;3318;3305:16;3344:2;3336:6;3333:14;3330:2;;;3365:6;3357;3350:22;3330:2;3424:7;3419:2;3413;3405:6;3401:15;3397:2;3393:24;3389:33;3386:46;3383:2;;;3450:6;3442;3435:22;3383:2;3486;3478:11;;;;;3508:6;;-1:-1:-1;2959:561:13;;-1:-1:-1;;;;2959:561:13:o;3525:192::-;;3634:2;3622:9;3613:7;3609:23;3605:32;3602:2;;;3655:6;3647;3640:22;3602:2;3683:28;3701:9;3683:28;:::i;3722:190::-;;3834:2;3822:9;3813:7;3809:23;3805:32;3802:2;;;3855:6;3847;3840:22;3802:2;-1:-1:-1;3883:23:13;;3792:120;-1:-1:-1;3792:120:13:o;3917:257::-;;4028:2;4016:9;4007:7;4003:23;3999:32;3996:2;;;4049:6;4041;4034:22;3996:2;4093:9;4080:23;4112:32;4138:5;4112:32;:::i;4179:261::-;;4301:2;4289:9;4280:7;4276:23;4272:32;4269:2;;;4322:6;4314;4307:22;4269:2;4359:9;4353:16;4378:32;4404:5;4378:32;:::i;4445:482::-;;4567:2;4555:9;4546:7;4542:23;4538:32;4535:2;;;4588:6;4580;4573:22;4535:2;4633:9;4620:23;-1:-1:-1;;;;;4658:6:13;4655:30;4652:2;;;4703:6;4695;4688:22;4652:2;4731:22;;4784:4;4776:13;;4772:27;-1:-1:-1;4762:2:13;;4818:6;4810;4803:22;4762:2;4846:75;4913:7;4908:2;4895:16;4890:2;4886;4882:11;4846:75;:::i;5127:1071::-;;;5281:2;5269:9;5260:7;5256:23;5252:32;5249:2;;;5302:6;5294;5287:22;5249:2;5343:9;5330:23;5320:33;;5372:2;5425;5414:9;5410:18;5397:32;-1:-1:-1;;;;;5489:2:13;5481:6;5478:14;5475:2;;;5510:6;5502;5495:22;5475:2;5553:6;5542:9;5538:22;5528:32;;5598:7;5591:4;5587:2;5583:13;5579:27;5569:2;;5625:6;5617;5610:22;5569:2;5666;5653:16;5688:2;5684;5681:10;5678:2;;;5694:18;;:::i;:::-;5741:2;5737;5733:11;5723:21;;5764:28;5788:2;5784;5780:11;5764:28;:::i;:::-;5826:15;;;5857:12;;;;5889:11;;;5919;;;5915:20;;5912:33;-1:-1:-1;5909:2:13;;;5963:6;5955;5948:22;5909:2;5990:6;5981:15;;6005:163;6019:2;6016:1;6013:9;6005:163;;;6076:17;;6064:30;;6037:1;6030:9;;;;;6114:12;;;;6146;;6005:163;;;6009:3;6187:5;6177:15;;;;;;;;5239:959;;;;;:::o;6203:259::-;;6284:5;6278:12;6311:6;6306:3;6299:19;6327:63;6383:6;6376:4;6371:3;6367:14;6360:4;6353:5;6349:16;6327:63;:::i;:::-;6444:2;6423:15;-1:-1:-1;;6419:29:13;6410:39;;;;6451:4;6406:50;;6254:208;-1:-1:-1;;6254:208:13:o;6467:229::-;6616:2;6612:15;;;;-1:-1:-1;;6608:53:13;6596:66;;6687:2;6678:12;;6586:110::o;6701:470::-;;6918:6;6912:13;6934:53;6980:6;6975:3;6968:4;6960:6;6956:17;6934:53;:::i;:::-;7050:13;;7009:16;;;;7072:57;7050:13;7009:16;7106:4;7094:17;;7072:57;:::i;:::-;7145:20;;6888:283;-1:-1:-1;;;;6888:283:13:o;7176:203::-;-1:-1:-1;;;;;7340:32:13;;;;7322:51;;7310:2;7295:18;;7277:102::o;7384:490::-;-1:-1:-1;;;;;7653:15:13;;;7635:34;;7705:15;;7700:2;7685:18;;7678:43;7752:2;7737:18;;7730:34;;;7800:3;7795:2;7780:18;;7773:31;;;7384:490;;7821:47;;7848:19;;7840:6;7821:47;:::i;:::-;7813:55;7587:287;-1:-1:-1;;;;;;7587:287:13:o;7879:635::-;8050:2;8102:21;;;8172:13;;8075:18;;;8194:22;;;7879:635;;8050:2;8273:15;;;;8247:2;8232:18;;;7879:635;8319:169;8333:6;8330:1;8327:13;8319:169;;;8394:13;;8382:26;;8463:15;;;;8428:12;;;;8355:1;8348:9;8319:169;;;-1:-1:-1;8505:3:13;;8030:484;-1:-1:-1;;;;;;8030:484:13:o;8519:187::-;8684:14;;8677:22;8659:41;;8647:2;8632:18;;8614:92::o;8711:177::-;8857:25;;;8845:2;8830:18;;8812:76::o;8893:221::-;;9042:2;9031:9;9024:21;9062:46;9104:2;9093:9;9089:18;9081:6;9062:46;:::i;9119:398::-;9321:2;9303:21;;;9360:2;9340:18;;;9333:30;9399:34;9394:2;9379:18;;9372:62;-1:-1:-1;;;9465:2:13;9450:18;;9443:32;9507:3;9492:19;;9293:224::o;9522:351::-;9724:2;9706:21;;;9763:2;9743:18;;;9736:30;9802:29;9797:2;9782:18;;9775:57;9864:2;9849:18;;9696:177::o;9878:353::-;10080:2;10062:21;;;10119:2;10099:18;;;10092:30;10158:31;10153:2;10138:18;;10131:59;10222:2;10207:18;;10052:179::o;10236:402::-;10438:2;10420:21;;;10477:2;10457:18;;;10450:30;10516:34;10511:2;10496:18;;10489:62;-1:-1:-1;;;10582:2:13;10567:18;;10560:36;10628:3;10613:19;;10410:228::o;10643:406::-;10845:2;10827:21;;;10884:2;10864:18;;;10857:30;10923:34;10918:2;10903:18;;10896:62;-1:-1:-1;;;10989:2:13;10974:18;;10967:40;11039:3;11024:19;;10817:232::o;11054:343::-;11256:2;11238:21;;;11295:2;11275:18;;;11268:30;-1:-1:-1;;;11329:2:13;11314:18;;11307:49;11388:2;11373:18;;11228:169::o;11402:348::-;11604:2;11586:21;;;11643:2;11623:18;;;11616:30;11682:26;11677:2;11662:18;;11655:54;11741:2;11726:18;;11576:174::o;11755:399::-;11957:2;11939:21;;;11996:2;11976:18;;;11969:30;12035:34;12030:2;12015:18;;12008:62;-1:-1:-1;;;12101:2:13;12086:18;;12079:33;12144:3;12129:19;;11929:225::o;12159:339::-;12361:2;12343:21;;;12400:2;12380:18;;;12373:30;-1:-1:-1;;;12434:2:13;12419:18;;12412:45;12489:2;12474:18;;12333:165::o;12503:401::-;12705:2;12687:21;;;12744:2;12724:18;;;12717:30;12783:34;12778:2;12763:18;;12756:62;-1:-1:-1;;;12849:2:13;12834:18;;12827:35;12894:3;12879:19;;12677:227::o;12909:413::-;13111:2;13093:21;;;13150:2;13130:18;;;13123:30;13189:34;13184:2;13169:18;;13162:62;-1:-1:-1;;;13255:2:13;13240:18;;13233:47;13312:3;13297:19;;13083:239::o;13327:354::-;13529:2;13511:21;;;13568:2;13548:18;;;13541:30;13607:32;13602:2;13587:18;;13580:60;13672:2;13657:18;;13501:180::o;13686:421::-;13888:2;13870:21;;;13927:2;13907:18;;;13900:30;13966:34;13961:2;13946:18;;13939:62;14037:27;14032:2;14017:18;;14010:55;14097:3;14082:19;;13860:247::o;14112:407::-;14314:2;14296:21;;;14353:2;14333:18;;;14326:30;14392:34;14387:2;14372:18;;14365:62;-1:-1:-1;;;14458:2:13;14443:18;;14436:41;14509:3;14494:19;;14286:233::o;14524:402::-;14726:2;14708:21;;;14765:2;14745:18;;;14738:30;14804:34;14799:2;14784:18;;14777:62;-1:-1:-1;;;14870:2:13;14855:18;;14848:36;14916:3;14901:19;;14698:228::o;14931:348::-;15133:2;15115:21;;;15172:2;15152:18;;;15145:30;15211:26;15206:2;15191:18;;15184:54;15270:2;15255:18;;15105:174::o;15284:356::-;15486:2;15468:21;;;15505:18;;;15498:30;15564:34;15559:2;15544:18;;15537:62;15631:2;15616:18;;15458:182::o;15645:354::-;15847:2;15829:21;;;15886:2;15866:18;;;15859:30;15925:32;15920:2;15905:18;;15898:60;15990:2;15975:18;;15819:180::o;16004:345::-;16206:2;16188:21;;;16245:2;16225:18;;;16218:30;-1:-1:-1;;;16279:2:13;16264:18;;16257:51;16340:2;16325:18;;16178:171::o;16354:411::-;16556:2;16538:21;;;16595:2;16575:18;;;16568:30;16634:34;16629:2;16614:18;;16607:62;-1:-1:-1;;;16700:2:13;16685:18;;16678:45;16755:3;16740:19;;16528:237::o;16770:350::-;16972:2;16954:21;;;17011:2;16991:18;;;16984:30;17050:28;17045:2;17030:18;;17023:56;17111:2;17096:18;;16944:176::o;17125:414::-;17327:2;17309:21;;;17366:2;17346:18;;;17339:30;17405:34;17400:2;17385:18;;17378:62;-1:-1:-1;;;17471:2:13;17456:18;;17449:48;17529:3;17514:19;;17299:240::o;17544:346::-;17746:2;17728:21;;;17785:2;17765:18;;;17758:30;-1:-1:-1;;;17819:2:13;17804:18;;17797:52;17881:2;17866:18;;17718:172::o;17895:398::-;18097:2;18079:21;;;18136:2;18116:18;;;18109:30;18175:34;18170:2;18155:18;;18148:62;-1:-1:-1;;;18241:2:13;18226:18;;18219:32;18283:3;18268:19;;18069:224::o;18298:415::-;18500:2;18482:21;;;18539:2;18519:18;;;18512:30;18578:34;18573:2;18558:18;;18551:62;-1:-1:-1;;;18644:2:13;18629:18;;18622:49;18703:3;18688:19;;18472:241::o;18718:353::-;18920:2;18902:21;;;18959:2;18939:18;;;18932:30;18998:31;18993:2;18978:18;;18971:59;19062:2;19047:18;;18892:179::o;19076:337::-;19278:2;19260:21;;;19317:2;19297:18;;;19290:30;-1:-1:-1;;;19351:2:13;19336:18;;19329:43;19404:2;19389:18;;19250:163::o;19418:397::-;19620:2;19602:21;;;19659:2;19639:18;;;19632:30;19698:34;19693:2;19678:18;;19671:62;-1:-1:-1;;;19764:2:13;19749:18;;19742:31;19805:3;19790:19;;19592:223::o;19820:346::-;20022:2;20004:21;;;20061:2;20041:18;;;20034:30;-1:-1:-1;;;20095:2:13;20080:18;;20073:52;20157:2;20142:18;;19994:172::o;20171:343::-;20373:2;20355:21;;;20412:2;20392:18;;;20385:30;-1:-1:-1;;;20446:2:13;20431:18;;20424:49;20505:2;20490:18;;20345:169::o;20519:351::-;20721:2;20703:21;;;20760:2;20740:18;;;20733:30;20799:29;20794:2;20779:18;;20772:57;20861:2;20846:18;;20693:177::o;20875:410::-;21077:2;21059:21;;;21116:2;21096:18;;;21089:30;21155:34;21150:2;21135:18;;21128:62;-1:-1:-1;;;21221:2:13;21206:18;;21199:44;21275:3;21260:19;;21049:236::o;21290:352::-;21492:2;21474:21;;;21531:2;21511:18;;;21504:30;21570;21565:2;21550:18;;21543:58;21633:2;21618:18;;21464:178::o;21647:411::-;21849:2;21831:21;;;21888:2;21868:18;;;21861:30;21927:34;21922:2;21907:18;;21900:62;-1:-1:-1;;;21993:2:13;21978:18;;21971:45;22048:3;22033:19;;21821:237::o;22063:351::-;22265:2;22247:21;;;22304:2;22284:18;;;22277:30;22343:29;22338:2;22323:18;;22316:57;22405:2;22390:18;;22237:177::o;22419:409::-;22621:2;22603:21;;;22660:2;22640:18;;;22633:30;22699:34;22694:2;22679:18;;22672:62;-1:-1:-1;;;22765:2:13;22750:18;;22743:43;22818:3;22803:19;;22593:235::o;22833:398::-;23035:2;23017:21;;;23074:2;23054:18;;;23047:30;23113:34;23108:2;23093:18;;23086:62;-1:-1:-1;;;23179:2:13;23164:18;;23157:32;23221:3;23206:19;;23007:224::o;23236:356::-;23438:2;23420:21;;;23457:18;;;23450:30;23516:34;23511:2;23496:18;;23489:62;23583:2;23568:18;;23410:182::o;23779:275::-;23850:2;23844:9;23915:2;23896:13;;-1:-1:-1;;23892:27:13;23880:40;;-1:-1:-1;;;;;23935:34:13;;23971:22;;;23932:62;23929:2;;;23997:18;;:::i;:::-;24033:2;24026:22;23824:230;;-1:-1:-1;23824:230:13:o;24059:253::-;;-1:-1:-1;;;;;24188:2:13;24185:1;24181:10;24218:2;24215:1;24211:10;24249:3;24245:2;24241:12;24236:3;24233:21;24230:2;;;24257:18;;:::i;24317:128::-;;24388:1;24384:6;24381:1;24378:13;24375:2;;;24394:18;;:::i;:::-;-1:-1:-1;24430:9:13;;24365:80::o;24450:120::-;;24516:1;24506:2;;24521:18;;:::i;:::-;-1:-1:-1;24555:9:13;;24496:74::o;24575:168::-;;24681:1;24677;24673:6;24669:14;24666:1;24663:21;24658:1;24651:9;24644:17;24640:45;24637:2;;;24688:18;;:::i;:::-;-1:-1:-1;24728:9:13;;24627:116::o;24748:246::-;;-1:-1:-1;;;;;24901:10:13;;;;24871;;24923:12;;;24920:2;;;24938:18;;:::i;:::-;24975:13;;24797:197;-1:-1:-1;;;24797:197:13:o;24999:125::-;;25067:1;25064;25061:8;25058:2;;;25072:18;;:::i;:::-;-1:-1:-1;25109:9:13;;25048:76::o;25129:258::-;25201:1;25211:113;25225:6;25222:1;25219:13;25211:113;;;25301:11;;;25295:18;25282:11;;;25275:39;25247:2;25240:10;25211:113;;;25342:6;25339:1;25336:13;25333:2;;;-1:-1:-1;;25377:1:13;25359:16;;25352:27;25182:205::o;25392:136::-;;25459:5;25449:2;;25468:18;;:::i;:::-;-1:-1:-1;;;25504:18:13;;25439:89::o;25533:380::-;25618:1;25608:12;;25665:1;25655:12;;;25676:2;;25730:4;25722:6;25718:17;25708:27;;25676:2;25783;25775:6;25772:14;25752:18;25749:38;25746:2;;;25829:10;25824:3;25820:20;25817:1;25810:31;25864:4;25861:1;25854:15;25892:4;25889:1;25882:15;25746:2;;25588:325;;;:::o;25918:135::-;;-1:-1:-1;;25978:17:13;;25975:2;;;25998:18;;:::i;:::-;-1:-1:-1;26045:1:13;26034:13;;25965:88::o;26058:112::-;;26116:1;26106:2;;26121:18;;:::i;:::-;-1:-1:-1;26155:9:13;;26096:74::o;26175:127::-;26236:10;26231:3;26227:20;26224:1;26217:31;26267:4;26264:1;26257:15;26291:4;26288:1;26281:15;26307:127;26368:10;26363:3;26359:20;26356:1;26349:31;26399:4;26396:1;26389:15;26423:4;26420:1;26413:15;26439:127;26500:10;26495:3;26491:20;26488:1;26481:31;26531:4;26528:1;26521:15;26555:4;26552:1;26545:15;26571:133;-1:-1:-1;;;;;;26647:32:13;;26637:43;;26627:2;;26694:1;26691;26684:12

Swarm Source

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