ETH Price: $3,499.08 (+3.80%)
Gas: 4 Gwei

Token

M3TA MOGULS (MM)
 

Overview

Max Total Supply

4,444 MM

Holders

2,074

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 MM
0xefb8a81a490ce21b0e054c975ef519bce3e1aaa2
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:
M3taMoguls

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 10 of 13: M3taMoguls.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 M3taMoguls is ERC721A, Ownable {
  using MerkleProof for bytes32[];

  bytes32 public root;
  uint256 public mintPrice = 0.3 ether;
  uint256 public raffleMintPrice = 0.15 ether;
  uint256 public raffleBreakPoint1 = 650;
  uint256 public raffleBreakPoint2 = 1000;
  uint256 public raffleBreakPoint3 = 1500;

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

  string _baseTokenURI;

  bool public isRaffleActive1 = false;
  bool public isRaffleActive2 = false;
  bool public isRaffleActive3 = false;
  bool public isMintActive = false;
  bool public isClosedMintForever = false;

  uint256 public maximumMintSupply = 4444;
  uint256 public maximumAllowedTokensPerPurchase = 5;
  uint256 public maximumAllowedTokensPerWallet = 5;
  uint256 public raffleMaxMint1 = 2;
  uint256 public raffleMaxMint2 = 3;
  uint256 public raffleMaxMint3 = 4;

  uint256 public immutable maxPerAddressDuringMint;

  address private OtherAddress1 = 0xFf1896CFC912CeDa37319EBA452906dea8cb343C;
  address private OtherAddress2 = 0x0FACDE93BB161B90d3CfE13Da6787583339cce7c;

  mapping(address => bool) private _allowList;
  mapping(address => uint256) private _allowListClaimed1;
  mapping(address => uint256) private _allowListClaimed2;
  mapping(address => uint256) private _allowListClaimed3;

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

  constructor(
    string memory baseURI,
    uint256 maxBatchSize_,
    uint256 collectionSize_
   ) ERC721A("M3TA MOGULS", "MM", 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 setRaffleBreakPoint1(uint256 point) external  onlyAuthorized {
    raffleBreakPoint1 = point;
  }

  function setRaffleBreakPoint2(uint256 point) external  onlyAuthorized {
    raffleBreakPoint2 = point;
  }

  function setRaffleBreakPoint3(uint256 point) external  onlyAuthorized {
    raffleBreakPoint3 = point;
  }

  function setRaffleActive1(bool _isRaffleActive) public onlyAuthorized {
    isRaffleActive1 = _isRaffleActive;
  }

  function setRaffleActive2(bool _isRaffleActive) public onlyAuthorized {
    isRaffleActive2 = _isRaffleActive;
  }

  function setRaffleActive3(bool _isRaffleActive) public onlyAuthorized {
    isRaffleActive3 = _isRaffleActive;
  }

  function setRaffleMaxMint1(uint256 maxMint) external  onlyAuthorized {
    raffleMaxMint1 = maxMint;
  }

  function setRaffleMaxMint2(uint256 maxMint) external  onlyAuthorized {
    raffleMaxMint2 = maxMint;
  }

  function setRaffleMaxMint3(uint256 maxMint) external  onlyAuthorized {
    raffleMaxMint3 = maxMint;
  }

  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 setReserveAtATime(uint256 val) public onlyAuthorized {
    reserveAtATime = val;
  }

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

  function setMintPrice(uint256 _price) public onlyAuthorized {
    mintPrice = _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 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 alfaGroupMint(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(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.");

    _safeMint(_to, _count);
  }

  function raffleMint(uint256 _count, bytes32[] memory _proof) public payable saleIsOpen {
    bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
    uint256 supply = totalSupply();
    require(_proof.verify(root, leaf), "invalid proof");
    require(totalSupply() < maximumMintSupply, "All tokens have been minted");
    require(msg.value >= raffleMintPrice * _count, "Insuffient ETH amount sent.");
    require(!isClosedMintForever, "Mint Closed Forever");
    if(!isRaffleActive1 && !isRaffleActive2 && !isRaffleActive3) {
      require(false, "Raffle is not active");
    }


    if (isRaffleActive1) {
      require(_count <= raffleMaxMint1, "Cannot purchase this many tokens for this stage");
      require(_count + totalSupply() <= raffleBreakPoint1, "No NFTs are left to mint for this stage");
      require(_allowListClaimed1[msg.sender] + _count <= raffleMaxMint1, 'Purchase exceeds max allowed');
      _allowListClaimed1[msg.sender] += _count;
    }

    if (isRaffleActive2) {
      require(_count <= raffleMaxMint2, "Cannot purchase this many tokens for this stage");
      require(_count + totalSupply() <= raffleBreakPoint2, "No NFTs are left to mint for this stage");
      require(_allowListClaimed2[msg.sender] + _count <= raffleMaxMint2, 'Purchase exceeds max allowed');
      _allowListClaimed2[msg.sender] += _count;
    }

    if (isRaffleActive3) {
      require(_count <= raffleMaxMint3, "Cannot purchase this many tokens for this stage");
      require(_count + totalSupply() <= raffleBreakPoint3, "No NFTs are left to mint for this stage");
      require(_allowListClaimed3[msg.sender] + _count <= raffleMaxMint3, 'Purchase exceeds max allowed');
      _allowListClaimed3[msg.sender] += _count;
    }

    if(totalSupply() + _count == raffleBreakPoint1) {
      isRaffleActive1 = false;
      raffleMintPrice = 0.175 ether;
    } else if(totalSupply() + _count == raffleBreakPoint2) {
      isRaffleActive2 = false;
      raffleMintPrice = 0.2 ether;
    } else if(totalSupply() + _count == raffleBreakPoint3) {
      isRaffleActive3 = false;
    }

    _safeMint(msg.sender, _count);
  }

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

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

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

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

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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

pragma solidity ^0.8.0;

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

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

  struct TokenOwnership {
    address addr;
    uint64 startTimestamp;
  }

  struct AddressData {
    uint128 balance;
    uint128 numberMinted;
  }

  uint256 private currentIndex = 0;

  uint256 internal immutable collectionSize;
  uint256 internal immutable maxBatchSize;

  // Token name
  string private _name;

  // Token symbol
  string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

    _approve(to, tokenId, owner);
  }

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

    return _tokenApprovals[tokenId];
  }

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

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

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

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

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

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

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

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

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

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

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

    uint256 updatedIndex = startTokenId;

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

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

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

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

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

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

    _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

  uint256 public nextOwnerToExplicitlySet = 0;

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

import "./IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

import "./IERC721.sol";

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

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

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

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

pragma solidity ^0.8.0;

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

File 11 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 12 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":"_walletAddress","type":"address"},{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"alfaGroupMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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":"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":"isRaffleActive1","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isRaffleActive2","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isRaffleActive3","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":[],"name":"raffleBreakPoint1","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"raffleBreakPoint2","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"raffleBreakPoint3","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"raffleMaxMint1","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"raffleMaxMint2","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"raffleMaxMint3","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":[],"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":"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":"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":"bool","name":"_isRaffleActive","type":"bool"}],"name":"setRaffleActive1","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isRaffleActive","type":"bool"}],"name":"setRaffleActive2","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isRaffleActive","type":"bool"}],"name":"setRaffleActive3","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"point","type":"uint256"}],"name":"setRaffleBreakPoint1","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"point","type":"uint256"}],"name":"setRaffleBreakPoint2","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"point","type":"uint256"}],"name":"setRaffleBreakPoint3","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxMint","type":"uint256"}],"name":"setRaffleMaxMint1","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxMint","type":"uint256"}],"name":"setRaffleMaxMint2","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxMint","type":"uint256"}],"name":"setRaffleMaxMint3","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"}]

