ETH Price: $3,439.94 (-0.42%)
Gas: 7 Gwei

Token

Racing Social Club (RSC)
 

Overview

Max Total Supply

888 RSC

Holders

361

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 RSC
0x6f65d1d67287ed27ab9c5315fa99ad2b49040e21
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:
RacingSocialClub

Compiler Version
v0.8.1+commit.df193b15

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

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

pragma solidity ^0.8.1;

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

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

  bytes32 public root;

  uint256 public mintPrice = 0.2 ether;
  uint256 public preSaleMintPrice = 0.18 ether;
  uint256 public raffleMintPrice = 0.18 ether;

  uint256 private reserveAtATime = 50;
  uint256 private reservedCount = 0;
  uint256 private maxReserveCount = 150;

  string _baseTokenURI;

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

  uint256 public maximumMintSupply = 3333;
  uint256 public maximumAllowedTokensPerPurchase = 3333;
  uint256 public maximumAllowedTokensPerWallet = 3333;
  uint256 public allowListMaxMint = 3;
  uint256 public immutable maxPerAddressDuringMint;

  address private OtherAddress = 0xbc5f78e02Dc124d0Ef5A6207B1C6384f826B413F;

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

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

  constructor(
    string memory baseURI,
    uint256 maxBatchSize_,
    uint256 collectionSize_
  ) ERC721A("Racing Social Club", "RSC", maxBatchSize_, collectionSize_) {
    setBaseURI(baseURI);
    maxPerAddressDuringMint = maxBatchSize_;
  }

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

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

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

  function setMaximumAllowedTokens(uint256 _count) public onlyAuthorized {
    maximumAllowedTokensPerPurchase = _count;
  }

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

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

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

  function setRaffleActive(bool _isRaffleActive) public onlyAuthorized {
    isRaffleActive = _isRaffleActive;
  }

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

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

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

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

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

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

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

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

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

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

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

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

  function setRaffleMintPrice(uint256 _price) public onlyAuthorized {
    raffleMintPrice = _price;
  }

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

  function getMaximumAllowedTokens() public view onlyAuthorized returns (uint256) {
    return maximumAllowedTokensPerPurchase;
  }

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

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

  function getRaffleMintPrice() external view returns (uint256) {
    return raffleMintPrice;
  }

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

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

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

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

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

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

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

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

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

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

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

    _safeMint(_walletAddress, _count);
  }

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

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

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

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

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

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

    _safeMint(msg.sender, _count);
  }

  function preSaleMint(uint256 _count) public payable saleIsOpen {
    require(isPreSaleMintActive, 'Pre Sale Mint is not active');
    require(_allowList[msg.sender], 'You are not on the Allow List');
    require(totalSupply() < maximumMintSupply, 'All tokens have been minted');
    require(_count <= allowListMaxMint, 'Cannot purchase this many tokens');
    require(_allowListClaimed[msg.sender] + _count <= allowListMaxMint, 'Purchase exceeds max allowed');
    require(msg.value >= preSaleMintPrice * _count, 'Insuffient ETH amount sent.');
    require(!isClosedMintForever, 'Mint Closed Forever');
    _allowListClaimed[msg.sender] += _count;

    _safeMint(msg.sender, _count);
  }

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

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

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

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

File 1 of 13: Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 2 of 13: Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

File 3 of 13: ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 4 of 13: ERC721A.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./IERC721Metadata.sol";
import "./IERC721Enumerable.sol";
import "./Address.sol";
import "./Context.sol";
import "./Strings.sol";
import "./ERC165.sol";

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at 0 (e.g. 0, 1, 2, 3..).
 *
 * Assumes the number of issuable tokens (collection size) is capped and fits in a uint128.
 *
 * Does not support burning tokens to address(0).
 */
contract ERC721A is
  Context,
  ERC165,
  IERC721,
  IERC721Metadata,
  IERC721Enumerable
{
  using Address for address;
  using Strings for uint256;

  struct TokenOwnership {
    address addr;
    uint64 startTimestamp;
  }

  struct AddressData {
    uint128 balance;
    uint128 numberMinted;
  }

  uint256 private currentIndex = 0;

  uint256 internal immutable collectionSize;
  uint256 internal immutable maxBatchSize;

  // Token name
  string private _name;

  // Token symbol
  string private _symbol;

  // Mapping from token ID to ownership details
  // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.
  mapping(uint256 => TokenOwnership) private _ownerships;

  // Mapping owner address to address data
  mapping(address => AddressData) private _addressData;

  // Mapping from token ID to approved address
  mapping(uint256 => address) private _tokenApprovals;

  // Mapping from owner to operator approvals
  mapping(address => mapping(address => bool)) private _operatorApprovals;

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

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

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

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

  /**
   * @dev See {IERC165-supportsInterface}.
   */
  function supportsInterface(bytes4 interfaceId)
    public
    view
    virtual
    override(ERC165, IERC165)
    returns (bool)
  {
    return
      interfaceId == type(IERC721).interfaceId ||
      interfaceId == type(IERC721Metadata).interfaceId ||
      interfaceId == type(IERC721Enumerable).interfaceId ||
      super.supportsInterface(interfaceId);
  }

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

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

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

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

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

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

  /**
   * @dev See {IERC721-ownerOf}.
   */
  function ownerOf(uint256 tokenId) public view override returns (address) {
    return ownershipOf(tokenId).addr;
  }

  /**
   * @dev See {IERC721Metadata-name}.
   */
  function name() public view virtual override returns (string memory) {
    return _name;
  }

  /**
   * @dev See {IERC721Metadata-symbol}.
   */
  function symbol() public view virtual override returns (string memory) {
    return _symbol;
  }

  /**
   * @dev See {IERC721Metadata-tokenURI}.
   */
  function tokenURI(uint256 tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );

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

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

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

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

    _approve(to, tokenId, owner);
  }

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

    return _tokenApprovals[tokenId];
  }

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

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

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

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

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

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

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

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

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

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

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

    uint256 updatedIndex = startTokenId;

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

    currentIndex = updatedIndex;
    _afterTokenTransfers(address(0), to, startTokenId, quantity);
  }

  /**
   * @dev Transfers `tokenId` from `from` to `to`.
   *
   * Requirements:
   *
   * - `to` cannot be the zero address.
   * - `tokenId` token must be owned by `from`.
   *
   * Emits a {Transfer} event.
   */
  function _transfer(
    address from,
    address to,
    uint256 tokenId
  ) private {
    TokenOwnership memory prevOwnership = ownershipOf(tokenId);

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

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

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

    _beforeTokenTransfers(from, to, tokenId, 1);

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

    _addressData[from].balance -= 1;
    _addressData[to].balance += 1;
    _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp));

    // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
    // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
    uint256 nextTokenId = tokenId + 1;
    if (_ownerships[nextTokenId].addr == address(0)) {
      if (_exists(nextTokenId)) {
        _ownerships[nextTokenId] = TokenOwnership(
          prevOwnership.addr,
          prevOwnership.startTimestamp
        );
      }
    }

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

  /**
   * @dev Approve `to` to operate on `tokenId`
   *
   * Emits a {Approval} event.
   */
  function _approve(
    address to,
    uint256 tokenId,
    address owner
  ) private {
    _tokenApprovals[tokenId] = to;
    emit Approval(owner, to, tokenId);
  }

  uint256 public nextOwnerToExplicitlySet = 0;

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

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

  /**
   * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
   *
   * startTokenId - the first token id to be transferred
   * quantity - the amount to be transferred
   *
   * Calling conditions:
   *
   * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
   * transferred to `to`.
   * - When `from` is zero, `tokenId` will be minted for `to`.
   */
  function _beforeTokenTransfers(
    address from,
    address to,
    uint256 startTokenId,
    uint256 quantity
  ) internal virtual {}

  /**
   * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
   * minting.
   *
   * startTokenId - the first token id to be transferred
   * quantity - the amount to be transferred
   *
   * Calling conditions:
   *
   * - when `from` and `to` are both non-zero.
   * - `from` and `to` are never both zero.
   */
  function _afterTokenTransfers(
    address from,
    address to,
    uint256 startTokenId,
    uint256 quantity
  ) internal virtual {}
}

File 5 of 13: IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

File 6 of 13: IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "./IERC721.sol";

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

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

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

File 8 of 13: IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

import "./IERC721.sol";

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

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

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

File 9 of 13: IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

File 10 of 13: MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merkle tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = _efficientHash(computedHash, proofElement);
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = _efficientHash(proofElement, computedHash);
            }
        }
        return computedHash;
    }

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

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

pragma solidity ^0.8.0;

