ETH Price: $3,166.34 (+1.82%)
Gas: 1 Gwei

Token

SpookyBatsSociety (SPOOKYBATS)
 

Overview

Max Total Supply

292 SPOOKYBATS

Holders

67

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Filtered by Token Holder
notstevejobs.eth
Balance
5 SPOOKYBATS
0x1e01e4f8c0591a6940a0ef80c9de6a6a94d067e5
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:
SpookyBatsSociety

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-01-26
*/

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/utils/Strings.sol



pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

// File: @openzeppelin/contracts/utils/Address.sol



pragma solidity ^0.8.0;

/**
 * @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
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol



pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol



pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol



pragma solidity ^0.8.0;


/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol



pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol



pragma solidity ^0.8.0;


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

    /**
     * @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: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol



pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

// File: @openzeppelin/contracts/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: tests/ERC721A.sol


// Creators: locationtba.eth, 2pmflow.eth

pragma solidity ^0.8.0;









/**
 * @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..).
 *
 * 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 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.
   */
  constructor(
    string memory name_,
    string memory symbol_,
    uint256 maxBatchSize_
  ) {
    require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero");
    _name = name_;
    _symbol = symbol_;
    maxBatchSize = maxBatchSize_;
  }

  /**
   * @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(totalSupply). 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(),".json"))
        : "";
  }

  /**
   * @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:
   *
   * - `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 > currentIndex - 1) {
      endIndex = currentIndex - 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: @openzeppelin/contracts/access/Ownable.sol



pragma solidity ^0.8.0;


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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _setOwner(_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 {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol



pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and make it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}




pragma solidity ^0.8.0;




contract SpookyBatsSociety is Ownable, ERC721A, ReentrancyGuard {

    // constants
    uint256 constant MAX_FREE_ELEMENT = 1000;    
    uint256 constant MAX_ELEMENT_PER_USER = 5;

    uint256 constant MAX_ELEMENTS = 4444;     
    uint256 constant MAX_ELEMENTS_ONE_TIME = 10;
    uint256 constant PUBLIC_PRICE = 0.01 ether;

    // state variable
    string public baseExtension = ".json";
    bool public MINTING_PAUSED = true;
    string public baseTokenURI;
    string public _contractURI = "";
    mapping(address => uint256) private freeMemberList;

    constructor(uint256 maxBatchSize_) ERC721A("SpookyBatsSociety", "SPOOKYBATS", maxBatchSize_) {}

    function setPauseMinting(bool _pause) public onlyOwner {
        MINTING_PAUSED = _pause;
    }

    function getMintCount(address _addr) public view returns (uint256) {
        return freeMemberList[_addr];
    }

    function freeMint(uint256 numberOfTokens) external payable {
        require(!MINTING_PAUSED, "Minting is not active");
        require(totalSupply() < MAX_FREE_ELEMENT, 'All free tokens have been minted');
        require(totalSupply() + numberOfTokens <= MAX_FREE_ELEMENT, 'Total free purchase would exceed max(1000) supply');
        require(freeMemberList[msg.sender] + numberOfTokens <= MAX_ELEMENT_PER_USER, 'Your free purchase would exceed max(5) supply');

        _safeMint(msg.sender, numberOfTokens);
        freeMemberList[msg.sender] += numberOfTokens;
    }

    function publicMint(uint256 numberOfTokens) external payable {
        require(!MINTING_PAUSED, "Minting is not active");
        require(totalSupply() >= MAX_FREE_ELEMENT, 'Free tokens should be minted');
        require(totalSupply() < MAX_ELEMENTS, 'All tokens have been minted');
        require(totalSupply() + numberOfTokens <= MAX_ELEMENTS, 'Purchase would exceed max supply');
        require(numberOfTokens <= MAX_ELEMENTS_ONE_TIME, "Purchase at a time excessds max allowed.");
        require(PUBLIC_PRICE * numberOfTokens <= msg.value, 'ETH amount is not sufficient');

        _safeMint(msg.sender, numberOfTokens);
    }
    
    function withdraw() external onlyOwner {
        uint256 balance = address(this).balance;

        payable(msg.sender).transfer(balance);
    }

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

    function setBaseURI(string calldata baseURI) public onlyOwner {
        baseTokenURI = baseURI;
    }

    function setContractURI(string calldata URI) external onlyOwner {
        _contractURI = URI;
    }
    
    function contractURI() public view returns (string memory) {
        return _contractURI;
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"uint256","name":"maxBatchSize_","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":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MINTING_PAUSED","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"}],"name":"freeMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"getMintCount","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":"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":[],"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":"numberOfTokens","type":"uint256"}],"name":"publicMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_pause","type":"bool"}],"name":"setPauseMinting","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":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6000600181905560085560e0604052600560a081905264173539b7b760d91b60c09081526200003291600a9190620001ef565b50600b805460ff191660011790556040805160208101918290526000908190526200006091600d91620001ef565b503480156200006e57600080fd5b506040516200284038038062002840833981016040819052620000919162000295565b6040518060400160405280601181526020017053706f6f6b7942617473536f636965747960781b8152506040518060400160405280600a81526020016953504f4f4b594241545360b01b81525082620000f9620000f36200019b60201b60201c565b6200019f565b600081116200015e5760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b606482015260840160405180910390fd5b825162000173906002906020860190620001ef565b50815162000189906003906020850190620001ef565b506080525050600160095550620002ec565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b828054620001fd90620002af565b90600052602060002090601f0160209004810192826200022157600085556200026c565b82601f106200023c57805160ff19168380011785556200026c565b828001600101855582156200026c579182015b828111156200026c5782518255916020019190600101906200024f565b506200027a9291506200027e565b5090565b5b808211156200027a57600081556001016200027f565b600060208284031215620002a857600080fd5b5051919050565b600181811c90821680620002c457607f821691505b60208210811415620002e657634e487b7160e01b600052602260045260246000fd5b50919050565b60805161252a620003166000396000818161181d015281816118470152611c6d015261252a6000f3fe6080604052600436106101e35760003560e01c80638da5cb5b11610102578063c668286211610095578063e8a3d48511610064578063e8a3d48514610546578063e985e9c51461055b578063f2fde38b146105a4578063f6e024a8146105c457600080fd5b8063c6682862146104e6578063c87b56dd146104fb578063d547cfb71461051b578063d7224ba01461053057600080fd5b8063a22cb465116100d1578063a22cb4651461045b578063a2801f571461047b578063b88d4fde146104b1578063c0e72740146104d157600080fd5b80638da5cb5b146103e8578063938e3d7b1461040657806395d89b41146104265780639f2ec9f21461043b57600080fd5b80633ccfd60b1161017a5780636352211e116101495780636352211e1461038057806370a08231146103a0578063715018a6146103c05780637c928fe9146103d557600080fd5b80633ccfd60b1461030b57806342842e0e146103205780634f6ccce71461034057806355f804b31461036057600080fd5b806318160ddd116101b657806318160ddd1461029957806323b872dd146102b85780632db11544146102d85780632f745c59146102eb57600080fd5b806301ffc9a7146101e857806306fdde031461021d578063081812fc1461023f578063095ea7b314610277575b600080fd5b3480156101f457600080fd5b5061020861020336600461211c565b6105de565b60405190151581526020015b60405180910390f35b34801561022957600080fd5b5061023261064b565b6040516102149190612289565b34801561024b57600080fd5b5061025f61025a3660046121c8565b6106dd565b6040516001600160a01b039091168152602001610214565b34801561028357600080fd5b506102976102923660046120d7565b61076d565b005b3480156102a557600080fd5b506001545b604051908152602001610214565b3480156102c457600080fd5b506102976102d3366004611f95565b610885565b6102976102e63660046121c8565b610890565b3480156102f757600080fd5b506102aa6103063660046120d7565b610ac2565b34801561031757600080fd5b50610297610c3b565b34801561032c57600080fd5b5061029761033b366004611f95565b610c98565b34801561034c57600080fd5b506102aa61035b3660046121c8565b610cb3565b34801561036c57600080fd5b5061029761037b366004612156565b610d1c565b34801561038c57600080fd5b5061025f61039b3660046121c8565b610d52565b3480156103ac57600080fd5b506102aa6103bb366004611f47565b610d64565b3480156103cc57600080fd5b50610297610df5565b6102976103e33660046121c8565b610e2b565b3480156103f457600080fd5b506000546001600160a01b031661025f565b34801561041257600080fd5b50610297610421366004612156565b611001565b34801561043257600080fd5b50610232611037565b34801561044757600080fd5b50610297610456366004612101565b611046565b34801561046757600080fd5b506102976104763660046120ad565b611083565b34801561048757600080fd5b506102aa610496366004611f47565b6001600160a01b03166000908152600e602052604090205490565b3480156104bd57600080fd5b506102976104cc366004611fd1565b611148565b3480156104dd57600080fd5b50610232611181565b3480156104f257600080fd5b5061023261120f565b34801561050757600080fd5b506102326105163660046121c8565b61121c565b34801561052757600080fd5b506102326112e9565b34801561053c57600080fd5b506102aa60085481565b34801561055257600080fd5b506102326112f6565b34801561056757600080fd5b50610208610576366004611f62565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156105b057600080fd5b506102976105bf366004611f47565b611305565b3480156105d057600080fd5b50600b546102089060ff1681565b60006001600160e01b031982166380ac58cd60e01b148061060f57506001600160e01b03198216635b5e139f60e01b145b8061062a57506001600160e01b0319821663780e9d6360e01b145b8061064557506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461065a9061241c565b80601f01602080910402602001604051908101604052809291908181526020018280546106869061241c565b80156106d35780601f106106a8576101008083540402835291602001916106d3565b820191906000526020600020905b8154815290600101906020018083116106b657829003601f168201915b5050505050905090565b60006106ea826001541190565b6107515760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061077882610d52565b9050806001600160a01b0316836001600160a01b031614156107e75760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610748565b336001600160a01b038216148061080357506108038133610576565b6108755760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610748565b61088083838361139d565b505050565b6108808383836113f9565b600b5460ff16156108db5760405162461bcd60e51b81526020600482015260156024820152744d696e74696e67206973206e6f742061637469766560581b6044820152606401610748565b6103e86108e760015490565b10156109355760405162461bcd60e51b815260206004820152601c60248201527f4672656520746f6b656e732073686f756c64206265206d696e746564000000006044820152606401610748565b61115c61094160015490565b1061098e5760405162461bcd60e51b815260206004820152601b60248201527f416c6c20746f6b656e732068617665206265656e206d696e74656400000000006044820152606401610748565b61115c8161099b60015490565b6109a5919061234f565b11156109f35760405162461bcd60e51b815260206004820181905260248201527f507572636861736520776f756c6420657863656564206d617820737570706c796044820152606401610748565b600a811115610a555760405162461bcd60e51b815260206004820152602860248201527f507572636861736520617420612074696d65206578636573736473206d61782060448201526730b63637bbb2b21760c11b6064820152608401610748565b34610a6782662386f26fc1000061237b565b1115610ab55760405162461bcd60e51b815260206004820152601c60248201527f45544820616d6f756e74206973206e6f742073756666696369656e74000000006044820152606401610748565b610abf3382611781565b50565b6000610acd83610d64565b8210610b265760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610748565b6000610b3160015490565b905060008060005b83811015610bdb576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610b8c57805192505b876001600160a01b0316836001600160a01b03161415610bc85786841415610bba5750935061064592505050565b83610bc481612457565b9450505b5080610bd381612457565b915050610b39565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610748565b6000546001600160a01b03163314610c655760405162461bcd60e51b81526004016107489061229c565b6040514790339082156108fc029083906000818181858888f19350505050158015610c94573d6000803e3d6000fd5b5050565b61088083838360405180602001604052806000815250611148565b6000610cbe60015490565b8210610d185760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610748565b5090565b6000546001600160a01b03163314610d465760405162461bcd60e51b81526004016107489061229c565b610880600c8383611e8b565b6000610d5d8261179b565b5192915050565b60006001600160a01b038216610dd05760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610748565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b6000546001600160a01b03163314610e1f5760405162461bcd60e51b81526004016107489061229c565b610e296000611945565b565b600b5460ff1615610e765760405162461bcd60e51b81526020600482015260156024820152744d696e74696e67206973206e6f742061637469766560581b6044820152606401610748565b6103e8610e8260015490565b10610ecf5760405162461bcd60e51b815260206004820181905260248201527f416c6c206672656520746f6b656e732068617665206265656e206d696e7465646044820152606401610748565b6103e881610edc60015490565b610ee6919061234f565b1115610f4e5760405162461bcd60e51b815260206004820152603160248201527f546f74616c206672656520707572636861736520776f756c6420657863656564604482015270206d617828313030302920737570706c7960781b6064820152608401610748565b336000908152600e6020526040902054600590610f6c90839061234f565b1115610fd05760405162461bcd60e51b815260206004820152602d60248201527f596f7572206672656520707572636861736520776f756c64206578636565642060448201526c6d617828352920737570706c7960981b6064820152608401610748565b610fda3382611781565b336000908152600e602052604081208054839290610ff990849061234f565b909155505050565b6000546001600160a01b0316331461102b5760405162461bcd60e51b81526004016107489061229c565b610880600d8383611e8b565b60606003805461065a9061241c565b6000546001600160a01b031633146110705760405162461bcd60e51b81526004016107489061229c565b600b805460ff1916911515919091179055565b6001600160a01b0382163314156110dc5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610748565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6111538484846113f9565b61115f84848484611995565b61117b5760405162461bcd60e51b8152600401610748906122d1565b50505050565b600d805461118e9061241c565b80601f01602080910402602001604051908101604052809291908181526020018280546111ba9061241c565b80156112075780601f106111dc57610100808354040283529160200191611207565b820191906000526020600020905b8154815290600101906020018083116111ea57829003601f168201915b505050505081565b600a805461118e9061241c565b6060611229826001541190565b61128d5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610748565b6000611297611aa3565b905060008151116112b757604051806020016040528060008152506112e2565b806112c184611ab2565b6040516020016112d292919061220d565b6040516020818303038152906040525b9392505050565b600c805461118e9061241c565b6060600d805461065a9061241c565b6000546001600160a01b0316331461132f5760405162461bcd60e51b81526004016107489061229c565b6001600160a01b0381166113945760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610748565b610abf81611945565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006114048261179b565b80519091506000906001600160a01b0316336001600160a01b0316148061143b575033611430846106dd565b6001600160a01b0316145b8061144d5750815161144d9033610576565b9050806114b75760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610748565b846001600160a01b031682600001516001600160a01b03161461152b5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610748565b6001600160a01b03841661158f5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610748565b61159f600084846000015161139d565b6001600160a01b03851660009081526005602052604081208054600192906115d19084906001600160801b031661239a565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b0386166000908152600560205260408120805460019450909261161d91859116612324565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526004909152948520935184549151909216600160a01b026001600160e01b031990911691909216171790556116a584600161234f565b6000818152600460205260409020549091506001600160a01b0316611737576116cf816001541190565b156117375760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600490935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b610c94828260405180602001604052806000815250611bb0565b60408051808201909152600080825260208201526117ba826001541190565b6118195760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610748565b60007f0000000000000000000000000000000000000000000000000000000000000000831061187a5761186c7f0000000000000000000000000000000000000000000000000000000000000000846123c2565b61187790600161234f565b90505b825b8181106118e4576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156118d157949350505050565b50806118dc81612405565b91505061187c565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610748565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006001600160a01b0384163b15611a9757604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906119d990339089908890889060040161224c565b602060405180830381600087803b1580156119f357600080fd5b505af1925050508015611a23575060408051601f3d908101601f19168201909252611a2091810190612139565b60015b611a7d573d808015611a51576040519150601f19603f3d011682016040523d82523d6000602084013e611a56565b606091505b508051611a755760405162461bcd60e51b8152600401610748906122d1565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611a9b565b5060015b949350505050565b6060600c805461065a9061241c565b606081611ad65750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611b005780611aea81612457565b9150611af99050600a83612367565b9150611ada565b60008167ffffffffffffffff811115611b1b57611b1b6124c8565b6040519080825280601f01601f191660200182016040528015611b45576020820181803683370190505b5090505b8415611a9b57611b5a6001836123c2565b9150611b67600a86612472565b611b7290603061234f565b60f81b818381518110611b8757611b876124b2565b60200101906001600160f81b031916908160001a905350611ba9600a86612367565b9450611b49565b6001546001600160a01b038416611c135760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610748565b611c1e816001541190565b15611c6b5760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610748565b7f0000000000000000000000000000000000000000000000000000000000000000831115611ce65760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610748565b6001600160a01b0384166000908152600560209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190611d42908790612324565b6001600160801b03168152602001858360200151611d609190612324565b6001600160801b039081169091526001600160a01b0380881660008181526005602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526004909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b85811015611e805760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611e446000888488611995565b611e605760405162461bcd60e51b8152600401610748906122d1565b81611e6a81612457565b9250508080611e7890612457565b915050611df7565b506001819055611779565b828054611e979061241c565b90600052602060002090601f016020900481019282611eb95760008555611eff565b82601f10611ed25782800160ff19823516178555611eff565b82800160010185558215611eff579182015b82811115611eff578235825591602001919060010190611ee4565b50610d189291505b80821115610d185760008155600101611f07565b80356001600160a01b0381168114611f3257600080fd5b919050565b80358015158114611f3257600080fd5b600060208284031215611f5957600080fd5b6112e282611f1b565b60008060408385031215611f7557600080fd5b611f7e83611f1b565b9150611f8c60208401611f1b565b90509250929050565b600080600060608486031215611faa57600080fd5b611fb384611f1b565b9250611fc160208501611f1b565b9150604084013590509250925092565b60008060008060808587031215611fe757600080fd5b611ff085611f1b565b9350611ffe60208601611f1b565b925060408501359150606085013567ffffffffffffffff8082111561202257600080fd5b818701915087601f83011261203657600080fd5b813581811115612048576120486124c8565b604051601f8201601f19908116603f01168101908382118183101715612070576120706124c8565b816040528281528a602084870101111561208957600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600080604083850312156120c057600080fd5b6120c983611f1b565b9150611f8c60208401611f37565b600080604083850312156120ea57600080fd5b6120f383611f1b565b946020939093013593505050565b60006020828403121561211357600080fd5b6112e282611f37565b60006020828403121561212e57600080fd5b81356112e2816124de565b60006020828403121561214b57600080fd5b81516112e2816124de565b6000806020838503121561216957600080fd5b823567ffffffffffffffff8082111561218157600080fd5b818501915085601f83011261219557600080fd5b8135818111156121a457600080fd5b8660208285010111156121b657600080fd5b60209290920196919550909350505050565b6000602082840312156121da57600080fd5b5035919050565b600081518084526121f98160208601602086016123d9565b601f01601f19169290920160200192915050565b6000835161221f8184602088016123d9565b8351908301906122338183602088016123d9565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061227f908301846121e1565b9695505050505050565b6020815260006112e260208301846121e1565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60006001600160801b0380831681851680830382111561234657612346612486565b01949350505050565b6000821982111561236257612362612486565b500190565b6000826123765761237661249c565b500490565b600081600019048311821515161561239557612395612486565b500290565b60006001600160801b03838116908316818110156123ba576123ba612486565b039392505050565b6000828210156123d4576123d4612486565b500390565b60005b838110156123f45781810151838201526020016123dc565b8381111561117b5750506000910152565b60008161241457612414612486565b506000190190565b600181811c9082168061243057607f821691505b6020821081141561245157634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561246b5761246b612486565b5060010190565b6000826124815761248161249c565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610abf57600080fdfea2646970667358221220520978de3350c9e0d085a38bdb2c0728ea854b86b7a1ca5b89540d9fcc54ddbe64736f6c63430008070033000000000000000000000000000000000000000000000000000000000000115c

Deployed Bytecode

0x6080604052600436106101e35760003560e01c80638da5cb5b11610102578063c668286211610095578063e8a3d48511610064578063e8a3d48514610546578063e985e9c51461055b578063f2fde38b146105a4578063f6e024a8146105c457600080fd5b8063c6682862146104e6578063c87b56dd146104fb578063d547cfb71461051b578063d7224ba01461053057600080fd5b8063a22cb465116100d1578063a22cb4651461045b578063a2801f571461047b578063b88d4fde146104b1578063c0e72740146104d157600080fd5b80638da5cb5b146103e8578063938e3d7b1461040657806395d89b41146104265780639f2ec9f21461043b57600080fd5b80633ccfd60b1161017a5780636352211e116101495780636352211e1461038057806370a08231146103a0578063715018a6146103c05780637c928fe9146103d557600080fd5b80633ccfd60b1461030b57806342842e0e146103205780634f6ccce71461034057806355f804b31461036057600080fd5b806318160ddd116101b657806318160ddd1461029957806323b872dd146102b85780632db11544146102d85780632f745c59146102eb57600080fd5b806301ffc9a7146101e857806306fdde031461021d578063081812fc1461023f578063095ea7b314610277575b600080fd5b3480156101f457600080fd5b5061020861020336600461211c565b6105de565b60405190151581526020015b60405180910390f35b34801561022957600080fd5b5061023261064b565b6040516102149190612289565b34801561024b57600080fd5b5061025f61025a3660046121c8565b6106dd565b6040516001600160a01b039091168152602001610214565b34801561028357600080fd5b506102976102923660046120d7565b61076d565b005b3480156102a557600080fd5b506001545b604051908152602001610214565b3480156102c457600080fd5b506102976102d3366004611f95565b610885565b6102976102e63660046121c8565b610890565b3480156102f757600080fd5b506102aa6103063660046120d7565b610ac2565b34801561031757600080fd5b50610297610c3b565b34801561032c57600080fd5b5061029761033b366004611f95565b610c98565b34801561034c57600080fd5b506102aa61035b3660046121c8565b610cb3565b34801561036c57600080fd5b5061029761037b366004612156565b610d1c565b34801561038c57600080fd5b5061025f61039b3660046121c8565b610d52565b3480156103ac57600080fd5b506102aa6103bb366004611f47565b610d64565b3480156103cc57600080fd5b50610297610df5565b6102976103e33660046121c8565b610e2b565b3480156103f457600080fd5b506000546001600160a01b031661025f565b34801561041257600080fd5b50610297610421366004612156565b611001565b34801561043257600080fd5b50610232611037565b34801561044757600080fd5b50610297610456366004612101565b611046565b34801561046757600080fd5b506102976104763660046120ad565b611083565b34801561048757600080fd5b506102aa610496366004611f47565b6001600160a01b03166000908152600e602052604090205490565b3480156104bd57600080fd5b506102976104cc366004611fd1565b611148565b3480156104dd57600080fd5b50610232611181565b3480156104f257600080fd5b5061023261120f565b34801561050757600080fd5b506102326105163660046121c8565b61121c565b34801561052757600080fd5b506102326112e9565b34801561053c57600080fd5b506102aa60085481565b34801561055257600080fd5b506102326112f6565b34801561056757600080fd5b50610208610576366004611f62565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b3480156105b057600080fd5b506102976105bf366004611f47565b611305565b3480156105d057600080fd5b50600b546102089060ff1681565b60006001600160e01b031982166380ac58cd60e01b148061060f57506001600160e01b03198216635b5e139f60e01b145b8061062a57506001600160e01b0319821663780e9d6360e01b145b8061064557506301ffc9a760e01b6001600160e01b03198316145b92915050565b60606002805461065a9061241c565b80601f01602080910402602001604051908101604052809291908181526020018280546106869061241c565b80156106d35780601f106106a8576101008083540402835291602001916106d3565b820191906000526020600020905b8154815290600101906020018083116106b657829003601f168201915b5050505050905090565b60006106ea826001541190565b6107515760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b60648201526084015b60405180910390fd5b506000908152600660205260409020546001600160a01b031690565b600061077882610d52565b9050806001600160a01b0316836001600160a01b031614156107e75760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610748565b336001600160a01b038216148061080357506108038133610576565b6108755760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610748565b61088083838361139d565b505050565b6108808383836113f9565b600b5460ff16156108db5760405162461bcd60e51b81526020600482015260156024820152744d696e74696e67206973206e6f742061637469766560581b6044820152606401610748565b6103e86108e760015490565b10156109355760405162461bcd60e51b815260206004820152601c60248201527f4672656520746f6b656e732073686f756c64206265206d696e746564000000006044820152606401610748565b61115c61094160015490565b1061098e5760405162461bcd60e51b815260206004820152601b60248201527f416c6c20746f6b656e732068617665206265656e206d696e74656400000000006044820152606401610748565b61115c8161099b60015490565b6109a5919061234f565b11156109f35760405162461bcd60e51b815260206004820181905260248201527f507572636861736520776f756c6420657863656564206d617820737570706c796044820152606401610748565b600a811115610a555760405162461bcd60e51b815260206004820152602860248201527f507572636861736520617420612074696d65206578636573736473206d61782060448201526730b63637bbb2b21760c11b6064820152608401610748565b34610a6782662386f26fc1000061237b565b1115610ab55760405162461bcd60e51b815260206004820152601c60248201527f45544820616d6f756e74206973206e6f742073756666696369656e74000000006044820152606401610748565b610abf3382611781565b50565b6000610acd83610d64565b8210610b265760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610748565b6000610b3160015490565b905060008060005b83811015610bdb576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff169183019190915215610b8c57805192505b876001600160a01b0316836001600160a01b03161415610bc85786841415610bba5750935061064592505050565b83610bc481612457565b9450505b5080610bd381612457565b915050610b39565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610748565b6000546001600160a01b03163314610c655760405162461bcd60e51b81526004016107489061229c565b6040514790339082156108fc029083906000818181858888f19350505050158015610c94573d6000803e3d6000fd5b5050565b61088083838360405180602001604052806000815250611148565b6000610cbe60015490565b8210610d185760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610748565b5090565b6000546001600160a01b03163314610d465760405162461bcd60e51b81526004016107489061229c565b610880600c8383611e8b565b6000610d5d8261179b565b5192915050565b60006001600160a01b038216610dd05760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610748565b506001600160a01b03166000908152600560205260409020546001600160801b031690565b6000546001600160a01b03163314610e1f5760405162461bcd60e51b81526004016107489061229c565b610e296000611945565b565b600b5460ff1615610e765760405162461bcd60e51b81526020600482015260156024820152744d696e74696e67206973206e6f742061637469766560581b6044820152606401610748565b6103e8610e8260015490565b10610ecf5760405162461bcd60e51b815260206004820181905260248201527f416c6c206672656520746f6b656e732068617665206265656e206d696e7465646044820152606401610748565b6103e881610edc60015490565b610ee6919061234f565b1115610f4e5760405162461bcd60e51b815260206004820152603160248201527f546f74616c206672656520707572636861736520776f756c6420657863656564604482015270206d617828313030302920737570706c7960781b6064820152608401610748565b336000908152600e6020526040902054600590610f6c90839061234f565b1115610fd05760405162461bcd60e51b815260206004820152602d60248201527f596f7572206672656520707572636861736520776f756c64206578636565642060448201526c6d617828352920737570706c7960981b6064820152608401610748565b610fda3382611781565b336000908152600e602052604081208054839290610ff990849061234f565b909155505050565b6000546001600160a01b0316331461102b5760405162461bcd60e51b81526004016107489061229c565b610880600d8383611e8b565b60606003805461065a9061241c565b6000546001600160a01b031633146110705760405162461bcd60e51b81526004016107489061229c565b600b805460ff1916911515919091179055565b6001600160a01b0382163314156110dc5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610748565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b6111538484846113f9565b61115f84848484611995565b61117b5760405162461bcd60e51b8152600401610748906122d1565b50505050565b600d805461118e9061241c565b80601f01602080910402602001604051908101604052809291908181526020018280546111ba9061241c565b80156112075780601f106111dc57610100808354040283529160200191611207565b820191906000526020600020905b8154815290600101906020018083116111ea57829003601f168201915b505050505081565b600a805461118e9061241c565b6060611229826001541190565b61128d5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610748565b6000611297611aa3565b905060008151116112b757604051806020016040528060008152506112e2565b806112c184611ab2565b6040516020016112d292919061220d565b6040516020818303038152906040525b9392505050565b600c805461118e9061241c565b6060600d805461065a9061241c565b6000546001600160a01b0316331461132f5760405162461bcd60e51b81526004016107489061229c565b6001600160a01b0381166113945760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610748565b610abf81611945565b60008281526006602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006114048261179b565b80519091506000906001600160a01b0316336001600160a01b0316148061143b575033611430846106dd565b6001600160a01b0316145b8061144d5750815161144d9033610576565b9050806114b75760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610748565b846001600160a01b031682600001516001600160a01b03161461152b5760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610748565b6001600160a01b03841661158f5760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610748565b61159f600084846000015161139d565b6001600160a01b03851660009081526005602052604081208054600192906115d19084906001600160801b031661239a565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b0386166000908152600560205260408120805460019450909261161d91859116612324565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b03808716825267ffffffffffffffff428116602080850191825260008981526004909152948520935184549151909216600160a01b026001600160e01b031990911691909216171790556116a584600161234f565b6000818152600460205260409020549091506001600160a01b0316611737576116cf816001541190565b156117375760408051808201825284516001600160a01b03908116825260208087015167ffffffffffffffff9081168285019081526000878152600490935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45b505050505050565b610c94828260405180602001604052806000815250611bb0565b60408051808201909152600080825260208201526117ba826001541190565b6118195760405162461bcd60e51b815260206004820152602a60248201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736044820152693a32b73a103a37b5b2b760b11b6064820152608401610748565b60007f000000000000000000000000000000000000000000000000000000000000115c831061187a5761186c7f000000000000000000000000000000000000000000000000000000000000115c846123c2565b61187790600161234f565b90505b825b8181106118e4576000818152600460209081526040918290208251808401909352546001600160a01b038116808452600160a01b90910467ffffffffffffffff1691830191909152156118d157949350505050565b50806118dc81612405565b91505061187c565b5060405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610748565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60006001600160a01b0384163b15611a9757604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906119d990339089908890889060040161224c565b602060405180830381600087803b1580156119f357600080fd5b505af1925050508015611a23575060408051601f3d908101601f19168201909252611a2091810190612139565b60015b611a7d573d808015611a51576040519150601f19603f3d011682016040523d82523d6000602084013e611a56565b606091505b508051611a755760405162461bcd60e51b8152600401610748906122d1565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611a9b565b5060015b949350505050565b6060600c805461065a9061241c565b606081611ad65750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611b005780611aea81612457565b9150611af99050600a83612367565b9150611ada565b60008167ffffffffffffffff811115611b1b57611b1b6124c8565b6040519080825280601f01601f191660200182016040528015611b45576020820181803683370190505b5090505b8415611a9b57611b5a6001836123c2565b9150611b67600a86612472565b611b7290603061234f565b60f81b818381518110611b8757611b876124b2565b60200101906001600160f81b031916908160001a905350611ba9600a86612367565b9450611b49565b6001546001600160a01b038416611c135760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610748565b611c1e816001541190565b15611c6b5760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610748565b7f000000000000000000000000000000000000000000000000000000000000115c831115611ce65760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610748565b6001600160a01b0384166000908152600560209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190611d42908790612324565b6001600160801b03168152602001858360200151611d609190612324565b6001600160801b039081169091526001600160a01b0380881660008181526005602090815260408083208751978301518716600160801b0297909616969096179094558451808601865291825267ffffffffffffffff4281168386019081528883526004909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b85811015611e805760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4611e446000888488611995565b611e605760405162461bcd60e51b8152600401610748906122d1565b81611e6a81612457565b9250508080611e7890612457565b915050611df7565b506001819055611779565b828054611e979061241c565b90600052602060002090601f016020900481019282611eb95760008555611eff565b82601f10611ed25782800160ff19823516178555611eff565b82800160010185558215611eff579182015b82811115611eff578235825591602001919060010190611ee4565b50610d189291505b80821115610d185760008155600101611f07565b80356001600160a01b0381168114611f3257600080fd5b919050565b80358015158114611f3257600080fd5b600060208284031215611f5957600080fd5b6112e282611f1b565b60008060408385031215611f7557600080fd5b611f7e83611f1b565b9150611f8c60208401611f1b565b90509250929050565b600080600060608486031215611faa57600080fd5b611fb384611f1b565b9250611fc160208501611f1b565b9150604084013590509250925092565b60008060008060808587031215611fe757600080fd5b611ff085611f1b565b9350611ffe60208601611f1b565b925060408501359150606085013567ffffffffffffffff8082111561202257600080fd5b818701915087601f83011261203657600080fd5b813581811115612048576120486124c8565b604051601f8201601f19908116603f01168101908382118183101715612070576120706124c8565b816040528281528a602084870101111561208957600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b600080604083850312156120c057600080fd5b6120c983611f1b565b9150611f8c60208401611f37565b600080604083850312156120ea57600080fd5b6120f383611f1b565b946020939093013593505050565b60006020828403121561211357600080fd5b6112e282611f37565b60006020828403121561212e57600080fd5b81356112e2816124de565b60006020828403121561214b57600080fd5b81516112e2816124de565b6000806020838503121561216957600080fd5b823567ffffffffffffffff8082111561218157600080fd5b818501915085601f83011261219557600080fd5b8135818111156121a457600080fd5b8660208285010111156121b657600080fd5b60209290920196919550909350505050565b6000602082840312156121da57600080fd5b5035919050565b600081518084526121f98160208601602086016123d9565b601f01601f19169290920160200192915050565b6000835161221f8184602088016123d9565b8351908301906122338183602088016123d9565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061227f908301846121e1565b9695505050505050565b6020815260006112e260208301846121e1565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60006001600160801b0380831681851680830382111561234657612346612486565b01949350505050565b6000821982111561236257612362612486565b500190565b6000826123765761237661249c565b500490565b600081600019048311821515161561239557612395612486565b500290565b60006001600160801b03838116908316818110156123ba576123ba612486565b039392505050565b6000828210156123d4576123d4612486565b500390565b60005b838110156123f45781810151838201526020016123dc565b8381111561117b5750506000910152565b60008161241457612414612486565b506000190190565b600181811c9082168061243057607f821691505b6020821081141561245157634e487b7160e01b600052602260045260246000fd5b50919050565b600060001982141561246b5761246b612486565b5060010190565b6000826124815761248161249c565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114610abf57600080fdfea2646970667358221220520978de3350c9e0d085a38bdb2c0728ea854b86b7a1ca5b89540d9fcc54ddbe64736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000115c

-----Decoded View---------------
Arg [0] : maxBatchSize_ (uint256): 4444

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000000000000000000000000000000000000000115c


Deployed Bytecode Sourcemap

40969:2749:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23737:370;;;;;;;;;;-1:-1:-1;23737:370:0;;;;;:::i;:::-;;:::i;:::-;;;6048:14:1;;6041:22;6023:41;;6011:2;5996:18;23737:370:0;;;;;;;;25463:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;26997:204::-;;;;;;;;;;-1:-1:-1;26997:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;5346:32:1;;;5328:51;;5316:2;5301:18;26997:204:0;5182:203:1;26560:379:0;;;;;;;;;;-1:-1:-1;26560:379:0;;;;;:::i;:::-;;:::i;:::-;;22301:94;;;;;;;;;;-1:-1:-1;22377:12:0;;22301:94;;;17886:25:1;;;17874:2;17859:18;22301:94:0;17740:177:1;27847:142:0;;;;;;;;;;-1:-1:-1;27847:142:0;;;;;:::i;:::-;;:::i;42464:642::-;;;;;;:::i;:::-;;:::i;22929:744::-;;;;;;;;;;-1:-1:-1;22929:744:0;;;;;:::i;:::-;;:::i;43118:147::-;;;;;;;;;;;;;:::i;28052:157::-;;;;;;;;;;-1:-1:-1;28052:157:0;;;;;:::i;:::-;;:::i;22464:177::-;;;;;;;;;;-1:-1:-1;22464:177:0;;;;;:::i;:::-;;:::i;43394:103::-;;;;;;;;;;-1:-1:-1;43394:103:0;;;;;:::i;:::-;;:::i;25286:118::-;;;;;;;;;;-1:-1:-1;25286:118:0;;;;;:::i;:::-;;:::i;24163:211::-;;;;;;;;;;-1:-1:-1;24163:211:0;;;;;:::i;:::-;;:::i;37609:94::-;;;;;;;;;;;;;:::i;41877:579::-;;;;;;:::i;:::-;;:::i;36958:87::-;;;;;;;;;;-1:-1:-1;37004:7:0;37031:6;-1:-1:-1;;;;;37031:6:0;36958:87;;43505:101;;;;;;;;;;-1:-1:-1;43505:101:0;;;;;:::i;:::-;;:::i;25618:98::-;;;;;;;;;;;;;:::i;41650:97::-;;;;;;;;;;-1:-1:-1;41650:97:0;;;;;:::i;:::-;;:::i;27265:274::-;;;;;;;;;;-1:-1:-1;27265:274:0;;;;;:::i;:::-;;:::i;41755:114::-;;;;;;;;;;-1:-1:-1;41755:114:0;;;;;:::i;:::-;-1:-1:-1;;;;;41840:21:0;41813:7;41840:21;;;:14;:21;;;;;;;41755:114;28272:311;;;;;;;;;;-1:-1:-1;28272:311:0;;;;;:::i;:::-;;:::i;41450:31::-;;;;;;;;;;;;;:::i;41333:37::-;;;;;;;;;;;;;:::i;25779:403::-;;;;;;;;;;-1:-1:-1;25779:403:0;;;;;:::i;:::-;;:::i;41417:26::-;;;;;;;;;;;;;:::i;32603:43::-;;;;;;;;;;;;;;;;43618:97;;;;;;;;;;;;;:::i;27602:186::-;;;;;;;;;;-1:-1:-1;27602:186:0;;;;;:::i;:::-;-1:-1:-1;;;;;27747:25:0;;;27724:4;27747:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;27602:186;37858:192;;;;;;;;;;-1:-1:-1;37858:192:0;;;;;:::i;:::-;;:::i;41377:33::-;;;;;;;;;;-1:-1:-1;41377:33:0;;;;;;;;23737:370;23864:4;-1:-1:-1;;;;;;23894:40:0;;-1:-1:-1;;;23894:40:0;;:99;;-1:-1:-1;;;;;;;23945:48:0;;-1:-1:-1;;;23945:48:0;23894:99;:160;;;-1:-1:-1;;;;;;;24004:50:0;;-1:-1:-1;;;24004:50:0;23894:160;:207;;;-1:-1:-1;;;;;;;;;;12918:40:0;;;24065:36;23880:221;23737:370;-1:-1:-1;;23737:370:0:o;25463:94::-;25517:13;25546:5;25539:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25463:94;:::o;26997:204::-;27065:7;27089:16;27097:7;28909:12;;-1:-1:-1;28899:22:0;28822:105;27089:16;27081:74;;;;-1:-1:-1;;;27081:74:0;;17125:2:1;27081:74:0;;;17107:21:1;17164:2;17144:18;;;17137:30;17203:34;17183:18;;;17176:62;-1:-1:-1;;;17254:18:1;;;17247:43;17307:19;;27081:74:0;;;;;;;;;-1:-1:-1;27171:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;27171:24:0;;26997:204::o;26560:379::-;26629:13;26645:24;26661:7;26645:15;:24::i;:::-;26629:40;;26690:5;-1:-1:-1;;;;;26684:11:0;:2;-1:-1:-1;;;;;26684:11:0;;;26676:58;;;;-1:-1:-1;;;26676:58:0;;14355:2:1;26676:58:0;;;14337:21:1;14394:2;14374:18;;;14367:30;14433:34;14413:18;;;14406:62;-1:-1:-1;;;14484:18:1;;;14477:32;14526:19;;26676:58:0;14153:398:1;26676:58:0;20203:10;-1:-1:-1;;;;;26759:21:0;;;;:62;;-1:-1:-1;26784:37:0;26801:5;20203:10;27602:186;:::i;26784:37::-;26743:153;;;;-1:-1:-1;;;26743:153:0;;10491:2:1;26743:153:0;;;10473:21:1;10530:2;10510:18;;;10503:30;10569:34;10549:18;;;10542:62;10640:27;10620:18;;;10613:55;10685:19;;26743:153:0;10289:421:1;26743:153:0;26905:28;26914:2;26918:7;26927:5;26905:8;:28::i;:::-;26622:317;26560:379;;:::o;27847:142::-;27955:28;27965:4;27971:2;27975:7;27955:9;:28::i;42464:642::-;42545:14;;;;42544:15;42536:49;;;;-1:-1:-1;;;42536:49:0;;12815:2:1;42536:49:0;;;12797:21:1;12854:2;12834:18;;;12827:30;-1:-1:-1;;;12873:18:1;;;12866:51;12934:18;;42536:49:0;12613:345:1;42536:49:0;41096:4;42604:13;22377:12;;;22301:94;42604:13;:33;;42596:74;;;;-1:-1:-1;;;42596:74:0;;11278:2:1;42596:74:0;;;11260:21:1;11317:2;11297:18;;;11290:30;11356;11336:18;;;11329:58;11404:18;;42596:74:0;11076:352:1;42596:74:0;41193:4;42689:13;22377:12;;;22301:94;42689:13;:28;42681:68;;;;-1:-1:-1;;;42681:68:0;;16769:2:1;42681:68:0;;;16751:21:1;16808:2;16788:18;;;16781:30;16847:29;16827:18;;;16820:57;16894:18;;42681:68:0;16567:351:1;42681:68:0;41193:4;42784:14;42768:13;22377:12;;;22301:94;42768:13;:30;;;;:::i;:::-;:46;;42760:91;;;;-1:-1:-1;;;42760:91:0;;10917:2:1;42760:91:0;;;10899:21:1;;;10936:18;;;10929:30;10995:34;10975:18;;;10968:62;11047:18;;42760:91:0;10715:356:1;42760:91:0;41250:2;42870:14;:39;;42862:92;;;;-1:-1:-1;;;42862:92:0;;6904:2:1;42862:92:0;;;6886:21:1;6943:2;6923:18;;;6916:30;6982:34;6962:18;;;6955:62;-1:-1:-1;;;7033:18:1;;;7026:38;7081:19;;42862:92:0;6702:404:1;42862:92:0;43006:9;42973:29;42988:14;41291:10;42973:29;:::i;:::-;:42;;42965:83;;;;-1:-1:-1;;;42965:83:0;;9720:2:1;42965:83:0;;;9702:21:1;9759:2;9739:18;;;9732:30;9798;9778:18;;;9771:58;9846:18;;42965:83:0;9518:352:1;42965:83:0;43061:37;43071:10;43083:14;43061:9;:37::i;:::-;42464:642;:::o;22929:744::-;23038:7;23073:16;23083:5;23073:9;:16::i;:::-;23065:5;:24;23057:71;;;;-1:-1:-1;;;23057:71:0;;6501:2:1;23057:71:0;;;6483:21:1;6540:2;6520:18;;;6513:30;6579:34;6559:18;;;6552:62;-1:-1:-1;;;6630:18:1;;;6623:32;6672:19;;23057:71:0;6299:398:1;23057:71:0;23135:22;23160:13;22377:12;;;22301:94;23160:13;23135:38;;23180:19;23210:25;23260:9;23255:350;23279:14;23275:1;:18;23255:350;;;23309:31;23343:14;;;:11;:14;;;;;;;;;23309:48;;;;;;;;;-1:-1:-1;;;;;23309:48:0;;;;;-1:-1:-1;;;23309:48:0;;;;;;;;;;;;23370:28;23366:89;;23431:14;;;-1:-1:-1;23366:89:0;23488:5;-1:-1:-1;;;;;23467:26:0;:17;-1:-1:-1;;;;;23467:26:0;;23463:135;;;23525:5;23510:11;:20;23506:59;;;-1:-1:-1;23552:1:0;-1:-1:-1;23545:8:0;;-1:-1:-1;;;23545:8:0;23506:59;23575:13;;;;:::i;:::-;;;;23463:135;-1:-1:-1;23295:3:0;;;;:::i;:::-;;;;23255:350;;;-1:-1:-1;23611:56:0;;-1:-1:-1;;;23611:56:0;;15938:2:1;23611:56:0;;;15920:21:1;15977:2;15957:18;;;15950:30;16016:34;15996:18;;;15989:62;-1:-1:-1;;;16067:18:1;;;16060:44;16121:19;;23611:56:0;15736:410:1;43118:147:0;37004:7;37031:6;-1:-1:-1;;;;;37031:6:0;20203:10;37178:23;37170:68;;;;-1:-1:-1;;;37170:68:0;;;;;;;:::i;:::-;43220:37:::1;::::0;43186:21:::1;::::0;43228:10:::1;::::0;43220:37;::::1;;;::::0;43186:21;;43168:15:::1;43220:37:::0;43168:15;43220:37;43186:21;43228:10;43220:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;43157:108;43118:147::o:0;28052:157::-;28164:39;28181:4;28187:2;28191:7;28164:39;;;;;;;;;;;;:16;:39::i;22464:177::-;22531:7;22563:13;22377:12;;;22301:94;22563:13;22555:5;:21;22547:69;;;;-1:-1:-1;;;22547:69:0;;8131:2:1;22547:69:0;;;8113:21:1;8170:2;8150:18;;;8143:30;8209:34;8189:18;;;8182:62;-1:-1:-1;;;8260:18:1;;;8253:33;8303:19;;22547:69:0;7929:399:1;22547:69:0;-1:-1:-1;22630:5:0;22464:177::o;43394:103::-;37004:7;37031:6;-1:-1:-1;;;;;37031:6:0;20203:10;37178:23;37170:68;;;;-1:-1:-1;;;37170:68:0;;;;;;;:::i;:::-;43467:22:::1;:12;43482:7:::0;;43467:22:::1;:::i;25286:118::-:0;25350:7;25373:20;25385:7;25373:11;:20::i;:::-;:25;;25286:118;-1:-1:-1;;25286:118:0:o;24163:211::-;24227:7;-1:-1:-1;;;;;24251:19:0;;24243:75;;;;-1:-1:-1;;;24243:75:0;;11635:2:1;24243:75:0;;;11617:21:1;11674:2;11654:18;;;11647:30;11713:34;11693:18;;;11686:62;-1:-1:-1;;;11764:18:1;;;11757:41;11815:19;;24243:75:0;11433:407:1;24243:75:0;-1:-1:-1;;;;;;24340:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;24340:27:0;;24163:211::o;37609:94::-;37004:7;37031:6;-1:-1:-1;;;;;37031:6:0;20203:10;37178:23;37170:68;;;;-1:-1:-1;;;37170:68:0;;;;;;;:::i;:::-;37674:21:::1;37692:1;37674:9;:21::i;:::-;37609:94::o:0;41877:579::-;41956:14;;;;41955:15;41947:49;;;;-1:-1:-1;;;41947:49:0;;12815:2:1;41947:49:0;;;12797:21:1;12854:2;12834:18;;;12827:30;-1:-1:-1;;;12873:18:1;;;12866:51;12934:18;;41947:49:0;12613:345:1;41947:49:0;41096:4;42015:13;22377:12;;;22301:94;42015:13;:32;42007:77;;;;-1:-1:-1;;;42007:77:0;;8535:2:1;42007:77:0;;;8517:21:1;;;8554:18;;;8547:30;8613:34;8593:18;;;8586:62;8665:18;;42007:77:0;8333:356:1;42007:77:0;41096:4;42119:14;42103:13;22377:12;;;22301:94;42103:13;:30;;;;:::i;:::-;:50;;42095:112;;;;-1:-1:-1;;;42095:112:0;;9302:2:1;42095:112:0;;;9284:21:1;9341:2;9321:18;;;9314:30;9380:34;9360:18;;;9353:62;-1:-1:-1;;;9431:18:1;;;9424:47;9488:19;;42095:112:0;9100:413:1;42095:112:0;42241:10;42226:26;;;;:14;:26;;;;;;41151:1;;42226:43;;42255:14;;42226:43;:::i;:::-;:67;;42218:125;;;;-1:-1:-1;;;42218:125:0;;10077:2:1;42218:125:0;;;10059:21:1;10116:2;10096:18;;;10089:30;10155:34;10135:18;;;10128:62;-1:-1:-1;;;10206:18:1;;;10199:43;10259:19;;42218:125:0;9875:409:1;42218:125:0;42356:37;42366:10;42378:14;42356:9;:37::i;:::-;42419:10;42404:26;;;;:14;:26;;;;;:44;;42434:14;;42404:26;:44;;42434:14;;42404:44;:::i;:::-;;;;-1:-1:-1;;;41877:579:0:o;43505:101::-;37004:7;37031:6;-1:-1:-1;;;;;37031:6:0;20203:10;37178:23;37170:68;;;;-1:-1:-1;;;37170:68:0;;;;;;;:::i;:::-;43580:18:::1;:12;43595:3:::0;;43580:18:::1;:::i;25618:98::-:0;25674:13;25703:7;25696:14;;;;;:::i;41650:97::-;37004:7;37031:6;-1:-1:-1;;;;;37031:6:0;20203:10;37178:23;37170:68;;;;-1:-1:-1;;;37170:68:0;;;;;;;:::i;:::-;41716:14:::1;:23:::0;;-1:-1:-1;;41716:23:0::1;::::0;::::1;;::::0;;;::::1;::::0;;41650:97::o;27265:274::-;-1:-1:-1;;;;;27356:24:0;;20203:10;27356:24;;27348:63;;;;-1:-1:-1;;;27348:63:0;;13581:2:1;27348:63:0;;;13563:21:1;13620:2;13600:18;;;13593:30;13659:28;13639:18;;;13632:56;13705:18;;27348:63:0;13379:350:1;27348:63:0;20203:10;27420:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;27420:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;27420:53:0;;;;;;;;;;27485:48;;6023:41:1;;;27420:42:0;;20203:10;27485:48;;5996:18:1;27485:48:0;;;;;;;27265:274;;:::o;28272:311::-;28409:28;28419:4;28425:2;28429:7;28409:9;:28::i;:::-;28460:48;28483:4;28489:2;28493:7;28502:5;28460:22;:48::i;:::-;28444:133;;;;-1:-1:-1;;;28444:133:0;;;;;;;:::i;:::-;28272:311;;;;:::o;41450:31::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;41333:37::-;;;;;;;:::i;25779:403::-;25878:13;25919:16;25927:7;28909:12;;-1:-1:-1;28899:22:0;28822:105;25919:16;25903:97;;;;-1:-1:-1;;;25903:97:0;;13165:2:1;25903:97:0;;;13147:21:1;13204:2;13184:18;;;13177:30;13243:34;13223:18;;;13216:62;-1:-1:-1;;;13294:18:1;;;13287:45;13349:19;;25903:97:0;12963:411:1;25903:97:0;26009:21;26033:10;:8;:10::i;:::-;26009:34;;26088:1;26070:7;26064:21;:25;:112;;;;;;;;;;;;;;;;;26125:7;26134:18;:7;:16;:18::i;:::-;26108:53;;;;;;;;;:::i;:::-;;;;;;;;;;;;;26064:112;26050:126;25779:403;-1:-1:-1;;;25779:403:0:o;41417:26::-;;;;;;;:::i;43618:97::-;43662:13;43695:12;43688:19;;;;;:::i;37858:192::-;37004:7;37031:6;-1:-1:-1;;;;;37031:6:0;20203:10;37178:23;37170:68;;;;-1:-1:-1;;;37170:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;37947:22:0;::::1;37939:73;;;::::0;-1:-1:-1;;;37939:73:0;;7313:2:1;37939:73:0::1;::::0;::::1;7295:21:1::0;7352:2;7332:18;;;7325:30;7391:34;7371:18;;;7364:62;-1:-1:-1;;;7442:18:1;;;7435:36;7488:19;;37939:73:0::1;7111:402:1::0;37939:73:0::1;38023:19;38033:8;38023:9;:19::i;32425:172::-:0;32522:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;32522:29:0;-1:-1:-1;;;;;32522:29:0;;;;;;;;;32563:28;;32522:24;;32563:28;;;;;;;32425:172;;;:::o;30790:1529::-;30887:35;30925:20;30937:7;30925:11;:20::i;:::-;30996:18;;30887:58;;-1:-1:-1;30954:22:0;;-1:-1:-1;;;;;30980:34:0;20203:10;-1:-1:-1;;;;;30980:34:0;;:81;;;-1:-1:-1;20203:10:0;31025:20;31037:7;31025:11;:20::i;:::-;-1:-1:-1;;;;;31025:36:0;;30980:81;:142;;;-1:-1:-1;31089:18:0;;31072:50;;20203:10;27602:186;:::i;31072:50::-;30954:169;;31148:17;31132:101;;;;-1:-1:-1;;;31132:101:0;;13936:2:1;31132:101:0;;;13918:21:1;13975:2;13955:18;;;13948:30;14014:34;13994:18;;;13987:62;-1:-1:-1;;;14065:18:1;;;14058:48;14123:19;;31132:101:0;13734:414:1;31132:101:0;31280:4;-1:-1:-1;;;;;31258:26:0;:13;:18;;;-1:-1:-1;;;;;31258:26:0;;31242:98;;;;-1:-1:-1;;;31242:98:0;;12047:2:1;31242:98:0;;;12029:21:1;12086:2;12066:18;;;12059:30;12125:34;12105:18;;;12098:62;-1:-1:-1;;;12176:18:1;;;12169:36;12222:19;;31242:98:0;11845:402:1;31242:98:0;-1:-1:-1;;;;;31355:16:0;;31347:66;;;;-1:-1:-1;;;31347:66:0;;8896:2:1;31347:66:0;;;8878:21:1;8935:2;8915:18;;;8908:30;8974:34;8954:18;;;8947:62;-1:-1:-1;;;9025:18:1;;;9018:35;9070:19;;31347:66:0;8694:401:1;31347:66:0;31522:49;31539:1;31543:7;31552:13;:18;;;31522:8;:49::i;:::-;-1:-1:-1;;;;;31580:18:0;;;;;;:12;:18;;;;;:31;;31610:1;;31580:18;:31;;31610:1;;-1:-1:-1;;;;;31580:31:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;31580:31:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;31618:16:0;;-1:-1:-1;31618:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;31618:16:0;;:29;;-1:-1:-1;;31618:29:0;;:::i;:::-;;;-1:-1:-1;;;;;31618:29:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31677:43:0;;;;;;;;-1:-1:-1;;;;;31677:43:0;;;;;;31703:15;31677:43;;;;;;;;;-1:-1:-1;31654:20:0;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;31654:66:0;-1:-1:-1;;;;;;31654:66:0;;;;;;;;;;;31970:11;31666:7;-1:-1:-1;31970:11:0;:::i;:::-;32033:1;31992:24;;;:11;:24;;;;;:29;31948:33;;-1:-1:-1;;;;;;31992:29:0;31988:236;;32050:20;32058:11;28909:12;;-1:-1:-1;28899:22:0;28822:105;32050:20;32046:171;;;32110:97;;;;;;;;32137:18;;-1:-1:-1;;;;;32110:97:0;;;;;;32168:28;;;;32110:97;;;;;;;;;;-1:-1:-1;32083:24:0;;;:11;:24;;;;;;;:124;;;;;;;;;-1:-1:-1;;;32083:124:0;-1:-1:-1;;;;;;32083:124:0;;;;;;;;;;;;32046:171;32256:7;32252:2;-1:-1:-1;;;;;32237:27:0;32246:4;-1:-1:-1;;;;;32237:27:0;;;;;;;;;;;32271:42;30880:1439;;;30790:1529;;;:::o;28933:98::-;28998:27;29008:2;29012:8;28998:27;;;;;;;;;;;;:9;:27::i;24626:606::-;-1:-1:-1;;;;;;;;;;;;;;;;;24743:16:0;24751:7;28909:12;;-1:-1:-1;28899:22:0;28822:105;24743:16;24735:71;;;;-1:-1:-1;;;24735:71:0;;7720:2:1;24735:71:0;;;7702:21:1;7759:2;7739:18;;;7732:30;7798:34;7778:18;;;7771:62;-1:-1:-1;;;7849:18:1;;;7842:40;7899:19;;24735:71:0;7518:406:1;24735:71:0;24815:26;24863:12;24852:7;:23;24848:93;;24907:22;24917:12;24907:7;:22;:::i;:::-;:26;;24932:1;24907:26;:::i;:::-;24886:47;;24848:93;24969:7;24949:212;24986:18;24978:4;:26;24949:212;;25023:31;25057:17;;;:11;:17;;;;;;;;;25023:51;;;;;;;;;-1:-1:-1;;;;;25023:51:0;;;;;-1:-1:-1;;;25023:51:0;;;;;;;;;;;;25087:28;25083:71;;25135:9;24626:606;-1:-1:-1;;;;24626:606:0:o;25083:71::-;-1:-1:-1;25006:6:0;;;;:::i;:::-;;;;24949:212;;;-1:-1:-1;25169:57:0;;-1:-1:-1;;;25169:57:0;;16353:2:1;25169:57:0;;;16335:21:1;16392:2;16372:18;;;16365:30;16431:34;16411:18;;;16404:62;-1:-1:-1;;;16482:18:1;;;16475:45;16537:19;;25169:57:0;16151:411:1;38058:173:0;38114:16;38133:6;;-1:-1:-1;;;;;38150:17:0;;;-1:-1:-1;;;;;;38150:17:0;;;;;;38183:40;;38133:6;;;;;;;38183:40;;38114:16;38183:40;38103:128;38058:173;:::o;34136:690::-;34273:4;-1:-1:-1;;;;;34290:13:0;;3192:20;3240:8;34286:535;;34329:72;;-1:-1:-1;;;34329:72:0;;-1:-1:-1;;;;;34329:36:0;;;;;:72;;20203:10;;34380:4;;34386:7;;34395:5;;34329:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34329:72:0;;;;;;;;-1:-1:-1;;34329:72:0;;;;;;;;;;;;:::i;:::-;;;34316:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34560:13:0;;34556:215;;34593:61;;-1:-1:-1;;;34593:61:0;;;;;;;:::i;34556:215::-;34739:6;34733:13;34724:6;34720:2;34716:15;34709:38;34316:464;-1:-1:-1;;;;;;34451:55:0;-1:-1:-1;;;34451:55:0;;-1:-1:-1;34444:62:0;;34286:535;-1:-1:-1;34809:4:0;34286:535;34136:690;;;;;;:::o;43273:113::-;43333:13;43366:12;43359:19;;;;;:::i;344:723::-;400:13;621:10;617:53;;-1:-1:-1;;648:10:0;;;;;;;;;;;;-1:-1:-1;;;648:10:0;;;;;344:723::o;617:53::-;695:5;680:12;736:78;743:9;;736:78;;769:8;;;;:::i;:::-;;-1:-1:-1;792:10:0;;-1:-1:-1;800:2:0;792:10;;:::i;:::-;;;736:78;;;824:19;856:6;846:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;846:17:0;;824:39;;874:154;881:10;;874:154;;908:11;918:1;908:11;;:::i;:::-;;-1:-1:-1;977:10:0;985:2;977:5;:10;:::i;:::-;964:24;;:2;:24;:::i;:::-;951:39;;934:6;941;934:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;934:56:0;;;;;;;;-1:-1:-1;1005:11:0;1014:2;1005:11;;:::i;:::-;;;874:154;;29286:1272;29414:12;;-1:-1:-1;;;;;29441:16:0;;29433:62;;;;-1:-1:-1;;;29433:62:0;;15536:2:1;29433:62:0;;;15518:21:1;15575:2;15555:18;;;15548:30;15614:34;15594:18;;;15587:62;-1:-1:-1;;;15665:18:1;;;15658:31;15706:19;;29433:62:0;15334:397:1;29433:62:0;29632:21;29640:12;28909;;-1:-1:-1;28899:22:0;28822:105;29632:21;29631:22;29623:64;;;;-1:-1:-1;;;29623:64:0;;15178:2:1;29623:64:0;;;15160:21:1;15217:2;15197:18;;;15190:30;15256:31;15236:18;;;15229:59;15305:18;;29623:64:0;14976:353:1;29623:64:0;29714:12;29702:8;:24;;29694:71;;;;-1:-1:-1;;;29694:71:0;;17539:2:1;29694:71:0;;;17521:21:1;17578:2;17558:18;;;17551:30;17617:34;17597:18;;;17590:62;-1:-1:-1;;;17668:18:1;;;17661:32;17710:19;;29694:71:0;17337:398:1;29694:71:0;-1:-1:-1;;;;;29877:16:0;;29844:30;29877:16;;;:12;:16;;;;;;;;;29844:49;;;;;;;;;-1:-1:-1;;;;;29844:49:0;;;;;-1:-1:-1;;;29844:49:0;;;;;;;;;;;29919:119;;;;;;;;29939:19;;29844:49;;29919:119;;;29939:39;;29969:8;;29939:39;:::i;:::-;-1:-1:-1;;;;;29919:119:0;;;;;30022:8;29987:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;29919:119:0;;;;;;-1:-1:-1;;;;;29900:16:0;;;;;;;:12;:16;;;;;;;;:138;;;;;;;;-1:-1:-1;;;29900:138:0;;;;;;;;;;;;30073:43;;;;;;;;;;;30099:15;30073:43;;;;;;;;30045:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;30045:71:0;-1:-1:-1;;;;;;30045:71:0;;;;;;;;;;;;;;;;;;30057:12;;30169:281;30193:8;30189:1;:12;30169:281;;;30222:38;;30247:12;;-1:-1:-1;;;;;30222:38:0;;;30239:1;;30222:38;;30239:1;;30222:38;30287:59;30318:1;30322:2;30326:12;30340:5;30287:22;:59::i;:::-;30269:150;;;;-1:-1:-1;;;30269:150:0;;;;;;;:::i;:::-;30428:14;;;;:::i;:::-;;;;30203:3;;;;;:::i;:::-;;;;30169:281;;;-1:-1:-1;30458:12:0;:27;;;30492:60;28272:311;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:173:1;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:160::-;257:20;;313:13;;306:21;296:32;;286:60;;342:1;339;332:12;357:186;416:6;469:2;457:9;448:7;444:23;440:32;437:52;;;485:1;482;475:12;437:52;508:29;527:9;508:29;:::i;548:260::-;616:6;624;677:2;665:9;656:7;652:23;648:32;645:52;;;693:1;690;683:12;645:52;716:29;735:9;716:29;:::i;:::-;706:39;;764:38;798:2;787:9;783:18;764:38;:::i;:::-;754:48;;548:260;;;;;:::o;813:328::-;890:6;898;906;959:2;947:9;938:7;934:23;930:32;927:52;;;975:1;972;965:12;927:52;998:29;1017:9;998:29;:::i;:::-;988:39;;1046:38;1080:2;1069:9;1065:18;1046:38;:::i;:::-;1036:48;;1131:2;1120:9;1116:18;1103:32;1093:42;;813:328;;;;;:::o;1146:1138::-;1241:6;1249;1257;1265;1318:3;1306:9;1297:7;1293:23;1289:33;1286:53;;;1335:1;1332;1325:12;1286:53;1358:29;1377:9;1358:29;:::i;:::-;1348:39;;1406:38;1440:2;1429:9;1425:18;1406:38;:::i;:::-;1396:48;;1491:2;1480:9;1476:18;1463:32;1453:42;;1546:2;1535:9;1531:18;1518:32;1569:18;1610:2;1602:6;1599:14;1596:34;;;1626:1;1623;1616:12;1596:34;1664:6;1653:9;1649:22;1639:32;;1709:7;1702:4;1698:2;1694:13;1690:27;1680:55;;1731:1;1728;1721:12;1680:55;1767:2;1754:16;1789:2;1785;1782:10;1779:36;;;1795:18;;:::i;:::-;1870:2;1864:9;1838:2;1924:13;;-1:-1:-1;;1920:22:1;;;1944:2;1916:31;1912:40;1900:53;;;1968:18;;;1988:22;;;1965:46;1962:72;;;2014:18;;:::i;:::-;2054:10;2050:2;2043:22;2089:2;2081:6;2074:18;2129:7;2124:2;2119;2115;2111:11;2107:20;2104:33;2101:53;;;2150:1;2147;2140:12;2101:53;2206:2;2201;2197;2193:11;2188:2;2180:6;2176:15;2163:46;2251:1;2246:2;2241;2233:6;2229:15;2225:24;2218:35;2272:6;2262:16;;;;;;;1146:1138;;;;;;;:::o;2289:254::-;2354:6;2362;2415:2;2403:9;2394:7;2390:23;2386:32;2383:52;;;2431:1;2428;2421:12;2383:52;2454:29;2473:9;2454:29;:::i;:::-;2444:39;;2502:35;2533:2;2522:9;2518:18;2502:35;:::i;2548:254::-;2616:6;2624;2677:2;2665:9;2656:7;2652:23;2648:32;2645:52;;;2693:1;2690;2683:12;2645:52;2716:29;2735:9;2716:29;:::i;:::-;2706:39;2792:2;2777:18;;;;2764:32;;-1:-1:-1;;;2548:254:1:o;2807:180::-;2863:6;2916:2;2904:9;2895:7;2891:23;2887:32;2884:52;;;2932:1;2929;2922:12;2884:52;2955:26;2971:9;2955:26;:::i;2992:245::-;3050:6;3103:2;3091:9;3082:7;3078:23;3074:32;3071:52;;;3119:1;3116;3109:12;3071:52;3158:9;3145:23;3177:30;3201:5;3177:30;:::i;3242:249::-;3311:6;3364:2;3352:9;3343:7;3339:23;3335:32;3332:52;;;3380:1;3377;3370:12;3332:52;3412:9;3406:16;3431:30;3455:5;3431:30;:::i;3496:592::-;3567:6;3575;3628:2;3616:9;3607:7;3603:23;3599:32;3596:52;;;3644:1;3641;3634:12;3596:52;3684:9;3671:23;3713:18;3754:2;3746:6;3743:14;3740:34;;;3770:1;3767;3760:12;3740:34;3808:6;3797:9;3793:22;3783:32;;3853:7;3846:4;3842:2;3838:13;3834:27;3824:55;;3875:1;3872;3865:12;3824:55;3915:2;3902:16;3941:2;3933:6;3930:14;3927:34;;;3957:1;3954;3947:12;3927:34;4002:7;3997:2;3988:6;3984:2;3980:15;3976:24;3973:37;3970:57;;;4023:1;4020;4013:12;3970:57;4054:2;4046:11;;;;;4076:6;;-1:-1:-1;3496:592:1;;-1:-1:-1;;;;3496:592:1:o;4093:180::-;4152:6;4205:2;4193:9;4184:7;4180:23;4176:32;4173:52;;;4221:1;4218;4211:12;4173:52;-1:-1:-1;4244:23:1;;4093:180;-1:-1:-1;4093:180:1:o;4278:257::-;4319:3;4357:5;4351:12;4384:6;4379:3;4372:19;4400:63;4456:6;4449:4;4444:3;4440:14;4433:4;4426:5;4422:16;4400:63;:::i;:::-;4517:2;4496:15;-1:-1:-1;;4492:29:1;4483:39;;;;4524:4;4479:50;;4278:257;-1:-1:-1;;4278:257:1:o;4540:637::-;4820:3;4858:6;4852:13;4874:53;4920:6;4915:3;4908:4;4900:6;4896:17;4874:53;:::i;:::-;4990:13;;4949:16;;;;5012:57;4990:13;4949:16;5046:4;5034:17;;5012:57;:::i;:::-;-1:-1:-1;;;5091:20:1;;5120:22;;;5169:1;5158:13;;4540:637;-1:-1:-1;;;;4540:637:1:o;5390:488::-;-1:-1:-1;;;;;5659:15:1;;;5641:34;;5711:15;;5706:2;5691:18;;5684:43;5758:2;5743:18;;5736:34;;;5806:3;5801:2;5786:18;;5779:31;;;5584:4;;5827:45;;5852:19;;5844:6;5827:45;:::i;:::-;5819:53;5390:488;-1:-1:-1;;;;;;5390:488:1:o;6075:219::-;6224:2;6213:9;6206:21;6187:4;6244:44;6284:2;6273:9;6269:18;6261:6;6244:44;:::i;12252:356::-;12454:2;12436:21;;;12473:18;;;12466:30;12532:34;12527:2;12512:18;;12505:62;12599:2;12584:18;;12252:356::o;14556:415::-;14758:2;14740:21;;;14797:2;14777:18;;;14770:30;14836:34;14831:2;14816:18;;14809:62;-1:-1:-1;;;14902:2:1;14887:18;;14880:49;14961:3;14946:19;;14556:415::o;17922:253::-;17962:3;-1:-1:-1;;;;;18051:2:1;18048:1;18044:10;18081:2;18078:1;18074:10;18112:3;18108:2;18104:12;18099:3;18096:21;18093:47;;;18120:18;;:::i;:::-;18156:13;;17922:253;-1:-1:-1;;;;17922:253:1:o;18180:128::-;18220:3;18251:1;18247:6;18244:1;18241:13;18238:39;;;18257:18;;:::i;:::-;-1:-1:-1;18293:9:1;;18180:128::o;18313:120::-;18353:1;18379;18369:35;;18384:18;;:::i;:::-;-1:-1:-1;18418:9:1;;18313:120::o;18438:168::-;18478:7;18544:1;18540;18536:6;18532:14;18529:1;18526:21;18521:1;18514:9;18507:17;18503:45;18500:71;;;18551:18;;:::i;:::-;-1:-1:-1;18591:9:1;;18438:168::o;18611:246::-;18651:4;-1:-1:-1;;;;;18764:10:1;;;;18734;;18786:12;;;18783:38;;;18801:18;;:::i;:::-;18838:13;;18611:246;-1:-1:-1;;;18611:246:1:o;18862:125::-;18902:4;18930:1;18927;18924:8;18921:34;;;18935:18;;:::i;:::-;-1:-1:-1;18972:9:1;;18862:125::o;18992:258::-;19064:1;19074:113;19088:6;19085:1;19082:13;19074:113;;;19164:11;;;19158:18;19145:11;;;19138:39;19110:2;19103:10;19074:113;;;19205:6;19202:1;19199:13;19196:48;;;-1:-1:-1;;19240:1:1;19222:16;;19215:27;18992:258::o;19255:136::-;19294:3;19322:5;19312:39;;19331:18;;:::i;:::-;-1:-1:-1;;;19367:18:1;;19255:136::o;19396:380::-;19475:1;19471:12;;;;19518;;;19539:61;;19593:4;19585:6;19581:17;19571:27;;19539:61;19646:2;19638:6;19635:14;19615:18;19612:38;19609:161;;;19692:10;19687:3;19683:20;19680:1;19673:31;19727:4;19724:1;19717:15;19755:4;19752:1;19745:15;19609:161;;19396:380;;;:::o;19781:135::-;19820:3;-1:-1:-1;;19841:17:1;;19838:43;;;19861:18;;:::i;:::-;-1:-1:-1;19908:1:1;19897:13;;19781:135::o;19921:112::-;19953:1;19979;19969:35;;19984:18;;:::i;:::-;-1:-1:-1;20018:9:1;;19921:112::o;20038:127::-;20099:10;20094:3;20090:20;20087:1;20080:31;20130:4;20127:1;20120:15;20154:4;20151:1;20144:15;20170:127;20231:10;20226:3;20222:20;20219:1;20212:31;20262:4;20259:1;20252:15;20286:4;20283:1;20276:15;20302:127;20363:10;20358:3;20354:20;20351:1;20344:31;20394:4;20391:1;20384:15;20418:4;20415:1;20408:15;20434:127;20495:10;20490:3;20486:20;20483:1;20476:31;20526:4;20523:1;20516:15;20550:4;20547:1;20540:15;20566:131;-1:-1:-1;;;;;;20640:32:1;;20630:43;;20620:71;;20687:1;20684;20677:12

Swarm Source

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