60e060405260008080556007819055670429d069189e0000600a55670214e8348c4f0000600b5561028a600c556103e8600d556105dc600e556032600f5560105560646011556013805464ffffffffff1916905561115c60145560056015819055601655600260175560036018556004601955601a80546001600160a01b031990811673ff1896cfc912ceda37319eba452906dea8cb343c17909155601b8054909116730facde93bb161b90d3cfe13da6787583339cce7c179055348015620000c757600080fd5b506040516200428a3803806200428a833981016040819052620000ea916200031f565b6040518060400160405280600b81526020016a4d335441204d4f47554c5360a81b815250604051806040016040528060028152602001614d4d60f01b815250838360008111620001575760405162461bcd60e51b81526004016200014e9062000450565b60405180910390fd5b600082116200017a5760405162461bcd60e51b81526004016200014e9062000409565b83516200018f90600190602087019062000279565b508251620001a590600290602086019062000279565b5060a09190915260805250620001c69050620001c0620001dc565b620001e0565b620001d18362000232565b5060c05250620004f1565b3390565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b336200023d6200026a565b6001600160a01b0316146200025157600080fd5b80516200026690601290602084019062000279565b5050565b6008546001600160a01b031690565b82805462000287906200049e565b90600052602060002090601f016020900481019282620002ab5760008555620002f6565b82601f10620002c657805160ff1916838001178555620002f6565b82800160010185558215620002f6579182015b82811115620002f6578251825591602001919060010190620002d9565b506200030492915062000308565b5090565b5b8082111562000304576000815560010162000309565b60008060006060848603121562000334578283fd5b83516001600160401b03808211156200034b578485fd5b818601915086601f8301126200035f578485fd5b815181811115620003745762000374620004db565b604051601f8201601f19908116603f011681019083821181831017156200039f576200039f620004db565b81604052828152602093508984848701011115620003bb578788fd5b8791505b82821015620003de5784820184015181830185015290830190620003bf565b82821115620003ef57878484830101525b928801516040909801519299979850919695505050505050565b60208082526027908201527f455243373231413a206d61782062617463682073697a65206d757374206265206040820152666e6f6e7a65726f60c81b606082015260800190565b6020808252602e908201527f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060408201526d6e6f6e7a65726f20737570706c7960901b606082015260800190565b600281046001821680620004b357607f821691505b60208210811415620004d557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b60805160a05160c051613d5762000533600039600081816112d20152611b370152600081816125420152818161256c0152612975015260005050613d576000f3fe60806040526004361061043c5760003560e01c80637890b2c911610234578063c4e41b221161012e578063ea6eb836116100b6578063f2fde38b1161007a578063f2fde38b14610bbd578063f4a0a52814610bdd578063f4c21dbc14610bfd578063f53beee114610c12578063f6c9d9e314610c325761043c565b8063ea6eb83614610b33578063ebf0c71714610b53578063ecfdeb4014610b68578063ee1cc94414610b88578063f132dc2914610ba85761043c565b8063d8a5a68e116100fd578063d8a5a68e14610a9e578063dab5f34014610abe578063dc33e68114610ade578063e7b62d9614610afe578063e985e9c514610b135761043c565b8063c4e41b2214610a3f578063c87b56dd14610a54578063cadf881814610a74578063d7224ba014610a895761043c565b80639cf24f18116101bc578063ad06d75811610180578063ad06d758146109b5578063b80a07e7146109ca578063b88d4fde146109df578063bc2ec854146109ff578063c3ac4feb14610a1f5761043c565b80639cf24f1814610920578063a22cb46514610940578063a51312c814610960578063a5166c1b14610980578063a7f93ebd146109a05761043c565b80638da5cb5b116102035780638da5cb5b146108b7578063932ecebc146108cc57806395d89b41146108e15780639a3bf728146108f65780639cb270001461090b5761043c565b80637890b2c91461085a5780637d26f4701461086d5780638bc35c2f146108825780638c595fe7146108975761043c565b8063428b0e84116103455780635b92ac0d116102cd57806370a082311161029157806370a08231146107db578063715018a6146107fb5780637165ebfc1461081057806371e3500c146108255780637389fbb71461083a5761043c565b80635b92ac0d146107675780635ca1e1651461077c5780636352211e146107915780636817c76c146107b15780636c509428146107c65761043c565b80634d0550de116103145780634d0550de146106d25780634dfea627146106e75780634f6ccce71461070757806355f804b31461072757806356a87caa146107475761043c565b8063428b0e8414610666578063438b63001461067b578063442890d5146106a857806346c226c1146106bd5761043c565b80632c1205f4116103c85780633ccfd60b116103975780633ccfd60b146105e95780633e6e093a146105fe5780633e8f09871461061e57806340c10f191461063357806342842e0e146106465761043c565b80632c1205f4146105695780632d4089cd146105895780632f745c59146105a957806330a36c4c146105c95761043c565b8063081812fc1161040f578063081812fc146104d0578063095ea7b3146104fd57806318160ddd1461051f57806323b872dd146105345780632992b0b0146105545761043c565b806301ffc9a71461044157806305a2e3411461047757806306fdde031461048c57806307bfac6d146104ae575b600080fd5b34801561044d57600080fd5b5061046161045c366004612f41565b610c52565b60405161046e919061317d565b60405180910390f35b34801561048357600080fd5b50610461610cb5565b34801561049857600080fd5b506104a1610cc4565b60405161046e9190613191565b3480156104ba57600080fd5b506104c3610d56565b60405161046e9190613188565b3480156104dc57600080fd5b506104f06104eb366004612f29565b610d5c565b60405161046e91906130e8565b34801561050957600080fd5b5061051d610518366004612e78565b610da8565b005b34801561052b57600080fd5b506104c3610e41565b34801561054057600080fd5b5061051d61054f366004612d9c565b610e47565b34801561056057600080fd5b506104c3610e52565b34801561057557600080fd5b50610461610584366004612d50565b610e58565b34801561059557600080fd5b5061051d6105a4366004612e78565b610e76565b3480156105b557600080fd5b506104c36105c4366004612e78565b610efd565b3480156105d557600080fd5b5061051d6105e4366004612f29565b610ff8565b3480156105f557600080fd5b5061051d611019565b34801561060a57600080fd5b5061051d610619366004612f0f565b61112d565b34801561062a57600080fd5b506104c3611165565b61051d610641366004612e78565b61116b565b34801561065257600080fd5b5061051d610661366004612d9c565b61137b565b34801561067257600080fd5b506104c3611396565b34801561068757600080fd5b5061069b610696366004612d50565b61139c565b60405161046e9190613139565b3480156106b457600080fd5b506104f0611459565b3480156106c957600080fd5b506104c3611468565b3480156106de57600080fd5b506104c361146e565b3480156106f357600080fd5b5061051d610702366004612f29565b611474565b34801561071357600080fd5b506104c3610722366004612f29565b611495565b34801561073357600080fd5b5061051d610742366004612f79565b6114c1565b34801561075357600080fd5b5061051d610762366004612f29565b6114f0565b34801561077357600080fd5b50610461611511565b34801561078857600080fd5b506104c3611521565b34801561079d57600080fd5b506104f06107ac366004612f29565b611527565b3480156107bd57600080fd5b506104c3611539565b3480156107d257600080fd5b5061046161153f565b3480156107e757600080fd5b506104c36107f6366004612d50565b611548565b34801561080757600080fd5b5061051d611595565b34801561081c57600080fd5b506104616115e0565b34801561083157600080fd5b5061051d6115ee565b34801561084657600080fd5b5061051d610855366004612f29565b6116b4565b61051d610868366004612fbe565b6116d5565b34801561087957600080fd5b50610461611b24565b34801561088e57600080fd5b506104c3611b35565b3480156108a357600080fd5b5061051d6108b2366004612f0f565b611b59565b3480156108c357600080fd5b506104f0611b8f565b3480156108d857600080fd5b5061051d611b9e565b3480156108ed57600080fd5b506104a1611bd1565b34801561090257600080fd5b506104c3611be0565b34801561091757600080fd5b506104c3611be6565b34801561092c57600080fd5b5061051d61093b366004612f29565b611bec565b34801561094c57600080fd5b5061051d61095b366004612e4f565b611c0d565b34801561096c57600080fd5b5061051d61097b366004612ea1565b611cdb565b34801561098c57600080fd5b5061051d61099b366004612f29565b611dd5565b3480156109ac57600080fd5b506104c3611df6565b3480156109c157600080fd5b506104c3611dfc565b3480156109d657600080fd5b506104c3611e21565b3480156109eb57600080fd5b5061051d6109fa366004612dd7565b611e27565b348015610a0b57600080fd5b5061051d610a1a366004612f29565b611e5a565b348015610a2b57600080fd5b5061051d610a3a366004612f29565b611e7b565b348015610a4b57600080fd5b506104c3611e9c565b348015610a6057600080fd5b506104a1610a6f366004612f29565b611ea6565b348015610a8057600080fd5b506104c3611f29565b348015610a9557600080fd5b506104c3611f2f565b348015610aaa57600080fd5b5061051d610ab9366004612f29565b611f35565b348015610aca57600080fd5b5061051d610ad9366004612f29565b611f56565b348015610aea57600080fd5b506104c3610af9366004612d50565b611f77565b348015610b0a57600080fd5b506104c3611f82565b348015610b1f57600080fd5b50610461610b2e366004612d6a565b611f88565b348015610b3f57600080fd5b5061051d610b4e366004612f29565b611fb6565b348015610b5f57600080fd5b506104c3611fd7565b348015610b7457600080fd5b5061051d610b83366004612f29565b611fdd565b348015610b9457600080fd5b5061051d610ba3366004612f0f565b611ffe565b348015610bb457600080fd5b5061046161206c565b348015610bc957600080fd5b5061051d610bd8366004612d50565b61207d565b348015610be957600080fd5b5061051d610bf8366004612f29565b6120ee565b348015610c0957600080fd5b506104c361210f565b348015610c1e57600080fd5b5061051d610c2d366004612f0f565b612115565b348015610c3e57600080fd5b5061051d610c4d366004612f29565b612144565b60006001600160e01b031982166380ac58cd60e01b1480610c8357506001600160e01b03198216635b5e139f60e01b145b80610c9e57506001600160e01b0319821663780e9d6360e01b145b80610cad5750610cad82612165565b90505b919050565b60135462010000900460ff1681565b606060018054610cd390613c5f565b80601f0160208091040260200160405190810160405280929190818152602001828054610cff90613c5f565b8015610d4c5780601f10610d2157610100808354040283529160200191610d4c565b820191906000526020600020905b815481529060010190602001808311610d2f57829003601f168201915b5050505050905090565b60185481565b6000610d678261217e565b610d8c5760405162461bcd60e51b8152600401610d8390613ab1565b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b6000610db382611527565b9050806001600160a01b0316836001600160a01b03161415610de75760405162461bcd60e51b8152600401610d83906137b0565b806001600160a01b0316610df9612185565b6001600160a01b03161480610e155750610e1581610b2e612185565b610e315760405162461bcd60e51b8152600401610d83906134c8565b610e3c838383612189565b505050565b60005490565b610e3c8383836121e5565b600b5490565b6001600160a01b03166000908152601c602052604090205460ff1690565b33610e7f611b8f565b6001600160a01b031614610e9257600080fd5b60145481610e9e610e41565b610ea89190613b92565b1115610ec65760405162461bcd60e51b8152600401610d8390613780565b601454610ed1610e41565b1115610eef5760405162461bcd60e51b8152600401610d8390613942565b610ef982826124f7565b5050565b6000610f0883611548565b8210610f265760405162461bcd60e51b8152600401610d83906131a4565b6000610f30610e41565b905060008060005b83811015610fd9576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215610f8a57805192505b876001600160a01b0316836001600160a01b03161415610fc65786841415610fb857509350610ff292505050565b83610fc281613c9a565b9450505b5080610fd181613c9a565b915050610f38565b5060405162461bcd60e51b8152600401610d83906139a6565b92915050565b33611001611b8f565b6001600160a01b03161461101457600080fd5b601855565b33611022611b8f565b6001600160a01b03161461103557600080fd5b601a5447906001600160a01b03166108fc61271061105584611388613bbe565b61105f9190613baa565b6040518115909202916000818181858888f19350505050158015611087573d6000803e3d6000fd5b50601b546001600160a01b03166108fc6127106110a684611388613bbe565b6110b09190613baa565b6040518115909202916000818181858888f193505050501580156110d8573d6000803e3d6000fd5b506110e1611b8f565b6001600160a01b03166108fc6127106110fb846000613bbe565b6111059190613baa565b6040518115909202916000818181858888f19350505050158015610ef9573d6000803e3d6000fd5b33611136611b8f565b6001600160a01b03161461114957600080fd5b60138054911515620100000262ff000019909216919091179055565b600b5481565b601454611176610e41565b11156111945760405162461bcd60e51b8152600401610d839061338b565b3233146111b35760405162461bcd60e51b8152600401610d839061344a565b6111bb611b8f565b6001600160a01b0316336001600160a01b0316146111fc576013546301000000900460ff166111fc5760405162461bcd60e51b8152600401610d839061321d565b611204611b8f565b6001600160a01b0316826001600160a01b031614611251576016548161122984611548565b6112339190613b92565b11156112515760405162461bcd60e51b8152600401610d8390613311565b6014548161125d610e41565b6112679190613b92565b11156112855760405162461bcd60e51b8152600401610d8390613780565b601454611290610e41565b11156112ae5760405162461bcd60e51b8152600401610d8390613942565b6015548111156112d05760405162461bcd60e51b8152600401610d8390613749565b7f0000000000000000000000000000000000000000000000000000000000000000816112fb33611f77565b6113059190613b92565b11156113235760405162461bcd60e51b8152600401610d8390613912565b601354640100000000900460ff161561134e5760405162461bcd60e51b8152600401610d83906132e4565b80600a5461135c9190613bbe565b341015610eef5760405162461bcd60e51b8152600401610d839061396f565b610e3c83838360405180602001604052806000815250611e27565b60175481565b606060006113a983611548565b90506000816001600160401b038111156113d357634e487b7160e01b600052604160045260246000fd5b6040519080825280602002602001820160405280156113fc578160200160208202803683370190505b50905060005b82811015611451576114148582610efd565b82828151811061143457634e487b7160e01b600052603260045260246000fd5b60209081029190910101528061144981613c9a565b915050611402565b509392505050565b6000611463611b8f565b905090565b600c5481565b60145481565b3361147d611b8f565b6001600160a01b03161461149057600080fd5b601555565b600061149f610e41565b82106114bd5760405162461bcd60e51b8152600401610d8390613348565b5090565b336114ca611b8f565b6001600160a01b0316146114dd57600080fd5b8051610ef9906012906020840190612c26565b336114f9611b8f565b6001600160a01b03161461150c57600080fd5b601155565b6013546301000000900460ff1681565b60095490565b600061153282612511565b5192915050565b600a5481565b60135460ff1681565b60006001600160a01b0382166115705760405162461bcd60e51b8152600401610d8390613574565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b61159d612185565b6001600160a01b03166115ae611b8f565b6001600160a01b0316146115d45760405162461bcd60e51b8152600401610d839061363c565b6115de6000612623565b565b601354610100900460ff1681565b336115f7611b8f565b6001600160a01b03161461160a57600080fd5b601154601054111561162e5760405162461bcd60e51b8152600401610d83906131e6565b601454600f5461163c610e41565b6116469190613b92565b11156116645760405162461bcd60e51b8152600401610d8390613780565b60145461166f610e41565b111561168d5760405162461bcd60e51b8152600401610d8390613942565b600f54601060008282546116a19190613b92565b925050819055506115de33600f546124f7565b336116bd611b8f565b6001600160a01b0316146116d057600080fd5b601455565b6014546116e0610e41565b11156116fe5760405162461bcd60e51b8152600401610d839061338b565b600033604051602001611711919061309c565b6040516020818303038152906040528051906020012090506000611733610e41565b60095490915061174590849084612675565b6117615760405162461bcd60e51b8152600401610d83906138aa565b60145461176c610e41565b106117895760405162461bcd60e51b8152600401610d8390613a7a565b83600b546117979190613bbe565b3410156117b65760405162461bcd60e51b8152600401610d839061396f565b601354640100000000900460ff16156117e15760405162461bcd60e51b8152600401610d83906132e4565b60135460ff161580156117fc5750601354610100900460ff16155b8015611811575060135462010000900460ff16155b1561182e5760405162461bcd60e51b8152600401610d83906137f2565b60135460ff16156118ef5760175484111561185b5760405162461bcd60e51b8152600401610d8390613525565b600c54611866610e41565b6118709086613b92565b111561188e5760405162461bcd60e51b8152600401610d8390613481565b601754336000908152601d60205260409020546118ac908690613b92565b11156118ca5760405162461bcd60e51b8152600401610d83906139f4565b336000908152601d6020526040812080548692906118e9908490613b92565b90915550505b601354610100900460ff16156119b5576018548411156119215760405162461bcd60e51b8152600401610d8390613525565b600d5461192c610e41565b6119369086613b92565b11156119545760405162461bcd60e51b8152600401610d8390613481565b601854336000908152601e6020526040902054611972908690613b92565b11156119905760405162461bcd60e51b8152600401610d83906139f4565b336000908152601e6020526040812080548692906119af908490613b92565b90915550505b60135462010000900460ff1615611a7c576019548411156119e85760405162461bcd60e51b8152600401610d8390613525565b600e546119f3610e41565b6119fd9086613b92565b1115611a1b5760405162461bcd60e51b8152600401610d8390613481565b601954336000908152601f6020526040902054611a39908690613b92565b1115611a575760405162461bcd60e51b8152600401610d83906139f4565b336000908152601f602052604081208054869290611a76908490613b92565b90915550505b600c5484611a88610e41565b611a929190613b92565b1415611ab3576013805460ff1916905567026db992a3b18000600b55611b14565b600d5484611abf610e41565b611ac99190613b92565b1415611aeb576013805461ff00191690556702c68af0bb140000600b55611b14565b600e5484611af7610e41565b611b019190613b92565b1415611b14576013805462ff0000191690555b611b1e33856124f7565b50505050565b601354640100000000900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b33611b62611b8f565b6001600160a01b031614611b7557600080fd5b601380549115156101000261ff0019909216919091179055565b6008546001600160a01b031690565b33611ba7611b8f565b6001600160a01b031614611bba57600080fd5b6013805464ff000000001916640100000000179055565b606060028054610cd390613c5f565b60155481565b60195481565b33611bf5611b8f565b6001600160a01b031614611c0857600080fd5b601755565b611c15612185565b6001600160a01b0316826001600160a01b03161415611c465760405162461bcd60e51b8152600401610d83906136c0565b8060066000611c53612185565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155611c97612185565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611ccf919061317d565b60405180910390a35050565b33611ce4611b8f565b6001600160a01b031614611cf757600080fd5b60005b81811015610e3c576000838383818110611d2457634e487b7160e01b600052603260045260246000fd5b9050602002016020810190611d399190612d50565b6001600160a01b03161415611d605760405162461bcd60e51b8152600401610d8390613605565b6000601c6000858585818110611d8657634e487b7160e01b600052603260045260246000fd5b9050602002016020810190611d9b9190612d50565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580611dcd81613c9a565b915050611cfa565b33611dde611b8f565b6001600160a01b031614611df157600080fd5b600c55565b600a5490565b600033611e07611b8f565b6001600160a01b031614611e1a57600080fd5b5060155490565b600e5481565b611e328484846121e5565b611e3e8484848461268b565b611b1e5760405162461bcd60e51b8152600401610d8390613820565b33611e63611b8f565b6001600160a01b031614611e7657600080fd5b601955565b33611e84611b8f565b6001600160a01b031614611e9757600080fd5b600b55565b6000611463610e41565b6060611eb18261217e565b611ecd5760405162461bcd60e51b8152600401610d8390613671565b6000611ed76127a7565b90506000815111611ef75760405180602001604052806000815250611f22565b80611f01846127b6565b604051602001611f129291906130b9565b6040516020818303038152906040525b9392505050565b60165481565b60075481565b33611f3e611b8f565b6001600160a01b031614611f5157600080fd5b600d55565b33611f5f611b8f565b6001600160a01b031614611f7257600080fd5b600955565b6000610cad826128d0565b600f5490565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b33611fbf611b8f565b6001600160a01b031614611fd257600080fd5b601655565b60095481565b33611fe6611b8f565b6001600160a01b031614611ff957600080fd5b600e55565b33612007611b8f565b6001600160a01b03161461201a57600080fd5b6013805463ff00000019166301000000831515021790556040517f58655b75d3df612fe99ead00dbf0812d415d35078fe06217a94c0818bb13967f9061206190839061317d565b60405180910390a150565b601354640100000000900460ff1690565b612085612185565b6001600160a01b0316612096611b8f565b6001600160a01b0316146120bc5760405162461bcd60e51b8152600401610d839061363c565b6001600160a01b0381166120e25760405162461bcd60e51b8152600401610d8390613254565b6120eb81612623565b50565b336120f7611b8f565b6001600160a01b03161461210a57600080fd5b600a55565b600d5481565b3361211e611b8f565b6001600160a01b03161461213157600080fd5b6013805460ff1916911515919091179055565b3361214d611b8f565b6001600160a01b03161461216057600080fd5b600f55565b6001600160e01b031981166301ffc9a760e01b14919050565b6000541190565b3390565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006121f082612511565b9050600081600001516001600160a01b031661220a612185565b6001600160a01b0316148061223f5750612222612185565b6001600160a01b031661223484610d5c565b6001600160a01b0316145b806122535750815161225390610b2e612185565b9050806122725760405162461bcd60e51b8152600401610d83906136f7565b846001600160a01b031682600001516001600160a01b0316146122a75760405162461bcd60e51b8152600401610d83906135bf565b6001600160a01b0384166122cd5760405162461bcd60e51b8152600401610d83906133b4565b6122da8585856001611b1e565b6122ea6000848460000151612189565b6001600160a01b038516600090815260046020526040812080546001929061231c9084906001600160801b0316613bdd565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b0386166000908152600460205260408120805460019450909261236891859116613b70565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b0380871682526001600160401b03428116602080850191825260008981526003909152948520935184549151909216600160a01b0267ffffffffffffffff60a01b19929093166001600160a01b031990911617161790556123fd846001613b92565b6000818152600360205260409020549091506001600160a01b03166124a1576124258161217e565b156124a15760408051808201825284516001600160a01b0390811682526020808701516001600160401b0390811682850190815260008781526003909352949091209251835494516001600160a01b031990951692169190911767ffffffffffffffff60a01b1916600160a01b93909116929092029190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46124ef8686866001611b1e565b505050505050565b610ef9828260405180602001604052806000815250612924565b612519612ca6565b6125228261217e565b61253e5760405162461bcd60e51b8152600401610d839061329a565b60007f0000000000000000000000000000000000000000000000000000000000000000831061259f576125917f000000000000000000000000000000000000000000000000000000000000000084613c05565b61259c906001613b92565b90505b825b81811061260a576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b031691830191909152156125f7579250610cb0915050565b508061260281613c48565b9150506125a1565b5060405162461bcd60e51b8152600401610d8390613a2b565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000826126828584612b96565b14949350505050565b600061269f846001600160a01b0316612c08565b1561279b57836001600160a01b031663150b7a026126bb612185565b8786866040518563ffffffff1660e01b81526004016126dd94939291906130fc565b602060405180830381600087803b1580156126f757600080fd5b505af1925050508015612727575060408051601f3d908101601f1916820190925261272491810190612f5d565b60015b612781573d808015612755576040519150601f19603f3d011682016040523d82523d6000602084013e61275a565b606091505b5080516127795760405162461bcd60e51b8152600401610d8390613820565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061279f565b5060015b949350505050565b606060128054610cd390613c5f565b6060816127db57506040805180820190915260018152600360fc1b6020820152610cb0565b8160005b811561280557806127ef81613c9a565b91506127fe9050600a83613baa565b91506127df565b6000816001600160401b0381111561282d57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612857576020820181803683370190505b5090505b841561279f5761286c600183613c05565b9150612879600a86613cb5565b612884906030613b92565b60f81b8183815181106128a757634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506128c9600a86613baa565b945061285b565b60006001600160a01b0382166128f85760405162461bcd60e51b8152600401610d83906133f9565b506001600160a01b0316600090815260046020526040902054600160801b90046001600160801b031690565b6000546001600160a01b03841661294d5760405162461bcd60e51b8152600401610d83906138d1565b6129568161217e565b156129735760405162461bcd60e51b8152600401610d8390613873565b7f00000000000000000000000000000000000000000000000000000000000000008311156129b35760405162461bcd60e51b8152600401610d8390613afe565b6129c06000858386611b1e565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190612a1c908790613b70565b6001600160801b03168152602001858360200151612a3a9190613b70565b6001600160801b039081169091526001600160a01b03808816600081815260046020908152604080832087518154988401518816600160801b029088166fffffffffffffffffffffffffffffffff199099169890981790961696909617909455845180860186529182526001600160401b034281168386019081528883526003909552948120915182549451909516600160a01b0267ffffffffffffffff60a01b19959093166001600160a01b031990941693909317939093161790915582905b85811015612b845760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4612b48600088848861268b565b612b645760405162461bcd60e51b8152600401610d8390613820565b81612b6e81613c9a565b9250508080612b7c90613c9a565b915050612afb565b5060008181556124ef90878588611b1e565b600081815b8451811015611451576000858281518110612bc657634e487b7160e01b600052603260045260246000fd5b60200260200101519050808311612be857612be18382612c17565b9250612bf5565b612bf28184612c17565b92505b5080612c0081613c9a565b915050612b9b565b6001600160a01b03163b151590565b60009182526020526040902090565b828054612c3290613c5f565b90600052602060002090601f016020900481019282612c545760008555612c9a565b82601f10612c6d57805160ff1916838001178555612c9a565b82800160010185558215612c9a579182015b82811115612c9a578251825591602001919060010190612c7f565b506114bd929150612cbd565b604080518082019091526000808252602082015290565b5b808211156114bd5760008155600101612cbe565b60006001600160401b03831115612ceb57612ceb613cf5565b612cfe601f8401601f1916602001613b40565b9050828152838383011115612d1257600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114610cb057600080fd5b80358015158114610cb057600080fd5b600060208284031215612d61578081fd5b611f2282612d29565b60008060408385031215612d7c578081fd5b612d8583612d29565b9150612d9360208401612d29565b90509250929050565b600080600060608486031215612db0578081fd5b612db984612d29565b9250612dc760208501612d29565b9150604084013590509250925092565b60008060008060808587031215612dec578081fd5b612df585612d29565b9350612e0360208601612d29565b92506040850135915060608501356001600160401b03811115612e24578182fd5b8501601f81018713612e34578182fd5b612e4387823560208401612cd2565b91505092959194509250565b60008060408385031215612e61578182fd5b612e6a83612d29565b9150612d9360208401612d40565b60008060408385031215612e8a578182fd5b612e9383612d29565b946020939093013593505050565b60008060208385031215612eb3578182fd5b82356001600160401b0380821115612ec9578384fd5b818501915085601f830112612edc578384fd5b813581811115612eea578485fd5b8660208083028501011115612efd578485fd5b60209290920196919550909350505050565b600060208284031215612f20578081fd5b611f2282612d40565b600060208284031215612f3a578081fd5b5035919050565b600060208284031215612f52578081fd5b8135611f2281613d0b565b600060208284031215612f6e578081fd5b8151611f2281613d0b565b600060208284031215612f8a578081fd5b81356001600160401b03811115612f9f578182fd5b8201601f81018413612faf578182fd5b61279f84823560208401612cd2565b60008060408385031215612fd0578182fd5b823591506020808401356001600160401b0380821115612fee578384fd5b818601915086601f830112613001578384fd5b81358181111561301357613013613cf5565b8381029150613023848301613b40565b8181528481019084860184860187018b101561303d578788fd5b8795505b8386101561305f578035835260019590950194918601918601613041565b508096505050505050509250929050565b60008151808452613088816020860160208601613c1c565b601f01601f19169290920160200192915050565b60609190911b6bffffffffffffffffffffffff1916815260140190565b600083516130cb818460208801613c1c565b8351908301906130df818360208801613c1c565b01949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061312f90830184613070565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561317157835183529284019291840191600101613155565b50909695505050505050565b901515815260200190565b90815260200190565b600060208252611f226020830184613070565b60208082526022908201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b6020808252601b908201527f4d61782052657365727665732074616b656e20616c7265616479210000000000604082015260600190565b6020808252601d908201527f53616c65206973206e6f74206163746976652063757272656e746c792e000000604082015260600190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252602a908201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736040820152693a32b73a103a37b5b2b760b11b606082015260800190565b60208082526013908201527226b4b73a1021b637b9b2b2102337b932bb32b960691b604082015260600190565b60208082526018908201527f4d617820686f6c64696e672063617020726561636865642e0000000000000000604082015260600190565b60208082526023908201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756040820152626e647360e81b606082015260800190565b6020808252600f908201526e29b0b632903430b99032b73232b21760891b604082015260600190565b60208082526025908201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526031908201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260408201527020746865207a65726f206164647265737360781b606082015260800190565b6020808252601e908201527f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000604082015260600190565b60208082526027908201527f4e6f204e46547320617265206c65667420746f206d696e7420666f72207468696040820152667320737461676560c81b606082015260800190565b60208082526039908201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60408201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606082015260800190565b6020808252602f908201527f43616e6e6f742070757263686173652074686973206d616e7920746f6b656e7360408201526e20666f72207468697320737461676560881b606082015260800190565b6020808252602b908201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60408201526a65726f206164647265737360a81b606082015260800190565b60208082526026908201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746040820152651037bbb732b960d11b606082015260800190565b60208082526018908201527f43616e2774206164642061206e756c6c20616464726573730000000000000000604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b6020808252601a908201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604082015260600190565b60208082526032908201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206040820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606082015260800190565b6020808252601e908201527f45786365656473206d6178696d756d20616c6c6f77656420746f6b656e730000604082015260600190565b6020808252601690820152752a37ba30b61039bab838363c9032bc31b2b2b232b21760511b604082015260600190565b60208082526022908201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60408201526132b960f11b606082015260800190565b602080825260149082015273526166666c65206973206e6f742061637469766560601b604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b6020808252601d908201527f455243373231413a20746f6b656e20616c7265616479206d696e746564000000604082015260600190565b6020808252600d908201526c34b73b30b634b210383937b7b360991b604082015260600190565b60208082526021908201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526016908201527563616e206e6f74206d696e742074686973206d616e7960501b604082015260600190565b6020808252601390820152722a37ba30b61039bab838363c9039b832b73a1760691b604082015260600190565b6020808252601b908201527f496e7375666669656e742045544820616d6f756e742073656e742e0000000000604082015260600190565b6020808252602e908201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060408201526d0deeedccae440c4f240d2dcc8caf60931b606082015260800190565b6020808252601c908201527f50757263686173652065786365656473206d617820616c6c6f77656400000000604082015260600190565b6020808252602f908201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560408201526e1037bbb732b91037b3103a37b5b2b760891b606082015260800190565b6020808252601b908201527f416c6c20746f6b656e732068617665206265656e206d696e7465640000000000604082015260600190565b6020808252602d908201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560408201526c3c34b9ba32b73a103a37b5b2b760991b606082015260800190565b60208082526022908201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696040820152610ced60f31b606082015260800190565b604051601f8201601f191681016001600160401b0381118282101715613b6857613b68613cf5565b604052919050565b60006001600160801b038083168185168083038211156130df576130df613cc9565b60008219821115613ba557613ba5613cc9565b500190565b600082613bb957613bb9613cdf565b500490565b6000816000190483118215151615613bd857613bd8613cc9565b500290565b60006001600160801b0383811690831681811015613bfd57613bfd613cc9565b039392505050565b600082821015613c1757613c17613cc9565b500390565b60005b83811015613c37578181015183820152602001613c1f565b83811115611b1e5750506000910152565b600081613c5757613c57613cc9565b506000190190565b600281046001821680613c7357607f821691505b60208210811415613c9457634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415613cae57613cae613cc9565b5060010190565b600082613cc457613cc4613cdf565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146120eb57600080fdfea264697066735822122040de355c4fbde599f1c6aec9c4354d29a21a8e2954299d0a113700ced513993564736f6c6343000801003300000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000032000000000000000000000000000000000000000000000000000000000000115c000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d5973577045736d6952545170394e39655056584b50697a6f47657468505a614b7479394447627a61566951632f000000000000000000000000000000