import "./Context.sol";

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

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

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 13 of 13: Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"},{"internalType":"uint256","name":"maxBatchSize_","type":"uint256"},{"internalType":"uint256","name":"collectionSize_","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"address","name":"sender","type":"address"}],"name":"AssetMinted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"isMintActive","type":"bool"}],"name":"SaleActivation","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"addToAllowList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"allowListClaimedBy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"allowListMaxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"checkIfOnAllowList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getContractOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getIsClosedMintForever","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMaximumAllowedTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPreSaleMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getRaffleMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getReserveAtATime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isClosedMintForever","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isMintActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPreSaleMintActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isRaffleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isSellOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxPerAddressDuringMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maximumAllowedTokensPerPurchase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maximumAllowedTokensPerWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maximumMintSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"numberMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"preSaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"preSaleMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"publicMintClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"},{"internalType":"bytes32[]","name":"_proof","type":"bytes32[]"}],"name":"raffleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"raffleMintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"removeFromAllowList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserveNft","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_walletAddress","type":"address"},{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"reserveToCustomWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"root","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxMint","type":"uint256"}],"name":"setAllowListMaxMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setIsClosedMintForever","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isPreSaleMintActive","type":"bool"}],"name":"setIsPreSaleMintActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isSellOpen","type":"bool"}],"name":"setIsSellOpen","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxMintSupply","type":"uint256"}],"name":"setMaxMintSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"val","type":"uint256"}],"name":"setMaxReserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"setMaximumAllowedTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"setMaximumAllowedTokensPerWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"val","type":"bool"}],"name":"setMintActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPreSaleMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isRaffleActive","type":"bool"}],"name":"setRaffleActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setRaffleMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"val","type":"uint256"}],"name":"setReserveAtATime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_root","type":"bytes32"}],"name":"setRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60e0604052600080805560078190556702c68af0bb140000600a5567027f7d0bdb920000600b819055600c556032600d55600e556096600f556011805464ffffffffff19169055610d05601281905560138190556014556003601555601680546001600160a01b03191673bc5f78e02dc124d0ef5a6207b1c6384f826b413f1790553480156200008e57600080fd5b50604051620042e2380380620042e2833981016040819052620000b191620002ee565b604051806040016040528060128152602001712930b1b4b7339029b7b1b4b0b61021b63ab160711b8152506040518060400160405280600381526020016252534360e81b815250838360008111620001265760405162461bcd60e51b81526004016200011d906200041f565b60405180910390fd5b60008211620001495760405162461bcd60e51b81526004016200011d90620003d8565b83516200015e90600190602087019062000248565b5082516200017490600290602086019062000248565b5060a091909152608052506200019590506200018f620001ab565b620001af565b620001a08362000201565b5060c05250620004c0565b3390565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b336200020c62000239565b6001600160a01b0316146200022057600080fd5b80516200023590601090602084019062000248565b5050565b6008546001600160a01b031690565b82805462000256906200046d565b90600052602060002090601f0160209004810192826200027a5760008555620002c5565b82601f106200029557805160ff1916838001178555620002c5565b82800160010185558215620002c5579182015b82811115620002c5578251825591602001919060010190620002a8565b50620002d3929150620002d7565b5090565b5b80821115620002d35760008155600101620002d8565b60008060006060848603121562000303578283fd5b83516001600160401b03808211156200031a578485fd5b818601915086601f8301126200032e578485fd5b815181811115620003435762000343620004aa565b604051601f8201601f19908116603f011681019083821181831017156200036e576200036e620004aa565b816040528281526020935089848487010111156200038a578788fd5b8791505b82821015620003ad57848201840151818301850152908301906200038e565b82821115620003be57878484830101525b928801516040909801519299979850919695505050505050565b60208082526027908201527f455243373231413a206d61782062617463682073697a65206d757374206265206040820152666e6f6e7a65726f60c81b606082015260800190565b6020808252602e908201527f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060408201526d6e6f6e7a65726f20737570706c7960901b606082015260800190565b6002810460018216806200048257607f821691505b60208210811415620004a457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b60805160a05160c051613de062000502600039600081816112280152611bfe015260008181612587015281816125b101526129ba015260005050613de06000f3fe60806040526004361061041a5760003560e01c80637835c6351161021e578063c3ac4feb11610123578063ea6eb836116100ab578063f132dc291161007a578063f132dc2914610b4f578063f2fde38b14610b64578063f4a0a52814610b84578063f6c9d9e314610ba4578063f7cb9e5414610bc45761041a565b8063ea6eb83614610ae5578063ebf0c71714610b05578063ec7d099114610b1a578063ee1cc94414610b2f5761041a565b8063d7224ba0116100f2578063d7224ba014610a5b578063dab5f34014610a70578063dc33e68114610a90578063e7b62d9614610ab0578063e985e9c514610ac55761041a565b8063c3ac4feb146109f1578063c4e41b2214610a11578063c87b56dd14610a26578063cadf881814610a465761041a565b806398590a39116101a6578063a51312c811610175578063a51312c814610972578063a7f93ebd14610992578063ad06d758146109a7578063b88d4fde146109bc578063c3441646146109dc5761041a565b806398590a39146109085780639a3bf728146109285780639ccb0fea1461093d578063a22cb465146109525761041a565b80637f44ab2f116101ed5780637f44ab2f1461089f5780638bc35c2f146108b45780638da5cb5b146108c9578063932ecebc146108de57806395d89b41146108f35761041a565b80637835c635146108445780637890b2c9146108575780637a6685f11461086a5780637d26f4701461088a5761041a565b8063431adcb1116103245780635ca1e165116102ac578063715018a61161027b578063715018a6146107ba57806371e3500c146107cf5780637263cfe2146107e45780637389fbb71461080457806377b501b9146108245761041a565b80635ca1e165146107505780636352211e146107655780636817c76c1461078557806370a082311461079a5761041a565b80634dfea627116102f35780634dfea627146106bb5780634f6ccce7146106db57806355f804b3146106fb57806356a87caa1461071b5780635b92ac0d1461073b5761041a565b8063431adcb11461064f578063438b630014610664578063442890d5146106915780634d0550de146106a65761041a565b80632c1205f4116103a75780633ccfd60b116103765780633ccfd60b146105d25780633cfac570146105e75780633e8f09871461060757806340c10f191461061c57806342842e0e1461062f5761041a565b80632c1205f4146105525780632f57bcfe146105725780632f745c59146105925780633b9ee7e4146105b25761041a565b8063095ea7b3116103ee578063095ea7b3146104d157806318160ddd146104f357806321a911f81461050857806323b872dd1461051d5780632992b0b01461053d5761041a565b806208ffdd1461041f57806301ffc9a71461045557806306fdde0314610482578063081812fc146104a4575b600080fd5b34801561042b57600080fd5b5061043f61043a366004612d95565b610be4565b60405161044c91906131cd565b60405180910390f35b34801561046157600080fd5b50610475610470366004612f86565b610c35565b60405161044c91906131c2565b34801561048e57600080fd5b50610497610c96565b60405161044c91906131d6565b3480156104b057600080fd5b506104c46104bf366004612f6e565b610d28565b60405161044c919061312d565b3480156104dd57600080fd5b506104f16104ec366004612ebd565b610d6b565b005b3480156104ff57600080fd5b5061043f610e04565b34801561051457600080fd5b5061043f610e0a565b34801561052957600080fd5b506104f1610538366004612de1565b610e10565b34801561054957600080fd5b5061043f610e1b565b34801561055e57600080fd5b5061047561056d366004612d95565b610e21565b34801561057e57600080fd5b506104f161058d366004612f54565b610e3f565b34801561059e57600080fd5b5061043f6105ad366004612ebd565b610e6e565b3480156105be57600080fd5b506104f16105cd366004612f6e565b610f63565b3480156105de57600080fd5b506104f1610f84565b3480156105f357600080fd5b506104f1610602366004612f54565b611049565b34801561061357600080fd5b5061043f611081565b6104f161062a366004612ebd565b611087565b34801561063b57600080fd5b506104f161064a366004612de1565b6112ff565b34801561065b57600080fd5b5061047561131a565b34801561067057600080fd5b5061068461067f366004612d95565b61132b565b60405161044c919061317e565b34801561069d57600080fd5b506104c46113e8565b3480156106b257600080fd5b5061043f6113f7565b3480156106c757600080fd5b506104f16106d6366004612f6e565b6113fd565b3480156106e757600080fd5b5061043f6106f6366004612f6e565b61141e565b34801561070757600080fd5b506104f1610716366004612fbe565b61144a565b34801561072757600080fd5b506104f1610736366004612f6e565b611479565b34801561074757600080fd5b5061047561149a565b34801561075c57600080fd5b5061043f6114a8565b34801561077157600080fd5b506104c4610780366004612f6e565b6114ae565b34801561079157600080fd5b5061043f6114c0565b3480156107a657600080fd5b5061043f6107b5366004612d95565b6114c6565b3480156107c657600080fd5b506104f1611513565b3480156107db57600080fd5b506104f161155e565b3480156107f057600080fd5b506104f16107ff366004612ee6565b611624565b34801561081057600080fd5b506104f161081f366004612f6e565b6117e2565b34801561083057600080fd5b506104f161083f366004612ebd565b611803565b6104f1610852366004612f6e565b611886565b6104f1610865366004613003565b611a15565b34801561087657600080fd5b506104f1610885366004612f6e565b611bc5565b34801561089657600080fd5b50610475611be6565b3480156108ab57600080fd5b5061043f611bf6565b3480156108c057600080fd5b5061043f611bfc565b3480156108d557600080fd5b506104c4611c20565b3480156108ea57600080fd5b506104f1611c2f565b3480156108ff57600080fd5b50610497611c60565b34801561091457600080fd5b506104f1610923366004612f54565b611c6f565b34801561093457600080fd5b5061043f611cab565b34801561094957600080fd5b50610475611cb1565b34801561095e57600080fd5b506104f161096d366004612e94565b611cc0565b34801561097e57600080fd5b506104f161098d366004612ee6565b611d8e565b34801561099e57600080fd5b5061043f611e88565b3480156109b357600080fd5b5061043f611e8e565b3480156109c857600080fd5b506104f16109d7366004612e1c565b611eb3565b3480156109e857600080fd5b50610475611eec565b3480156109fd57600080fd5b506104f1610a0c366004612f6e565b611ef5565b348015610a1d57600080fd5b5061043f611f16565b348015610a3257600080fd5b50610497610a41366004612f6e565b611f20565b348015610a5257600080fd5b5061043f611fa3565b348015610a6757600080fd5b5061043f611fa9565b348015610a7c57600080fd5b506104f1610a8b366004612f6e565b611faf565b348015610a9c57600080fd5b5061043f610aab366004612d95565b611fd0565b348015610abc57600080fd5b5061043f611fdb565b348015610ad157600080fd5b50610475610ae0366004612daf565b611fe1565b348015610af157600080fd5b506104f1610b00366004612f6e565b61200f565b348015610b1157600080fd5b5061043f612030565b348015610b2657600080fd5b5061043f612036565b348015610b3b57600080fd5b506104f1610b4a366004612f54565b61203c565b348015610b5b57600080fd5b506104756120a6565b348015610b7057600080fd5b506104f1610b7f366004612d95565b6120b6565b348015610b9057600080fd5b506104f1610b9f366004612f6e565b612124565b348015610bb057600080fd5b506104f1610bbf366004612f6e565b612145565b348015610bd057600080fd5b5061043f610bdf366004612d95565b612166565b60006001600160a01b038216610c155760405162461bcd60e51b8152600401610c0c90613657565b60405180910390fd5b506001600160a01b0381166000908152601860205260409020545b919050565b60006001600160e01b031982166380ac58cd60e01b1480610c6657506001600160e01b03198216635b5e139f60e01b145b80610c8157506001600160e01b0319821663780e9d6360e01b145b80610c905750610c90826121aa565b92915050565b606060018054610ca590613ce8565b80601f0160208091040260200160405190810160405280929190818152602001828054610cd190613ce8565b8015610d1e5780601f10610cf357610100808354040283529160200191610d1e565b820191906000526020600020905b815481529060010190602001808311610d0157829003601f168201915b5050505050905090565b6000610d33826121c3565b610d4f5760405162461bcd60e51b8152600401610c0c90613b05565b506000908152600560205260409020546001600160a01b031690565b6000610d76826114ae565b9050806001600160a01b0316836001600160a01b03161415610daa5760405162461bcd60e51b8152600401610c0c906137cd565b806001600160a01b0316610dbc6121ca565b6001600160a01b03161480610dd85750610dd881610ae06121ca565b610df45760405162461bcd60e51b8152600401610c0c906134fd565b610dff8383836121ce565b505050565b60005490565b600b5490565b610dff83838361222a565b600c5490565b6001600160a01b031660009081526017602052604090205460ff1690565b33610e48611c20565b6001600160a01b031614610e5b57600080fd5b6011805460ff1916911515919091179055565b6000610e79836114c6565b8210610e975760405162461bcd60e51b8152600401610c0c906131e9565b6000610ea1610e04565b905060008060005b83811015610f4a576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215610efb57805192505b876001600160a01b0316836001600160a01b03161415610f375786841415610f2957509350610c9092505050565b83610f3381613d23565b9450505b5080610f4281613d23565b915050610ea9565b5060405162461bcd60e51b8152600401610c0c906139fa565b33610f6c611c20565b6001600160a01b031614610f7f57600080fd5b600b55565b33610f8d611c20565b6001600160a01b031614610fa057600080fd5b60165447906001600160a01b03166108fc612710610fbe8482613c47565b610fc89190613c33565b6040518115909202916000818181858888f19350505050158015610ff0573d6000803e3d6000fd5b50610ff9611c20565b6001600160a01b03166108fc612710611013846000613c47565b61101d9190613c33565b6040518115909202916000818181858888f19350505050158015611045573d6000803e3d6000fd5b5050565b33611052611c20565b6001600160a01b03161461106557600080fd5b60118054911515620100000262ff000019909216919091179055565b600c5481565b601254611092610e04565b11156110b05760405162461bcd60e51b8152600401610c0c90613407565b3233146110cf5760405162461bcd60e51b8152600401610c0c906134c6565b6110d7611c20565b6001600160a01b0316336001600160a01b03161461111657601154610100900460ff166111165760405162461bcd60e51b8152600401610c0c90613299565b61111e611c20565b6001600160a01b0316826001600160a01b03161461116b5760145481611143846114c6565b61114d9190613c1b565b111561116b5760405162461bcd60e51b8152600401610c0c9061338d565b60145433600090815260196020526040902054611189908390613c1b565b11156111a75760405162461bcd60e51b8152600401610c0c90613a48565b601254816111b3610e04565b6111bd9190613c1b565b11156111db5760405162461bcd60e51b8152600401610c0c9061379d565b6012546111e6610e04565b11156112045760405162461bcd60e51b8152600401610c0c90613996565b6013548111156112265760405162461bcd60e51b8152600401610c0c90613766565b7f00000000000000000000000000000000000000000000000000000000000000008161125133611fd0565b61125b9190613c1b565b11156112795760405162461bcd60e51b8152600401610c0c9061392f565b6011546301000000900460ff16156112a35760405162461bcd60e51b8152600401610c0c90613360565b80600a546112b19190613c47565b3410156112d05760405162461bcd60e51b8152600401610c0c906139c3565b33600090815260196020526040812080548392906112ef908490613c1b565b909155506110459050828261253c565b610dff83838360405180602001604052806000815250611eb3565b601154640100000000900460ff1681565b60606000611338836114c6565b90506000816001600160401b0381111561136257634e487b7160e01b600052604160045260246000fd5b60405190808252806020026020018201604052801561138b578160200160208202803683370190505b50905060005b828110156113e0576113a38582610e6e565b8282815181106113c357634e487b7160e01b600052603260045260246000fd5b6020908102919091010152806113d881613d23565b915050611391565b509392505050565b60006113f2611c20565b905090565b60125481565b33611406611c20565b6001600160a01b03161461141957600080fd5b601355565b6000611428610e04565b82106114465760405162461bcd60e51b8152600401610c0c906133c4565b5090565b33611453611c20565b6001600160a01b03161461146657600080fd5b8051611045906010906020840190612c6b565b33611482611c20565b6001600160a01b03161461149557600080fd5b600f55565b601154610100900460ff1681565b60095490565b60006114b982612556565b5192915050565b600a5481565b60006001600160a01b0382166114ee5760405162461bcd60e51b8152600401610c0c9061355a565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b61151b6121ca565b6001600160a01b031661152c611c20565b6001600160a01b0316146115525760405162461bcd60e51b8152600401610c0c90613622565b61155c6000612668565b565b33611567611c20565b6001600160a01b03161461157a57600080fd5b600f54600e54111561159e5760405162461bcd60e51b8152600401610c0c9061322b565b601254600d546115ac610e04565b6115b69190613c1b565b11156115d45760405162461bcd60e51b8152600401610c0c9061379d565b6012546115df610e04565b11156115fd5760405162461bcd60e51b8152600401610c0c90613996565b600d54600e60008282546116119190613c1b565b9250508190555061155c33600d5461253c565b3361162d611c20565b6001600160a01b03161461164057600080fd5b60005b81811015610dff57600083838381811061166d57634e487b7160e01b600052603260045260246000fd5b90506020020160208101906116829190612d95565b6001600160a01b031614156116a95760405162461bcd60e51b8152600401610c0c906135eb565b6001601760008585858181106116cf57634e487b7160e01b600052603260045260246000fd5b90506020020160208101906116e49190612d95565b6001600160a01b0316815260208101919091526040016000908120805460ff19169215159290921790915560188185858581811061173257634e487b7160e01b600052603260045260246000fd5b90506020020160208101906117479190612d95565b6001600160a01b03166001600160a01b0316815260200190815260200160002054116117745760006117cf565b6018600084848481811061179857634e487b7160e01b600052603260045260246000fd5b90506020020160208101906117ad9190612d95565b6001600160a01b03166001600160a01b03168152602001908152602001600020545b50806117da81613d23565b915050611643565b336117eb611c20565b6001600160a01b0316146117fe57600080fd5b601255565b3361180c611c20565b6001600160a01b03161461181f57600080fd5b6012548161182b610e04565b6118359190613c1b565b11156118535760405162461bcd60e51b8152600401610c0c9061379d565b60125461185e610e04565b111561187c5760405162461bcd60e51b8152600401610c0c90613996565b611045828261253c565b601254611891610e04565b11156118af5760405162461bcd60e51b8152600401610c0c90613407565b60115462010000900460ff166118d75760405162461bcd60e51b8152600401610c0c9061395f565b3360009081526017602052604090205460ff166119065760405162461bcd60e51b8152600401610c0c90613262565b601254611911610e04565b1061192e5760405162461bcd60e51b8152600401610c0c90613ace565b6015548111156119505760405162461bcd60e51b8152600401610c0c90613b94565b6015543360009081526018602052604090205461196e908390613c1b565b111561198c5760405162461bcd60e51b8152600401610c0c90613a48565b80600b5461199a9190613c47565b3410156119b95760405162461bcd60e51b8152600401610c0c906139c3565b6011546301000000900460ff16156119e35760405162461bcd60e51b8152600401610c0c90613360565b3360009081526018602052604081208054839290611a02908490613c1b565b90915550611a129050338261253c565b50565b601254611a20610e04565b1115611a3e5760405162461bcd60e51b8152600401610c0c90613407565b600033604051602001611a5191906130e1565b60408051601f19818403018152919052805160209091012060115490915060ff16611a8e5760405162461bcd60e51b8152600401610c0c9061380f565b600954611a9d908390836126ba565b611ab95760405162461bcd60e51b8152600401610c0c906138c7565b601254611ac4610e04565b10611ae15760405162461bcd60e51b8152600401610c0c90613ace565b601554831115611b035760405162461bcd60e51b8152600401610c0c90613b94565b60155433600090815260186020526040902054611b21908590613c1b565b1115611b3f5760405162461bcd60e51b8152600401610c0c90613a48565b82600c54611b4d9190613c47565b341015611b6c5760405162461bcd60e51b8152600401610c0c906139c3565b6011546301000000900460ff1615611b965760405162461bcd60e51b8152600401610c0c90613360565b3360009081526018602052604081208054859290611bb5908490613c1b565b90915550610dff9050338461253c565b33611bce611c20565b6001600160a01b031614611be157600080fd5b601555565b6011546301000000900460ff1681565b60155481565b7f000000000000000000000000000000000000000000000000000000000000000081565b6008546001600160a01b031690565b33611c38611c20565b6001600160a01b031614611c4b57600080fd5b6011805463ff00000019166301000000179055565b606060028054610ca590613ce8565b33611c78611c20565b6001600160a01b031614611c8b57600080fd5b601180549115156401000000000264ff0000000019909216919091179055565b60135481565b60115462010000900460ff1681565b611cc86121ca565b6001600160a01b0316826001600160a01b03161415611cf95760405162461bcd60e51b8152600401610c0c906136dd565b8060066000611d066121ca565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155611d4a6121ca565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611d8291906131c2565b60405180910390a35050565b33611d97611c20565b6001600160a01b031614611daa57600080fd5b60005b81811015610dff576000838383818110611dd757634e487b7160e01b600052603260045260246000fd5b9050602002016020810190611dec9190612d95565b6001600160a01b03161415611e135760405162461bcd60e51b8152600401610c0c906135eb565b600060176000858585818110611e3957634e487b7160e01b600052603260045260246000fd5b9050602002016020810190611e4e9190612d95565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580611e8081613d23565b915050611dad565b600a5490565b600033611e99611c20565b6001600160a01b031614611eac57600080fd5b5060135490565b611ebe84848461222a565b611eca848484846126d0565b611ee65760405162461bcd60e51b8152600401610c0c9061383d565b50505050565b60115460ff1681565b33611efe611c20565b6001600160a01b031614611f1157600080fd5b600c55565b60006113f2610e04565b6060611f2b826121c3565b611f475760405162461bcd60e51b8152600401610c0c9061368e565b6000611f516127ec565b90506000815111611f715760405180602001604052806000815250611f9c565b80611f7b846127fb565b604051602001611f8c9291906130fe565b6040516020818303038152906040525b9392505050565b60145481565b60075481565b33611fb8611c20565b6001600160a01b031614611fcb57600080fd5b600955565b6000610c9082612915565b600d5490565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b33612018611c20565b6001600160a01b03161461202b57600080fd5b601455565b60095481565b600b5481565b33612045611c20565b6001600160a01b03161461205857600080fd5b6011805461ff001916610100831515021790556040517f58655b75d3df612fe99ead00dbf0812d415d35078fe06217a94c0818bb13967f9061209b9083906131c2565b60405180910390a150565b6011546301000000900460ff1690565b6120be6121ca565b6001600160a01b03166120cf611c20565b6001600160a01b0316146120f55760405162461bcd60e51b8152600401610c0c90613622565b6001600160a01b03811661211b5760405162461bcd60e51b8152600401610c0c906132d0565b611a1281612668565b3361212d611c20565b6001600160a01b03161461214057600080fd5b600a55565b3361214e611c20565b6001600160a01b03161461216157600080fd5b600d55565b60006001600160a01b03821661218e5760405162461bcd60e51b8152600401610c0c90613657565b506001600160a01b031660009081526019602052604090205490565b6001600160e01b031981166301ffc9a760e01b14919050565b6000541190565b3390565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061223582612556565b9050600081600001516001600160a01b031661224f6121ca565b6001600160a01b0316148061228457506122676121ca565b6001600160a01b031661227984610d28565b6001600160a01b0316145b806122985750815161229890610ae06121ca565b9050806122b75760405162461bcd60e51b8152600401610c0c90613714565b846001600160a01b031682600001516001600160a01b0316146122ec5760405162461bcd60e51b8152600401610c0c906135a5565b6001600160a01b0384166123125760405162461bcd60e51b8152600401610c0c90613430565b61231f8585856001611ee6565b61232f60008484600001516121ce565b6001600160a01b03851660009081526004602052604081208054600192906123619084906001600160801b0316613c66565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b038616600090815260046020526040812080546001945090926123ad91859116613bf9565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b0380871682526001600160401b03428116602080850191825260008981526003909152948520935184549151909216600160a01b0267ffffffffffffffff60a01b19929093166001600160a01b03199091161716179055612442846001613c1b565b6000818152600360205260409020549091506001600160a01b03166124e65761246a816121c3565b156124e65760408051808201825284516001600160a01b0390811682526020808701516001600160401b0390811682850190815260008781526003909352949091209251835494516001600160a01b031990951692169190911767ffffffffffffffff60a01b1916600160a01b93909116929092029190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46125348686866001611ee6565b505050505050565b611045828260405180602001604052806000815250612969565b61255e612ceb565b612567826121c3565b6125835760405162461bcd60e51b8152600401610c0c90613316565b60007f000000000000000000000000000000000000000000000000000000000000000083106125e4576125d67f000000000000000000000000000000000000000000000000000000000000000084613c8e565b6125e1906001613c1b565b90505b825b81811061264f576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b0316918301919091521561263c579250610c30915050565b508061264781613cd1565b9150506125e6565b5060405162461bcd60e51b8152600401610c0c90613a7f565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000826126c78584612bdb565b14949350505050565b60006126e4846001600160a01b0316612c4d565b156127e057836001600160a01b031663150b7a026127006121ca565b8786866040518563ffffffff1660e01b81526004016127229493929190613141565b602060405180830381600087803b15801561273c57600080fd5b505af192505050801561276c575060408051601f3d908101601f1916820190925261276991810190612fa2565b60015b6127c6573d80801561279a576040519150601f19603f3d011682016040523d82523d6000602084013e61279f565b606091505b5080516127be5760405162461bcd60e51b8152600401610c0c9061383d565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506127e4565b5060015b949350505050565b606060108054610ca590613ce8565b60608161282057506040805180820190915260018152600360fc1b6020820152610c30565b8160005b811561284a578061283481613d23565b91506128439050600a83613c33565b9150612824565b6000816001600160401b0381111561287257634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561289c576020820181803683370190505b5090505b84156127e4576128b1600183613c8e565b91506128be600a86613d3e565b6128c9906030613c1b565b60f81b8183815181106128ec57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535061290e600a86613c33565b94506128a0565b60006001600160a01b03821661293d5760405162461bcd60e51b8152600401610c0c90613475565b506001600160a01b0316600090815260046020526040902054600160801b90046001600160801b031690565b6000546001600160a01b0384166129925760405162461bcd60e51b8152600401610c0c906138ee565b61299b816121c3565b156129b85760405162461bcd60e51b8152600401610c0c90613890565b7f00000000000000000000000000000000000000000000000000000000000000008311156129f85760405162461bcd60e51b8152600401610c0c90613b52565b612a056000858386611ee6565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190612a61908790613bf9565b6001600160801b03168152602001858360200151612a7f9190613bf9565b6001600160801b039081169091526001600160a01b03808816600081815260046020908152604080832087518154988401518816600160801b029088166fffffffffffffffffffffffffffffffff199099169890981790961696909617909455845180860186529182526001600160401b034281168386019081528883526003909552948120915182549451909516600160a01b0267ffffffffffffffff60a01b19959093166001600160a01b031990941693909317939093161790915582905b85811015612bc95760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4612b8d60008884886126d0565b612ba95760405162461bcd60e51b8152600401610c0c9061383d565b81612bb381613d23565b9250508080612bc190613d23565b915050612b40565b50600081815561253490878588611ee6565b600081815b84518110156113e0576000858281518110612c0b57634e487b7160e01b600052603260045260246000fd5b60200260200101519050808311612c2d57612c268382612c5c565b9250612c3a565b612c378184612c5c565b92505b5080612c4581613d23565b915050612be0565b6001600160a01b03163b151590565b60009182526020526040902090565b828054612c7790613ce8565b90600052602060002090601f016020900481019282612c995760008555612cdf565b82601f10612cb257805160ff1916838001178555612cdf565b82800160010185558215612cdf579182015b82811115612cdf578251825591602001919060010190612cc4565b50611446929150612d02565b604080518082019091526000808252602082015290565b5b808211156114465760008155600101612d03565b60006001600160401b03831115612d3057612d30613d7e565b612d43601f8401601f1916602001613bc9565b9050828152838383011115612d5757600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114610c3057600080fd5b80358015158114610c3057600080fd5b600060208284031215612da6578081fd5b611f9c82612d6e565b60008060408385031215612dc1578081fd5b612dca83612d6e565b9150612dd860208401612d6e565b90509250929050565b600080600060608486031215612df5578081fd5b612dfe84612d6e565b9250612e0c60208501612d6e565b9150604084013590509250925092565b60008060008060808587031215612e31578081fd5b612e3a85612d6e565b9350612e4860208601612d6e565b92506040850135915060608501356001600160401b03811115612e69578182fd5b8501601f81018713612e79578182fd5b612e8887823560208401612d17565b91505092959194509250565b60008060408385031215612ea6578182fd5b612eaf83612d6e565b9150612dd860208401612d85565b60008060408385031215612ecf578182fd5b612ed883612d6e565b946020939093013593505050565b60008060208385031215612ef8578182fd5b82356001600160401b0380821115612f0e578384fd5b818501915085601f830112612f21578384fd5b813581811115612f2f578485fd5b8660208083028501011115612f42578485fd5b60209290920196919550909350505050565b600060208284031215612f65578081fd5b611f9c82612d85565b600060208284031215612f7f578081fd5b5035919050565b600060208284031215612f97578081fd5b8135611f9c81613d94565b600060208284031215612fb3578081fd5b8151611f9c81613d94565b600060208284031215612fcf578081fd5b81356001600160401b03811115612fe4578182fd5b8201601f81018413612ff4578182fd5b6127e484823560208401612d17565b60008060408385031215613015578182fd5b823591506020808401356001600160401b0380821115613033578384fd5b818601915086601f830112613046578384fd5b81358181111561305857613058613d7e565b8381029150613068848301613bc9565b8181528481019084860184860187018b1015613082578788fd5b8795505b838610156130a4578035835260019590950194918601918601613086565b508096505050505050509250929050565b600081518084526130cd816020860160208601613ca5565b601f01601f19169290920160200192915050565b60609190911b6bffffffffffffffffffffffff1916815260140190565b60008351613110818460208801613ca5565b835190830190613124818360208801613ca5565b01949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090613174908301846130b5565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156131b65783518352928401929184019160010161319a565b50909695505050505050565b901515815260200190565b90815260200190565b600060208252611f9c60208301846130b5565b60208082526022908201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b6020808252601b908201527f4d61782052657365727665732074616b656e20616c7265616479210000000000604082015260600190565b6020808252601d908201527f596f7520617265206e6f74206f6e2074686520416c6c6f77204c697374000000604082015260600190565b6020808252601d908201527f53616c65206973206e6f74206163746976652063757272656e746c792e000000604082015260600190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252602a908201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736040820152693a32b73a103a37b5b2b760b11b606082015260800190565b60208082526013908201527226b4b73a1021b637b9b2b2102337b932bb32b960691b604082015260600190565b60208082526018908201527f4d617820686f6c64696e672063617020726561636865642e0000000000000000604082015260600190565b60208082526023908201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756040820152626e647360e81b606082015260800190565b6020808252600f908201526e29b0b632903430b99032b73232b21760891b604082015260600190565b60208082526025908201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526031908201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260408201527020746865207a65726f206164647265737360781b606082015260800190565b6020808252601e908201527f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000604082015260600190565b60208082526039908201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60408201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606082015260800190565b6020808252602b908201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60408201526a65726f206164647265737360a81b606082015260800190565b60208082526026908201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746040820152651037bbb732b960d11b606082015260800190565b60208082526018908201527f43616e2774206164642061206e756c6c20616464726573730000000000000000604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601e908201527f5a65726f2061646472657373206e6f74206f6e20416c6c6f77204c6973740000604082015260600190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b6020808252601a908201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604082015260600190565b60208082526032908201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206040820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606082015260800190565b6020808252601e908201527f45786365656473206d6178696d756d20616c6c6f77656420746f6b656e730000604082015260600190565b6020808252601690820152752a37ba30b61039bab838363c9032bc31b2b2b232b21760511b604082015260600190565b60208082526022908201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60408201526132b960f11b606082015260800190565b602080825260149082015273526166666c65206973206e6f742061637469766560601b604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b6020808252601d908201527f455243373231413a20746f6b656e20616c7265616479206d696e746564000000604082015260600190565b6020808252600d908201526c34b73b30b634b210383937b7b360991b604082015260600190565b60208082526021908201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526016908201527563616e206e6f74206d696e742074686973206d616e7960501b604082015260600190565b6020808252601b908201527f5072652053616c65204d696e74206973206e6f74206163746976650000000000604082015260600190565b6020808252601390820152722a37ba30b61039bab838363c9039b832b73a1760691b604082015260600190565b6020808252601b908201527f496e7375666669656e742045544820616d6f756e742073656e742e0000000000604082015260600190565b6020808252602e908201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060408201526d0deeedccae440c4f240d2dcc8caf60931b606082015260800190565b6020808252601c908201527f50757263686173652065786365656473206d617820616c6c6f77656400000000604082015260600190565b6020808252602f908201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560408201526e1037bbb732b91037b3103a37b5b2b760891b606082015260800190565b6020808252601b908201527f416c6c20746f6b656e732068617665206265656e206d696e7465640000000000604082015260600190565b6020808252602d908201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560408201526c3c34b9ba32b73a103a37b5b2b760991b606082015260800190565b60208082526022908201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696040820152610ced60f31b606082015260800190565b6020808252818101527f43616e6e6f742070757263686173652074686973206d616e7920746f6b656e73604082015260600190565b604051601f8201601f191681016001600160401b0381118282101715613bf157613bf1613d7e565b604052919050565b60006001600160801b0380831681851680830382111561312457613124613d52565b60008219821115613c2e57613c2e613d52565b500190565b600082613c4257613c42613d68565b500490565b6000816000190483118215151615613c6157613c61613d52565b500290565b60006001600160801b0383811690831681811015613c8657613c86613d52565b039392505050565b600082821015613ca057613ca0613d52565b500390565b60005b83811015613cc0578181015183820152602001613ca8565b83811115611ee65750506000910152565b600081613ce057613ce0613d52565b506000190190565b600281046001821680613cfc57607f821691505b60208210811415613d1d57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415613d3757613d37613d52565b5060010190565b600082613d4d57613d4d613d68565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114611a1257600080fdfea2646970667358221220c48b0fcdc4ccf0505ba1ba883fcd610cf395227f1dc2383120331f608f59897564736f6c6343000801003300000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000d050000000000000000000000000000000000000000000000000000000000000d05000000000000000000000000000000000000000000000000000000000000005c68747470733a2f2f726163696e67736f6369616c636c75622e6d7970696e6174612e636c6f75642f697066732f516d636f7a6f38584b56575847434d4e6a746151764174766f707a32413632593571727079676d4a4b53576358722f00000000

Deployed Bytecode

0x60806040526004361061041a5760003560e01c80637835c6351161021e578063c3ac4feb11610123578063ea6eb836116100ab578063f132dc291161007a578063f132dc2914610b4f578063f2fde38b14610b64578063f4a0a52814610b84578063f6c9d9e314610ba4578063f7cb9e5414610bc45761041a565b8063ea6eb83614610ae5578063ebf0c71714610b05578063ec7d099114610b1a578063ee1cc94414610b2f5761041a565b8063d7224ba0116100f2578063d7224ba014610a5b578063dab5f34014610a70578063dc33e68114610a90578063e7b62d9614610ab0578063e985e9c514610ac55761041a565b8063c3ac4feb146109f1578063c4e41b2214610a11578063c87b56dd14610a26578063cadf881814610a465761041a565b806398590a39116101a6578063a51312c811610175578063a51312c814610972578063a7f93ebd14610992578063ad06d758146109a7578063b88d4fde146109bc578063c3441646146109dc5761041a565b806398590a39146109085780639a3bf728146109285780639ccb0fea1461093d578063a22cb465146109525761041a565b80637f44ab2f116101ed5780637f44ab2f1461089f5780638bc35c2f146108b45780638da5cb5b146108c9578063932ecebc146108de57806395d89b41146108f35761041a565b80637835c635146108445780637890b2c9146108575780637a6685f11461086a5780637d26f4701461088a5761041a565b8063431adcb1116103245780635ca1e165116102ac578063715018a61161027b578063715018a6146107ba57806371e3500c146107cf5780637263cfe2146107e45780637389fbb71461080457806377b501b9146108245761041a565b80635ca1e165146107505780636352211e146107655780636817c76c1461078557806370a082311461079a5761041a565b80634dfea627116102f35780634dfea627146106bb5780634f6ccce7146106db57806355f804b3146106fb57806356a87caa1461071b5780635b92ac0d1461073b5761041a565b8063431adcb11461064f578063438b630014610664578063442890d5146106915780634d0550de146106a65761041a565b80632c1205f4116103a75780633ccfd60b116103765780633ccfd60b146105d25780633cfac570146105e75780633e8f09871461060757806340c10f191461061c57806342842e0e1461062f5761041a565b80632c1205f4146105525780632f57bcfe146105725780632f745c59146105925780633b9ee7e4146105b25761041a565b8063095ea7b3116103ee578063095ea7b3146104d157806318160ddd146104f357806321a911f81461050857806323b872dd1461051d5780632992b0b01461053d5761041a565b806208ffdd1461041f57806301ffc9a71461045557806306fdde0314610482578063081812fc146104a4575b600080fd5b34801561042b57600080fd5b5061043f61043a366004612d95565b610be4565b60405161044c91906131cd565b60405180910390f35b34801561046157600080fd5b50610475610470366004612f86565b610c35565b60405161044c91906131c2565b34801561048e57600080fd5b50610497610c96565b60405161044c91906131d6565b3480156104b057600080fd5b506104c46104bf366004612f6e565b610d28565b60405161044c919061312d565b3480156104dd57600080fd5b506104f16104ec366004612ebd565b610d6b565b005b3480156104ff57600080fd5b5061043f610e04565b34801561051457600080fd5b5061043f610e0a565b34801561052957600080fd5b506104f1610538366004612de1565b610e10565b34801561054957600080fd5b5061043f610e1b565b34801561055e57600080fd5b5061047561056d366004612d95565b610e21565b34801561057e57600080fd5b506104f161058d366004612f54565b610e3f565b34801561059e57600080fd5b5061043f6105ad366004612ebd565b610e6e565b3480156105be57600080fd5b506104f16105cd366004612f6e565b610f63565b3480156105de57600080fd5b506104f1610f84565b3480156105f357600080fd5b506104f1610602366004612f54565b611049565b34801561061357600080fd5b5061043f611081565b6104f161062a366004612ebd565b611087565b34801561063b57600080fd5b506104f161064a366004612de1565b6112ff565b34801561065b57600080fd5b5061047561131a565b34801561067057600080fd5b5061068461067f366004612d95565b61132b565b60405161044c919061317e565b34801561069d57600080fd5b506104c46113e8565b3480156106b257600080fd5b5061043f6113f7565b3480156106c757600080fd5b506104f16106d6366004612f6e565b6113fd565b3480156106e757600080fd5b5061043f6106f6366004612f6e565b61141e565b34801561070757600080fd5b506104f1610716366004612fbe565b61144a565b34801561072757600080fd5b506104f1610736366004612f6e565b611479565b34801561074757600080fd5b5061047561149a565b34801561075c57600080fd5b5061043f6114a8565b34801561077157600080fd5b506104c4610780366004612f6e565b6114ae565b34801561079157600080fd5b5061043f6114c0565b3480156107a657600080fd5b5061043f6107b5366004612d95565b6114c6565b3480156107c657600080fd5b506104f1611513565b3480156107db57600080fd5b506104f161155e565b3480156107f057600080fd5b506104f16107ff366004612ee6565b611624565b34801561081057600080fd5b506104f161081f366004612f6e565b6117e2565b34801561083057600080fd5b506104f161083f366004612ebd565b611803565b6104f1610852366004612f6e565b611886565b6104f1610865366004613003565b611a15565b34801561087657600080fd5b506104f1610885366004612f6e565b611bc5565b34801561089657600080fd5b50610475611be6565b3480156108ab57600080fd5b5061043f611bf6565b3480156108c057600080fd5b5061043f611bfc565b3480156108d557600080fd5b506104c4611c20565b3480156108ea57600080fd5b506104f1611c2f565b3480156108ff57600080fd5b50610497611c60565b34801561091457600080fd5b506104f1610923366004612f54565b611c6f565b34801561093457600080fd5b5061043f611cab565b34801561094957600080fd5b50610475611cb1565b34801561095e57600080fd5b506104f161096d366004612e94565b611cc0565b34801561097e57600080fd5b506104f161098d366004612ee6565b611d8e565b34801561099e57600080fd5b5061043f611e88565b3480156109b357600080fd5b5061043f611e8e565b3480156109c857600080fd5b506104f16109d7366004612e1c565b611eb3565b3480156109e857600080fd5b50610475611eec565b3480156109fd57600080fd5b506104f1610a0c366004612f6e565b611ef5565b348015610a1d57600080fd5b5061043f611f16565b348015610a3257600080fd5b50610497610a41366004612f6e565b611f20565b348015610a5257600080fd5b5061043f611fa3565b348015610a6757600080fd5b5061043f611fa9565b348015610a7c57600080fd5b506104f1610a8b366004612f6e565b611faf565b348015610a9c57600080fd5b5061043f610aab366004612d95565b611fd0565b348015610abc57600080fd5b5061043f611fdb565b348015610ad157600080fd5b50610475610ae0366004612daf565b611fe1565b348015610af157600080fd5b506104f1610b00366004612f6e565b61200f565b348015610b1157600080fd5b5061043f612030565b348015610b2657600080fd5b5061043f612036565b348015610b3b57600080fd5b506104f1610b4a366004612f54565b61203c565b348015610b5b57600080fd5b506104756120a6565b348015610b7057600080fd5b506104f1610b7f366004612d95565b6120b6565b348015610b9057600080fd5b506104f1610b9f366004612f6e565b612124565b348015610bb057600080fd5b506104f1610bbf366004612f6e565b612145565b348015610bd057600080fd5b5061043f610bdf366004612d95565b612166565b60006001600160a01b038216610c155760405162461bcd60e51b8152600401610c0c90613657565b60405180910390fd5b506001600160a01b0381166000908152601860205260409020545b919050565b60006001600160e01b031982166380ac58cd60e01b1480610c6657506001600160e01b03198216635b5e139f60e01b145b80610c8157506001600160e01b0319821663780e9d6360e01b145b80610c905750610c90826121aa565b92915050565b606060018054610ca590613ce8565b80601f0160208091040260200160405190810160405280929190818152602001828054610cd190613ce8565b8015610d1e5780601f10610cf357610100808354040283529160200191610d1e565b820191906000526020600020905b815481529060010190602001808311610d0157829003601f168201915b5050505050905090565b6000610d33826121c3565b610d4f5760405162461bcd60e51b8152600401610c0c90613b05565b506000908152600560205260409020546001600160a01b031690565b6000610d76826114ae565b9050806001600160a01b0316836001600160a01b03161415610daa5760405162461bcd60e51b8152600401610c0c906137cd565b806001600160a01b0316610dbc6121ca565b6001600160a01b03161480610dd85750610dd881610ae06121ca565b610df45760405162461bcd60e51b8152600401610c0c906134fd565b610dff8383836121ce565b505050565b60005490565b600b5490565b610dff83838361222a565b600c5490565b6001600160a01b031660009081526017602052604090205460ff1690565b33610e48611c20565b6001600160a01b031614610e5b57600080fd5b6011805460ff1916911515919091179055565b6000610e79836114c6565b8210610e975760405162461bcd60e51b8152600401610c0c906131e9565b6000610ea1610e04565b905060008060005b83811015610f4a576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215610efb57805192505b876001600160a01b0316836001600160a01b03161415610f375786841415610f2957509350610c9092505050565b83610f3381613d23565b9450505b5080610f4281613d23565b915050610ea9565b5060405162461bcd60e51b8152600401610c0c906139fa565b33610f6c611c20565b6001600160a01b031614610f7f57600080fd5b600b55565b33610f8d611c20565b6001600160a01b031614610fa057600080fd5b60165447906001600160a01b03166108fc612710610fbe8482613c47565b610fc89190613c33565b6040518115909202916000818181858888f19350505050158015610ff0573d6000803e3d6000fd5b50610ff9611c20565b6001600160a01b03166108fc612710611013846000613c47565b61101d9190613c33565b6040518115909202916000818181858888f19350505050158015611045573d6000803e3d6000fd5b5050565b33611052611c20565b6001600160a01b03161461106557600080fd5b60118054911515620100000262ff000019909216919091179055565b600c5481565b601254611092610e04565b11156110b05760405162461bcd60e51b8152600401610c0c90613407565b3233146110cf5760405162461bcd60e51b8152600401610c0c906134c6565b6110d7611c20565b6001600160a01b0316336001600160a01b03161461111657601154610100900460ff166111165760405162461bcd60e51b8152600401610c0c90613299565b61111e611c20565b6001600160a01b0316826001600160a01b03161461116b5760145481611143846114c6565b61114d9190613c1b565b111561116b5760405162461bcd60e51b8152600401610c0c9061338d565b60145433600090815260196020526040902054611189908390613c1b565b11156111a75760405162461bcd60e51b8152600401610c0c90613a48565b601254816111b3610e04565b6111bd9190613c1b565b11156111db5760405162461bcd60e51b8152600401610c0c9061379d565b6012546111e6610e04565b11156112045760405162461bcd60e51b8152600401610c0c90613996565b6013548111156112265760405162461bcd60e51b8152600401610c0c90613766565b7f0000000000000000000000000000000000000000000000000000000000000d058161125133611fd0565b61125b9190613c1b565b11156112795760405162461bcd60e51b8152600401610c0c9061392f565b6011546301000000900460ff16156112a35760405162461bcd60e51b8152600401610c0c90613360565b80600a546112b19190613c47565b3410156112d05760405162461bcd60e51b8152600401610c0c906139c3565b33600090815260196020526040812080548392906112ef908490613c1b565b909155506110459050828261253c565b610dff83838360405180602001604052806000815250611eb3565b601154640100000000900460ff1681565b60606000611338836114c6565b90506000816001600160401b0381111561136257634e487b7160e01b600052604160045260246000fd5b60405190808252806020026020018201604052801561138b578160200160208202803683370190505b50905060005b828110156113e0576113a38582610e6e565b8282815181106113c357634e487b7160e01b600052603260045260246000fd5b6020908102919091010152806113d881613d23565b915050611391565b509392505050565b60006113f2611c20565b905090565b60125481565b33611406611c20565b6001600160a01b03161461141957600080fd5b601355565b6000611428610e04565b82106114465760405162461bcd60e51b8152600401610c0c906133c4565b5090565b33611453611c20565b6001600160a01b03161461146657600080fd5b8051611045906010906020840190612c6b565b33611482611c20565b6001600160a01b03161461149557600080fd5b600f55565b601154610100900460ff1681565b60095490565b60006114b982612556565b5192915050565b600a5481565b60006001600160a01b0382166114ee5760405162461bcd60e51b8152600401610c0c9061355a565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b61151b6121ca565b6001600160a01b031661152c611c20565b6001600160a01b0316146115525760405162461bcd60e51b8152600401610c0c90613622565b61155c6000612668565b565b33611567611c20565b6001600160a01b03161461157a57600080fd5b600f54600e54111561159e5760405162461bcd60e51b8152600401610c0c9061322b565b601254600d546115ac610e04565b6115b69190613c1b565b11156115d45760405162461bcd60e51b8152600401610c0c9061379d565b6012546115df610e04565b11156115fd5760405162461bcd60e51b8152600401610c0c90613996565b600d54600e60008282546116119190613c1b565b9250508190555061155c33600d5461253c565b3361162d611c20565b6001600160a01b03161461164057600080fd5b60005b81811015610dff57600083838381811061166d57634e487b7160e01b600052603260045260246000fd5b90506020020160208101906116829190612d95565b6001600160a01b031614156116a95760405162461bcd60e51b8152600401610c0c906135eb565b6001601760008585858181106116cf57634e487b7160e01b600052603260045260246000fd5b90506020020160208101906116e49190612d95565b6001600160a01b0316815260208101919091526040016000908120805460ff19169215159290921790915560188185858581811061173257634e487b7160e01b600052603260045260246000fd5b90506020020160208101906117479190612d95565b6001600160a01b03166001600160a01b0316815260200190815260200160002054116117745760006117cf565b6018600084848481811061179857634e487b7160e01b600052603260045260246000fd5b90506020020160208101906117ad9190612d95565b6001600160a01b03166001600160a01b03168152602001908152602001600020545b50806117da81613d23565b915050611643565b336117eb611c20565b6001600160a01b0316146117fe57600080fd5b601255565b3361180c611c20565b6001600160a01b03161461181f57600080fd5b6012548161182b610e04565b6118359190613c1b565b11156118535760405162461bcd60e51b8152600401610c0c9061379d565b60125461185e610e04565b111561187c5760405162461bcd60e51b8152600401610c0c90613996565b611045828261253c565b601254611891610e04565b11156118af5760405162461bcd60e51b8152600401610c0c90613407565b60115462010000900460ff166118d75760405162461bcd60e51b8152600401610c0c9061395f565b3360009081526017602052604090205460ff166119065760405162461bcd60e51b8152600401610c0c90613262565b601254611911610e04565b1061192e5760405162461bcd60e51b8152600401610c0c90613ace565b6015548111156119505760405162461bcd60e51b8152600401610c0c90613b94565b6015543360009081526018602052604090205461196e908390613c1b565b111561198c5760405162461bcd60e51b8152600401610c0c90613a48565b80600b5461199a9190613c47565b3410156119b95760405162461bcd60e51b8152600401610c0c906139c3565b6011546301000000900460ff16156119e35760405162461bcd60e51b8152600401610c0c90613360565b3360009081526018602052604081208054839290611a02908490613c1b565b90915550611a129050338261253c565b50565b601254611a20610e04565b1115611a3e5760405162461bcd60e51b8152600401610c0c90613407565b600033604051602001611a5191906130e1565b60408051601f19818403018152919052805160209091012060115490915060ff16611a8e5760405162461bcd60e51b8152600401610c0c9061380f565b600954611a9d908390836126ba565b611ab95760405162461bcd60e51b8152600401610c0c906138c7565b601254611ac4610e04565b10611ae15760405162461bcd60e51b8152600401610c0c90613ace565b601554831115611b035760405162461bcd60e51b8152600401610c0c90613b94565b60155433600090815260186020526040902054611b21908590613c1b565b1115611b3f5760405162461bcd60e51b8152600401610c0c90613a48565b82600c54611b4d9190613c47565b341015611b6c5760405162461bcd60e51b8152600401610c0c906139c3565b6011546301000000900460ff1615611b965760405162461bcd60e51b8152600401610c0c90613360565b3360009081526018602052604081208054859290611bb5908490613c1b565b90915550610dff9050338461253c565b33611bce611c20565b6001600160a01b031614611be157600080fd5b601555565b6011546301000000900460ff1681565b60155481565b7f0000000000000000000000000000000000000000000000000000000000000d0581565b6008546001600160a01b031690565b33611c38611c20565b6001600160a01b031614611c4b57600080fd5b6011805463ff00000019166301000000179055565b606060028054610ca590613ce8565b33611c78611c20565b6001600160a01b031614611c8b57600080fd5b601180549115156401000000000264ff0000000019909216919091179055565b60135481565b60115462010000900460ff1681565b611cc86121ca565b6001600160a01b0316826001600160a01b03161415611cf95760405162461bcd60e51b8152600401610c0c906136dd565b8060066000611d066121ca565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155611d4a6121ca565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611d8291906131c2565b60405180910390a35050565b33611d97611c20565b6001600160a01b031614611daa57600080fd5b60005b81811015610dff576000838383818110611dd757634e487b7160e01b600052603260045260246000fd5b9050602002016020810190611dec9190612d95565b6001600160a01b03161415611e135760405162461bcd60e51b8152600401610c0c906135eb565b600060176000858585818110611e3957634e487b7160e01b600052603260045260246000fd5b9050602002016020810190611e4e9190612d95565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580611e8081613d23565b915050611dad565b600a5490565b600033611e99611c20565b6001600160a01b031614611eac57600080fd5b5060135490565b611ebe84848461222a565b611eca848484846126d0565b611ee65760405162461bcd60e51b8152600401610c0c9061383d565b50505050565b60115460ff1681565b33611efe611c20565b6001600160a01b031614611f1157600080fd5b600c55565b60006113f2610e04565b6060611f2b826121c3565b611f475760405162461bcd60e51b8152600401610c0c9061368e565b6000611f516127ec565b90506000815111611f715760405180602001604052806000815250611f9c565b80611f7b846127fb565b604051602001611f8c9291906130fe565b6040516020818303038152906040525b9392505050565b60145481565b60075481565b33611fb8611c20565b6001600160a01b031614611fcb57600080fd5b600955565b6000610c9082612915565b600d5490565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b33612018611c20565b6001600160a01b03161461202b57600080fd5b601455565b60095481565b600b5481565b33612045611c20565b6001600160a01b03161461205857600080fd5b6011805461ff001916610100831515021790556040517f58655b75d3df612fe99ead00dbf0812d415d35078fe06217a94c0818bb13967f9061209b9083906131c2565b60405180910390a150565b6011546301000000900460ff1690565b6120be6121ca565b6001600160a01b03166120cf611c20565b6001600160a01b0316146120f55760405162461bcd60e51b8152600401610c0c90613622565b6001600160a01b03811661211b5760405162461bcd60e51b8152600401610c0c906132d0565b611a1281612668565b3361212d611c20565b6001600160a01b03161461214057600080fd5b600a55565b3361214e611c20565b6001600160a01b03161461216157600080fd5b600d55565b60006001600160a01b03821661218e5760405162461bcd60e51b8152600401610c0c90613657565b506001600160a01b031660009081526019602052604090205490565b6001600160e01b031981166301ffc9a760e01b14919050565b6000541190565b3390565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061223582612556565b9050600081600001516001600160a01b031661224f6121ca565b6001600160a01b0316148061228457506122676121ca565b6001600160a01b031661227984610d28565b6001600160a01b0316145b806122985750815161229890610ae06121ca565b9050806122b75760405162461bcd60e51b8152600401610c0c90613714565b846001600160a01b031682600001516001600160a01b0316146122ec5760405162461bcd60e51b8152600401610c0c906135a5565b6001600160a01b0384166123125760405162461bcd60e51b8152600401610c0c90613430565b61231f8585856001611ee6565b61232f60008484600001516121ce565b6001600160a01b03851660009081526004602052604081208054600192906123619084906001600160801b0316613c66565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b038616600090815260046020526040812080546001945090926123ad91859116613bf9565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b0380871682526001600160401b03428116602080850191825260008981526003909152948520935184549151909216600160a01b0267ffffffffffffffff60a01b19929093166001600160a01b03199091161716179055612442846001613c1b565b6000818152600360205260409020549091506001600160a01b03166124e65761246a816121c3565b156124e65760408051808201825284516001600160a01b0390811682526020808701516001600160401b0390811682850190815260008781526003909352949091209251835494516001600160a01b031990951692169190911767ffffffffffffffff60a01b1916600160a01b93909116929092029190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46125348686866001611ee6565b505050505050565b611045828260405180602001604052806000815250612969565b61255e612ceb565b612567826121c3565b6125835760405162461bcd60e51b8152600401610c0c90613316565b60007f0000000000000000000000000000000000000000000000000000000000000d0583106125e4576125d67f0000000000000000000000000000000000000000000000000000000000000d0584613c8e565b6125e1906001613c1b565b90505b825b81811061264f576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b0316918301919091521561263c579250610c30915050565b508061264781613cd1565b9150506125e6565b5060405162461bcd60e51b8152600401610c0c90613a7f565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000826126c78584612bdb565b14949350505050565b60006126e4846001600160a01b0316612c4d565b156127e057836001600160a01b031663150b7a026127006121ca565b8786866040518563ffffffff1660e01b81526004016127229493929190613141565b602060405180830381600087803b15801561273c57600080fd5b505af192505050801561276c575060408051601f3d908101601f1916820190925261276991810190612fa2565b60015b6127c6573d80801561279a576040519150601f19603f3d011682016040523d82523d6000602084013e61279f565b606091505b5080516127be5760405162461bcd60e51b8152600401610c0c9061383d565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506127e4565b5060015b949350505050565b606060108054610ca590613ce8565b60608161282057506040805180820190915260018152600360fc1b6020820152610c30565b8160005b811561284a578061283481613d23565b91506128439050600a83613c33565b9150612824565b6000816001600160401b0381111561287257634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561289c576020820181803683370190505b5090505b84156127e4576128b1600183613c8e565b91506128be600a86613d3e565b6128c9906030613c1b565b60f81b8183815181106128ec57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535061290e600a86613c33565b94506128a0565b60006001600160a01b03821661293d5760405162461bcd60e51b8152600401610c0c90613475565b506001600160a01b0316600090815260046020526040902054600160801b90046001600160801b031690565b6000546001600160a01b0384166129925760405162461bcd60e51b8152600401610c0c906138ee565b61299b816121c3565b156129b85760405162461bcd60e51b8152600401610c0c90613890565b7f0000000000000000000000000000000000000000000000000000000000000d058311156129f85760405162461bcd60e51b8152600401610c0c90613b52565b612a056000858386611ee6565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190612a61908790613bf9565b6001600160801b03168152602001858360200151612a7f9190613bf9565b6001600160801b039081169091526001600160a01b03808816600081815260046020908152604080832087518154988401518816600160801b029088166fffffffffffffffffffffffffffffffff199099169890981790961696909617909455845180860186529182526001600160401b034281168386019081528883526003909552948120915182549451909516600160a01b0267ffffffffffffffff60a01b19959093166001600160a01b031990941693909317939093161790915582905b85811015612bc95760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4612b8d60008884886126d0565b612ba95760405162461bcd60e51b8152600401610c0c9061383d565b81612bb381613d23565b9250508080612bc190613d23565b915050612b40565b50600081815561253490878588611ee6565b600081815b84518110156113e0576000858281518110612c0b57634e487b7160e01b600052603260045260246000fd5b60200260200101519050808311612c2d57612c268382612c5c565b9250612c3a565b612c378184612c5c565b92505b5080612c4581613d23565b915050612be0565b6001600160a01b03163b151590565b60009182526020526040902090565b828054612c7790613ce8565b90600052602060002090601f016020900481019282612c995760008555612cdf565b82601f10612cb257805160ff1916838001178555612cdf565b82800160010185558215612cdf579182015b82811115612cdf578251825591602001919060010190612cc4565b50611446929150612d02565b604080518082019091526000808252602082015290565b5b808211156114465760008155600101612d03565b60006001600160401b03831115612d3057612d30613d7e565b612d43601f8401601f1916602001613bc9565b9050828152838383011115612d5757600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114610c3057600080fd5b80358015158114610c3057600080fd5b600060208284031215612da6578081fd5b611f9c82612d6e565b60008060408385031215612dc1578081fd5b612dca83612d6e565b9150612dd860208401612d6e565b90509250929050565b600080600060608486031215612df5578081fd5b612dfe84612d6e565b9250612e0c60208501612d6e565b9150604084013590509250925092565b60008060008060808587031215612e31578081fd5b612e3a85612d6e565b9350612e4860208601612d6e565b92506040850135915060608501356001600160401b03811115612e69578182fd5b8501601f81018713612e79578182fd5b612e8887823560208401612d17565b91505092959194509250565b60008060408385031215612ea6578182fd5b612eaf83612d6e565b9150612dd860208401612d85565b60008060408385031215612ecf578182fd5b612ed883612d6e565b946020939093013593505050565b60008060208385031215612ef8578182fd5b82356001600160401b0380821115612f0e578384fd5b818501915085601f830112612f21578384fd5b813581811115612f2f578485fd5b8660208083028501011115612f42578485fd5b60209290920196919550909350505050565b600060208284031215612f65578081fd5b611f9c82612d85565b600060208284031215612f7f578081fd5b5035919050565b600060208284031215612f97578081fd5b8135611f9c81613d94565b600060208284031215612fb3578081fd5b8151611f9c81613d94565b600060208284031215612fcf578081fd5b81356001600160401b03811115612fe4578182fd5b8201601f81018413612ff4578182fd5b6127e484823560208401612d17565b60008060408385031215613015578182fd5b823591506020808401356001600160401b0380821115613033578384fd5b818601915086601f830112613046578384fd5b81358181111561305857613058613d7e565b8381029150613068848301613bc9565b8181528481019084860184860187018b1015613082578788fd5b8795505b838610156130a4578035835260019590950194918601918601613086565b508096505050505050509250929050565b600081518084526130cd816020860160208601613ca5565b601f01601f19169290920160200192915050565b60609190911b6bffffffffffffffffffffffff1916815260140190565b60008351613110818460208801613ca5565b835190830190613124818360208801613ca5565b01949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090613174908301846130b5565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b818110156131b65783518352928401929184019160010161319a565b50909695505050505050565b901515815260200190565b90815260200190565b600060208252611f9c60208301846130b5565b60208082526022908201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b6020808252601b908201527f4d61782052657365727665732074616b656e20616c7265616479210000000000604082015260600190565b6020808252601d908201527f596f7520617265206e6f74206f6e2074686520416c6c6f77204c697374000000604082015260600190565b6020808252601d908201527f53616c65206973206e6f74206163746976652063757272656e746c792e000000604082015260600190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252602a908201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736040820152693a32b73a103a37b5b2b760b11b606082015260800190565b60208082526013908201527226b4b73a1021b637b9b2b2102337b932bb32b960691b604082015260600190565b60208082526018908201527f4d617820686f6c64696e672063617020726561636865642e0000000000000000604082015260600190565b60208082526023908201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756040820152626e647360e81b606082015260800190565b6020808252600f908201526e29b0b632903430b99032b73232b21760891b604082015260600190565b60208082526025908201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526031908201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260408201527020746865207a65726f206164647265737360781b606082015260800190565b6020808252601e908201527f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000604082015260600190565b60208082526039908201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60408201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606082015260800190565b6020808252602b908201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60408201526a65726f206164647265737360a81b606082015260800190565b60208082526026908201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746040820152651037bbb732b960d11b606082015260800190565b60208082526018908201527f43616e2774206164642061206e756c6c20616464726573730000000000000000604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601e908201527f5a65726f2061646472657373206e6f74206f6e20416c6c6f77204c6973740000604082015260600190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b6020808252601a908201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604082015260600190565b60208082526032908201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206040820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606082015260800190565b6020808252601e908201527f45786365656473206d6178696d756d20616c6c6f77656420746f6b656e730000604082015260600190565b6020808252601690820152752a37ba30b61039bab838363c9032bc31b2b2b232b21760511b604082015260600190565b60208082526022908201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60408201526132b960f11b606082015260800190565b602080825260149082015273526166666c65206973206e6f742061637469766560601b604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b6020808252601d908201527f455243373231413a20746f6b656e20616c7265616479206d696e746564000000604082015260600190565b6020808252600d908201526c34b73b30b634b210383937b7b360991b604082015260600190565b60208082526021908201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526016908201527563616e206e6f74206d696e742074686973206d616e7960501b604082015260600190565b6020808252601b908201527f5072652053616c65204d696e74206973206e6f74206163746976650000000000604082015260600190565b6020808252601390820152722a37ba30b61039bab838363c9039b832b73a1760691b604082015260600190565b6020808252601b908201527f496e7375666669656e742045544820616d6f756e742073656e742e0000000000604082015260600190565b6020808252602e908201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060408201526d0deeedccae440c4f240d2dcc8caf60931b606082015260800190565b6020808252601c908201527f50757263686173652065786365656473206d617820616c6c6f77656400000000604082015260600190565b6020808252602f908201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560408201526e1037bbb732b91037b3103a37b5b2b760891b606082015260800190565b6020808252601b908201527f416c6c20746f6b656e732068617665206265656e206d696e7465640000000000604082015260600190565b6020808252602d908201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560408201526c3c34b9ba32b73a103a37b5b2b760991b606082015260800190565b60208082526022908201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696040820152610ced60f31b606082015260800190565b6020808252818101527f43616e6e6f742070757263686173652074686973206d616e7920746f6b656e73604082015260600190565b604051601f8201601f191681016001600160401b0381118282101715613bf157613bf1613d7e565b604052919050565b60006001600160801b0380831681851680830382111561312457613124613d52565b60008219821115613c2e57613c2e613d52565b500190565b600082613c4257613c42613d68565b500490565b6000816000190483118215151615613c6157613c61613d52565b500290565b60006001600160801b0383811690831681811015613c8657613c86613d52565b039392505050565b600082821015613ca057613ca0613d52565b500390565b60005b83811015613cc0578181015183820152602001613ca8565b83811115611ee65750506000910152565b600081613ce057613ce0613d52565b506000190190565b600281046001821680613cfc57607f821691505b60208210811415613d1d57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415613d3757613d37613d52565b5060010190565b600082613d4d57613d4d613d68565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114611a1257600080fdfea2646970667358221220c48b0fcdc4ccf0505ba1ba883fcd610cf395227f1dc2383120331f608f59897564736f6c63430008010033

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