Deployed Bytecode

0x60806040526004361061043c5760003560e01c80637890b2c911610234578063c4e41b221161012e578063ea6eb836116100b6578063f2fde38b1161007a578063f2fde38b14610bbd578063f4a0a52814610bdd578063f4c21dbc14610bfd578063f53beee114610c12578063f6c9d9e314610c325761043c565b8063ea6eb83614610b33578063ebf0c71714610b53578063ecfdeb4014610b68578063ee1cc94414610b88578063f132dc2914610ba85761043c565b8063d8a5a68e116100fd578063d8a5a68e14610a9e578063dab5f34014610abe578063dc33e68114610ade578063e7b62d9614610afe578063e985e9c514610b135761043c565b8063c4e41b2214610a3f578063c87b56dd14610a54578063cadf881814610a74578063d7224ba014610a895761043c565b80639cf24f18116101bc578063ad06d75811610180578063ad06d758146109b5578063b80a07e7146109ca578063b88d4fde146109df578063bc2ec854146109ff578063c3ac4feb14610a1f5761043c565b80639cf24f1814610920578063a22cb46514610940578063a51312c814610960578063a5166c1b14610980578063a7f93ebd146109a05761043c565b80638da5cb5b116102035780638da5cb5b146108b7578063932ecebc146108cc57806395d89b41146108e15780639a3bf728146108f65780639cb270001461090b5761043c565b80637890b2c91461085a5780637d26f4701461086d5780638bc35c2f146108825780638c595fe7146108975761043c565b8063428b0e84116103455780635b92ac0d116102cd57806370a082311161029157806370a08231146107db578063715018a6146107fb5780637165ebfc1461081057806371e3500c146108255780637389fbb71461083a5761043c565b80635b92ac0d146107675780635ca1e1651461077c5780636352211e146107915780636817c76c146107b15780636c509428146107c65761043c565b80634d0550de116103145780634d0550de146106d25780634dfea627146106e75780634f6ccce71461070757806355f804b31461072757806356a87caa146107475761043c565b8063428b0e8414610666578063438b63001461067b578063442890d5146106a857806346c226c1146106bd5761043c565b80632c1205f4116103c85780633ccfd60b116103975780633ccfd60b146105e95780633e6e093a146105fe5780633e8f09871461061e57806340c10f191461063357806342842e0e146106465761043c565b80632c1205f4146105695780632d4089cd146105895780632f745c59146105a957806330a36c4c146105c95761043c565b8063081812fc1161040f578063081812fc146104d0578063095ea7b3146104fd57806318160ddd1461051f57806323b872dd146105345780632992b0b0146105545761043c565b806301ffc9a71461044157806305a2e3411461047757806306fdde031461048c57806307bfac6d146104ae575b600080fd5b34801561044d57600080fd5b5061046161045c366004612f41565b610c52565b60405161046e919061317d565b60405180910390f35b34801561048357600080fd5b50610461610cb5565b34801561049857600080fd5b506104a1610cc4565b60405161046e9190613191565b3480156104ba57600080fd5b506104c3610d56565b60405161046e9190613188565b3480156104dc57600080fd5b506104f06104eb366004612f29565b610d5c565b60405161046e91906130e8565b34801561050957600080fd5b5061051d610518366004612e78565b610da8565b005b34801561052b57600080fd5b506104c3610e41565b34801561054057600080fd5b5061051d61054f366004612d9c565b610e47565b34801561056057600080fd5b506104c3610e52565b34801561057557600080fd5b50610461610584366004612d50565b610e58565b34801561059557600080fd5b5061051d6105a4366004612e78565b610e76565b3480156105b557600080fd5b506104c36105c4366004612e78565b610efd565b3480156105d557600080fd5b5061051d6105e4366004612f29565b610ff8565b3480156105f557600080fd5b5061051d611019565b34801561060a57600080fd5b5061051d610619366004612f0f565b61112d565b34801561062a57600080fd5b506104c3611165565b61051d610641366004612e78565b61116b565b34801561065257600080fd5b5061051d610661366004612d9c565b61137b565b34801561067257600080fd5b506104c3611396565b34801561068757600080fd5b5061069b610696366004612d50565b61139c565b60405161046e9190613139565b3480156106b457600080fd5b506104f0611459565b3480156106c957600080fd5b506104c3611468565b3480156106de57600080fd5b506104c361146e565b3480156106f357600080fd5b5061051d610702366004612f29565b611474565b34801561071357600080fd5b506104c3610722366004612f29565b611495565b34801561073357600080fd5b5061051d610742366004612f79565b6114c1565b34801561075357600080fd5b5061051d610762366004612f29565b6114f0565b34801561077357600080fd5b50610461611511565b34801561078857600080fd5b506104c3611521565b34801561079d57600080fd5b506104f06107ac366004612f29565b611527565b3480156107bd57600080fd5b506104c3611539565b3480156107d257600080fd5b5061046161153f565b3480156107e757600080fd5b506104c36107f6366004612d50565b611548565b34801561080757600080fd5b5061051d611595565b34801561081c57600080fd5b506104616115e0565b34801561083157600080fd5b5061051d6115ee565b34801561084657600080fd5b5061051d610855366004612f29565b6116b4565b61051d610868366004612fbe565b6116d5565b34801561087957600080fd5b50610461611b24565b34801561088e57600080fd5b506104c3611b35565b3480156108a357600080fd5b5061051d6108b2366004612f0f565b611b59565b3480156108c357600080fd5b506104f0611b8f565b3480156108d857600080fd5b5061051d611b9e565b3480156108ed57600080fd5b506104a1611bd1565b34801561090257600080fd5b506104c3611be0565b34801561091757600080fd5b506104c3611be6565b34801561092c57600080fd5b5061051d61093b366004612f29565b611bec565b34801561094c57600080fd5b5061051d61095b366004612e4f565b611c0d565b34801561096c57600080fd5b5061051d61097b366004612ea1565b611cdb565b34801561098c57600080fd5b5061051d61099b366004612f29565b611dd5565b3480156109ac57600080fd5b506104c3611df6565b3480156109c157600080fd5b506104c3611dfc565b3480156109d657600080fd5b506104c3611e21565b3480156109eb57600080fd5b5061051d6109fa366004612dd7565b611e27565b348015610a0b57600080fd5b5061051d610a1a366004612f29565b611e5a565b348015610a2b57600080fd5b5061051d610a3a366004612f29565b611e7b565b348015610a4b57600080fd5b506104c3611e9c565b348015610a6057600080fd5b506104a1610a6f366004612f29565b611ea6565b348015610a8057600080fd5b506104c3611f29565b348015610a9557600080fd5b506104c3611f2f565b348015610aaa57600080fd5b5061051d610ab9366004612f29565b611f35565b348015610aca57600080fd5b5061051d610ad9366004612f29565b611f56565b348015610aea57600080fd5b506104c3610af9366004612d50565b611f77565b348015610b0a57600080fd5b506104c3611f82565b348015610b1f57600080fd5b50610461610b2e366004612d6a565b611f88565b348015610b3f57600080fd5b5061051d610b4e366004612f29565b611fb6565b348015610b5f57600080fd5b506104c3611fd7565b348015610b7457600080fd5b5061051d610b83366004612f29565b611fdd565b348015610b9457600080fd5b5061051d610ba3366004612f0f565b611ffe565b348015610bb457600080fd5b5061046161206c565b348015610bc957600080fd5b5061051d610bd8366004612d50565b61207d565b348015610be957600080fd5b5061051d610bf8366004612f29565b6120ee565b348015610c0957600080fd5b506104c361210f565b348015610c1e57600080fd5b5061051d610c2d366004612f0f565b612115565b348015610c3e57600080fd5b5061051d610c4d366004612f29565b612144565b60006001600160e01b031982166380ac58cd60e01b1480610c8357506001600160e01b03198216635b5e139f60e01b145b80610c9e57506001600160e01b0319821663780e9d6360e01b145b80610cad5750610cad82612165565b90505b919050565b60135462010000900460ff1681565b606060018054610cd390613c5f565b80601f0160208091040260200160405190810160405280929190818152602001828054610cff90613c5f565b8015610d4c5780601f10610d2157610100808354040283529160200191610d4c565b820191906000526020600020905b815481529060010190602001808311610d2f57829003601f168201915b5050505050905090565b60185481565b6000610d678261217e565b610d8c5760405162461bcd60e51b8152600401610d8390613ab1565b60405180910390fd5b506000908152600560205260409020546001600160a01b031690565b6000610db382611527565b9050806001600160a01b0316836001600160a01b03161415610de75760405162461bcd60e51b8152600401610d83906137b0565b806001600160a01b0316610df9612185565b6001600160a01b03161480610e155750610e1581610b2e612185565b610e315760405162461bcd60e51b8152600401610d83906134c8565b610e3c838383612189565b505050565b60005490565b610e3c8383836121e5565b600b5490565b6001600160a01b03166000908152601c602052604090205460ff1690565b33610e7f611b8f565b6001600160a01b031614610e9257600080fd5b60145481610e9e610e41565b610ea89190613b92565b1115610ec65760405162461bcd60e51b8152600401610d8390613780565b601454610ed1610e41565b1115610eef5760405162461bcd60e51b8152600401610d8390613942565b610ef982826124f7565b5050565b6000610f0883611548565b8210610f265760405162461bcd60e51b8152600401610d83906131a4565b6000610f30610e41565b905060008060005b83811015610fd9576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215610f8a57805192505b876001600160a01b0316836001600160a01b03161415610fc65786841415610fb857509350610ff292505050565b83610fc281613c9a565b9450505b5080610fd181613c9a565b915050610f38565b5060405162461bcd60e51b8152600401610d83906139a6565b92915050565b33611001611b8f565b6001600160a01b03161461101457600080fd5b601855565b33611022611b8f565b6001600160a01b03161461103557600080fd5b601a5447906001600160a01b03166108fc61271061105584611388613bbe565b61105f9190613baa565b6040518115909202916000818181858888f19350505050158015611087573d6000803e3d6000fd5b50601b546001600160a01b03166108fc6127106110a684611388613bbe565b6110b09190613baa565b6040518115909202916000818181858888f193505050501580156110d8573d6000803e3d6000fd5b506110e1611b8f565b6001600160a01b03166108fc6127106110fb846000613bbe565b6111059190613baa565b6040518115909202916000818181858888f19350505050158015610ef9573d6000803e3d6000fd5b33611136611b8f565b6001600160a01b03161461114957600080fd5b60138054911515620100000262ff000019909216919091179055565b600b5481565b601454611176610e41565b11156111945760405162461bcd60e51b8152600401610d839061338b565b3233146111b35760405162461bcd60e51b8152600401610d839061344a565b6111bb611b8f565b6001600160a01b0316336001600160a01b0316146111fc576013546301000000900460ff166111fc5760405162461bcd60e51b8152600401610d839061321d565b611204611b8f565b6001600160a01b0316826001600160a01b031614611251576016548161122984611548565b6112339190613b92565b11156112515760405162461bcd60e51b8152600401610d8390613311565b6014548161125d610e41565b6112679190613b92565b11156112855760405162461bcd60e51b8152600401610d8390613780565b601454611290610e41565b11156112ae5760405162461bcd60e51b8152600401610d8390613942565b6015548111156112d05760405162461bcd60e51b8152600401610d8390613749565b7f0000000000000000000000000000000000000000000000000000000000000032816112fb33611f77565b6113059190613b92565b11156113235760405162461bcd60e51b8152600401610d8390613912565b601354640100000000900460ff161561134e5760405162461bcd60e51b8152600401610d83906132e4565b80600a5461135c9190613bbe565b341015610eef5760405162461bcd60e51b8152600401610d839061396f565b610e3c83838360405180602001604052806000815250611e27565b60175481565b606060006113a983611548565b90506000816001600160401b038111156113d357634e487b7160e01b600052604160045260246000fd5b6040519080825280602002602001820160405280156113fc578160200160208202803683370190505b50905060005b82811015611451576114148582610efd565b82828151811061143457634e487b7160e01b600052603260045260246000fd5b60209081029190910101528061144981613c9a565b915050611402565b509392505050565b6000611463611b8f565b905090565b600c5481565b60145481565b3361147d611b8f565b6001600160a01b03161461149057600080fd5b601555565b600061149f610e41565b82106114bd5760405162461bcd60e51b8152600401610d8390613348565b5090565b336114ca611b8f565b6001600160a01b0316146114dd57600080fd5b8051610ef9906012906020840190612c26565b336114f9611b8f565b6001600160a01b03161461150c57600080fd5b601155565b6013546301000000900460ff1681565b60095490565b600061153282612511565b5192915050565b600a5481565b60135460ff1681565b60006001600160a01b0382166115705760405162461bcd60e51b8152600401610d8390613574565b506001600160a01b03166000908152600460205260409020546001600160801b031690565b61159d612185565b6001600160a01b03166115ae611b8f565b6001600160a01b0316146115d45760405162461bcd60e51b8152600401610d839061363c565b6115de6000612623565b565b601354610100900460ff1681565b336115f7611b8f565b6001600160a01b03161461160a57600080fd5b601154601054111561162e5760405162461bcd60e51b8152600401610d83906131e6565b601454600f5461163c610e41565b6116469190613b92565b11156116645760405162461bcd60e51b8152600401610d8390613780565b60145461166f610e41565b111561168d5760405162461bcd60e51b8152600401610d8390613942565b600f54601060008282546116a19190613b92565b925050819055506115de33600f546124f7565b336116bd611b8f565b6001600160a01b0316146116d057600080fd5b601455565b6014546116e0610e41565b11156116fe5760405162461bcd60e51b8152600401610d839061338b565b600033604051602001611711919061309c565b6040516020818303038152906040528051906020012090506000611733610e41565b60095490915061174590849084612675565b6117615760405162461bcd60e51b8152600401610d83906138aa565b60145461176c610e41565b106117895760405162461bcd60e51b8152600401610d8390613a7a565b83600b546117979190613bbe565b3410156117b65760405162461bcd60e51b8152600401610d839061396f565b601354640100000000900460ff16156117e15760405162461bcd60e51b8152600401610d83906132e4565b60135460ff161580156117fc5750601354610100900460ff16155b8015611811575060135462010000900460ff16155b1561182e5760405162461bcd60e51b8152600401610d83906137f2565b60135460ff16156118ef5760175484111561185b5760405162461bcd60e51b8152600401610d8390613525565b600c54611866610e41565b6118709086613b92565b111561188e5760405162461bcd60e51b8152600401610d8390613481565b601754336000908152601d60205260409020546118ac908690613b92565b11156118ca5760405162461bcd60e51b8152600401610d83906139f4565b336000908152601d6020526040812080548692906118e9908490613b92565b90915550505b601354610100900460ff16156119b5576018548411156119215760405162461bcd60e51b8152600401610d8390613525565b600d5461192c610e41565b6119369086613b92565b11156119545760405162461bcd60e51b8152600401610d8390613481565b601854336000908152601e6020526040902054611972908690613b92565b11156119905760405162461bcd60e51b8152600401610d83906139f4565b336000908152601e6020526040812080548692906119af908490613b92565b90915550505b60135462010000900460ff1615611a7c576019548411156119e85760405162461bcd60e51b8152600401610d8390613525565b600e546119f3610e41565b6119fd9086613b92565b1115611a1b5760405162461bcd60e51b8152600401610d8390613481565b601954336000908152601f6020526040902054611a39908690613b92565b1115611a575760405162461bcd60e51b8152600401610d83906139f4565b336000908152601f602052604081208054869290611a76908490613b92565b90915550505b600c5484611a88610e41565b611a929190613b92565b1415611ab3576013805460ff1916905567026db992a3b18000600b55611b14565b600d5484611abf610e41565b611ac99190613b92565b1415611aeb576013805461ff00191690556702c68af0bb140000600b55611b14565b600e5484611af7610e41565b611b019190613b92565b1415611b14576013805462ff0000191690555b611b1e33856124f7565b50505050565b601354640100000000900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000003281565b33611b62611b8f565b6001600160a01b031614611b7557600080fd5b601380549115156101000261ff0019909216919091179055565b6008546001600160a01b031690565b33611ba7611b8f565b6001600160a01b031614611bba57600080fd5b6013805464ff000000001916640100000000179055565b606060028054610cd390613c5f565b60155481565b60195481565b33611bf5611b8f565b6001600160a01b031614611c0857600080fd5b601755565b611c15612185565b6001600160a01b0316826001600160a01b03161415611c465760405162461bcd60e51b8152600401610d83906136c0565b8060066000611c53612185565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155611c97612185565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611ccf919061317d565b60405180910390a35050565b33611ce4611b8f565b6001600160a01b031614611cf757600080fd5b60005b81811015610e3c576000838383818110611d2457634e487b7160e01b600052603260045260246000fd5b9050602002016020810190611d399190612d50565b6001600160a01b03161415611d605760405162461bcd60e51b8152600401610d8390613605565b6000601c6000858585818110611d8657634e487b7160e01b600052603260045260246000fd5b9050602002016020810190611d9b9190612d50565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580611dcd81613c9a565b915050611cfa565b33611dde611b8f565b6001600160a01b031614611df157600080fd5b600c55565b600a5490565b600033611e07611b8f565b6001600160a01b031614611e1a57600080fd5b5060155490565b600e5481565b611e328484846121e5565b611e3e8484848461268b565b611b1e5760405162461bcd60e51b8152600401610d8390613820565b33611e63611b8f565b6001600160a01b031614611e7657600080fd5b601955565b33611e84611b8f565b6001600160a01b031614611e9757600080fd5b600b55565b6000611463610e41565b6060611eb18261217e565b611ecd5760405162461bcd60e51b8152600401610d8390613671565b6000611ed76127a7565b90506000815111611ef75760405180602001604052806000815250611f22565b80611f01846127b6565b604051602001611f129291906130b9565b6040516020818303038152906040525b9392505050565b60165481565b60075481565b33611f3e611b8f565b6001600160a01b031614611f5157600080fd5b600d55565b33611f5f611b8f565b6001600160a01b031614611f7257600080fd5b600955565b6000610cad826128d0565b600f5490565b6001600160a01b03918216600090815260066020908152604080832093909416825291909152205460ff1690565b33611fbf611b8f565b6001600160a01b031614611fd257600080fd5b601655565b60095481565b33611fe6611b8f565b6001600160a01b031614611ff957600080fd5b600e55565b33612007611b8f565b6001600160a01b03161461201a57600080fd5b6013805463ff00000019166301000000831515021790556040517f58655b75d3df612fe99ead00dbf0812d415d35078fe06217a94c0818bb13967f9061206190839061317d565b60405180910390a150565b601354640100000000900460ff1690565b612085612185565b6001600160a01b0316612096611b8f565b6001600160a01b0316146120bc5760405162461bcd60e51b8152600401610d839061363c565b6001600160a01b0381166120e25760405162461bcd60e51b8152600401610d8390613254565b6120eb81612623565b50565b336120f7611b8f565b6001600160a01b03161461210a57600080fd5b600a55565b600d5481565b3361211e611b8f565b6001600160a01b03161461213157600080fd5b6013805460ff1916911515919091179055565b3361214d611b8f565b6001600160a01b03161461216057600080fd5b600f55565b6001600160e01b031981166301ffc9a760e01b14919050565b6000541190565b3390565b60008281526005602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b60006121f082612511565b9050600081600001516001600160a01b031661220a612185565b6001600160a01b0316148061223f5750612222612185565b6001600160a01b031661223484610d5c565b6001600160a01b0316145b806122535750815161225390610b2e612185565b9050806122725760405162461bcd60e51b8152600401610d83906136f7565b846001600160a01b031682600001516001600160a01b0316146122a75760405162461bcd60e51b8152600401610d83906135bf565b6001600160a01b0384166122cd5760405162461bcd60e51b8152600401610d83906133b4565b6122da8585856001611b1e565b6122ea6000848460000151612189565b6001600160a01b038516600090815260046020526040812080546001929061231c9084906001600160801b0316613bdd565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b0386166000908152600460205260408120805460019450909261236891859116613b70565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b0380871682526001600160401b03428116602080850191825260008981526003909152948520935184549151909216600160a01b0267ffffffffffffffff60a01b19929093166001600160a01b031990911617161790556123fd846001613b92565b6000818152600360205260409020549091506001600160a01b03166124a1576124258161217e565b156124a15760408051808201825284516001600160a01b0390811682526020808701516001600160401b0390811682850190815260008781526003909352949091209251835494516001600160a01b031990951692169190911767ffffffffffffffff60a01b1916600160a01b93909116929092029190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46124ef8686866001611b1e565b505050505050565b610ef9828260405180602001604052806000815250612924565b612519612ca6565b6125228261217e565b61253e5760405162461bcd60e51b8152600401610d839061329a565b60007f0000000000000000000000000000000000000000000000000000000000000032831061259f576125917f000000000000000000000000000000000000000000000000000000000000003284613c05565b61259c906001613b92565b90505b825b81811061260a576000818152600360209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b031691830191909152156125f7579250610cb0915050565b508061260281613c48565b9150506125a1565b5060405162461bcd60e51b8152600401610d8390613a2b565b600880546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6000826126828584612b96565b14949350505050565b600061269f846001600160a01b0316612c08565b1561279b57836001600160a01b031663150b7a026126bb612185565b8786866040518563ffffffff1660e01b81526004016126dd94939291906130fc565b602060405180830381600087803b1580156126f757600080fd5b505af1925050508015612727575060408051601f3d908101601f1916820190925261272491810190612f5d565b60015b612781573d808015612755576040519150601f19603f3d011682016040523d82523d6000602084013e61275a565b606091505b5080516127795760405162461bcd60e51b8152600401610d8390613820565b805181602001fd5b6001600160e01b031916630a85bd0160e11b14905061279f565b5060015b949350505050565b606060128054610cd390613c5f565b6060816127db57506040805180820190915260018152600360fc1b6020820152610cb0565b8160005b811561280557806127ef81613c9a565b91506127fe9050600a83613baa565b91506127df565b6000816001600160401b0381111561282d57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612857576020820181803683370190505b5090505b841561279f5761286c600183613c05565b9150612879600a86613cb5565b612884906030613b92565b60f81b8183815181106128a757634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506128c9600a86613baa565b945061285b565b60006001600160a01b0382166128f85760405162461bcd60e51b8152600401610d83906133f9565b506001600160a01b0316600090815260046020526040902054600160801b90046001600160801b031690565b6000546001600160a01b03841661294d5760405162461bcd60e51b8152600401610d83906138d1565b6129568161217e565b156129735760405162461bcd60e51b8152600401610d8390613873565b7f00000000000000000000000000000000000000000000000000000000000000328311156129b35760405162461bcd60e51b8152600401610d8390613afe565b6129c06000858386611b1e565b6001600160a01b0384166000908152600460209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190612a1c908790613b70565b6001600160801b03168152602001858360200151612a3a9190613b70565b6001600160801b039081169091526001600160a01b03808816600081815260046020908152604080832087518154988401518816600160801b029088166fffffffffffffffffffffffffffffffff199099169890981790961696909617909455845180860186529182526001600160401b034281168386019081528883526003909552948120915182549451909516600160a01b0267ffffffffffffffff60a01b19959093166001600160a01b031990941693909317939093161790915582905b85811015612b845760405182906001600160a01b038916906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a4612b48600088848861268b565b612b645760405162461bcd60e51b8152600401610d8390613820565b81612b6e81613c9a565b9250508080612b7c90613c9a565b915050612afb565b5060008181556124ef90878588611b1e565b600081815b8451811015611451576000858281518110612bc657634e487b7160e01b600052603260045260246000fd5b60200260200101519050808311612be857612be18382612c17565b9250612bf5565b612bf28184612c17565b92505b5080612c0081613c9a565b915050612b9b565b6001600160a01b03163b151590565b60009182526020526040902090565b828054612c3290613c5f565b90600052602060002090601f016020900481019282612c545760008555612c9a565b82601f10612c6d57805160ff1916838001178555612c9a565b82800160010185558215612c9a579182015b82811115612c9a578251825591602001919060010190612c7f565b506114bd929150612cbd565b604080518082019091526000808252602082015290565b5b808211156114bd5760008155600101612cbe565b60006001600160401b03831115612ceb57612ceb613cf5565b612cfe601f8401601f1916602001613b40565b9050828152838383011115612d1257600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114610cb057600080fd5b80358015158114610cb057600080fd5b600060208284031215612d61578081fd5b611f2282612d29565b60008060408385031215612d7c578081fd5b612d8583612d29565b9150612d9360208401612d29565b90509250929050565b600080600060608486031215612db0578081fd5b612db984612d29565b9250612dc760208501612d29565b9150604084013590509250925092565b60008060008060808587031215612dec578081fd5b612df585612d29565b9350612e0360208601612d29565b92506040850135915060608501356001600160401b03811115612e24578182fd5b8501601f81018713612e34578182fd5b612e4387823560208401612cd2565b91505092959194509250565b60008060408385031215612e61578182fd5b612e6a83612d29565b9150612d9360208401612d40565b60008060408385031215612e8a578182fd5b612e9383612d29565b946020939093013593505050565b60008060208385031215612eb3578182fd5b82356001600160401b0380821115612ec9578384fd5b818501915085601f830112612edc578384fd5b813581811115612eea578485fd5b8660208083028501011115612efd578485fd5b60209290920196919550909350505050565b600060208284031215612f20578081fd5b611f2282612d40565b600060208284031215612f3a578081fd5b5035919050565b600060208284031215612f52578081fd5b8135611f2281613d0b565b600060208284031215612f6e578081fd5b8151611f2281613d0b565b600060208284031215612f8a578081fd5b81356001600160401b03811115612f9f578182fd5b8201601f81018413612faf578182fd5b61279f84823560208401612cd2565b60008060408385031215612fd0578182fd5b823591506020808401356001600160401b0380821115612fee578384fd5b818601915086601f830112613001578384fd5b81358181111561301357613013613cf5565b8381029150613023848301613b40565b8181528481019084860184860187018b101561303d578788fd5b8795505b8386101561305f578035835260019590950194918601918601613041565b508096505050505050509250929050565b60008151808452613088816020860160208601613c1c565b601f01601f19169290920160200192915050565b60609190911b6bffffffffffffffffffffffff1916815260140190565b600083516130cb818460208801613c1c565b8351908301906130df818360208801613c1c565b01949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061312f90830184613070565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b8181101561317157835183529284019291840191600101613155565b50909695505050505050565b901515815260200190565b90815260200190565b600060208252611f226020830184613070565b60208082526022908201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604082015261647360f01b606082015260800190565b6020808252601b908201527f4d61782052657365727665732074616b656e20616c7265616479210000000000604082015260600190565b6020808252601d908201527f53616c65206973206e6f74206163746976652063757272656e746c792e000000604082015260600190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252602a908201527f455243373231413a206f776e657220717565727920666f72206e6f6e657869736040820152693a32b73a103a37b5b2b760b11b606082015260800190565b60208082526013908201527226b4b73a1021b637b9b2b2102337b932bb32b960691b604082015260600190565b60208082526018908201527f4d617820686f6c64696e672063617020726561636865642e0000000000000000604082015260600190565b60208082526023908201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756040820152626e647360e81b606082015260800190565b6020808252600f908201526e29b0b632903430b99032b73232b21760891b604082015260600190565b60208082526025908201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526031908201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260408201527020746865207a65726f206164647265737360781b606082015260800190565b6020808252601e908201527f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000604082015260600190565b60208082526027908201527f4e6f204e46547320617265206c65667420746f206d696e7420666f72207468696040820152667320737461676560c81b606082015260800190565b60208082526039908201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60408201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000606082015260800190565b6020808252602f908201527f43616e6e6f742070757263686173652074686973206d616e7920746f6b656e7360408201526e20666f72207468697320737461676560881b606082015260800190565b6020808252602b908201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60408201526a65726f206164647265737360a81b606082015260800190565b60208082526026908201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746040820152651037bbb732b960d11b606082015260800190565b60208082526018908201527f43616e2774206164642061206e756c6c20616464726573730000000000000000604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252602f908201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60408201526e3732bc34b9ba32b73a103a37b5b2b760891b606082015260800190565b6020808252601a908201527f455243373231413a20617070726f766520746f2063616c6c6572000000000000604082015260600190565b60208082526032908201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206040820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b606082015260800190565b6020808252601e908201527f45786365656473206d6178696d756d20616c6c6f77656420746f6b656e730000604082015260600190565b6020808252601690820152752a37ba30b61039bab838363c9032bc31b2b2b232b21760511b604082015260600190565b60208082526022908201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60408201526132b960f11b606082015260800190565b602080825260149082015273526166666c65206973206e6f742061637469766560601b604082015260600190565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b6020808252601d908201527f455243373231413a20746f6b656e20616c7265616479206d696e746564000000604082015260600190565b6020808252600d908201526c34b73b30b634b210383937b7b360991b604082015260600190565b60208082526021908201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736040820152607360f81b606082015260800190565b60208082526016908201527563616e206e6f74206d696e742074686973206d616e7960501b604082015260600190565b6020808252601390820152722a37ba30b61039bab838363c9039b832b73a1760691b604082015260600190565b6020808252601b908201527f496e7375666669656e742045544820616d6f756e742073656e742e0000000000604082015260600190565b6020808252602e908201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060408201526d0deeedccae440c4f240d2dcc8caf60931b606082015260800190565b6020808252601c908201527f50757263686173652065786365656473206d617820616c6c6f77656400000000604082015260600190565b6020808252602f908201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560408201526e1037bbb732b91037b3103a37b5b2b760891b606082015260800190565b6020808252601b908201527f416c6c20746f6b656e732068617665206265656e206d696e7465640000000000604082015260600190565b6020808252602d908201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560408201526c3c34b9ba32b73a103a37b5b2b760991b606082015260800190565b60208082526022908201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696040820152610ced60f31b606082015260800190565b604051601f8201601f191681016001600160401b0381118282101715613b6857613b68613cf5565b604052919050565b60006001600160801b038083168185168083038211156130df576130df613cc9565b60008219821115613ba557613ba5613cc9565b500190565b600082613bb957613bb9613cdf565b500490565b6000816000190483118215151615613bd857613bd8613cc9565b500290565b60006001600160801b0383811690831681811015613bfd57613bfd613cc9565b039392505050565b600082821015613c1757613c17613cc9565b500390565b60005b83811015613c37578181015183820152602001613c1f565b83811115611b1e5750506000910152565b600081613c5757613c57613cc9565b506000190190565b600281046001821680613c7357607f821691505b60208210811415613c9457634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415613cae57613cae613cc9565b5060010190565b600082613cc457613cc4613cdf565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146120eb57600080fdfea264697066735822122040de355c4fbde599f1c6aec9c4354d29a21a8e2954299d0a113700ced513993564736f6c63430008010033

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

00000000000000000000000000000000000000000000000000000000000000600000000000000000000000000000000000000000000000000000000000000032000000000000000000000000000000000000000000000000000000000000115c000000000000000000000000000000000000000000000000000000000000005168747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d5973577045736d6952545170394e39655056584b50697a6f47657468505a614b7479394447627a61566951632f000000000000000000000000000000

-----Decoded View---------------
Arg [0] : baseURI (string): https://gateway.pinata.cloud/ipfs/QmYsWpEsmiRTQp9N9ePVXKPizoGethPZaKty9DGbzaViQc/
Arg [1] : maxBatchSize_ (uint256): 50
Arg [2] : collectionSize_ (uint256): 4444

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000032
Arg [2] : 000000000000000000000000000000000000000000000000000000000000115c
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000051
Arg [4] : 68747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066
Arg [5] : 732f516d5973577045736d6952545170394e39655056584b50697a6f47657468
Arg [6] : 505a614b7479394447627a61566951632f000000000000000000000000000000


Deployed Bytecode Sourcemap

194:9768:9:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3826:358:3;;;;;;;;;;-1:-1:-1;3826:358:3;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;734:35:9;;;;;;;;;;;;;:::i;5490:92:3:-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;1039:33:9:-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;6955:200:3:-;;;;;;;;;;-1:-1:-1;6955:200:3;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;6533:369::-;;;;;;;;;;-1:-1:-1;6533:369:3;;;;;:::i;:::-;;:::i;:::-;;2432:92;;;;;;;;;;;;;:::i;7773:136::-;;;;;;;;;;-1:-1:-1;7773:136:3;;;;;:::i;:::-;;:::i;4768:95:9:-;;;;;;;;;;;;;:::i;3685:105::-;;;;;;;;;;-1:-1:-1;3685:105:9;;;;;:::i;:::-;;:::i;5991:286::-;;;;;;;;;;-1:-1:-1;5991:286:9;;;;;:::i;:::-;;:::i;3046:721:3:-;;;;;;;;;;-1:-1:-1;3046:721:3;;;;;:::i;:::-;;:::i;3469:104:9:-;;;;;;;;;;-1:-1:-1;3469:104:9;;;;;:::i;:::-;;:::i;9695:265::-;;;;;;;;;;;;;:::i;3243:114::-;;;;;;;;;;-1:-1:-1;3243:114:9;;;;;:::i;:::-;;:::i;337:43::-;;;;;;;;;;;;;:::i;6281:869::-;;;;;;:::i;:::-;;:::i;7967:151:3:-;;;;;;;;;;-1:-1:-1;7967:151:3;;;;;:::i;:::-;;:::i;1002:33:9:-;;;;;;;;;;;;;:::i;9385:306::-;;;;;;;;;;-1:-1:-1;9385:306:9;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;5418:83::-;;;;;;;;;;;;;:::i;384:38::-;;;;;;;;;;;;;:::i;853:39::-;;;;;;;;;;;;;:::i;2178:122::-;;;;;;;;;;-1:-1:-1;2178:122:9;;;;;:::i;:::-;;:::i;2588:174:3:-;;;;;;;;;;-1:-1:-1;2588:174:3;;;;;:::i;:::-;;:::i;4445:99:9:-;;;;;;;;;;-1:-1:-1;4445:99:9;;;;;:::i;:::-;;:::i;4153:90::-;;;;;;;;;;-1:-1:-1;4153:90:9;;;;;:::i;:::-;;:::i;773:32::-;;;;;;;;;;;;;:::i;5341:73::-;;;;;;;;;;;;;:::i;5320:116:3:-;;;;;;;;;;-1:-1:-1;5320:116:3;;;;;:::i;:::-;;:::i;297:36:9:-;;;;;;;;;;;;;:::i;656:35::-;;;;;;;;;;;;;:::i;4235:208:3:-;;;;;;;;;;-1:-1:-1;4235:208:3;;;;;:::i;:::-;;:::i;1661:101:11:-;;;;;;;;;;;;;:::i;695:35:9:-;;;;;;;;;;;;;:::i;5615:372::-;;;;;;;;;;;;;:::i;2555:118::-;;;;;;;;;;-1:-1:-1;2555:118:9;;;;;:::i;:::-;;:::i;7154:2118::-;;;;;;:::i;:::-;;:::i;809:39::-;;;;;;;;;;;;;:::i;1114:48::-;;;;;;;;;;;;;:::i;3125:114::-;;;;;;;;;;-1:-1:-1;3125:114:9;;;;;:::i;:::-;;:::i;1029:85:11:-;;;;;;;;;;;;;:::i;4971:95:9:-;;;;;;;;;;;;;:::i;5638:96:3:-;;;;;;;;;;;;;:::i;896:50:9:-;;;;;;;;;;;;;:::i;1076:33::-;;;;;;;;;;;;;:::i;3361:104::-;;;;;;;;;;-1:-1:-1;3361:104:9;;;;;:::i;:::-;;:::i;7214:269:3:-;;;;;;;;;;-1:-1:-1;7214:269:3;;;;;:::i;:::-;;:::i;3794:258:9:-;;;;;;;;;;-1:-1:-1;3794:258:9;;;;;:::i;:::-;;:::i;2677:106::-;;;;;;;;;;-1:-1:-1;2677:106:9;;;;;:::i;:::-;;:::i;4681:83::-;;;;;;;;;;;;;:::i;4548:129::-;;;;;;;;;;;;;:::i;469:39::-;;;;;;;;;;;;;:::i;8176:300:3:-;;;;;;;;;;-1:-1:-1;8176:300:3;;;;;:::i;:::-;;:::i;3577:104:9:-;;;;;;;;;;-1:-1:-1;3577:104:9;;;;;:::i;:::-;;:::i;4340:101::-;;;;;;;;;;-1:-1:-1;4340:101:9;;;;;:::i;:::-;;:::i;5248:89::-;;;;;;;;;;;;;:::i;5792:377:3:-;;;;;;;;;;-1:-1:-1;5792:377:3;;;;;:::i;:::-;;:::i;950:48:9:-;;;;;;;;;;;;;:::i;12446:43:3:-;;;;;;;;;;;;;:::i;2787:106:9:-;;;;;;;;;;-1:-1:-1;2787:106:9;;;;;:::i;:::-;;:::i;5070:77::-;;;;;;;;;;-1:-1:-1;5070:77:9;;;;;:::i;:::-;;:::i;9276:105::-;;;;;;;;;;-1:-1:-1;9276:105:9;;;;;:::i;:::-;;:::i;5151:93::-;;;;;;;;;;;;;:::i;7541:178:3:-;;;;;;;;;;-1:-1:-1;7541:178:3;;;;;:::i;:::-;;:::i;2304:129:9:-;;;;;;;;;;-1:-1:-1;2304:129:9;;;;;:::i;:::-;;:::i;274:19::-;;;;;;;;;;;;;:::i;2897:106::-;;;;;;;;;;-1:-1:-1;2897:106:9;;;;;:::i;:::-;;:::i;2437:114::-;;;;;;;;;;-1:-1:-1;2437:114:9;;;;;:::i;:::-;;:::i;4867:100::-;;;;;;;;;;;;;:::i;1911:198:11:-;;;;;;;;;;-1:-1:-1;1911:198:11;;;;;:::i;:::-;;:::i;4247:89:9:-;;;;;;;;;;-1:-1:-1;4247:89:9;;;;;:::i;:::-;;:::i;426:39::-;;;;;;;;;;;;;:::i;3007:114::-;;;;;;;;;;-1:-1:-1;3007:114:9;;;;;:::i;:::-;;:::i;4056:93::-;;;;;;;;;;-1:-1:-1;4056:93:9;;;;;:::i;:::-;;:::i;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;;;;:::o;734:35:9:-;;;;;;;;;:::o;5490:92:3:-;5544:13;5572:5;5565:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5490:92;:::o;1039:33:9:-;;;;:::o;6955:200:3:-;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;7773:136::-;7876:28;7886:4;7892:2;7896:7;7876:9;:28::i;4768:95:9:-;4843:15;;4768:95;:::o;3685:105::-;-1:-1:-1;;;;;3769:16:9;3750:4;3769:16;;;:10;:16;;;;;;;;;3685:105::o;5991:286::-;2039:10;2028:7;:5;:7::i;:::-;-1:-1:-1;;;;;2028:21:9;;2020:30;;;;;;6116:17:::1;;6106:6;6090:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:43;;6082:78;;;;-1:-1:-1::0;;;6082:78:9::1;;;;;;;:::i;:::-;6191:17;;6174:13;:11;:13::i;:::-;:34;;6166:66;;;;-1:-1:-1::0;;;6166:66:9::1;;;;;;;:::i;:::-;6239:33;6249:14;6265:6;6239:9;:33::i;:::-;5991:286:::0;;:::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;3046:721::-;;;;;:::o;3469:104:9:-;2039:10;2028:7;:5;:7::i;:::-;-1:-1:-1;;;;;2028:21:9;;2020:30;;;;;;3544:14:::1;:24:::0;3469:104::o;9695:265::-;2039:10;2028:7;:5;:7::i;:::-;-1:-1:-1;;;;;2028:21:9;;2020:30;;;;;;9795:13:::1;::::0;9760:21:::1;::::0;-1:-1:-1;;;;;9795:13:9::1;9787:55;9836:5;9819:14;9760:21:::0;9829:4:::1;9819:14;:::i;:::-;:22;;;;:::i;:::-;9787:55;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;-1:-1:-1::0;9856:13:9::1;::::0;-1:-1:-1;;;;;9856:13:9::1;9848:55;9897:5;9880:14;:7:::0;9890:4:::1;9880:14;:::i;:::-;:22;;;;:::i;:::-;9848:55;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;9917:7;:5;:7::i;:::-;-1:-1:-1::0;;;;;9909:25:9::1;:46;9949:5;9935:11;:7:::0;9945:1:::1;9935:11;:::i;:::-;:19;;;;:::i;:::-;9909:46;::::0;;::::1;::::0;;::::1;::::0;::::1;::::0;;;;;;::::1;;;;;;;;;;;;;::::0;::::1;;;;3243:114:::0;2039:10;2028:7;:5;:7::i;:::-;-1:-1:-1;;;;;2028:21:9;;2020:30;;;;;;3319:15:::1;:33:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;3319:33:9;;::::1;::::0;;;::::1;::::0;;3243:114::o;337:43::-;;;;:::o;6281:869::-;1935:17;;1918:13;:11;:13::i;:::-;:34;;1910:62;;;;-1:-1:-1;;;1910:62:9;;;;;;;:::i;:::-;2104:9:::1;2117:10;2104:23;2096:66;;;;-1:-1:-1::0;;;2096:66:9::1;;;;;;;:::i;:::-;6387:7:::2;:5;:7::i;:::-;-1:-1:-1::0;;;;;6373:21:9::2;:10;-1:-1:-1::0;;;;;6373:21:9::2;;6369:96;;6412:12;::::0;;;::::2;;;6404:54;;;;-1:-1:-1::0;;;6404:54:9::2;;;;;;;:::i;:::-;6481:7;:5;:7::i;:::-;-1:-1:-1::0;;;;;6474:14:9::2;:3;-1:-1:-1::0;;;;;6474:14:9::2;;6471:127;;6533:29;;6523:6;6506:14;6516:3;6506:9;:14::i;:::-;:23;;;;:::i;:::-;:56;;6498:93;;;;-1:-1:-1::0;;;6498:93:9::2;;;;;;;:::i;:::-;6638:17;;6628:6;6612:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:43;;6604:78;;;;-1:-1:-1::0;;;6604:78:9::2;;;;;;;:::i;:::-;6713:17;;6696:13;:11;:13::i;:::-;:34;;6688:66;;;;-1:-1:-1::0;;;6688:66:9::2;;;;;;;:::i;:::-;6785:31;;6775:6;:41;;6760:102;;;;-1:-1:-1::0;;;6760:102:9::2;;;;;;;:::i;:::-;6920:23;6910:6;6883:24;6896:10;6883:12;:24::i;:::-;:33;;;;:::i;:::-;:60;;6868:113;;;;-1:-1:-1::0;;;6868:113:9::2;;;;;;;:::i;:::-;6996:19;::::0;;;::::2;;;6995:20;6987:52;;;;-1:-1:-1::0;;;6987:52:9::2;;;;;;;:::i;:::-;7078:6;7066:9;;:18;;;;:::i;:::-;7053:9;:31;;7045:71;;;;-1:-1:-1::0;;;7045:71:9::2;;;;;;;:::i;7967:151:3:-:0;8074:39;8091:4;8097:2;8101:7;8074:39;;;;;;;;;;;;:16;:39::i;1002:33:9:-;;;;:::o;9385:306::-;9446:16;9470:15;9488:17;9498:6;9488:9;:17::i;:::-;9470:35;;9511:25;9553:10;-1:-1:-1;;;;;9539:25:9;;;;;-1:-1:-1;;;9539:25:9;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;9539:25:9;;9511:53;;9575:6;9571:95;9591:10;9587:1;:14;9571:95;;;9629:30;9649:6;9657:1;9629:19;:30::i;:::-;9615:8;9624:1;9615:11;;;;;;-1:-1:-1;;;9615:11:9;;;;;;;;;;;;;;;;;;:44;9603:3;;;;:::i;:::-;;;;9571:95;;;-1:-1:-1;9678:8:9;9385:306;-1:-1:-1;;;9385:306:9:o;5418:83::-;5467:7;5489;:5;:7::i;:::-;5482:14;;5418:83;:::o;384:38::-;;;;:::o;853:39::-;;;;:::o;2178:122::-;2039:10;2028:7;:5;:7::i;:::-;-1:-1:-1;;;;;2028:21:9;;2020:30;;;;;;2255:31:::1;:40:::0;2178: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;4445:99:9:-;2039:10;2028:7;:5;:7::i;:::-;-1:-1:-1;;;;;2028:21:9;;2020:30;;;;;;4516:23;;::::1;::::0;:13:::1;::::0;:23:::1;::::0;::::1;::::0;::::1;:::i;4153:90::-:0;2039:10;2028:7;:5;:7::i;:::-;-1:-1:-1;;;;;2028:21:9;;2020:30;;;;;;4217:15:::1;:21:::0;4153:90::o;773:32::-;;;;;;;;;:::o;5341:73::-;5405:4;;5341: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;297:36:9:-;;;;:::o;656:35::-;;;;;;:::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:11:-;1252:12;:10;:12::i;:::-;-1:-1:-1;;;;;1241:23:11;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1241:23:11;;1233:68;;;;-1:-1:-1;;;1233:68:11;;;;;;;:::i;:::-;1725:30:::1;1752:1;1725:18;:30::i;:::-;1661:101::o:0;695:35:9:-;;;;;;;;;:::o;5615:372::-;2039:10;2028:7;:5;:7::i;:::-;-1:-1:-1;;;;;2028:21:9;;2020:30;;;;;;5690:15:::1;;5673:13;;:32;;5665:72;;;;-1:-1:-1::0;;;5665:72:9::1;;;;;;;:::i;:::-;5785:17;;5767:14;;5751:13;:11;:13::i;:::-;:30;;;;:::i;:::-;:51;;5743:86;;;;-1:-1:-1::0;;;5743:86:9::1;;;;;;;:::i;:::-;5860:17;;5843:13;:11;:13::i;:::-;:34;;5835:66;;;;-1:-1:-1::0;;;5835:66:9::1;;;;;;;:::i;:::-;5925:14;;5908:13;;:31;;;;;;;:::i;:::-;;;;;;;;5945:37;5955:10;5967:14;;5945:9;:37::i;2555:118::-:0;2039:10;2028:7;:5;:7::i;:::-;-1:-1:-1;;;;;2028:21:9;;2020:30;;;;;;2635:17:::1;:33:::0;2555:118::o;7154:2118::-;1935:17;;1918:13;:11;:13::i;:::-;:34;;1910:62;;;;-1:-1:-1;;;1910:62:9;;;;;;;:::i;:::-;7247:12:::1;7289:10;7272:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;7262:39;;;;;;7247:54;;7307:14;7324:13;:11;:13::i;:::-;7365:4;::::0;7307:30;;-1:-1:-1;7351:25:9::1;::::0;:6;;7371:4;7351:13:::1;:25::i;:::-;7343:51;;;;-1:-1:-1::0;;;7343:51:9::1;;;;;;;:::i;:::-;7424:17;;7408:13;:11;:13::i;:::-;:33;7400:73;;;;-1:-1:-1::0;;;7400:73:9::1;;;;;;;:::i;:::-;7518:6;7500:15;;:24;;;;:::i;:::-;7487:9;:37;;7479:77;;;;-1:-1:-1::0;;;7479:77:9::1;;;;;;;:::i;:::-;7571:19;::::0;;;::::1;;;7570:20;7562:52;;;;-1:-1:-1::0;;;7562:52:9::1;;;;;;;:::i;:::-;7624:15;::::0;::::1;;7623:16;:36:::0;::::1;;;-1:-1:-1::0;7644:15:9::1;::::0;::::1;::::0;::::1;;;7643:16;7623:36;:56;;;;-1:-1:-1::0;7664:15:9::1;::::0;;;::::1;;;7663:16;7623:56;7620:114;;;7689:38;;-1:-1:-1::0;;;7689:38:9::1;;;;;;;:::i;:::-;7745:15;::::0;::::1;;7741:377;;;7788:14;;7778:6;:24;;7770:84;;;;-1:-1:-1::0;;;7770:84:9::1;;;;;;;:::i;:::-;7896:17;;7879:13;:11;:13::i;:::-;7870:22;::::0;:6;:22:::1;:::i;:::-;:43;;7862:95;;;;-1:-1:-1::0;;;7862:95:9::1;;;;;;;:::i;:::-;8016:14;::::0;7992:10:::1;7973:30;::::0;;;:18:::1;:30;::::0;;;;;:39:::1;::::0;8006:6;;7973:39:::1;:::i;:::-;:57;;7965:98;;;;-1:-1:-1::0;;;7965:98:9::1;;;;;;;:::i;:::-;8090:10;8071:30;::::0;;;:18:::1;:30;::::0;;;;:40;;8105:6;;8071:30;:40:::1;::::0;8105:6;;8071:40:::1;:::i;:::-;::::0;;;-1:-1:-1;;7741:377:9::1;8128:15;::::0;::::1;::::0;::::1;;;8124:377;;;8171:14;;8161:6;:24;;8153:84;;;;-1:-1:-1::0;;;8153:84:9::1;;;;;;;:::i;:::-;8279:17;;8262:13;:11;:13::i;:::-;8253:22;::::0;:6;:22:::1;:::i;:::-;:43;;8245:95;;;;-1:-1:-1::0;;;8245:95:9::1;;;;;;;:::i;:::-;8399:14;::::0;8375:10:::1;8356:30;::::0;;;:18:::1;:30;::::0;;;;;:39:::1;::::0;8389:6;;8356:39:::1;:::i;:::-;:57;;8348:98;;;;-1:-1:-1::0;;;8348:98:9::1;;;;;;;:::i;:::-;8473:10;8454:30;::::0;;;:18:::1;:30;::::0;;;;:40;;8488:6;;8454:30;:40:::1;::::0;8488:6;;8454:40:::1;:::i;:::-;::::0;;;-1:-1:-1;;8124:377:9::1;8511:15;::::0;;;::::1;;;8507:377;;;8554:14;;8544:6;:24;;8536:84;;;;-1:-1:-1::0;;;8536:84:9::1;;;;;;;:::i;:::-;8662:17;;8645:13;:11;:13::i;:::-;8636:22;::::0;:6;:22:::1;:::i;:::-;:43;;8628:95;;;;-1:-1:-1::0;;;8628:95:9::1;;;;;;;:::i;:::-;8782:14;::::0;8758:10:::1;8739:30;::::0;;;:18:::1;:30;::::0;;;;;:39:::1;::::0;8772:6;;8739:39:::1;:::i;:::-;:57;;8731:98;;;;-1:-1:-1::0;;;8731:98:9::1;;;;;;;:::i;:::-;8856:10;8837:30;::::0;;;:18:::1;:30;::::0;;;;:40;;8871:6;;8837:30;:40:::1;::::0;8871:6;;8837:40:::1;:::i;:::-;::::0;;;-1:-1:-1;;8507:377:9::1;8919:17;;8909:6;8893:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:43;8890:342;;;8946:15;:23:::0;;-1:-1:-1;;8946:23:9::1;::::0;;8995:11:::1;8977:15;:29:::0;8890:342:::1;;;9048:17;;9038:6;9022:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:43;9019:213;;;9075:15;:23:::0;;-1:-1:-1;;9075:23:9::1;::::0;;9124:9:::1;9106:15;:27:::0;9019:213:::1;;;9175:17;;9165:6;9149:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:43;9146:86;;;9202:15;:23:::0;;-1:-1:-1;;9202:23:9::1;::::0;;9146:86:::1;9238:29;9248:10;9260:6;9238:9;:29::i;:::-;1978:1;;7154:2118:::0;;:::o;809:39::-;;;;;;;;;:::o;1114:48::-;;;:::o;3125:114::-;2039:10;2028:7;:5;:7::i;:::-;-1:-1:-1;;;;;2028:21:9;;2020:30;;;;;;3201:15:::1;:33:::0;;;::::1;;;;-1:-1:-1::0;;3201:33:9;;::::1;::::0;;;::::1;::::0;;3125:114::o;1029:85:11:-;1101:6;;-1:-1:-1;;;;;1101:6:11;1029:85;:::o;4971:95:9:-;2039:10;2028:7;:5;:7::i;:::-;-1:-1:-1;;;;;2028:21:9;;2020:30;;;;;;5035:19:::1;:26:::0;;-1:-1:-1;;5035:26:9::1;::::0;::::1;::::0;;4971:95::o;5638:96:3:-;5694:13;5722:7;5715:14;;;;;:::i;896:50:9:-;;;;:::o;1076:33::-;;;;:::o;3361:104::-;2039:10;2028:7;:5;:7::i;:::-;-1:-1:-1;;;;;2028:21:9;;2020:30;;;;;;3436:14:::1;:24:::0;3361:104::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;3794:258:9:-;2039:10;2028:7;:5;:7::i;:::-;-1:-1:-1;;;;;2028:21:9;;2020:30;;;;;;3888:9:::1;3883:165;3903:20:::0;;::::1;3883:165;;;3970:1;3946:9:::0;;3956:1;3946:12;;::::1;;;-1:-1:-1::0;;;3946:12:9::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;3946:26:9::1;;;3938:63;;;;-1:-1:-1::0;;;3938:63:9::1;;;;;;;:::i;:::-;4036:5;4009:10;:24;4020:9;;4030:1;4020:12;;;;;-1:-1:-1::0;;;4020:12:9::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;4009:24:9::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;4009:24:9;:32;;-1:-1:-1;;4009:32:9::1;::::0;::::1;;::::0;;;::::1;::::0;;3925:3;::::1;::::0;::::1;:::i;:::-;;;;3883:165;;2677:106:::0;2039:10;2028:7;:5;:7::i;:::-;-1:-1:-1;;;;;2028:21:9;;2020:30;;;;;;2753:17:::1;:25:::0;2677:106::o;4681:83::-;4750:9;;4681:83;:::o;4548:129::-;4619:7;2039:10;2028:7;:5;:7::i;:::-;-1:-1:-1;;;;;2028:21:9;;2020:30;;;;;;-1:-1:-1;4641:31:9::1;::::0;4548:129;:::o;469:39::-;;;;:::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;3577:104:9:-;2039:10;2028:7;:5;:7::i;:::-;-1:-1:-1;;;;;2028:21:9;;2020:30;;;;;;3652:14:::1;:24:::0;3577:104::o;4340:101::-;2039:10;2028:7;:5;:7::i;:::-;-1:-1:-1;;;;;2028:21:9;;2020:30;;;;;;4412:15:::1;:24:::0;4340:101::o;5248:89::-;5297:7;5319: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;950:48:9:-;;;;:::o;12446:43:3:-;;;;:::o;2787:106:9:-;2039:10;2028:7;:5;:7::i;:::-;-1:-1:-1;;;;;2028:21:9;;2020:30;;;;;;2863:17:::1;:25:::0;2787:106::o;5070:77::-;2039:10;2028:7;:5;:7::i;:::-;-1:-1:-1;;;;;2028:21:9;;2020:30;;;;;;5130:4:::1;:12:::0;5070:77::o;9276:105::-;9334:7;9356:20;9370:5;9356:13;:20::i;5151:93::-;5225:14;;5151:93;:::o;7541:178:3:-;-1:-1:-1;;;;;7679:25:3;;;7658:4;7679:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;7541:178::o;2304:129:9:-;2039:10;2028:7;:5;:7::i;:::-;-1:-1:-1;;;;;2028:21:9;;2020:30;;;;;;2390:29:::1;:38:::0;2304:129::o;274:19::-;;;;:::o;2897:106::-;2039:10;2028:7;:5;:7::i;:::-;-1:-1:-1;;;;;2028:21:9;;2020:30;;;;;;2973:17:::1;:25:::0;2897:106::o;2437:114::-;2039:10;2028:7;:5;:7::i;:::-;-1:-1:-1;;;;;2028:21:9;;2020:30;;;;;;2498:12:::1;:18:::0;;-1:-1:-1;;2498:18:9::1;::::0;;::::1;;;;::::0;;2527:19:::1;::::0;::::1;::::0;::::1;::::0;2498:18;;2527:19:::1;:::i;:::-;;;;;;;;2437:114:::0;:::o;4867:100::-;4943:19;;;;;;;;4867:100::o;1911:198:11:-;1252:12;:10;:12::i;:::-;-1:-1:-1;;;;;1241:23:11;:7;:5;:7::i;:::-;-1:-1:-1;;;;;1241:23:11;;1233:68;;;;-1:-1:-1;;;1233:68:11;;;;;;;:::i;:::-;-1:-1:-1;;;;;1999:22:11;::::1;1991:73;;;;-1:-1:-1::0;;;1991:73:11::1;;;;;;;:::i;:::-;2074:28;2093:8;2074:18;:28::i;:::-;1911:198:::0;:::o;4247:89:9:-;2039:10;2028:7;:5;:7::i;:::-;-1:-1:-1;;;;;2028:21:9;;2020:30;;;;;;4313:9:::1;:18:::0;4247:89::o;426:39::-;;;;:::o;3007:114::-;2039:10;2028:7;:5;:7::i;:::-;-1:-1:-1;;;;;2028:21:9;;2020:30;;;;;;3083:15:::1;:33:::0;;-1:-1:-1;;3083:33:9::1;::::0;::::1;;::::0;;;::::1;::::0;;3007:114::o;4056:93::-;2039:10;2028:7;:5;:7::i;:::-;-1:-1:-1;;;;;2028:21:9;;2020:30;;;;;;4124:14:::1;:20:::0;4056:93::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:11:-;2355:6;;;-1:-1:-1;;;;;2371:17:11;;;-1:-1:-1;;;;;;2371:17:11;;;;;;;2403:40;;2355:6;;;2371:17;2355:6;;2403:40;;2336:16;;2403:40;2263:187;;:::o;1154:184:10:-;1275:4;1327;1298:25;1311:5;1318:4;1298:12;:25::i;:::-;:33;;1154:184;-1:-1:-1;;;;1154:184:10: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;5505:106:9:-;5565:13;5593;5586: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:10:-;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:10;;;;;;;;;;;;;;;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:10;;;;:::i;:::-;;;;1828:488;;1175:320:0;-1:-1:-1;;;;;1465:19:0;;:23;;;1175:320::o;2357:218:10:-;2425:13;2473:15;;;2508:4;2501:15;2554:4;2538:21;;;2459:110::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;14:408:13;;-1:-1:-1;;;;;106:6:13;103:30;100:2;;;136:18;;:::i;:::-;174:57;219:2;198:15;;-1:-1:-1;;194:29:13;225:4;190:40;174:57;:::i;:::-;165:66;;254:6;247:5;240:21;294:3;285:6;280:3;276:16;273:25;270:2;;;311:1;308;301:12;270:2;360:6;355:3;348:4;341:5;337:16;324:43;414:1;407:4;398:6;391:5;387:18;383:29;376:40;90:332;;;;;:::o;427:175::-;497:20;;-1:-1:-1;;;;;546:31:13;;536:42;;526:2;;592:1;589;582:12;607:162;674:20;;730:13;;723:21;713:32;;703:2;;759:1;756;749:12;774:198;;886:2;874:9;865:7;861:23;857:32;854:2;;;907:6;899;892:22;854:2;935:31;956:9;935:31;:::i;977:274::-;;;1106:2;1094:9;1085:7;1081:23;1077:32;1074:2;;;1127:6;1119;1112:22;1074:2;1155:31;1176:9;1155:31;:::i;:::-;1145:41;;1205:40;1241:2;1230:9;1226:18;1205:40;:::i;:::-;1195:50;;1064:187;;;;;:::o;1256:342::-;;;;1402:2;1390:9;1381:7;1377:23;1373:32;1370:2;;;1423:6;1415;1408:22;1370:2;1451:31;1472:9;1451:31;:::i;:::-;1441:41;;1501:40;1537:2;1526:9;1522:18;1501:40;:::i;:::-;1491:50;;1588:2;1577:9;1573:18;1560:32;1550:42;;1360:238;;;;;:::o;1603:702::-;;;;;1775:3;1763:9;1754:7;1750:23;1746:33;1743:2;;;1797:6;1789;1782:22;1743:2;1825:31;1846:9;1825:31;:::i;:::-;1815:41;;1875:40;1911:2;1900:9;1896:18;1875:40;:::i;:::-;1865:50;;1962:2;1951:9;1947:18;1934:32;1924:42;;2017:2;2006:9;2002:18;1989:32;-1:-1:-1;;;;;2036:6:13;2033:30;2030:2;;;2081:6;2073;2066:22;2030:2;2109:22;;2162:4;2154:13;;2150:27;-1:-1:-1;2140:2:13;;2196:6;2188;2181:22;2140:2;2224:75;2291:7;2286:2;2273:16;2268:2;2264;2260:11;2224:75;:::i;:::-;2214:85;;;1733:572;;;;;;;:::o;2310:268::-;;;2436:2;2424:9;2415:7;2411:23;2407:32;2404:2;;;2457:6;2449;2442:22;2404:2;2485:31;2506:9;2485:31;:::i;:::-;2475:41;;2535:37;2568:2;2557:9;2553:18;2535:37;:::i;2583:266::-;;;2712:2;2700:9;2691:7;2687:23;2683:32;2680:2;;;2733:6;2725;2718:22;2680:2;2761:31;2782:9;2761:31;:::i;:::-;2751:41;2839:2;2824:18;;;;2811:32;;-1:-1:-1;;;2670:179:13:o;2854:666::-;;;3001:2;2989:9;2980:7;2976:23;2972:32;2969:2;;;3022:6;3014;3007:22;2969:2;3067:9;3054:23;-1:-1:-1;;;;;3137:2:13;3129:6;3126:14;3123:2;;;3158:6;3150;3143:22;3123:2;3201:6;3190:9;3186:22;3176:32;;3246:7;3239:4;3235:2;3231:13;3227:27;3217:2;;3273:6;3265;3258:22;3217:2;3318;3305:16;3344:2;3336:6;3333:14;3330:2;;;3365:6;3357;3350:22;3330:2;3424:7;3419:2;3413;3405:6;3401:15;3397:2;3393:24;3389:33;3386:46;3383:2;;;3450:6;3442;3435:22;3383:2;3486;3478:11;;;;;3508:6;;-1:-1:-1;2959:561:13;;-1:-1:-1;;;;2959:561:13:o;3525:192::-;;3634:2;3622:9;3613:7;3609:23;3605:32;3602:2;;;3655:6;3647;3640:22;3602:2;3683:28;3701:9;3683:28;:::i;3722:190::-;;3834:2;3822:9;3813:7;3809:23;3805:32;3802:2;;;3855:6;3847;3840:22;3802:2;-1:-1:-1;3883:23:13;;3792:120;-1:-1:-1;3792:120:13:o;3917:257::-;;4028:2;4016:9;4007:7;4003:23;3999:32;3996:2;;;4049:6;4041;4034:22;3996:2;4093:9;4080:23;4112:32;4138:5;4112:32;:::i;4179:261::-;;4301:2;4289:9;4280:7;4276:23;4272:32;4269:2;;;4322:6;4314;4307:22;4269:2;4359:9;4353:16;4378:32;4404:5;4378:32;:::i;4445:482::-;;4567:2;4555:9;4546:7;4542:23;4538:32;4535:2;;;4588:6;4580;4573:22;4535:2;4633:9;4620:23;-1:-1:-1;;;;;4658:6:13;4655:30;4652:2;;;4703:6;4695;4688:22;4652:2;4731:22;;4784:4;4776:13;;4772:27;-1:-1:-1;4762:2:13;;4818:6;4810;4803:22;4762:2;4846:75;4913:7;4908:2;4895:16;4890:2;4886;4882:11;4846:75;:::i;5127:1071::-;;;5281:2;5269:9;5260:7;5256:23;5252:32;5249:2;;;5302:6;5294;5287:22;5249:2;5343:9;5330:23;5320:33;;5372:2;5425;5414:9;5410:18;5397:32;-1:-1:-1;;;;;5489:2:13;5481:6;5478:14;5475:2;;;5510:6;5502;5495:22;5475:2;5553:6;5542:9;5538:22;5528:32;;5598:7;5591:4;5587:2;5583:13;5579:27;5569:2;;5625:6;5617;5610:22;5569:2;5666;5653:16;5688:2;5684;5681:10;5678:2;;;5694:18;;:::i;:::-;5741:2;5737;5733:11;5723:21;;5764:28;5788:2;5784;5780:11;5764:28;:::i;:::-;5826:15;;;5857:12;;;;5889:11;;;5919;;;5915:20;;5912:33;-1:-1:-1;5909:2:13;;;5963:6;5955;5948:22;5909:2;5990:6;5981:15;;6005:163;6019:2;6016:1;6013:9;6005:163;;;6076:17;;6064:30;;6037:1;6030:9;;;;;6114:12;;;;6146;;6005:163;;;6009:3;6187:5;6177:15;;;;;;;;5239:959;;;;;:::o;6203:259::-;;6284:5;6278:12;6311:6;6306:3;6299:19;6327:63;6383:6;6376:4;6371:3;6367:14;6360:4;6353:5;6349:16;6327:63;:::i;:::-;6444:2;6423:15;-1:-1:-1;;6419:29:13;6410:39;;;;6451:4;6406:50;;6254:208;-1:-1:-1;;6254:208:13:o;6467:229::-;6616:2;6612:15;;;;-1:-1:-1;;6608:53:13;6596:66;;6687:2;6678:12;;6586:110::o;6701:470::-;;6918:6;6912:13;6934:53;6980:6;6975:3;6968:4;6960:6;6956:17;6934:53;:::i;:::-;7050:13;;7009:16;;;;7072:57;7050:13;7009:16;7106:4;7094:17;;7072:57;:::i;:::-;7145:20;;6888:283;-1:-1:-1;;;;6888:283:13:o;7176:203::-;-1:-1:-1;;;;;7340:32:13;;;;7322:51;;7310:2;7295:18;;7277:102::o;7384:490::-;-1:-1:-1;;;;;7653:15:13;;;7635:34;;7705:15;;7700:2;7685:18;;7678:43;7752:2;7737:18;;7730:34;;;7800:3;7795:2;7780:18;;7773:31;;;7384:490;;7821:47;;7848:19;;7840:6;7821:47;:::i;:::-;7813:55;7587:287;-1:-1:-1;;;;;;7587:287:13:o;7879:635::-;8050:2;8102:21;;;8172:13;;8075:18;;;8194:22;;;7879:635;;8050:2;8273:15;;;;8247:2;8232:18;;;7879:635;8319:169;8333:6;8330:1;8327:13;8319:169;;;8394:13;;8382:26;;8463:15;;;;8428:12;;;;8355:1;8348:9;8319:169;;;-1:-1:-1;8505:3:13;;8030:484;-1:-1:-1;;;;;;8030:484:13:o;8519:187::-;8684:14;;8677:22;8659:41;;8647:2;8632:18;;8614:92::o;8711:177::-;8857:25;;;8845:2;8830:18;;8812:76::o;8893:221::-;;9042:2;9031:9;9024:21;9062:46;9104:2;9093:9;9089:18;9081:6;9062:46;:::i;9119:398::-;9321:2;9303:21;;;9360:2;9340:18;;;9333:30;9399:34;9394:2;9379:18;;9372:62;-1:-1:-1;;;9465:2:13;9450:18;;9443:32;9507:3;9492:19;;9293:224::o;9522:351::-;9724:2;9706:21;;;9763:2;9743:18;;;9736:30;9802:29;9797:2;9782:18;;9775:57;9864:2;9849:18;;9696:177::o;9878:353::-;10080:2;10062:21;;;10119:2;10099:18;;;10092:30;10158:31;10153:2;10138:18;;10131:59;10222:2;10207:18;;10052:179::o;10236:402::-;10438:2;10420:21;;;10477:2;10457:18;;;10450:30;10516:34;10511:2;10496:18;;10489:62;-1:-1:-1;;;10582:2:13;10567:18;;10560:36;10628:3;10613:19;;10410:228::o;10643:406::-;10845:2;10827:21;;;10884:2;10864:18;;;10857:30;10923:34;10918:2;10903:18;;10896:62;-1:-1:-1;;;10989:2:13;10974:18;;10967:40;11039:3;11024:19;;10817:232::o;11054:343::-;11256:2;11238:21;;;11295:2;11275:18;;;11268:30;-1:-1:-1;;;11329:2:13;11314:18;;11307:49;11388:2;11373:18;;11228:169::o;11402:348::-;11604:2;11586:21;;;11643:2;11623:18;;;11616:30;11682:26;11677:2;11662:18;;11655:54;11741:2;11726:18;;11576:174::o;11755:399::-;11957:2;11939:21;;;11996:2;11976:18;;;11969:30;12035:34;12030:2;12015:18;;12008:62;-1:-1:-1;;;12101:2:13;12086:18;;12079:33;12144:3;12129:19;;11929:225::o;12159:339::-;12361:2;12343:21;;;12400:2;12380:18;;;12373:30;-1:-1:-1;;;12434:2:13;12419:18;;12412:45;12489:2;12474:18;;12333:165::o;12503:401::-;12705:2;12687:21;;;12744:2;12724:18;;;12717:30;12783:34;12778:2;12763:18;;12756:62;-1:-1:-1;;;12849:2:13;12834:18;;12827:35;12894:3;12879:19;;12677:227::o;12909:413::-;13111:2;13093:21;;;13150:2;13130:18;;;13123:30;13189:34;13184:2;13169:18;;13162:62;-1:-1:-1;;;13255:2:13;13240:18;;13233:47;13312:3;13297:19;;13083:239::o;13327:354::-;13529:2;13511:21;;;13568:2;13548:18;;;13541:30;13607:32;13602:2;13587:18;;13580:60;13672:2;13657:18;;13501:180::o;13686:403::-;13888:2;13870:21;;;13927:2;13907:18;;;13900:30;13966:34;13961:2;13946:18;;13939:62;-1:-1:-1;;;14032:2:13;14017:18;;14010:37;14079:3;14064:19;;13860:229::o;14094:421::-;14296:2;14278:21;;;14335:2;14315:18;;;14308:30;14374:34;14369:2;14354:18;;14347:62;14445:27;14440:2;14425:18;;14418:55;14505:3;14490:19;;14268:247::o;14520:411::-;14722:2;14704:21;;;14761:2;14741:18;;;14734:30;14800:34;14795:2;14780:18;;14773:62;-1:-1:-1;;;14866:2:13;14851:18;;14844:45;14921:3;14906:19;;14694:237::o;14936:407::-;15138:2;15120:21;;;15177:2;15157:18;;;15150:30;15216:34;15211:2;15196:18;;15189:62;-1:-1:-1;;;15282:2:13;15267:18;;15260:41;15333:3;15318:19;;15110:233::o;15348:402::-;15550:2;15532:21;;;15589:2;15569:18;;;15562:30;15628:34;15623:2;15608:18;;15601:62;-1:-1:-1;;;15694:2:13;15679:18;;15672:36;15740:3;15725:19;;15522:228::o;15755:348::-;15957:2;15939:21;;;15996:2;15976:18;;;15969:30;16035:26;16030:2;16015:18;;16008:54;16094:2;16079:18;;15929:174::o;16108:356::-;16310:2;16292:21;;;16329:18;;;16322:30;16388:34;16383:2;16368:18;;16361:62;16455:2;16440:18;;16282:182::o;16469:411::-;16671:2;16653:21;;;16710:2;16690:18;;;16683:30;16749:34;16744:2;16729:18;;16722:62;-1:-1:-1;;;16815:2:13;16800:18;;16793:45;16870:3;16855:19;;16643:237::o;16885:350::-;17087:2;17069:21;;;17126:2;17106:18;;;17099:30;17165:28;17160:2;17145:18;;17138:56;17226:2;17211:18;;17059:176::o;17240:414::-;17442:2;17424:21;;;17481:2;17461:18;;;17454:30;17520:34;17515:2;17500:18;;17493:62;-1:-1:-1;;;17586:2:13;17571:18;;17564:48;17644:3;17629:19;;17414:240::o;17659:354::-;17861:2;17843:21;;;17900:2;17880:18;;;17873:30;17939:32;17934:2;17919:18;;17912:60;18004:2;17989:18;;17833:180::o;18018:346::-;18220:2;18202:21;;;18259:2;18239:18;;;18232:30;-1:-1:-1;;;18293:2:13;18278:18;;18271:52;18355:2;18340:18;;18192:172::o;18369:398::-;18571:2;18553:21;;;18610:2;18590:18;;;18583:30;18649:34;18644:2;18629:18;;18622:62;-1:-1:-1;;;18715:2:13;18700:18;;18693:32;18757:3;18742:19;;18543:224::o;18772:344::-;18974:2;18956:21;;;19013:2;18993:18;;;18986:30;-1:-1:-1;;;19047:2:13;19032:18;;19025:50;19107:2;19092:18;;18946:170::o;19121:415::-;19323:2;19305:21;;;19362:2;19342:18;;;19335:30;19401:34;19396:2;19381:18;;19374:62;-1:-1:-1;;;19467:2:13;19452:18;;19445:49;19526:3;19511:19;;19295:241::o;19541:353::-;19743:2;19725:21;;;19782:2;19762:18;;;19755:30;19821:31;19816:2;19801:18;;19794:59;19885:2;19870:18;;19715:179::o;19899:337::-;20101:2;20083:21;;;20140:2;20120:18;;;20113:30;-1:-1:-1;;;20174:2:13;20159:18;;20152:43;20227:2;20212:18;;20073:163::o;20241:397::-;20443:2;20425:21;;;20482:2;20462:18;;;20455:30;20521:34;20516:2;20501:18;;20494:62;-1:-1:-1;;;20587:2:13;20572:18;;20565:31;20628:3;20613:19;;20415:223::o;20643:346::-;20845:2;20827:21;;;20884:2;20864:18;;;20857:30;-1:-1:-1;;;20918:2:13;20903:18;;20896:52;20980:2;20965:18;;20817:172::o;20994:343::-;21196:2;21178:21;;;21235:2;21215:18;;;21208:30;-1:-1:-1;;;21269:2:13;21254:18;;21247:49;21328:2;21313:18;;21168:169::o;21342:351::-;21544:2;21526:21;;;21583:2;21563:18;;;21556:30;21622:29;21617:2;21602:18;;21595:57;21684:2;21669:18;;21516:177::o;21698:410::-;21900:2;21882:21;;;21939:2;21919:18;;;21912:30;21978:34;21973:2;21958:18;;21951:62;-1:-1:-1;;;22044:2:13;22029:18;;22022:44;22098:3;22083:19;;21872:236::o;22113:352::-;22315:2;22297:21;;;22354:2;22334:18;;;22327:30;22393;22388:2;22373:18;;22366:58;22456:2;22441:18;;22287:178::o;22470:411::-;22672:2;22654:21;;;22711:2;22691:18;;;22684:30;22750:34;22745:2;22730:18;;22723:62;-1:-1:-1;;;22816:2:13;22801:18;;22794:45;22871:3;22856:19;;22644:237::o;22886:351::-;23088:2;23070:21;;;23127:2;23107:18;;;23100:30;23166:29;23161:2;23146:18;;23139:57;23228:2;23213:18;;23060:177::o;23242:409::-;23444:2;23426:21;;;23483:2;23463:18;;;23456:30;23522:34;23517:2;23502:18;;23495:62;-1:-1:-1;;;23588:2:13;23573:18;;23566:43;23641:3;23626:19;;23416:235::o;23656:398::-;23858:2;23840:21;;;23897:2;23877:18;;;23870:30;23936:34;23931:2;23916:18;;23909:62;-1:-1:-1;;;24002:2:13;23987:18;;23980:32;24044:3;24029:19;;23830:224::o;24241:275::-;24312:2;24306:9;24377:2;24358:13;;-1:-1:-1;;24354:27:13;24342:40;;-1:-1:-1;;;;;24397:34:13;;24433:22;;;24394:62;24391:2;;;24459:18;;:::i;:::-;24495:2;24488:22;24286:230;;-1:-1:-1;24286:230:13:o;24521:253::-;;-1:-1:-1;;;;;24650:2:13;24647:1;24643:10;24680:2;24677:1;24673:10;24711:3;24707:2;24703:12;24698:3;24695:21;24692:2;;;24719:18;;:::i;24779:128::-;;24850:1;24846:6;24843:1;24840:13;24837:2;;;24856:18;;:::i;:::-;-1:-1:-1;24892:9:13;;24827:80::o;24912:120::-;;24978:1;24968:2;;24983:18;;:::i;:::-;-1:-1:-1;25017:9:13;;24958:74::o;25037:168::-;;25143:1;25139;25135:6;25131:14;25128:1;25125:21;25120:1;25113:9;25106:17;25102:45;25099:2;;;25150:18;;:::i;:::-;-1:-1:-1;25190:9:13;;25089:116::o;25210:246::-;;-1:-1:-1;;;;;25363:10:13;;;;25333;;25385:12;;;25382:2;;;25400:18;;:::i;:::-;25437:13;;25259:197;-1:-1:-1;;;25259:197:13:o;25461:125::-;;25529:1;25526;25523:8;25520:2;;;25534:18;;:::i;:::-;-1:-1:-1;25571:9:13;;25510:76::o;25591:258::-;25663:1;25673:113;25687:6;25684:1;25681:13;25673:113;;;25763:11;;;25757:18;25744:11;;;25737:39;25709:2;25702:10;25673:113;;;25804:6;25801:1;25798:13;25795:2;;;-1:-1:-1;;25839:1:13;25821:16;;25814:27;25644:205::o;25854:136::-;;25921:5;25911:2;;25930:18;;:::i;:::-;-1:-1:-1;;;25966:18:13;;25901:89::o;25995:380::-;26080:1;26070:12;;26127:1;26117:12;;;26138:2;;26192:4;26184:6;26180:17;26170:27;;26138:2;26245;26237:6;26234:14;26214:18;26211:38;26208:2;;;26291:10;26286:3;26282:20;26279:1;26272:31;26326:4;26323:1;26316:15;26354:4;26351:1;26344:15;26208:2;;26050:325;;;:::o;26380:135::-;;-1:-1:-1;;26440:17:13;;26437:2;;;26460:18;;:::i;:::-;-1:-1:-1;26507:1:13;26496:13;;26427:88::o;26520:112::-;;26578:1;26568:2;;26583:18;;:::i;:::-;-1:-1:-1;26617:9:13;;26558:74::o;26637:127::-;26698:10;26693:3;26689:20;26686:1;26679:31;26729:4;26726:1;26719:15;26753:4;26750:1;26743:15;26769:127;26830:10;26825:3;26821:20;26818:1;26811:31;26861:4;26858:1;26851:15;26885:4;26882:1;26875:15;26901:127;26962:10;26957:3;26953:20;26950:1;26943:31;26993:4;26990:1;26983:15;27017:4;27014:1;27007:15;27033:133;-1:-1:-1;;;;;;27109:32:13;;27099:43;;27089:2;;27156:1;27153;27146:12

Swarm Source

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