00000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000d050000000000000000000000000000000000000000000000000000000000000d05000000000000000000000000000000000000000000000000000000000000005c68747470733a2f2f726163696e67736f6369616c636c75622e6d7970696e6174612e636c6f75642f697066732f516d636f7a6f38584b56575847434d4e6a746151764174766f707a32413632593571727079676d4a4b53576358722f00000000

-----Decoded View---------------
Arg [0] : baseURI (string): https://racingsocialclub.mypinata.cloud/ipfs/Qmcozo8XKVWXGCMNjtaQvAtvopz2A62Y5qrpygmJKSWcXr/
Arg [1] : maxBatchSize_ (uint256): 3333
Arg [2] : collectionSize_ (uint256): 3333

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000d05
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000d05
Arg [3] : 000000000000000000000000000000000000000000000000000000000000005c
Arg [4] : 68747470733a2f2f726163696e67736f6369616c636c75622e6d7970696e6174
Arg [5] : 612e636c6f75642f697066732f516d636f7a6f38584b56575847434d4e6a7461
Arg [6] : 51764174766f707a32413632593571727079676d4a4b53576358722f00000000


Deployed Bytecode Sourcemap

194:9311:11:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3584:184;;;;;;;;;;-1:-1:-1;3584:184:11;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3826:358:3;;;;;;;;;;-1:-1:-1;3826:358:3;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;5490:92::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;6955:200::-;;;;;;;;;;-1:-1:-1;6955:200:3;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;6533:369::-;;;;;;;;;;-1:-1:-1;6533:369:3;;;;;:::i;:::-;;:::i;:::-;;2432:92;;;;;;;;;;;;;:::i;4779:97:11:-;;;;;;;;;;;;;:::i;7773:136:3:-;;;;;;;;;;-1:-1:-1;7773:136:3;;;;;:::i;:::-;;:::i;4880:95:11:-;;;;;;;;;;;;;:::i;3213:105::-;;;;;;;;;;-1:-1:-1;3213:105:11;;;;;:::i;:::-;;:::i;2404:112::-;;;;;;;;;;-1:-1:-1;2404:112:11;;;;;:::i;:::-;;:::i;3046:721:3:-;;;;;;;;;;-1:-1:-1;3046:721:3;;;;;:::i;:::-;;:::i;4244:103:11:-;;;;;;;;;;-1:-1:-1;4244:103:11;;;;;:::i;:::-;;:::i;9299:204::-;;;;;;;;;;;;;:::i;2520:136::-;;;;;;;;;;-1:-1:-1;2520:136:11;;;;;:::i;:::-;;:::i;392:43::-;;;;;;;;;;;;;:::i;6401:1034::-;;;;;;:::i;:::-;;:::i;7967:151:3:-;;;;;;;;;;-1:-1:-1;7967:151:3;;;;;:::i;:::-;;:::i;743:30:11:-;;;;;;;;;;;;;:::i;8989:306::-;;;;;;;;;;-1:-1:-1;8989:306:11;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;5530:83::-;;;;;;;;;;;;;:::i;778:39::-;;;;;;;;;;;;;:::i;1905:122::-;;;;;;;;;;-1:-1:-1;1905:122:11;;;;;:::i;:::-;;:::i;2588:174:3:-;;;;;;;;;;-1:-1:-1;2588:174:3;;;;;:::i;:::-;;:::i;4456:99:11:-;;;;;;;;;;-1:-1:-1;4456:99:11;;;;;:::i;:::-;;:::i;4057:90::-;;;;;;;;;;-1:-1:-1;4057:90:11;;;;;:::i;:::-;;:::i;621:32::-;;;;;;;;;;;;;:::i;5453:73::-;;;;;;;;;;;;;:::i;5320:116:3:-;;;;;;;;;;-1:-1:-1;5320:116:3;;;;;:::i;:::-;;:::i;304:36:11:-;;;;;;;;;;;;;:::i;4235:208:3:-;;;;;;;;;;-1:-1:-1;4235:208:3;;;;;:::i;:::-;;:::i;1661:101:10:-;;;;;;;;;;;;;:::i;5727:372:11:-;;;;;;;;;;;;;:::i;2876:333::-;;;;;;;;;;-1:-1:-1;2876:333:11;;;;;:::i;:::-;;:::i;2282:118::-;;;;;;;;;;-1:-1:-1;2282:118:11;;;;;:::i;:::-;;:::i;6103:294::-;;;;;;;;;;-1:-1:-1;6103:294:11;;;;;:::i;:::-;;:::i;8189:687::-;;;;;;:::i;:::-;;:::i;7439:746::-;;;;;;:::i;:::-;;:::i;2764:108::-;;;;;;;;;;-1:-1:-1;2764:108:11;;;;;:::i;:::-;;:::i;700:39::-;;;;;;;;;;;;;:::i;933:35::-;;;;;;;;;;;;;:::i;972:48::-;;;;;;;;;;;;;:::i;1029:85:10:-;;;;;;;;;;;;;:::i;5083:95:11:-;;;;;;;;;;;;;:::i;5638:96:3:-;;;;;;;;;;;;;:::i;2660:100:11:-;;;;;;;;;;-1:-1:-1;2660:100:11;;;;;:::i;:::-;;:::i;821:53::-;;;;;;;;;;;;;:::i;657:39::-;;;;;;;;;;;;;:::i;7214:269:3:-;;;;;;;;;;-1:-1:-1;7214:269:3;;;;;:::i;:::-;;:::i;3322:258:11:-;;;;;;;;;;-1:-1:-1;3322:258:11;;;;;:::i;:::-;;:::i;4692:83::-;;;;;;;;;;;;;:::i;4559:129::-;;;;;;;;;;;;;:::i;8176:300:3:-;;;;;;;;;;-1:-1:-1;8176:300:3;;;;;:::i;:::-;;:::i;583:34:11:-;;;;;;;;;;;;;:::i;4351:101::-;;;;;;;;;;-1:-1:-1;4351:101:11;;;;;:::i;:::-;;:::i;5360:89::-;;;;;;;;;;;;;:::i;5792:377:3:-;;;;;;;;;;-1:-1:-1;5792:377:3;;;;;:::i;:::-;;:::i;878:51:11:-;;;;;;;;;;;;;:::i;12446:43:3:-;;;;;;;;;;;;;:::i;5182:77:11:-;;;;;;;;;;-1:-1:-1;5182:77:11;;;;;:::i;:::-;;:::i;8880:105::-;;;;;;;;;;-1:-1:-1;8880:105:11;;;;;:::i;:::-;;:::i;5263:93::-;;;;;;;;;;;;;:::i;7541:178:3:-;;;;;;;;;;-1:-1:-1;7541:178:3;;;;;:::i;:::-;;:::i;2031:129:11:-;;;;;;;;;;-1:-1:-1;2031:129:11;;;;;:::i;:::-;;:::i;280:19::-;;;;;;;;;;;;;:::i;344:44::-;;;;;;;;;;;;;:::i;2164:114::-;;;;;;;;;;-1:-1:-1;2164:114:11;;;;;:::i;:::-;;:::i;4979:100::-;;;;;;;;;;;;;:::i;1911:198:10:-;;;;;;;;;;-1:-1:-1;1911:198:10;;;;;:::i;:::-;;:::i;4151:89:11:-;;;;;;;;;;-1:-1:-1;4151:89:11;;;;;:::i;:::-;;:::i;3960:93::-;;;;;;;;;;-1:-1:-1;3960:93:11;;;;;:::i;:::-;;:::i;3772:184::-;;;;;;;;;;-1:-1:-1;3772:184:11;;;;;:::i;:::-;;:::i;3584:::-;3650:7;-1:-1:-1;;;;;3672:19:11;;3664:62;;;;-1:-1:-1;;;3664:62:11;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;;;;;;3739:24:11;;;;;;:17;:24;;;;;;3584:184;;;;:::o;3826:358:3:-;3948:4;-1:-1:-1;;;;;;3975:40:3;;-1:-1:-1;;;3975:40:3;;:98;;-1:-1:-1;;;;;;;4025:48:3;;-1:-1:-1;;;4025:48:3;3975:98;:158;;;-1:-1:-1;;;;;;;4083:50:3;;-1:-1:-1;;;4083:50:3;3975:158;:204;;;;4143:36;4167:11;4143:23;:36::i;:::-;3962:217;3826:358;-1:-1:-1;;3826:358:3:o;5490:92::-;5544:13;5572:5;5565:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5490:92;:::o;6955:200::-;7023:7;7046:16;7054:7;7046;:16::i;:::-;7038:74;;;;-1:-1:-1;;;7038:74:3;;;;;;;:::i;:::-;-1:-1:-1;7126:24:3;;;;:15;:24;;;;;;-1:-1:-1;;;;;7126:24:3;;6955:200::o;6533:369::-;6601:13;6617:24;6633:7;6617:15;:24::i;:::-;6601:40;;6661:5;-1:-1:-1;;;;;6655:11:3;:2;-1:-1:-1;;;;;6655:11:3;;;6647:58;;;;-1:-1:-1;;;6647:58:3;;;;;;;:::i;:::-;6743:5;-1:-1:-1;;;;;6727:21:3;:12;:10;:12::i;:::-;-1:-1:-1;;;;;6727:21:3;;:62;;;;6752:37;6769:5;6776:12;:10;:12::i;6752:37::-;6712:150;;;;-1:-1:-1;;;6712:150:3;;;;;;;:::i;:::-;6869:28;6878:2;6882:7;6891:5;6869:8;:28::i;:::-;6533:369;;;:::o;2432:92::-;2485:7;2507:12;2432:92;:::o;4779:97:11:-;4855:16;;4779:97;:::o;7773:136:3:-;7876:28;7886:4;7892:2;7896:7;7876:9;:28::i;4880:95:11:-;4955:15;;4880:95;:::o;3213:105::-;-1:-1:-1;;;;;3297:16:11;3278:4;3297:16;;;:10;:16;;;;;;;;;3213:105::o;2404:112::-;1766:10;1755:7;:5;:7::i;:::-;-1:-1:-1;;;;;1755:21:11;;1747:30;;;;;;2479:14:::1;:32:::0;;-1:-1:-1;;2479:32:11::1;::::0;::::1;;::::0;;;::::1;::::0;;2404:112::o;3046:721:3:-;3151:7;3184:16;3194:5;3184:9;:16::i;:::-;3176:5;:24;3168:71;;;;-1:-1:-1;;;3168:71:3;;;;;;;:::i;:::-;3245:22;3270:13;:11;:13::i;:::-;3245:38;;3289:19;3318:25;3367:9;3362:339;3386:14;3382:1;:18;3362:339;;;3415:31;3449:14;;;:11;:14;;;;;;;;;3415:48;;;;;;;;;-1:-1:-1;;;;;3415:48:3;;;;;-1:-1:-1;;;3415:48:3;;;-1:-1:-1;;;;;3415:48:3;;;;;;;;3475:28;3471:87;;3535:14;;;-1:-1:-1;3471:87:3;3590:5;-1:-1:-1;;;;;3569:26:3;:17;-1:-1:-1;;;;;3569:26:3;;3565:130;;;3626:5;3611:11;:20;3607:57;;;-1:-1:-1;3652:1:3;-1:-1:-1;3645:8:3;;-1:-1:-1;;;3645:8:3;3607:57;3673:13;;;;:::i;:::-;;;;3565:130;-1:-1:-1;3402:3:3;;;;:::i;:::-;;;;3362:339;;;;3706:56;;-1:-1:-1;;;3706:56:3;;;;;;;:::i;4244:103:11:-;1766:10;1755:7;:5;:7::i;:::-;-1:-1:-1;;;;;1755:21:11;;1747:30;;;;;;4317:16:::1;:25:::0;4244:103::o;9299:204::-;1766:10;1755:7;:5;:7::i;:::-;-1:-1:-1;;;;;1755:21:11;;1747:30;;;;;;9399:12:::1;::::0;9364:21:::1;::::0;-1:-1:-1;;;;;9399:12:11::1;9391:55;9440:5;9422:15;9364:21:::0;9440:5;9422:15:::1;:::i;:::-;:23;;;;:::i;:::-;9391:55;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;9460:7;:5;:7::i;:::-;-1:-1:-1::0;;;;;9452:25:11::1;:46;9492:5;9478:11;:7:::0;9488:1:::1;9478:11;:::i;:::-;:19;;;;:::i;:::-;9452:46;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;1783:1;9299:204::o:0;2520:136::-;1766:10;1755:7;:5;:7::i;:::-;-1:-1:-1;;;;;1755:21:11;;1747:30;;;;;;2609:19:::1;:42:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;2609:42:11;;::::1;::::0;;;::::1;::::0;;2520:136::o;392:43::-;;;;:::o;6401:1034::-;1662:17;;1645:13;:11;:13::i;:::-;:34;;1637:62;;;;-1:-1:-1;;;1637:62:11;;;;;;;:::i;:::-;1831:9:::1;1844:10;1831:23;1823:66;;;;-1:-1:-1::0;;;1823:66:11::1;;;;;;;:::i;:::-;6507:7:::2;:5;:7::i;:::-;-1:-1:-1::0;;;;;6493:21:11::2;:10;-1:-1:-1::0;;;;;6493:21:11::2;;6489:96;;6532:12;::::0;::::2;::::0;::::2;;;6524:54;;;;-1:-1:-1::0;;;6524:54:11::2;;;;;;;:::i;:::-;6601:7;:5;:7::i;:::-;-1:-1:-1::0;;;;;6594:14:11::2;:3;-1:-1:-1::0;;;;;6594:14:11::2;;6591:127;;6653:29;;6643:6;6626:14;6636:3;6626:9;:14::i;:::-;:23;;;;:::i;:::-;:56;;6618:93;;;;-1:-1:-1::0;;;6618:93:11::2;;;;;;;:::i;:::-;6775:29;::::0;6751:10:::2;6732:30;::::0;;;:18:::2;:30;::::0;;;;;:39:::2;::::0;6765:6;;6732:39:::2;:::i;:::-;:72;;6724:113;;;;-1:-1:-1::0;;;6724:113:11::2;;;;;;;:::i;:::-;6877:17;;6867:6;6851:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:43;;6843:78;;;;-1:-1:-1::0;;;6843:78:11::2;;;;;;;:::i;:::-;6952:17;;6935:13;:11;:13::i;:::-;:34;;6927:66;;;;-1:-1:-1::0;;;6927:66:11::2;;;;;;;:::i;:::-;7024:31;;7014:6;:41;;6999:102;;;;-1:-1:-1::0;;;6999:102:11::2;;;;;;;:::i;:::-;7159:23;7149:6;7122:24;7135:10;7122:12;:24::i;:::-;:33;;;;:::i;:::-;:60;;7107:113;;;;-1:-1:-1::0;;;7107:113:11::2;;;;;;;:::i;:::-;7235:19;::::0;;;::::2;;;7234:20;7226:52;;;;-1:-1:-1::0;;;7226:52:11::2;;;;;;;:::i;:::-;7317:6;7305:9;;:18;;;;:::i;:::-;7292:9;:31;;7284:71;;;;-1:-1:-1::0;;;7284:71:11::2;;;;;;;:::i;:::-;7381:10;7362:30;::::0;;;:18:::2;:30;::::0;;;;:40;;7396:6;;7362:30;:40:::2;::::0;7396:6;;7362:40:::2;:::i;:::-;::::0;;;-1:-1:-1;7408:22:11::2;::::0;-1:-1:-1;7418:3:11;7423:6;7408:9:::2;:22::i;7967:151:3:-:0;8074:39;8091:4;8097:2;8101:7;8074:39;;;;;;;;;;;;:16;:39::i;743:30:11:-;;;;;;;;;:::o;8989:306::-;9050:16;9074:15;9092:17;9102:6;9092:9;:17::i;:::-;9074:35;;9115:25;9157:10;-1:-1:-1;;;;;9143:25:11;;;;;-1:-1:-1;;;9143:25:11;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;9143:25:11;;9115:53;;9179:6;9175:95;9195:10;9191:1;:14;9175:95;;;9233:30;9253:6;9261:1;9233:19;:30::i;:::-;9219:8;9228:1;9219:11;;;;;;-1:-1:-1;;;9219:11:11;;;;;;;;;;;;;;;;;;:44;9207:3;;;;:::i;:::-;;;;9175:95;;;-1:-1:-1;9282:8:11;8989:306;-1:-1:-1;;;8989:306:11:o;5530:83::-;5579:7;5601;:5;:7::i;:::-;5594:14;;5530:83;:::o;778:39::-;;;;:::o;1905:122::-;1766:10;1755:7;:5;:7::i;:::-;-1:-1:-1;;;;;1755:21:11;;1747:30;;;;;;1982:31:::1;:40:::0;1905:122::o;2588:174:3:-;2655:7;2686:13;:11;:13::i;:::-;2678:5;:21;2670:69;;;;-1:-1:-1;;;2670:69:3;;;;;;;:::i;:::-;-1:-1:-1;2752:5:3;2588:174::o;4456:99:11:-;1766:10;1755:7;:5;:7::i;:::-;-1:-1:-1;;;;;1755:21:11;;1747:30;;;;;;4527:23;;::::1;::::0;:13:::1;::::0;:23:::1;::::0;::::1;::::0;::::1;:::i;4057:90::-:0;1766:10;1755:7;:5;:7::i;:::-;-1:-1:-1;;;;;1755:21:11;;1747:30;;;;;;4121:15:::1;:21:::0;4057:90::o;621:32::-;;;;;;;;;:::o;5453:73::-;5517:4;;5453:73;:::o;5320:116:3:-;5384:7;5406:20;5418:7;5406:11;:20::i;:::-;:25;;5320:116;-1:-1:-1;;5320:116:3:o;304:36:11:-;;;;:::o;4235:208:3:-;4299:7;-1:-1:-1;;;;;4322:19:3;;4314:75;;;;-1:-1:-1;;;4314:75:3;;;;;;;:::i;:::-;-1:-1:-1;;;;;;4410:19:3;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;4410:27:3;;4235:208::o;1661:101:10:-;1252:12;:10;:12::i;:::-;-1:-1:-1;;;;;1241:23:10;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1241:23:10;;1233:68;;;;-1:-1:-1;;;1233:68:10;;;;;;;:::i;:::-;1725:30:::1;1752:1;1725:18;:30::i;:::-;1661:101::o:0;5727:372:11:-;1766:10;1755:7;:5;:7::i;:::-;-1:-1:-1;;;;;1755:21:11;;1747:30;;;;;;5802:15:::1;;5785:13;;:32;;5777:72;;;;-1:-1:-1::0;;;5777:72:11::1;;;;;;;:::i;:::-;5897:17;;5879:14;;5863:13;:11;:13::i;:::-;:30;;;;:::i;:::-;:51;;5855:86;;;;-1:-1:-1::0;;;5855:86:11::1;;;;;;;:::i;:::-;5972:17;;5955:13;:11;:13::i;:::-;:34;;5947:66;;;;-1:-1:-1::0;;;5947:66:11::1;;;;;;;:::i;:::-;6037:14;;6020:13;;:31;;;;;;;:::i;:::-;;;;;;;;6057:37;6067:10;6079:14;;6057:9;:37::i;2876:333::-:0;1766:10;1755:7;:5;:7::i;:::-;-1:-1:-1;;;;;1755:21:11;;1747:30;;;;;;2965:9:::1;2960:245;2980:20:::0;;::::1;2960:245;;;3047:1;3023:9:::0;;3033:1;3023:12;;::::1;;;-1:-1:-1::0;;;3023:12:11::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;3023:26:11::1;;;3015:63;;;;-1:-1:-1::0;;;3015:63:11::1;;;;;;;:::i;:::-;3113:4;3086:10;:24;3097:9;;3107:1;3097:12;;;;;-1:-1:-1::0;;;3097:12:11::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;3086:24:11::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;3086:24:11;;;:31;;-1:-1:-1;;3086:31:11::1;::::0;::::1;;::::0;;;::::1;::::0;;;3125:17:::1;-1:-1:-1::0;3143:9:11;;3153:1;3143:12;;::::1;;;-1:-1:-1::0;;;3143:12:11::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;3125:31:11::1;-1:-1:-1::0;;;;;3125:31:11::1;;;;;;;;;;;;;:35;:73;;3197:1;3125:73;;;3163:17;:31;3181:9;;3191:1;3181:12;;;;;-1:-1:-1::0;;;3181:12:11::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;3163:31:11::1;-1:-1:-1::0;;;;;3163:31:11::1;;;;;;;;;;;;;3125:73;-1:-1:-1::0;3002:3:11;::::1;::::0;::::1;:::i;:::-;;;;2960:245;;2282:118:::0;1766:10;1755:7;:5;:7::i;:::-;-1:-1:-1;;;;;1755:21:11;;1747:30;;;;;;2362:17:::1;:33:::0;2282:118::o;6103:294::-;1766:10;1755:7;:5;:7::i;:::-;-1:-1:-1;;;;;1755:21:11;;1747:30;;;;;;6236:17:::1;;6226:6;6210:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:43;;6202:78;;;;-1:-1:-1::0;;;6202:78:11::1;;;;;;;:::i;:::-;6311:17;;6294:13;:11;:13::i;:::-;:34;;6286:66;;;;-1:-1:-1::0;;;6286:66:11::1;;;;;;;:::i;:::-;6359:33;6369:14;6385:6;6359:9;:33::i;8189:687::-:0;1662:17;;1645:13;:11;:13::i;:::-;:34;;1637:62;;;;-1:-1:-1;;;1637:62:11;;;;;;;:::i;:::-;8266:19:::1;::::0;;;::::1;;;8258:59;;;;-1:-1:-1::0;;;8258:59:11::1;;;;;;;:::i;:::-;8342:10;8331:22;::::0;;;:10:::1;:22;::::0;;;;;::::1;;8323:64;;;;-1:-1:-1::0;;;8323:64:11::1;;;;;;;:::i;:::-;8417:17;;8401:13;:11;:13::i;:::-;:33;8393:73;;;;-1:-1:-1::0;;;8393:73:11::1;;;;;;;:::i;:::-;8490:16;;8480:6;:26;;8472:71;;;;-1:-1:-1::0;;;8472:71:11::1;;;;;;;:::i;:::-;8599:16;::::0;8575:10:::1;8557:29;::::0;;;:17:::1;:29;::::0;;;;;:38:::1;::::0;8589:6;;8557:38:::1;:::i;:::-;:58;;8549:99;;;;-1:-1:-1::0;;;8549:99:11::1;;;;;;;:::i;:::-;8694:6;8675:16;;:25;;;;:::i;:::-;8662:9;:38;;8654:78;;;;-1:-1:-1::0;;;8654:78:11::1;;;;;;;:::i;:::-;8747:19;::::0;;;::::1;;;8746:20;8738:52;;;;-1:-1:-1::0;;;8738:52:11::1;;;;;;;:::i;:::-;8814:10;8796:29;::::0;;;:17:::1;:29;::::0;;;;:39;;8829:6;;8796:29;:39:::1;::::0;8829:6;;8796:39:::1;:::i;:::-;::::0;;;-1:-1:-1;8842:29:11::1;::::0;-1:-1:-1;8852:10:11::1;8864:6:::0;8842:9:::1;:29::i;:::-;8189:687:::0;:::o;7439:746::-;1662:17;;1645:13;:11;:13::i;:::-;:34;;1637:62;;;;-1:-1:-1;;;1637:62:11;;;;;;;:::i;:::-;7532:12:::1;7574:10;7557:28;;;;;;;;:::i;:::-;;::::0;;-1:-1:-1;;7557:28:11;;::::1;::::0;;;;;;7547:39;;7557:28:::1;7547:39:::0;;::::1;::::0;7601:14:::1;::::0;7547:39;;-1:-1:-1;7601:14:11::1;;7593:47;;;;-1:-1:-1::0;;;7593:47:11::1;;;;;;;:::i;:::-;7668:4;::::0;7654:25:::1;::::0;:6;;7674:4;7654:13:::1;:25::i;:::-;7646:51;;;;-1:-1:-1::0;;;7646:51:11::1;;;;;;;:::i;:::-;7727:17;;7711:13;:11;:13::i;:::-;:33;7703:73;;;;-1:-1:-1::0;;;7703:73:11::1;;;;;;;:::i;:::-;7800:16;;7790:6;:26;;7782:71;;;;-1:-1:-1::0;;;7782:71:11::1;;;;;;;:::i;:::-;7909:16;::::0;7885:10:::1;7867:29;::::0;;;:17:::1;:29;::::0;;;;;:38:::1;::::0;7899:6;;7867:38:::1;:::i;:::-;:58;;7859:99;;;;-1:-1:-1::0;;;7859:99:11::1;;;;;;;:::i;:::-;8003:6;7985:15;;:24;;;;:::i;:::-;7972:9;:37;;7964:77;;;;-1:-1:-1::0;;;7964:77:11::1;;;;;;;:::i;:::-;8056:19;::::0;;;::::1;;;8055:20;8047:52;;;;-1:-1:-1::0;;;8047:52:11::1;;;;;;;:::i;:::-;8123:10;8105:29;::::0;;;:17:::1;:29;::::0;;;;:39;;8138:6;;8105:29;:39:::1;::::0;8138:6;;8105:39:::1;:::i;:::-;::::0;;;-1:-1:-1;8151:29:11::1;::::0;-1:-1:-1;8161:10:11::1;8173:6:::0;8151:9:::1;:29::i;2764:108::-:0;1766:10;1755:7;:5;:7::i;:::-;-1:-1:-1;;;;;1755:21:11;;1747:30;;;;;;2841:16:::1;:26:::0;2764:108::o;700:39::-;;;;;;;;;:::o;933:35::-;;;;:::o;972:48::-;;;:::o;1029:85:10:-;1101:6;;-1:-1:-1;;;;;1101:6:10;1029:85;:::o;5083:95:11:-;1766:10;1755:7;:5;:7::i;:::-;-1:-1:-1;;;;;1755:21:11;;1747:30;;;;;;5147:19:::1;:26:::0;;-1:-1:-1;;5147:26:11::1;::::0;::::1;::::0;;5083:95::o;5638:96:3:-;5694:13;5722:7;5715:14;;;;;:::i;2660:100:11:-;1766:10;1755:7;:5;:7::i;:::-;-1:-1:-1;;;;;1755:21:11;;1747:30;;;;;;2731:10:::1;:24:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;2731:24:11;;::::1;::::0;;;::::1;::::0;;2660:100::o;821:53::-;;;;:::o;657:39::-;;;;;;;;;:::o;7214:269:3:-;7316:12;:10;:12::i;:::-;-1:-1:-1;;;;;7304:24:3;:8;-1:-1:-1;;;;;7304:24:3;;;7296:63;;;;-1:-1:-1;;;7296:63:3;;;;;;;:::i;:::-;7411:8;7366:18;:32;7385:12;:10;:12::i;:::-;-1:-1:-1;;;;;7366:32:3;;;;;;;;;;;;;;;;;-1:-1:-1;7366:32:3;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;7366:53:3;;;;;;;;;;;7445:12;:10;:12::i;:::-;-1:-1:-1;;;;;7430:48:3;;7469:8;7430:48;;;;;;:::i;:::-;;;;;;;;7214:269;;:::o;3322:258:11:-;1766:10;1755:7;:5;:7::i;:::-;-1:-1:-1;;;;;1755:21:11;;1747:30;;;;;;3416:9:::1;3411:165;3431:20:::0;;::::1;3411:165;;;3498:1;3474:9:::0;;3484:1;3474:12;;::::1;;;-1:-1:-1::0;;;3474:12:11::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;3474:26:11::1;;;3466:63;;;;-1:-1:-1::0;;;3466:63:11::1;;;;;;;:::i;:::-;3564:5;3537:10;:24;3548:9;;3558:1;3548:12;;;;;-1:-1:-1::0;;;3548:12:11::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;3537:24:11::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;3537:24:11;:32;;-1:-1:-1;;3537:32:11::1;::::0;::::1;;::::0;;;::::1;::::0;;3453:3;::::1;::::0;::::1;:::i;:::-;;;;3411:165;;4692:83:::0;4761:9;;4692:83;:::o;4559:129::-;4630:7;1766:10;1755:7;:5;:7::i;:::-;-1:-1:-1;;;;;1755:21:11;;1747:30;;;;;;-1:-1:-1;4652:31:11::1;::::0;4559:129;:::o;8176:300:3:-;8307:28;8317:4;8323:2;8327:7;8307:9;:28::i;:::-;8356:48;8379:4;8385:2;8389:7;8398:5;8356:22;:48::i;:::-;8341:130;;;;-1:-1:-1;;;8341:130:3;;;;;;;:::i;:::-;8176:300;;;;:::o;583:34:11:-;;;;;;:::o;4351:101::-;1766:10;1755:7;:5;:7::i;:::-;-1:-1:-1;;;;;1755:21:11;;1747:30;;;;;;4423:15:::1;:24:::0;4351:101::o;5360:89::-;5409:7;5431:13;:11;:13::i;5792:377:3:-;5885:13;5923:16;5931:7;5923;:16::i;:::-;5908:94;;;;-1:-1:-1;;;5908:94:3;;;;;;;:::i;:::-;6009:21;6033:10;:8;:10::i;:::-;6009:34;;6086:1;6068:7;6062:21;:25;:102;;;;;;;;;;;;;;;;;6122:7;6131:18;:7;:16;:18::i;:::-;6105:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;6062:102;6049:115;5792:377;-1:-1:-1;;;5792:377:3:o;878:51:11:-;;;;:::o;12446:43:3:-;;;;:::o;5182:77:11:-;1766:10;1755:7;:5;:7::i;:::-;-1:-1:-1;;;;;1755:21:11;;1747:30;;;;;;5242:4:::1;:12:::0;5182:77::o;8880:105::-;8938:7;8960:20;8974:5;8960:13;:20::i;5263:93::-;5337:14;;5263:93;:::o;7541:178:3:-;-1:-1:-1;;;;;7679:25:3;;;7658:4;7679:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;7541:178::o;2031:129:11:-;1766:10;1755:7;:5;:7::i;:::-;-1:-1:-1;;;;;1755:21:11;;1747:30;;;;;;2117:29:::1;:38:::0;2031:129::o;280:19::-;;;;:::o;344:44::-;;;;:::o;2164:114::-;1766:10;1755:7;:5;:7::i;:::-;-1:-1:-1;;;;;1755:21:11;;1747:30;;;;;;2225:12:::1;:18:::0;;-1:-1:-1;;2225:18:11::1;;::::0;::::1;;;;::::0;;2254:19:::1;::::0;::::1;::::0;::::1;::::0;2225:18;;2254:19:::1;:::i;:::-;;;;;;;;2164:114:::0;:::o;4979:100::-;5055:19;;;;;;;;4979:100::o;1911:198:10:-;1252:12;:10;:12::i;:::-;-1:-1:-1;;;;;1241:23:10;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1241:23:10;;1233:68;;;;-1:-1:-1;;;1233:68:10;;;;;;;:::i;:::-;-1:-1:-1;;;;;1999:22:10;::::1;1991:73;;;;-1:-1:-1::0;;;1991:73:10::1;;;;;;;:::i;:::-;2074:28;2093:8;2074:18;:28::i;4151:89:11:-:0;1766:10;1755:7;:5;:7::i;:::-;-1:-1:-1;;;;;1755:21:11;;1747:30;;;;;;4217:9:::1;:18:::0;4151:89::o;3960:93::-;1766:10;1755:7;:5;:7::i;:::-;-1:-1:-1;;;;;1755:21:11;;1747:30;;;;;;4028:14:::1;:20:::0;3960:93::o;3772:184::-;3837:7;-1:-1:-1;;;;;3859:19:11;;3851:62;;;;-1:-1:-1;;;3851:62:11;;;;;;;:::i;:::-;-1:-1:-1;;;;;;3926:25:11;;;;;:18;:25;;;;;;;3772:184::o;829:155:2:-;-1:-1:-1;;;;;;937:40:2;;-1:-1:-1;;;937:40:2;829:155;;;:::o;8706:103:3:-;8763:4;8792:12;-1:-1:-1;8782:22:3;8706:103::o;640:96:1:-;719:10;640:96;:::o;12277:165:3:-;12369:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;12369:29:3;-1:-1:-1;;;;;12369:29:3;;;;;;;;;12409:28;;12369:24;;12409:28;;;;;;;12277:165;;;:::o;10694:1484::-;10786:35;10824:20;10836:7;10824:11;:20::i;:::-;10786:58;;10851:22;10893:13;:18;;;-1:-1:-1;;;;;10877:34:3;:12;:10;:12::i;:::-;-1:-1:-1;;;;;10877:34:3;;:80;;;;10945:12;:10;:12::i;:::-;-1:-1:-1;;;;;10921:36:3;:20;10933:7;10921:11;:20::i;:::-;-1:-1:-1;;;;;10921:36:3;;10877:80;:140;;;-1:-1:-1;10984:18:3;;10967:50;;11004:12;:10;:12::i;10967:50::-;10851:167;;11040:17;11025:98;;;;-1:-1:-1;;;11025:98:3;;;;;;;:::i;:::-;11167:4;-1:-1:-1;;;;;11145:26:3;:13;:18;;;-1:-1:-1;;;;;11145:26:3;;11130:95;;;;-1:-1:-1;;;11130:95:3;;;;;;;:::i;:::-;-1:-1:-1;;;;;11239:16:3;;11231:66;;;;-1:-1:-1;;;11231:66:3;;;;;;;:::i;:::-;11304:43;11326:4;11332:2;11336:7;11345:1;11304:21;:43::i;:::-;11401:49;11418:1;11422:7;11431:13;:18;;;11401:8;:49::i;:::-;-1:-1:-1;;;;;11457:18:3;;;;;;:12;:18;;;;;:31;;11487:1;;11457:18;:31;;11487:1;;-1:-1:-1;;;;;11457:31:3;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;11457:31:3;;;;;;;;;;;;;;;-1:-1:-1;;;;;11494:16:3;;-1:-1:-1;11494:16:3;;;:12;:16;;;;;:29;;-1:-1:-1;;;11494:16:3;;:29;;-1:-1:-1;;11494:29:3;;:::i;:::-;;;-1:-1:-1;;;;;11494:29:3;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;11552:43:3;;;;;;;;-1:-1:-1;;;;;11552:43:3;;;;;-1:-1:-1;;;;;11578:15:3;11552:43;;;;;;;;;-1:-1:-1;11529:20:3;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;11529:66:3;-1:-1:-1;;;;11529:66:3;;;;-1:-1:-1;;;;;;11529:66:3;;;;;;;;11841:11;11541:7;-1:-1:-1;11841:11:3;:::i;:::-;11903:1;11862:24;;;:11;:24;;;;;:29;11819:33;;-1:-1:-1;;;;;;11862:29:3;11858:229;;11919:20;11927:11;11919:7;:20::i;:::-;11915:166;;;11978:94;;;;;;;;12004:18;;-1:-1:-1;;;;;11978:94:3;;;;;;12034:28;;;;-1:-1:-1;;;;;11978:94:3;;;;;;;;;-1:-1:-1;11951:24:3;;;:11;:24;;;;;;;:121;;;;;;-1:-1:-1;;;;;;11951:121:3;;;;;;;;;-1:-1:-1;;;;11951:121:3;-1:-1:-1;;;11951:121:3;;;;;;;;;;;;;;11915:166;12117:7;12113:2;-1:-1:-1;;;;;12098:27:3;12107:4;-1:-1:-1;;;;;12098:27:3;;;;;;;;;;;12131:42;12152:4;12158:2;12162:7;12171:1;12131:20;:42::i;:::-;10694:1484;;;;;;:::o;8813:96::-;8877:27;8887:2;8891:8;8877:27;;;;;;;;;;;;:9;:27::i;4685:586::-;4758:21;;:::i;:::-;4797:16;4805:7;4797;:16::i;:::-;4789:71;;;;-1:-1:-1;;;4789:71:3;;;;;;;:::i;:::-;4867:26;4914:12;4903:7;:23;4899:91;;4957:22;4967:12;4957:7;:22;:::i;:::-;:26;;4982:1;4957:26;:::i;:::-;4936:47;;4899:91;5016:7;4996:207;5033:18;5025:4;:26;4996:207;;5069:31;5103:17;;;:11;:17;;;;;;;;;5069:51;;;;;;;;;-1:-1:-1;;;;;5069:51:3;;;;;-1:-1:-1;;;5069:51:3;;;-1:-1:-1;;;;;5069:51:3;;;;;;;;5132:28;5128:69;;5179:9;-1:-1:-1;5172:16:3;;-1:-1:-1;;5172:16:3;5128:69;-1:-1:-1;5053:6:3;;;;:::i;:::-;;;;4996:207;;;;5209:57;;-1:-1:-1;;;5209:57:3;;;;;;;:::i;2263:187:10:-;2355:6;;;-1:-1:-1;;;;;2371:17:10;;;-1:-1:-1;;;;;;2371:17:10;;;;;;;2403:40;;2355:6;;;2371:17;2355:6;;2403:40;;2336:16;;2403:40;2263:187;;:::o;1154:184:9:-;1275:4;1327;1298:25;1311:5;1318:4;1298:12;:25::i;:::-;:33;;1154:184;-1:-1:-1;;;;1154:184:9:o;13947:667:3:-;14079:4;14095:15;:2;-1:-1:-1;;;;;14095:13:3;;:15::i;:::-;14091:519;;;14148:2;-1:-1:-1;;;;;14132:36:3;;14169:12;:10;:12::i;:::-;14183:4;14189:7;14198:5;14132:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;14132:72:3;;;;;;;;-1:-1:-1;;14132:72:3;;;;;;;;;;;;:::i;:::-;;;14120:452;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;14359:13:3;;14355:209;;14391:61;;-1:-1:-1;;;14391:61:3;;;;;;;:::i;14355:209::-;14534:6;14528:13;14519:6;14515:2;14511:15;14504:38;14120:452;-1:-1:-1;;;;;;14252:55:3;-1:-1:-1;;;14252:55:3;;-1:-1:-1;14245:62:3;;14091:519;-1:-1:-1;14599:4:3;14091:519;13947:667;;;;;;:::o;5617:106:11:-;5677:13;5705;5698:20;;;;;:::i;328:703:12:-;384:13;601:10;597:51;;-1:-1:-1;627:10:12;;;;;;;;;;;;-1:-1:-1;;;627:10:12;;;;;;597:51;672:5;657:12;711:75;718:9;;711:75;;743:8;;;;:::i;:::-;;-1:-1:-1;765:10:12;;-1:-1:-1;773:2:12;765:10;;:::i;:::-;;;711:75;;;795:19;827:6;-1:-1:-1;;;;;817:17:12;;;;;-1:-1:-1;;;817:17:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;817:17:12;;795:39;;844:150;851:10;;844:150;;877:11;887:1;877:11;;:::i;:::-;;-1:-1:-1;945:10:12;953:2;945:5;:10;:::i;:::-;932:24;;:2;:24;:::i;:::-;919:39;;902:6;909;902:14;;;;;;-1:-1:-1;;;902:14:12;;;;;;;;;;;;:56;-1:-1:-1;;;;;902:56:12;;;;;;;;-1:-1:-1;972:11:12;981:2;972:11;;:::i;:::-;;;844:150;;4447:234:3;4508:7;-1:-1:-1;;;;;4538:19:3;;4523:99;;;;-1:-1:-1;;;4523:99:3;;;;;;;:::i;:::-;-1:-1:-1;;;;;;4643:19:3;;;;;:12;:19;;;;;:32;-1:-1:-1;;;4643:32:3;;-1:-1:-1;;;;;4643:32:3;;4447:234::o;9235:1239::-;9335:20;9358:12;-1:-1:-1;;;;;9384:16:3;;9376:62;;;;-1:-1:-1;;;9376:62:3;;;;;;;:::i;:::-;9573:21;9581:12;9573:7;:21::i;:::-;9572:22;9564:64;;;;-1:-1:-1;;;9564:64:3;;;;;;;:::i;:::-;9654:12;9642:8;:24;;9634:71;;;;-1:-1:-1;;;9634:71:3;;;;;;;:::i;:::-;9712:61;9742:1;9746:2;9750:12;9764:8;9712:21;:61::i;:::-;-1:-1:-1;;;;;9813:16:3;;9780:30;9813:16;;;:12;:16;;;;;;;;;9780:49;;;;;;;;;-1:-1:-1;;;;;9780:49:3;;;;;-1:-1:-1;;;9780:49:3;;;;;;;;;;;9854:116;;;;;;;;9873:19;;9780:49;;9854:116;;;9873:39;;9903:8;;9873:39;:::i;:::-;-1:-1:-1;;;;;9854:116:3;;;;;9955:8;9920:11;:24;;;:44;;;;:::i;:::-;-1:-1:-1;;;;;9854:116:3;;;;;;-1:-1:-1;;;;;9835:16:3;;;;;;;:12;:16;;;;;;;;:135;;;;;;;;;;-1:-1:-1;;;9835:135:3;;;;-1:-1:-1;;9835:135:3;;;;;;;;;;;;;;;;;10004:43;;;;;;;;;;-1:-1:-1;;;;;10030:15:3;10004:43;;;;;;;;9976:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;9976:71:3;-1:-1:-1;;;;9976:71:3;;;;-1:-1:-1;;;;;;9976:71:3;;;;;;;;;;;;;;;9988:12;;10096:274;10120:8;10116:1;:12;10096:274;;;10148:38;;10173:12;;-1:-1:-1;;;;;10148:38:3;;;10165:1;;10148:38;;10165:1;;10148:38;10211:59;10242:1;10246:2;10250:12;10264:5;10211:22;:59::i;:::-;10194:147;;;;-1:-1:-1;;;10194:147:3;;;;;;;:::i;:::-;10349:14;;;;:::i;:::-;;;;10130:3;;;;;:::i;:::-;;;;10096:274;;;-1:-1:-1;10376:12:3;:27;;;10409:60;;10442:2;10446:12;10460:8;10409:20;:60::i;1689:662:9:-;1772:7;1814:4;1772:7;1828:488;1852:5;:12;1848:1;:16;1828:488;;;1885:20;1908:5;1914:1;1908:8;;;;;;-1:-1:-1;;;1908:8:9;;;;;;;;;;;;;;;1885:31;;1950:12;1934;:28;1930:376;;2075:42;2090:12;2104;2075:14;:42::i;:::-;2060:57;;1930:376;;;2249:42;2264:12;2278;2249:14;:42::i;:::-;2234:57;;1930:376;-1:-1:-1;1866:3:9;;;;:::i;:::-;;;;1828:488;;1175:320:0;-1:-1:-1;;;;;1465:19:0;;:23;;;1175:320::o;2357:218:9:-;2425:13;2473:15;;;2508:4;2501:15;2554:4;2538:21;;;2459:110::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;14:408:13;;-1:-1:-1;;;;;106:6:13;103:30;100:2;;;136:18;;:::i;:::-;174:57;219:2;198:15;;-1:-1:-1;;194:29:13;225:4;190:40;174:57;:::i;:::-;165:66;;254:6;247:5;240:21;294:3;285:6;280:3;276:16;273:25;270:2;;;311:1;308;301:12;270:2;360:6;355:3;348:4;341:5;337:16;324:43;414:1;407:4;398:6;391:5;387:18;383:29;376:40;90:332;;;;;:::o;427:175::-;497:20;;-1:-1:-1;;;;;546:31:13;;536:42;;526:2;;592:1;589;582:12;607:162;674:20;;730:13;;723:21;713:32;;703:2;;759:1;756;749:12;774:198;;886:2;874:9;865:7;861:23;857:32;854:2;;;907:6;899;892:22;854:2;935:31;956:9;935:31;:::i;977:274::-;;;1106:2;1094:9;1085:7;1081:23;1077:32;1074:2;;;1127:6;1119;1112:22;1074:2;1155:31;1176:9;1155:31;:::i;:::-;1145:41;;1205:40;1241:2;1230:9;1226:18;1205:40;:::i;:::-;1195:50;;1064:187;;;;;:::o;1256:342::-;;;;1402:2;1390:9;1381:7;1377:23;1373:32;1370:2;;;1423:6;1415;1408:22;1370:2;1451:31;1472:9;1451:31;:::i;:::-;1441:41;;1501:40;1537:2;1526:9;1522:18;1501:40;:::i;:::-;1491:50;;1588:2;1577:9;1573:18;1560:32;1550:42;;1360:238;;;;;:::o;1603:702::-;;;;;1775:3;1763:9;1754:7;1750:23;1746:33;1743:2;;;1797:6;1789;1782:22;1743:2;1825:31;1846:9;1825:31;:::i;:::-;1815:41;;1875:40;1911:2;1900:9;1896:18;1875:40;:::i;:::-;1865:50;;1962:2;1951:9;1947:18;1934:32;1924:42;;2017:2;2006:9;2002:18;1989:32;-1:-1:-1;;;;;2036:6:13;2033:30;2030:2;;;2081:6;2073;2066:22;2030:2;2109:22;;2162:4;2154:13;;2150:27;-1:-1:-1;2140:2:13;;2196:6;2188;2181:22;2140:2;2224:75;2291:7;2286:2;2273:16;2268:2;2264;2260:11;2224:75;:::i;:::-;2214:85;;;1733:572;;;;;;;:::o;2310:268::-;;;2436:2;2424:9;2415:7;2411:23;2407:32;2404:2;;;2457:6;2449;2442:22;2404:2;2485:31;2506:9;2485:31;:::i;:::-;2475:41;;2535:37;2568:2;2557:9;2553:18;2535:37;:::i;2583:266::-;;;2712:2;2700:9;2691:7;2687:23;2683:32;2680:2;;;2733:6;2725;2718:22;2680:2;2761:31;2782:9;2761:31;:::i;:::-;2751:41;2839:2;2824:18;;;;2811:32;;-1:-1:-1;;;2670:179:13:o;2854:666::-;;;3001:2;2989:9;2980:7;2976:23;2972:32;2969:2;;;3022:6;3014;3007:22;2969:2;3067:9;3054:23;-1:-1:-1;;;;;3137:2:13;3129:6;3126:14;3123:2;;;3158:6;3150;3143:22;3123:2;3201:6;3190:9;3186:22;3176:32;;3246:7;3239:4;3235:2;3231:13;3227:27;3217:2;;3273:6;3265;3258:22;3217:2;3318;3305:16;3344:2;3336:6;3333:14;3330:2;;;3365:6;3357;3350:22;3330:2;3424:7;3419:2;3413;3405:6;3401:15;3397:2;3393:24;3389:33;3386:46;3383:2;;;3450:6;3442;3435:22;3383:2;3486;3478:11;;;;;3508:6;;-1:-1:-1;2959:561:13;;-1:-1:-1;;;;2959:561:13:o;3525:192::-;;3634:2;3622:9;3613:7;3609:23;3605:32;3602:2;;;3655:6;3647;3640:22;3602:2;3683:28;3701:9;3683:28;:::i;3722:190::-;;3834:2;3822:9;3813:7;3809:23;3805:32;3802:2;;;3855:6;3847;3840:22;3802:2;-1:-1:-1;3883:23:13;;3792:120;-1:-1:-1;3792:120:13:o;3917:257::-;;4028:2;4016:9;4007:7;4003:23;3999:32;3996:2;;;4049:6;4041;4034:22;3996:2;4093:9;4080:23;4112:32;4138:5;4112:32;:::i;4179:261::-;;4301:2;4289:9;4280:7;4276:23;4272:32;4269:2;;;4322:6;4314;4307:22;4269:2;4359:9;4353:16;4378:32;4404:5;4378:32;:::i;4445:482::-;;4567:2;4555:9;4546:7;4542:23;4538:32;4535:2;;;4588:6;4580;4573:22;4535:2;4633:9;4620:23;-1:-1:-1;;;;;4658:6:13;4655:30;4652:2;;;4703:6;4695;4688:22;4652:2;4731:22;;4784:4;4776:13;;4772:27;-1:-1:-1;4762:2:13;;4818:6;4810;4803:22;4762:2;4846:75;4913:7;4908:2;4895:16;4890:2;4886;4882:11;4846:75;:::i;5127:1071::-;;;5281:2;5269:9;5260:7;5256:23;5252:32;5249:2;;;5302:6;5294;5287:22;5249:2;5343:9;5330:23;5320:33;;5372:2;5425;5414:9;5410:18;5397:32;-1:-1:-1;;;;;5489:2:13;5481:6;5478:14;5475:2;;;5510:6;5502;5495:22;5475:2;5553:6;5542:9;5538:22;5528:32;;5598:7;5591:4;5587:2;5583:13;5579:27;5569:2;;5625:6;5617;5610:22;5569:2;5666;5653:16;5688:2;5684;5681:10;5678:2;;;5694:18;;:::i;:::-;5741:2;5737;5733:11;5723:21;;5764:28;5788:2;5784;5780:11;5764:28;:::i;:::-;5826:15;;;5857:12;;;;5889:11;;;5919;;;5915:20;;5912:33;-1:-1:-1;5909:2:13;;;5963:6;5955;5948:22;5909:2;5990:6;5981:15;;6005:163;6019:2;6016:1;6013:9;6005:163;;;6076:17;;6064:30;;6037:1;6030:9;;;;;6114:12;;;;6146;;6005:163;;;6009:3;6187:5;6177:15;;;;;;;;5239:959;;;;;:::o;6203:259::-;;6284:5;6278:12;6311:6;6306:3;6299:19;6327:63;6383:6;6376:4;6371:3;6367:14;6360:4;6353:5;6349:16;6327:63;:::i;:::-;6444:2;6423:15;-1:-1:-1;;6419:29:13;6410:39;;;;6451:4;6406:50;;6254:208;-1:-1:-1;;6254:208:13:o;6467:229::-;6616:2;6612:15;;;;-1:-1:-1;;6608:53:13;6596:66;;6687:2;6678:12;;6586:110::o;6701:470::-;;6918:6;6912:13;6934:53;6980:6;6975:3;6968:4;6960:6;6956:17;6934:53;:::i;:::-;7050:13;;7009:16;;;;7072:57;7050:13;7009:16;7106:4;7094:17;;7072:57;:::i;:::-;7145:20;;6888:283;-1:-1:-1;;;;6888:283:13:o;7176:203::-;-1:-1:-1;;;;;7340:32:13;;;;7322:51;;7310:2;7295:18;;7277:102::o;7384:490::-;-1:-1:-1;;;;;7653:15:13;;;7635:34;;7705:15;;7700:2;7685:18;;7678:43;7752:2;7737:18;;7730:34;;;7800:3;7795:2;7780:18;;7773:31;;;7384:490;;7821:47;;7848:19;;7840:6;7821:47;:::i;:::-;7813:55;7587:287;-1:-1:-1;;;;;;7587:287:13:o;7879:635::-;8050:2;8102:21;;;8172:13;;8075:18;;;8194:22;;;7879:635;;8050:2;8273:15;;;;8247:2;8232:18;;;7879:635;8319:169;8333:6;8330:1;8327:13;8319:169;;;8394:13;;8382:26;;8463:15;;;;8428:12;;;;8355:1;8348:9;8319:169;;;-1:-1:-1;8505:3:13;;8030:484;-1:-1:-1;;;;;;8030:484:13:o;8519:187::-;8684:14;;8677:22;8659:41;;8647:2;8632:18;;8614:92::o;8711:177::-;8857:25;;;8845:2;8830:18;;8812:76::o;8893:221::-;;9042:2;9031:9;9024:21;9062:46;9104:2;9093:9;9089:18;9081:6;9062:46;:::i;9119:398::-;9321:2;9303:21;;;9360:2;9340:18;;;9333:30;9399:34;9394:2;9379:18;;9372:62;-1:-1:-1;;;9465:2:13;9450:18;;9443:32;9507:3;9492:19;;9293:224::o;9522:351::-;9724:2;9706:21;;;9763:2;9743:18;;;9736:30;9802:29;9797:2;9782:18;;9775:57;9864:2;9849:18;;9696:177::o;9878:353::-;10080:2;10062:21;;;10119:2;10099:18;;;10092:30;10158:31;10153:2;10138:18;;10131:59;10222:2;10207:18;;10052:179::o;10236:353::-;10438:2;10420:21;;;10477:2;10457:18;;;10450:30;10516:31;10511:2;10496:18;;10489:59;10580:2;10565:18;;10410:179::o;10594:402::-;10796:2;10778:21;;;10835:2;10815:18;;;10808:30;10874:34;10869:2;10854:18;;10847:62;-1:-1:-1;;;10940:2:13;10925:18;;10918:36;10986:3;10971:19;;10768:228::o;11001:406::-;11203:2;11185:21;;;11242:2;11222:18;;;11215:30;11281:34;11276:2;11261:18;;11254:62;-1:-1:-1;;;11347:2:13;11332:18;;11325:40;11397:3;11382:19;;11175:232::o;11412:343::-;11614:2;11596:21;;;11653:2;11633:18;;;11626:30;-1:-1:-1;;;11687:2:13;11672:18;;11665:49;11746:2;11731:18;;11586:169::o;11760:348::-;11962:2;11944:21;;;12001:2;11981:18;;;11974:30;12040:26;12035:2;12020:18;;12013:54;12099:2;12084:18;;11934:174::o;12113:399::-;12315:2;12297:21;;;12354:2;12334:18;;;12327:30;12393:34;12388:2;12373:18;;12366:62;-1:-1:-1;;;12459:2:13;12444:18;;12437:33;12502:3;12487:19;;12287:225::o;12517:339::-;12719:2;12701:21;;;12758:2;12738:18;;;12731:30;-1:-1:-1;;;12792:2:13;12777:18;;12770:45;12847:2;12832:18;;12691:165::o;12861:401::-;13063:2;13045:21;;;13102:2;13082:18;;;13075:30;13141:34;13136:2;13121:18;;13114:62;-1:-1:-1;;;13207:2:13;13192:18;;13185:35;13252:3;13237:19;;13035:227::o;13267:413::-;13469:2;13451:21;;;13508:2;13488:18;;;13481:30;13547:34;13542:2;13527:18;;13520:62;-1:-1:-1;;;13613:2:13;13598:18;;13591:47;13670:3;13655:19;;13441:239::o;13685:354::-;13887:2;13869:21;;;13926:2;13906:18;;;13899:30;13965:32;13960:2;13945:18;;13938:60;14030:2;14015:18;;13859:180::o;14044:421::-;14246:2;14228:21;;;14285:2;14265:18;;;14258:30;14324:34;14319:2;14304:18;;14297:62;14395:27;14390:2;14375:18;;14368:55;14455:3;14440:19;;14218:247::o;14470:407::-;14672:2;14654:21;;;14711:2;14691:18;;;14684:30;14750:34;14745:2;14730:18;;14723:62;-1:-1:-1;;;14816:2:13;14801:18;;14794:41;14867:3;14852:19;;14644:233::o;14882:402::-;15084:2;15066:21;;;15123:2;15103:18;;;15096:30;15162:34;15157:2;15142:18;;15135:62;-1:-1:-1;;;15228:2:13;15213:18;;15206:36;15274:3;15259:19;;15056:228::o;15289:348::-;15491:2;15473:21;;;15530:2;15510:18;;;15503:30;15569:26;15564:2;15549:18;;15542:54;15628:2;15613:18;;15463:174::o;15642:356::-;15844:2;15826:21;;;15863:18;;;15856:30;15922:34;15917:2;15902:18;;15895:62;15989:2;15974:18;;15816:182::o;16003:354::-;16205:2;16187:21;;;16244:2;16224:18;;;16217:30;16283:32;16278:2;16263:18;;16256:60;16348:2;16333:18;;16177:180::o;16362:411::-;16564:2;16546:21;;;16603:2;16583:18;;;16576:30;16642:34;16637:2;16622:18;;16615:62;-1:-1:-1;;;16708:2:13;16693:18;;16686:45;16763:3;16748:19;;16536:237::o;16778:350::-;16980:2;16962:21;;;17019:2;16999:18;;;16992:30;17058:28;17053:2;17038:18;;17031:56;17119:2;17104:18;;16952:176::o;17133:414::-;17335:2;17317:21;;;17374:2;17354:18;;;17347:30;17413:34;17408:2;17393:18;;17386:62;-1:-1:-1;;;17479:2:13;17464:18;;17457:48;17537:3;17522:19;;17307:240::o;17552:354::-;17754:2;17736:21;;;17793:2;17773:18;;;17766:30;17832:32;17827:2;17812:18;;17805:60;17897:2;17882:18;;17726:180::o;17911:346::-;18113:2;18095:21;;;18152:2;18132:18;;;18125:30;-1:-1:-1;;;18186:2:13;18171:18;;18164:52;18248:2;18233:18;;18085:172::o;18262:398::-;18464:2;18446:21;;;18503:2;18483:18;;;18476:30;18542:34;18537:2;18522:18;;18515:62;-1:-1:-1;;;18608:2:13;18593:18;;18586:32;18650:3;18635:19;;18436:224::o;18665:344::-;18867:2;18849:21;;;18906:2;18886:18;;;18879:30;-1:-1:-1;;;18940:2:13;18925:18;;18918:50;19000:2;18985:18;;18839:170::o;19014:415::-;19216:2;19198:21;;;19255:2;19235:18;;;19228:30;19294:34;19289:2;19274:18;;19267:62;-1:-1:-1;;;19360:2:13;19345:18;;19338:49;19419:3;19404:19;;19188:241::o;19434:353::-;19636:2;19618:21;;;19675:2;19655:18;;;19648:30;19714:31;19709:2;19694:18;;19687:59;19778:2;19763:18;;19608:179::o;19792:337::-;19994:2;19976:21;;;20033:2;20013:18;;;20006:30;-1:-1:-1;;;20067:2:13;20052:18;;20045:43;20120:2;20105:18;;19966:163::o;20134:397::-;20336:2;20318:21;;;20375:2;20355:18;;;20348:30;20414:34;20409:2;20394:18;;20387:62;-1:-1:-1;;;20480:2:13;20465:18;;20458:31;20521:3;20506:19;;20308:223::o;20536:346::-;20738:2;20720:21;;;20777:2;20757:18;;;20750:30;-1:-1:-1;;;20811:2:13;20796:18;;20789:52;20873:2;20858:18;;20710:172::o;20887:351::-;21089:2;21071:21;;;21128:2;21108:18;;;21101:30;21167:29;21162:2;21147:18;;21140:57;21229:2;21214:18;;21061:177::o;21243:343::-;21445:2;21427:21;;;21484:2;21464:18;;;21457:30;-1:-1:-1;;;21518:2:13;21503:18;;21496:49;21577:2;21562:18;;21417:169::o;21591:351::-;21793:2;21775:21;;;21832:2;21812:18;;;21805:30;21871:29;21866:2;21851:18;;21844:57;21933:2;21918:18;;21765:177::o;21947:410::-;22149:2;22131:21;;;22188:2;22168:18;;;22161:30;22227:34;22222:2;22207:18;;22200:62;-1:-1:-1;;;22293:2:13;22278:18;;22271:44;22347:3;22332:19;;22121:236::o;22362:352::-;22564:2;22546:21;;;22603:2;22583:18;;;22576:30;22642;22637:2;22622:18;;22615:58;22705:2;22690:18;;22536:178::o;22719:411::-;22921:2;22903:21;;;22960:2;22940:18;;;22933:30;22999:34;22994:2;22979:18;;22972:62;-1:-1:-1;;;23065:2:13;23050:18;;23043:45;23120:3;23105:19;;22893:237::o;23135:351::-;23337:2;23319:21;;;23376:2;23356:18;;;23349:30;23415:29;23410:2;23395:18;;23388:57;23477:2;23462:18;;23309:177::o;23491:409::-;23693:2;23675:21;;;23732:2;23712:18;;;23705:30;23771:34;23766:2;23751:18;;23744:62;-1:-1:-1;;;23837:2:13;23822:18;;23815:43;23890:3;23875:19;;23665:235::o;23905:398::-;24107:2;24089:21;;;24146:2;24126:18;;;24119:30;24185:34;24180:2;24165:18;;24158:62;-1:-1:-1;;;24251:2:13;24236:18;;24229:32;24293:3;24278:19;;24079:224::o;24308:356::-;24510:2;24492:21;;;24529:18;;;24522:30;24588:34;24583:2;24568:18;;24561:62;24655:2;24640:18;;24482:182::o;24851:275::-;24922:2;24916:9;24987:2;24968:13;;-1:-1:-1;;24964:27:13;24952:40;;-1:-1:-1;;;;;25007:34:13;;25043:22;;;25004:62;25001:2;;;25069:18;;:::i;:::-;25105:2;25098:22;24896:230;;-1:-1:-1;24896:230:13:o;25131:253::-;;-1:-1:-1;;;;;25260:2:13;25257:1;25253:10;25290:2;25287:1;25283:10;25321:3;25317:2;25313:12;25308:3;25305:21;25302:2;;;25329:18;;:::i;25389:128::-;;25460:1;25456:6;25453:1;25450:13;25447:2;;;25466:18;;:::i;:::-;-1:-1:-1;25502:9:13;;25437:80::o;25522:120::-;;25588:1;25578:2;;25593:18;;:::i;:::-;-1:-1:-1;25627:9:13;;25568:74::o;25647:168::-;;25753:1;25749;25745:6;25741:14;25738:1;25735:21;25730:1;25723:9;25716:17;25712:45;25709:2;;;25760:18;;:::i;:::-;-1:-1:-1;25800:9:13;;25699:116::o;25820:246::-;;-1:-1:-1;;;;;25973:10:13;;;;25943;;25995:12;;;25992:2;;;26010:18;;:::i;:::-;26047:13;;25869:197;-1:-1:-1;;;25869:197:13:o;26071:125::-;;26139:1;26136;26133:8;26130:2;;;26144:18;;:::i;:::-;-1:-1:-1;26181:9:13;;26120:76::o;26201:258::-;26273:1;26283:113;26297:6;26294:1;26291:13;26283:113;;;26373:11;;;26367:18;26354:11;;;26347:39;26319:2;26312:10;26283:113;;;26414:6;26411:1;26408:13;26405:2;;;-1:-1:-1;;26449:1:13;26431:16;;26424:27;26254:205::o;26464:136::-;;26531:5;26521:2;;26540:18;;:::i;:::-;-1:-1:-1;;;26576:18:13;;26511:89::o;26605:380::-;26690:1;26680:12;;26737:1;26727:12;;;26748:2;;26802:4;26794:6;26790:17;26780:27;;26748:2;26855;26847:6;26844:14;26824:18;26821:38;26818:2;;;26901:10;26896:3;26892:20;26889:1;26882:31;26936:4;26933:1;26926:15;26964:4;26961:1;26954:15;26818:2;;26660:325;;;:::o;26990:135::-;;-1:-1:-1;;27050:17:13;;27047:2;;;27070:18;;:::i;:::-;-1:-1:-1;27117:1:13;27106:13;;27037:88::o;27130:112::-;;27188:1;27178:2;;27193:18;;:::i;:::-;-1:-1:-1;27227:9:13;;27168:74::o;27247:127::-;27308:10;27303:3;27299:20;27296:1;27289:31;27339:4;27336:1;27329:15;27363:4;27360:1;27353:15;27379:127;27440:10;27435:3;27431:20;27428:1;27421:31;27471:4;27468:1;27461:15;27495:4;27492:1;27485:15;27511:127;27572:10;27567:3;27563:20;27560:1;27553:31;27603:4;27600:1;27593:15;27627:4;27624:1;27617:15;27643:133;-1:-1:-1;;;;;;27719:32:13;;27709:43;;27699:2;;27766:1;27763;27756:12

Swarm Source

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