ETH Price: $3,461.94 (+1.58%)
Gas: 7 Gwei

Token

Crazy Lemur Club (CLC)
 

Overview

Max Total Supply

1,029 CLC

Holders

618

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
cacahou.eth
Balance
1 CLC
0x9edd069accf979f744ce3fbbebf54507ead29a21
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Crazy Lemur Club is a collection of 10000 algorithmically generated 3D pieces of art with different traits. The lemurs will have all vary in different traits built in Zbrush.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
CrazyLemurClub

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity Multiple files format)

File 3 of 13: CrazyLemurClub.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./ERC721Enumerable.sol";
import "./Ownable.sol";

contract CrazyLemurClub is ERC721Enumerable, Ownable {
  uint256 public basePrice = 0.08 ether;

  string _baseTokenURI;

  bool public isActive = false;
  bool public isAllowListActive = false;

  uint256 public constant MAX_MINTSUPPLY = 10000;
  uint256 public maximumAllowedTokensPerPurchase = 20;
  uint256 public allowListMaxMint = 20;
  uint256 public preSaleAllowListMaxMint = 2;

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

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

  constructor(string memory baseURI) ERC721("Crazy Lemur Club", "CLC") {
    setBaseURI(baseURI);
  }

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

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

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

  function setActive(bool val) public onlyAuthorized {
    isActive = val;
    emit SaleActivation(val);
  }

  function setIsAllowListActive(bool _isAllowListActive) external onlyAuthorized {
    isAllowListActive = _isAllowListActive;
  }

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

  function setPreSaleAllowListMaxMint(uint256 maxMint) external  onlyAuthorized {
    preSaleAllowListMaxMint = maxMint;
  }

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

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

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

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

  function setPrice(uint256 _price) public onlyAuthorized {
    basePrice = _price;
  }

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

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

  function getPrice() external view returns (uint256) {
    return basePrice;
  }

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

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

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

  function mint(address _to, uint256 _count) public payable saleIsOpen {
    if (msg.sender != owner()) {
      require(isActive, "Sale is not active currently.");
    }
    require(_count <= allowListMaxMint, 'Cannot purchase this many tokens');
    require(totalSupply() + _count <= MAX_MINTSUPPLY, "Total supply exceeded.");
    require(totalSupply() <= MAX_MINTSUPPLY, "Total supply spent.");
    require(
      _count <= maximumAllowedTokensPerPurchase,
      "Exceeds maximum allowed tokens"
    );
    require(msg.value >= basePrice * _count, "Insuffient ETH amount sent.");

    for (uint256 i = 0; i < _count; i++) {
      emit AssetMinted(totalSupply(), _to);
      _safeMint(_to, totalSupply());
    }
  }

  function preSaleMint(uint256 _count) public payable saleIsOpen {
    require(isAllowListActive, 'Allow List is not active');
    require(_allowList[msg.sender], 'You are not on the Allow List');
    require(totalSupply() < MAX_MINTSUPPLY, 'All tokens have been minted');
    require(_count <= preSaleAllowListMaxMint, 'Cannot purchase this many tokens');
    require(_allowListClaimed[msg.sender] + _count <= preSaleAllowListMaxMint, 'Purchase exceeds max allowed');
    require(msg.value >= basePrice * _count, 'Insuffient ETH amount sent.');

    for (uint256 i = 0; i < _count; i++) {
      _allowListClaimed[msg.sender] += 1;
      emit AssetMinted(totalSupply(), msg.sender);
      _safeMint(msg.sender, totalSupply());
    }
  }

  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(owner()).transfer(address(this).balance);
  }
}

File 1 of 13: Address.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 2 of 13: Context.sol
// SPDX-License-Identifier: MIT

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 4 of 13: ERC165.sol
// SPDX-License-Identifier: MIT

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 5 of 13: ERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

    // 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 Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

    /**
     * @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 virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "ERC721: 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 virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @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.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: 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`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);

        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(address(0), to, tokenId);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * 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
    ) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

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

    /**
     * @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.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

File 6 of 13: ERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./ERC721.sol";
import "./IERC721Enumerable.sol";

/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

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

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

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}

File 7 of 13: IERC165.sol
// SPDX-License-Identifier: MIT

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 8 of 13: IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

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

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

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

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

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

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

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

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

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

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

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

File 9 of 13: IERC721Enumerable.sol
// SPDX-License-Identifier: MIT

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

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

File 10 of 13: IERC721Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";

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

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

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

File 11 of 13: IERC721Receiver.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

File 12 of 13: Ownable.sol
// SPDX-License-Identifier: MIT

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() {
        _setOwner(_msgSender());
    }

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"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":"isActive","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":[],"name":"MAX_MINTSUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"addToAllowList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"allowListClaimedBy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"allowListMaxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"basePrice","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":"getMaximumAllowedTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isAllowListActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"maximumAllowedTokensPerPurchase","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":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"preSaleAllowListMaxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"preSaleMint","outputs":[],"stateMutability":"payable","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":[{"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":"bool","name":"val","type":"bool"}],"name":"setActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxMint","type":"uint256"}],"name":"setAllowListMaxMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isAllowListActive","type":"bool"}],"name":"setIsAllowListActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"setMaximumAllowedTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxMint","type":"uint256"}],"name":"setPreSaleAllowListMaxMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","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"}]

608060405267011c37937e080000600b556000600d60006101000a81548160ff0219169083151502179055506000600d60016101000a81548160ff0219169083151502179055506014600e556014600f5560026010553480156200006257600080fd5b5060405162005745380380620057458339818101604052810190620000889190620003de565b6040518060400160405280601081526020017f4372617a79204c656d757220436c7562000000000000000000000000000000008152506040518060400160405280600381526020017f434c43000000000000000000000000000000000000000000000000000000000081525081600090805190602001906200010c929190620002bc565b50806001908051906020019062000125929190620002bc565b505050620001486200013c6200016060201b60201c565b6200016860201b60201c565b62000159816200022e60201b60201c565b5062000554565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b3373ffffffffffffffffffffffffffffffffffffffff16620002556200029260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200027657600080fd5b80600c90805190602001906200028e929190620002bc565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b828054620002ca90620004c0565b90600052602060002090601f016020900481019282620002ee57600085556200033a565b82601f106200030957805160ff19168380011785556200033a565b828001600101855582156200033a579182015b82811115620003395782518255916020019190600101906200031c565b5b5090506200034991906200034d565b5090565b5b80821115620003685760008160009055506001016200034e565b5090565b6000620003836200037d8462000457565b62000423565b9050828152602081018484840111156200039c57600080fd5b620003a98482856200048a565b509392505050565b600082601f830112620003c357600080fd5b8151620003d58482602086016200036c565b91505092915050565b600060208284031215620003f157600080fd5b600082015167ffffffffffffffff8111156200040c57600080fd5b6200041a84828501620003b1565b91505092915050565b6000604051905081810181811067ffffffffffffffff821117156200044d576200044c62000525565b5b8060405250919050565b600067ffffffffffffffff82111562000475576200047462000525565b5b601f19601f8301169050602081019050919050565b60005b83811015620004aa5780820151818401526020810190506200048d565b83811115620004ba576000848401525b50505050565b60006002820490506001821680620004d957607f821691505b60208210811415620004f057620004ef620004f6565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6151e180620005646000396000f3fe6080604052600436106102715760003560e01c80636352211e1161014f57806398d5fdca116100c1578063b88d4fde1161007a578063b88d4fde14610945578063c4e41b221461096e578063c7876ea414610999578063c87b56dd146109c4578063e985e9c514610a01578063f2fde38b14610a3e57610271565b806398d5fdca146108495780639a3bf72814610874578063a22cb4651461089f578063a51312c8146108c8578063acec338a146108f1578063ad06d7581461091a57610271565b80637835c635116101135780637835c6351461075a5780637a6685f1146107765780637f44ab2f1461079f5780638da5cb5b146107ca57806391b7f5ed146107f557806395d89b411461081e57610271565b80636352211e1461067757806370a08231146106b4578063715018a6146106f1578063718bc4af146107085780637263cfe21461073157610271565b80632f745c59116101e8578063442890d5116101ac578063442890d5146105695780634dfea627146105945780634f6ccce7146105bd57806355f804b3146105fa57806358fc3eb4146106235780635e1106bf1461064c57610271565b80632f745c59146104935780633ccfd60b146104d057806340c10f19146104e757806342842e0e14610503578063438b63001461052c57610271565b806318160ddd1161023a57806318160ddd1461038157806322e63d2e146103ac57806322f3e2d4146103d757806323b872dd1461040257806329fc6bae1461042b5780632c1205f41461045657610271565b806208ffdd1461027657806301ffc9a7146102b357806306fdde03146102f0578063081812fc1461031b578063095ea7b314610358575b600080fd5b34801561028257600080fd5b5061029d600480360381019061029891906139f6565b610a67565b6040516102aa9190614cba565b60405180910390f35b3480156102bf57600080fd5b506102da60048036038101906102d59190613c0b565b610b1f565b6040516102e7919061489d565b60405180910390f35b3480156102fc57600080fd5b50610305610b99565b60405161031291906148b8565b60405180910390f35b34801561032757600080fd5b50610342600480360381019061033d9190613c9e565b610c2b565b60405161034f9190614814565b60405180910390f35b34801561036457600080fd5b5061037f600480360381019061037a9190613b61565b610cb0565b005b34801561038d57600080fd5b50610396610dc8565b6040516103a39190614cba565b60405180910390f35b3480156103b857600080fd5b506103c1610dd5565b6040516103ce9190614cba565b60405180910390f35b3480156103e357600080fd5b506103ec610ddb565b6040516103f9919061489d565b60405180910390f35b34801561040e57600080fd5b5061042960048036038101906104249190613a5b565b610dee565b005b34801561043757600080fd5b50610440610e4e565b60405161044d919061489d565b60405180910390f35b34801561046257600080fd5b5061047d600480360381019061047891906139f6565b610e61565b60405161048a919061489d565b60405180910390f35b34801561049f57600080fd5b506104ba60048036038101906104b59190613b61565b610eb7565b6040516104c79190614cba565b60405180910390f35b3480156104dc57600080fd5b506104e5610f5c565b005b61050160048036038101906104fc9190613b61565b610ff1565b005b34801561050f57600080fd5b5061052a60048036038101906105259190613a5b565b6112b8565b005b34801561053857600080fd5b50610553600480360381019061054e91906139f6565b6112d8565b604051610560919061487b565b60405180910390f35b34801561057557600080fd5b5061057e6113d2565b60405161058b9190614814565b60405180910390f35b3480156105a057600080fd5b506105bb60048036038101906105b69190613c9e565b6113e1565b005b3480156105c957600080fd5b506105e460048036038101906105df9190613c9e565b61142a565b6040516105f19190614cba565b60405180910390f35b34801561060657600080fd5b50610621600480360381019061061c9190613c5d565b6114c1565b005b34801561062f57600080fd5b5061064a60048036038101906106459190613c9e565b61151a565b005b34801561065857600080fd5b50610661611563565b60405161066e9190614cba565b60405180910390f35b34801561068357600080fd5b5061069e60048036038101906106999190613c9e565b611569565b6040516106ab9190614814565b60405180910390f35b3480156106c057600080fd5b506106db60048036038101906106d691906139f6565b61161b565b6040516106e89190614cba565b60405180910390f35b3480156106fd57600080fd5b506107066116d3565b005b34801561071457600080fd5b5061072f600480360381019061072a9190613be2565b61175b565b005b34801561073d57600080fd5b5061075860048036038101906107539190613b9d565b6117b7565b005b610774600480360381019061076f9190613c9e565b611aa8565b005b34801561078257600080fd5b5061079d60048036038101906107989190613c9e565b611e08565b005b3480156107ab57600080fd5b506107b4611e51565b6040516107c19190614cba565b60405180910390f35b3480156107d657600080fd5b506107df611e57565b6040516107ec9190614814565b60405180910390f35b34801561080157600080fd5b5061081c60048036038101906108179190613c9e565b611e81565b005b34801561082a57600080fd5b50610833611eca565b60405161084091906148b8565b60405180910390f35b34801561085557600080fd5b5061085e611f5c565b60405161086b9190614cba565b60405180910390f35b34801561088057600080fd5b50610889611f66565b6040516108969190614cba565b60405180910390f35b3480156108ab57600080fd5b506108c660048036038101906108c19190613b25565b611f6c565b005b3480156108d457600080fd5b506108ef60048036038101906108ea9190613b9d565b6120ed565b005b3480156108fd57600080fd5b5061091860048036038101906109139190613be2565b6122b4565b005b34801561092657600080fd5b5061092f612347565b60405161093c9190614cba565b60405180910390f35b34801561095157600080fd5b5061096c60048036038101906109679190613aaa565b612390565b005b34801561097a57600080fd5b506109836123f2565b6040516109909190614cba565b60405180910390f35b3480156109a557600080fd5b506109ae612401565b6040516109bb9190614cba565b60405180910390f35b3480156109d057600080fd5b506109eb60048036038101906109e69190613c9e565b612407565b6040516109f891906148b8565b60405180910390f35b348015610a0d57600080fd5b50610a286004803603810190610a239190613a1f565b6124ae565b604051610a35919061489d565b60405180910390f35b348015610a4a57600080fd5b50610a656004803603810190610a6091906139f6565b612542565b005b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ad8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610acf90614b1a565b60405180910390fd5b601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b925750610b918261263a565b5b9050919050565b606060008054610ba890614fd6565b80601f0160208091040260200160405190810160405280929190818152602001828054610bd490614fd6565b8015610c215780601f10610bf657610100808354040283529160200191610c21565b820191906000526020600020905b815481529060010190602001808311610c0457829003601f168201915b5050505050905090565b6000610c368261271c565b610c75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6c90614aba565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610cbb82611569565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2390614b9a565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d4b612788565b73ffffffffffffffffffffffffffffffffffffffff161480610d7a5750610d7981610d74612788565b6124ae565b5b610db9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db090614a3a565b60405180910390fd5b610dc38383612790565b505050565b6000600880549050905090565b61271081565b600d60009054906101000a900460ff1681565b610dff610df9612788565b82612849565b610e3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3590614bda565b60405180910390fd5b610e49838383612927565b505050565b600d60019054906101000a900460ff1681565b6000601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000610ec28361161b565b8210610f03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610efa9061493a565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b3373ffffffffffffffffffffffffffffffffffffffff16610f7b611e57565b73ffffffffffffffffffffffffffffffffffffffff1614610f9b57600080fd5b6000479050610fa8611e57565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610fed573d6000803e3d6000fd5b5050565b612710610ffc610dc8565b111561103d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611034906149ba565b60405180910390fd5b611045611e57565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146110c757600d60009054906101000a900460ff166110c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110bd9061491a565b60405180910390fd5b5b600f5481111561110c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110390614c9a565b60405180910390fd5b61271081611118610dc8565b6111229190614e0b565b1115611163576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115a90614bba565b60405180910390fd5b61271061116e610dc8565b11156111af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a690614c1a565b60405180910390fd5b600e548111156111f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111eb90614b7a565b60405180910390fd5b80600b546112029190614e92565b341015611244576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123b90614c3a565b60405180910390fd5b60005b818110156112b3577f55f284809f4c5b7377fbe62f2feeb9686e3834dcae5f3ca955140fe6547cd355611278610dc8565b84604051611287929190614cd5565b60405180910390a16112a08361129b610dc8565b612b83565b80806112ab90615008565b915050611247565b505050565b6112d383838360405180602001604052806000815250612390565b505050565b606060006112e58361161b565b905060008167ffffffffffffffff811115611329577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156113575781602001602082028036833780820191505090505b50905060005b828110156113c75761136f8582610eb7565b8282815181106113a8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080806113bf90615008565b91505061135d565b508092505050919050565b60006113dc611e57565b905090565b3373ffffffffffffffffffffffffffffffffffffffff16611400611e57565b73ffffffffffffffffffffffffffffffffffffffff161461142057600080fd5b80600e8190555050565b6000611434610dc8565b8210611475576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146c90614bfa565b60405180910390fd5b600882815481106114af577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b3373ffffffffffffffffffffffffffffffffffffffff166114e0611e57565b73ffffffffffffffffffffffffffffffffffffffff161461150057600080fd5b80600c90805190602001906115169291906137d0565b5050565b3373ffffffffffffffffffffffffffffffffffffffff16611539611e57565b73ffffffffffffffffffffffffffffffffffffffff161461155957600080fd5b8060108190555050565b60105481565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611612576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160990614a7a565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561168c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168390614a5a565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6116db612788565b73ffffffffffffffffffffffffffffffffffffffff166116f9611e57565b73ffffffffffffffffffffffffffffffffffffffff161461174f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174690614afa565b60405180910390fd5b6117596000612ba1565b565b3373ffffffffffffffffffffffffffffffffffffffff1661177a611e57565b73ffffffffffffffffffffffffffffffffffffffff161461179a57600080fd5b80600d60016101000a81548160ff02191690831515021790555050565b3373ffffffffffffffffffffffffffffffffffffffff166117d6611e57565b73ffffffffffffffffffffffffffffffffffffffff16146117f657600080fd5b60005b82829050811015611aa357600073ffffffffffffffffffffffffffffffffffffffff16838383818110611855577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b905060200201602081019061186a91906139f6565b73ffffffffffffffffffffffffffffffffffffffff1614156118c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b890614ada565b60405180910390fd5b600160116000858585818110611900577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b905060200201602081019061191591906139f6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506000601260008585858181106119a5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020160208101906119ba91906139f6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411611a01576000611a8f565b60126000848484818110611a3e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190611a5391906139f6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020545b508080611a9b90615008565b9150506117f9565b505050565b612710611ab3610dc8565b1115611af4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aeb906149ba565b60405180910390fd5b600d60019054906101000a900460ff16611b43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3a906148da565b60405180910390fd5b601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611bcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc6906148fa565b60405180910390fd5b612710611bda610dc8565b10611c1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1190614c7a565b60405180910390fd5b601054811115611c5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5690614c9a565b60405180910390fd5b60105481601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611cad9190614e0b565b1115611cee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce590614c5a565b60405180910390fd5b80600b54611cfc9190614e92565b341015611d3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3590614c3a565b60405180910390fd5b60005b81811015611e04576001601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d999190614e0b565b925050819055507f55f284809f4c5b7377fbe62f2feeb9686e3834dcae5f3ca955140fe6547cd355611dc9610dc8565b33604051611dd8929190614cd5565b60405180910390a1611df133611dec610dc8565b612b83565b8080611dfc90615008565b915050611d41565b5050565b3373ffffffffffffffffffffffffffffffffffffffff16611e27611e57565b73ffffffffffffffffffffffffffffffffffffffff1614611e4757600080fd5b80600f8190555050565b600f5481565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b3373ffffffffffffffffffffffffffffffffffffffff16611ea0611e57565b73ffffffffffffffffffffffffffffffffffffffff1614611ec057600080fd5b80600b8190555050565b606060018054611ed990614fd6565b80601f0160208091040260200160405190810160405280929190818152602001828054611f0590614fd6565b8015611f525780601f10611f2757610100808354040283529160200191611f52565b820191906000526020600020905b815481529060010190602001808311611f3557829003601f168201915b5050505050905090565b6000600b54905090565b600e5481565b611f74612788565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611fe2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd9906149fa565b60405180910390fd5b8060056000611fef612788565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661209c612788565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516120e1919061489d565b60405180910390a35050565b3373ffffffffffffffffffffffffffffffffffffffff1661210c611e57565b73ffffffffffffffffffffffffffffffffffffffff161461212c57600080fd5b60005b828290508110156122af57600073ffffffffffffffffffffffffffffffffffffffff1683838381811061218b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020160208101906121a091906139f6565b73ffffffffffffffffffffffffffffffffffffffff1614156121f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ee90614ada565b60405180910390fd5b600060116000858585818110612236577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b905060200201602081019061224b91906139f6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806122a790615008565b91505061212f565b505050565b3373ffffffffffffffffffffffffffffffffffffffff166122d3611e57565b73ffffffffffffffffffffffffffffffffffffffff16146122f357600080fd5b80600d60006101000a81548160ff0219169083151502179055507f58655b75d3df612fe99ead00dbf0812d415d35078fe06217a94c0818bb13967f8160405161233c919061489d565b60405180910390a150565b60003373ffffffffffffffffffffffffffffffffffffffff16612368611e57565b73ffffffffffffffffffffffffffffffffffffffff161461238857600080fd5b600e54905090565b6123a161239b612788565b83612849565b6123e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123d790614bda565b60405180910390fd5b6123ec84848484612c67565b50505050565b60006123fc610dc8565b905090565b600b5481565b60606124128261271c565b612451576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244890614b5a565b60405180910390fd5b600061245b612cc3565b9050600081511161247b57604051806020016040528060008152506124a6565b8061248584612d55565b6040516020016124969291906147f0565b6040516020818303038152906040525b915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61254a612788565b73ffffffffffffffffffffffffffffffffffffffff16612568611e57565b73ffffffffffffffffffffffffffffffffffffffff16146125be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125b590614afa565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561262e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126259061497a565b60405180910390fd5b61263781612ba1565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061270557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612715575061271482612f02565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661280383611569565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006128548261271c565b612893576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161288a90614a1a565b60405180910390fd5b600061289e83611569565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061290d57508373ffffffffffffffffffffffffffffffffffffffff166128f584610c2b565b73ffffffffffffffffffffffffffffffffffffffff16145b8061291e575061291d81856124ae565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661294782611569565b73ffffffffffffffffffffffffffffffffffffffff161461299d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161299490614b3a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a04906149da565b60405180910390fd5b612a18838383612f6c565b612a23600082612790565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a739190614eec565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612aca9190614e0b565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b612b9d828260405180602001604052806000815250613080565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612c72848484612927565b612c7e848484846130db565b612cbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cb49061495a565b60405180910390fd5b50505050565b6060600c8054612cd290614fd6565b80601f0160208091040260200160405190810160405280929190818152602001828054612cfe90614fd6565b8015612d4b5780601f10612d2057610100808354040283529160200191612d4b565b820191906000526020600020905b815481529060010190602001808311612d2e57829003601f168201915b5050505050905090565b60606000821415612d9d576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612efd565b600082905060005b60008214612dcf578080612db890615008565b915050600a82612dc89190614e61565b9150612da5565b60008167ffffffffffffffff811115612e11577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612e435781602001600182028036833780820191505090505b5090505b60008514612ef657600182612e5c9190614eec565b9150600a85612e6b9190615051565b6030612e779190614e0b565b60f81b818381518110612eb3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612eef9190614e61565b9450612e47565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612f77838383613272565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612fba57612fb581613277565b612ff9565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612ff857612ff783826132c0565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561303c576130378161342d565b61307b565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461307a576130798282613570565b5b5b505050565b61308a83836135ef565b61309760008484846130db565b6130d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130cd9061495a565b60405180910390fd5b505050565b60006130fc8473ffffffffffffffffffffffffffffffffffffffff166137bd565b15613265578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613125612788565b8786866040518563ffffffff1660e01b8152600401613147949392919061482f565b602060405180830381600087803b15801561316157600080fd5b505af192505050801561319257506040513d601f19601f8201168201806040525081019061318f9190613c34565b60015b613215573d80600081146131c2576040519150601f19603f3d011682016040523d82523d6000602084013e6131c7565b606091505b5060008151141561320d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132049061495a565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061326a565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016132cd8461161b565b6132d79190614eec565b90506000600760008481526020019081526020016000205490508181146133bc576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506134419190614eec565b9050600060096000848152602001908152602001600020549050600060088381548110613497577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905080600883815481106134df577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480613554577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061357b8361161b565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561365f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161365690614a9a565b60405180910390fd5b6136688161271c565b156136a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161369f9061499a565b60405180910390fd5b6136b460008383612f6c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546137049190614e0b565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b8280546137dc90614fd6565b90600052602060002090601f0160209004810192826137fe5760008555613845565b82601f1061381757805160ff1916838001178555613845565b82800160010185558215613845579182015b82811115613844578251825591602001919060010190613829565b5b5090506138529190613856565b5090565b5b8082111561386f576000816000905550600101613857565b5090565b600061388661388184614d2f565b614cfe565b90508281526020810184848401111561389e57600080fd5b6138a9848285614f94565b509392505050565b60006138c46138bf84614d5f565b614cfe565b9050828152602081018484840111156138dc57600080fd5b6138e7848285614f94565b509392505050565b6000813590506138fe8161514f565b92915050565b60008083601f84011261391657600080fd5b8235905067ffffffffffffffff81111561392f57600080fd5b60208301915083602082028301111561394757600080fd5b9250929050565b60008135905061395d81615166565b92915050565b6000813590506139728161517d565b92915050565b6000815190506139878161517d565b92915050565b600082601f83011261399e57600080fd5b81356139ae848260208601613873565b91505092915050565b600082601f8301126139c857600080fd5b81356139d88482602086016138b1565b91505092915050565b6000813590506139f081615194565b92915050565b600060208284031215613a0857600080fd5b6000613a16848285016138ef565b91505092915050565b60008060408385031215613a3257600080fd5b6000613a40858286016138ef565b9250506020613a51858286016138ef565b9150509250929050565b600080600060608486031215613a7057600080fd5b6000613a7e868287016138ef565b9350506020613a8f868287016138ef565b9250506040613aa0868287016139e1565b9150509250925092565b60008060008060808587031215613ac057600080fd5b6000613ace878288016138ef565b9450506020613adf878288016138ef565b9350506040613af0878288016139e1565b925050606085013567ffffffffffffffff811115613b0d57600080fd5b613b198782880161398d565b91505092959194509250565b60008060408385031215613b3857600080fd5b6000613b46858286016138ef565b9250506020613b578582860161394e565b9150509250929050565b60008060408385031215613b7457600080fd5b6000613b82858286016138ef565b9250506020613b93858286016139e1565b9150509250929050565b60008060208385031215613bb057600080fd5b600083013567ffffffffffffffff811115613bca57600080fd5b613bd685828601613904565b92509250509250929050565b600060208284031215613bf457600080fd5b6000613c028482850161394e565b91505092915050565b600060208284031215613c1d57600080fd5b6000613c2b84828501613963565b91505092915050565b600060208284031215613c4657600080fd5b6000613c5484828501613978565b91505092915050565b600060208284031215613c6f57600080fd5b600082013567ffffffffffffffff811115613c8957600080fd5b613c95848285016139b7565b91505092915050565b600060208284031215613cb057600080fd5b6000613cbe848285016139e1565b91505092915050565b6000613cd383836147d2565b60208301905092915050565b613ce881614f20565b82525050565b6000613cf982614d9f565b613d038185614dcd565b9350613d0e83614d8f565b8060005b83811015613d3f578151613d268882613cc7565b9750613d3183614dc0565b925050600181019050613d12565b5085935050505092915050565b613d5581614f32565b82525050565b6000613d6682614daa565b613d708185614dde565b9350613d80818560208601614fa3565b613d898161513e565b840191505092915050565b6000613d9f82614db5565b613da98185614def565b9350613db9818560208601614fa3565b613dc28161513e565b840191505092915050565b6000613dd882614db5565b613de28185614e00565b9350613df2818560208601614fa3565b80840191505092915050565b6000613e0b601883614def565b91507f416c6c6f77204c697374206973206e6f742061637469766500000000000000006000830152602082019050919050565b6000613e4b601d83614def565b91507f596f7520617265206e6f74206f6e2074686520416c6c6f77204c6973740000006000830152602082019050919050565b6000613e8b601d83614def565b91507f53616c65206973206e6f74206163746976652063757272656e746c792e0000006000830152602082019050919050565b6000613ecb602b83614def565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b6000613f31603283614def565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b6000613f97602683614def565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613ffd601c83614def565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b600061403d600f83614def565b91507f53616c652068617320656e6465642e00000000000000000000000000000000006000830152602082019050919050565b600061407d602483614def565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006140e3601983614def565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000614123602c83614def565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000614189603883614def565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b60006141ef602a83614def565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000614255602983614def565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006142bb602083614def565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b60006142fb602c83614def565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000614361601883614def565b91507f43616e2774206164642061206e756c6c206164647265737300000000000000006000830152602082019050919050565b60006143a1602083614def565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006143e1601e83614def565b91507f5a65726f2061646472657373206e6f74206f6e20416c6c6f77204c69737400006000830152602082019050919050565b6000614421602983614def565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000614487602f83614def565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b60006144ed601e83614def565b91507f45786365656473206d6178696d756d20616c6c6f77656420746f6b656e7300006000830152602082019050919050565b600061452d602183614def565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614593601683614def565b91507f546f74616c20737570706c792065786365656465642e000000000000000000006000830152602082019050919050565b60006145d3603183614def565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000614639602c83614def565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b600061469f601383614def565b91507f546f74616c20737570706c79207370656e742e000000000000000000000000006000830152602082019050919050565b60006146df601b83614def565b91507f496e7375666669656e742045544820616d6f756e742073656e742e00000000006000830152602082019050919050565b600061471f601c83614def565b91507f50757263686173652065786365656473206d617820616c6c6f776564000000006000830152602082019050919050565b600061475f601b83614def565b91507f416c6c20746f6b656e732068617665206265656e206d696e74656400000000006000830152602082019050919050565b600061479f602083614def565b91507f43616e6e6f742070757263686173652074686973206d616e7920746f6b656e736000830152602082019050919050565b6147db81614f8a565b82525050565b6147ea81614f8a565b82525050565b60006147fc8285613dcd565b91506148088284613dcd565b91508190509392505050565b60006020820190506148296000830184613cdf565b92915050565b60006080820190506148446000830187613cdf565b6148516020830186613cdf565b61485e60408301856147e1565b81810360608301526148708184613d5b565b905095945050505050565b600060208201905081810360008301526148958184613cee565b905092915050565b60006020820190506148b26000830184613d4c565b92915050565b600060208201905081810360008301526148d28184613d94565b905092915050565b600060208201905081810360008301526148f381613dfe565b9050919050565b6000602082019050818103600083015261491381613e3e565b9050919050565b6000602082019050818103600083015261493381613e7e565b9050919050565b6000602082019050818103600083015261495381613ebe565b9050919050565b6000602082019050818103600083015261497381613f24565b9050919050565b6000602082019050818103600083015261499381613f8a565b9050919050565b600060208201905081810360008301526149b381613ff0565b9050919050565b600060208201905081810360008301526149d381614030565b9050919050565b600060208201905081810360008301526149f381614070565b9050919050565b60006020820190508181036000830152614a13816140d6565b9050919050565b60006020820190508181036000830152614a3381614116565b9050919050565b60006020820190508181036000830152614a538161417c565b9050919050565b60006020820190508181036000830152614a73816141e2565b9050919050565b60006020820190508181036000830152614a9381614248565b9050919050565b60006020820190508181036000830152614ab3816142ae565b9050919050565b60006020820190508181036000830152614ad3816142ee565b9050919050565b60006020820190508181036000830152614af381614354565b9050919050565b60006020820190508181036000830152614b1381614394565b9050919050565b60006020820190508181036000830152614b33816143d4565b9050919050565b60006020820190508181036000830152614b5381614414565b9050919050565b60006020820190508181036000830152614b738161447a565b9050919050565b60006020820190508181036000830152614b93816144e0565b9050919050565b60006020820190508181036000830152614bb381614520565b9050919050565b60006020820190508181036000830152614bd381614586565b9050919050565b60006020820190508181036000830152614bf3816145c6565b9050919050565b60006020820190508181036000830152614c138161462c565b9050919050565b60006020820190508181036000830152614c3381614692565b9050919050565b60006020820190508181036000830152614c53816146d2565b9050919050565b60006020820190508181036000830152614c7381614712565b9050919050565b60006020820190508181036000830152614c9381614752565b9050919050565b60006020820190508181036000830152614cb381614792565b9050919050565b6000602082019050614ccf60008301846147e1565b92915050565b6000604082019050614cea60008301856147e1565b614cf76020830184613cdf565b9392505050565b6000604051905081810181811067ffffffffffffffff82111715614d2557614d2461510f565b5b8060405250919050565b600067ffffffffffffffff821115614d4a57614d4961510f565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff821115614d7a57614d7961510f565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614e1682614f8a565b9150614e2183614f8a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614e5657614e55615082565b5b828201905092915050565b6000614e6c82614f8a565b9150614e7783614f8a565b925082614e8757614e866150b1565b5b828204905092915050565b6000614e9d82614f8a565b9150614ea883614f8a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614ee157614ee0615082565b5b828202905092915050565b6000614ef782614f8a565b9150614f0283614f8a565b925082821015614f1557614f14615082565b5b828203905092915050565b6000614f2b82614f6a565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614fc1578082015181840152602081019050614fa6565b83811115614fd0576000848401525b50505050565b60006002820490506001821680614fee57607f821691505b60208210811415615002576150016150e0565b5b50919050565b600061501382614f8a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561504657615045615082565b5b600182019050919050565b600061505c82614f8a565b915061506783614f8a565b925082615077576150766150b1565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b61515881614f20565b811461516357600080fd5b50565b61516f81614f32565b811461517a57600080fd5b50565b61518681614f3e565b811461519157600080fd5b50565b61519d81614f8a565b81146151a857600080fd5b5056fea26469706673582212207e88413b235e52d8f5e4585f5d12d82b4ac3bf88a3921b4f2c00bf4efe2163a464736f6c634300080000330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002468747470733a2f2f6372617a796c656d7572636c75622e636f6d2f6d657461646174612f00000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102715760003560e01c80636352211e1161014f57806398d5fdca116100c1578063b88d4fde1161007a578063b88d4fde14610945578063c4e41b221461096e578063c7876ea414610999578063c87b56dd146109c4578063e985e9c514610a01578063f2fde38b14610a3e57610271565b806398d5fdca146108495780639a3bf72814610874578063a22cb4651461089f578063a51312c8146108c8578063acec338a146108f1578063ad06d7581461091a57610271565b80637835c635116101135780637835c6351461075a5780637a6685f1146107765780637f44ab2f1461079f5780638da5cb5b146107ca57806391b7f5ed146107f557806395d89b411461081e57610271565b80636352211e1461067757806370a08231146106b4578063715018a6146106f1578063718bc4af146107085780637263cfe21461073157610271565b80632f745c59116101e8578063442890d5116101ac578063442890d5146105695780634dfea627146105945780634f6ccce7146105bd57806355f804b3146105fa57806358fc3eb4146106235780635e1106bf1461064c57610271565b80632f745c59146104935780633ccfd60b146104d057806340c10f19146104e757806342842e0e14610503578063438b63001461052c57610271565b806318160ddd1161023a57806318160ddd1461038157806322e63d2e146103ac57806322f3e2d4146103d757806323b872dd1461040257806329fc6bae1461042b5780632c1205f41461045657610271565b806208ffdd1461027657806301ffc9a7146102b357806306fdde03146102f0578063081812fc1461031b578063095ea7b314610358575b600080fd5b34801561028257600080fd5b5061029d600480360381019061029891906139f6565b610a67565b6040516102aa9190614cba565b60405180910390f35b3480156102bf57600080fd5b506102da60048036038101906102d59190613c0b565b610b1f565b6040516102e7919061489d565b60405180910390f35b3480156102fc57600080fd5b50610305610b99565b60405161031291906148b8565b60405180910390f35b34801561032757600080fd5b50610342600480360381019061033d9190613c9e565b610c2b565b60405161034f9190614814565b60405180910390f35b34801561036457600080fd5b5061037f600480360381019061037a9190613b61565b610cb0565b005b34801561038d57600080fd5b50610396610dc8565b6040516103a39190614cba565b60405180910390f35b3480156103b857600080fd5b506103c1610dd5565b6040516103ce9190614cba565b60405180910390f35b3480156103e357600080fd5b506103ec610ddb565b6040516103f9919061489d565b60405180910390f35b34801561040e57600080fd5b5061042960048036038101906104249190613a5b565b610dee565b005b34801561043757600080fd5b50610440610e4e565b60405161044d919061489d565b60405180910390f35b34801561046257600080fd5b5061047d600480360381019061047891906139f6565b610e61565b60405161048a919061489d565b60405180910390f35b34801561049f57600080fd5b506104ba60048036038101906104b59190613b61565b610eb7565b6040516104c79190614cba565b60405180910390f35b3480156104dc57600080fd5b506104e5610f5c565b005b61050160048036038101906104fc9190613b61565b610ff1565b005b34801561050f57600080fd5b5061052a60048036038101906105259190613a5b565b6112b8565b005b34801561053857600080fd5b50610553600480360381019061054e91906139f6565b6112d8565b604051610560919061487b565b60405180910390f35b34801561057557600080fd5b5061057e6113d2565b60405161058b9190614814565b60405180910390f35b3480156105a057600080fd5b506105bb60048036038101906105b69190613c9e565b6113e1565b005b3480156105c957600080fd5b506105e460048036038101906105df9190613c9e565b61142a565b6040516105f19190614cba565b60405180910390f35b34801561060657600080fd5b50610621600480360381019061061c9190613c5d565b6114c1565b005b34801561062f57600080fd5b5061064a60048036038101906106459190613c9e565b61151a565b005b34801561065857600080fd5b50610661611563565b60405161066e9190614cba565b60405180910390f35b34801561068357600080fd5b5061069e60048036038101906106999190613c9e565b611569565b6040516106ab9190614814565b60405180910390f35b3480156106c057600080fd5b506106db60048036038101906106d691906139f6565b61161b565b6040516106e89190614cba565b60405180910390f35b3480156106fd57600080fd5b506107066116d3565b005b34801561071457600080fd5b5061072f600480360381019061072a9190613be2565b61175b565b005b34801561073d57600080fd5b5061075860048036038101906107539190613b9d565b6117b7565b005b610774600480360381019061076f9190613c9e565b611aa8565b005b34801561078257600080fd5b5061079d60048036038101906107989190613c9e565b611e08565b005b3480156107ab57600080fd5b506107b4611e51565b6040516107c19190614cba565b60405180910390f35b3480156107d657600080fd5b506107df611e57565b6040516107ec9190614814565b60405180910390f35b34801561080157600080fd5b5061081c60048036038101906108179190613c9e565b611e81565b005b34801561082a57600080fd5b50610833611eca565b60405161084091906148b8565b60405180910390f35b34801561085557600080fd5b5061085e611f5c565b60405161086b9190614cba565b60405180910390f35b34801561088057600080fd5b50610889611f66565b6040516108969190614cba565b60405180910390f35b3480156108ab57600080fd5b506108c660048036038101906108c19190613b25565b611f6c565b005b3480156108d457600080fd5b506108ef60048036038101906108ea9190613b9d565b6120ed565b005b3480156108fd57600080fd5b5061091860048036038101906109139190613be2565b6122b4565b005b34801561092657600080fd5b5061092f612347565b60405161093c9190614cba565b60405180910390f35b34801561095157600080fd5b5061096c60048036038101906109679190613aaa565b612390565b005b34801561097a57600080fd5b506109836123f2565b6040516109909190614cba565b60405180910390f35b3480156109a557600080fd5b506109ae612401565b6040516109bb9190614cba565b60405180910390f35b3480156109d057600080fd5b506109eb60048036038101906109e69190613c9e565b612407565b6040516109f891906148b8565b60405180910390f35b348015610a0d57600080fd5b50610a286004803603810190610a239190613a1f565b6124ae565b604051610a35919061489d565b60405180910390f35b348015610a4a57600080fd5b50610a656004803603810190610a6091906139f6565b612542565b005b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ad8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610acf90614b1a565b60405180910390fd5b601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b925750610b918261263a565b5b9050919050565b606060008054610ba890614fd6565b80601f0160208091040260200160405190810160405280929190818152602001828054610bd490614fd6565b8015610c215780601f10610bf657610100808354040283529160200191610c21565b820191906000526020600020905b815481529060010190602001808311610c0457829003601f168201915b5050505050905090565b6000610c368261271c565b610c75576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6c90614aba565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610cbb82611569565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610d2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2390614b9a565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d4b612788565b73ffffffffffffffffffffffffffffffffffffffff161480610d7a5750610d7981610d74612788565b6124ae565b5b610db9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db090614a3a565b60405180910390fd5b610dc38383612790565b505050565b6000600880549050905090565b61271081565b600d60009054906101000a900460ff1681565b610dff610df9612788565b82612849565b610e3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3590614bda565b60405180910390fd5b610e49838383612927565b505050565b600d60019054906101000a900460ff1681565b6000601160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000610ec28361161b565b8210610f03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610efa9061493a565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b3373ffffffffffffffffffffffffffffffffffffffff16610f7b611e57565b73ffffffffffffffffffffffffffffffffffffffff1614610f9b57600080fd5b6000479050610fa8611e57565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610fed573d6000803e3d6000fd5b5050565b612710610ffc610dc8565b111561103d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611034906149ba565b60405180910390fd5b611045611e57565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146110c757600d60009054906101000a900460ff166110c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110bd9061491a565b60405180910390fd5b5b600f5481111561110c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161110390614c9a565b60405180910390fd5b61271081611118610dc8565b6111229190614e0b565b1115611163576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115a90614bba565b60405180910390fd5b61271061116e610dc8565b11156111af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a690614c1a565b60405180910390fd5b600e548111156111f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111eb90614b7a565b60405180910390fd5b80600b546112029190614e92565b341015611244576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123b90614c3a565b60405180910390fd5b60005b818110156112b3577f55f284809f4c5b7377fbe62f2feeb9686e3834dcae5f3ca955140fe6547cd355611278610dc8565b84604051611287929190614cd5565b60405180910390a16112a08361129b610dc8565b612b83565b80806112ab90615008565b915050611247565b505050565b6112d383838360405180602001604052806000815250612390565b505050565b606060006112e58361161b565b905060008167ffffffffffffffff811115611329577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156113575781602001602082028036833780820191505090505b50905060005b828110156113c75761136f8582610eb7565b8282815181106113a8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080806113bf90615008565b91505061135d565b508092505050919050565b60006113dc611e57565b905090565b3373ffffffffffffffffffffffffffffffffffffffff16611400611e57565b73ffffffffffffffffffffffffffffffffffffffff161461142057600080fd5b80600e8190555050565b6000611434610dc8565b8210611475576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161146c90614bfa565b60405180910390fd5b600882815481106114af577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b3373ffffffffffffffffffffffffffffffffffffffff166114e0611e57565b73ffffffffffffffffffffffffffffffffffffffff161461150057600080fd5b80600c90805190602001906115169291906137d0565b5050565b3373ffffffffffffffffffffffffffffffffffffffff16611539611e57565b73ffffffffffffffffffffffffffffffffffffffff161461155957600080fd5b8060108190555050565b60105481565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611612576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160990614a7a565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561168c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168390614a5a565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6116db612788565b73ffffffffffffffffffffffffffffffffffffffff166116f9611e57565b73ffffffffffffffffffffffffffffffffffffffff161461174f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174690614afa565b60405180910390fd5b6117596000612ba1565b565b3373ffffffffffffffffffffffffffffffffffffffff1661177a611e57565b73ffffffffffffffffffffffffffffffffffffffff161461179a57600080fd5b80600d60016101000a81548160ff02191690831515021790555050565b3373ffffffffffffffffffffffffffffffffffffffff166117d6611e57565b73ffffffffffffffffffffffffffffffffffffffff16146117f657600080fd5b60005b82829050811015611aa357600073ffffffffffffffffffffffffffffffffffffffff16838383818110611855577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b905060200201602081019061186a91906139f6565b73ffffffffffffffffffffffffffffffffffffffff1614156118c1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118b890614ada565b60405180910390fd5b600160116000858585818110611900577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b905060200201602081019061191591906139f6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506000601260008585858181106119a5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020160208101906119ba91906139f6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411611a01576000611a8f565b60126000848484818110611a3e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9050602002016020810190611a5391906139f6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020545b508080611a9b90615008565b9150506117f9565b505050565b612710611ab3610dc8565b1115611af4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aeb906149ba565b60405180910390fd5b600d60019054906101000a900460ff16611b43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3a906148da565b60405180910390fd5b601160003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611bcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc6906148fa565b60405180910390fd5b612710611bda610dc8565b10611c1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1190614c7a565b60405180910390fd5b601054811115611c5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c5690614c9a565b60405180910390fd5b60105481601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054611cad9190614e0b565b1115611cee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ce590614c5a565b60405180910390fd5b80600b54611cfc9190614e92565b341015611d3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d3590614c3a565b60405180910390fd5b60005b81811015611e04576001601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611d999190614e0b565b925050819055507f55f284809f4c5b7377fbe62f2feeb9686e3834dcae5f3ca955140fe6547cd355611dc9610dc8565b33604051611dd8929190614cd5565b60405180910390a1611df133611dec610dc8565b612b83565b8080611dfc90615008565b915050611d41565b5050565b3373ffffffffffffffffffffffffffffffffffffffff16611e27611e57565b73ffffffffffffffffffffffffffffffffffffffff1614611e4757600080fd5b80600f8190555050565b600f5481565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b3373ffffffffffffffffffffffffffffffffffffffff16611ea0611e57565b73ffffffffffffffffffffffffffffffffffffffff1614611ec057600080fd5b80600b8190555050565b606060018054611ed990614fd6565b80601f0160208091040260200160405190810160405280929190818152602001828054611f0590614fd6565b8015611f525780601f10611f2757610100808354040283529160200191611f52565b820191906000526020600020905b815481529060010190602001808311611f3557829003601f168201915b5050505050905090565b6000600b54905090565b600e5481565b611f74612788565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611fe2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd9906149fa565b60405180910390fd5b8060056000611fef612788565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff1661209c612788565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516120e1919061489d565b60405180910390a35050565b3373ffffffffffffffffffffffffffffffffffffffff1661210c611e57565b73ffffffffffffffffffffffffffffffffffffffff161461212c57600080fd5b60005b828290508110156122af57600073ffffffffffffffffffffffffffffffffffffffff1683838381811061218b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020160208101906121a091906139f6565b73ffffffffffffffffffffffffffffffffffffffff1614156121f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121ee90614ada565b60405180910390fd5b600060116000858585818110612236577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b905060200201602081019061224b91906139f6565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806122a790615008565b91505061212f565b505050565b3373ffffffffffffffffffffffffffffffffffffffff166122d3611e57565b73ffffffffffffffffffffffffffffffffffffffff16146122f357600080fd5b80600d60006101000a81548160ff0219169083151502179055507f58655b75d3df612fe99ead00dbf0812d415d35078fe06217a94c0818bb13967f8160405161233c919061489d565b60405180910390a150565b60003373ffffffffffffffffffffffffffffffffffffffff16612368611e57565b73ffffffffffffffffffffffffffffffffffffffff161461238857600080fd5b600e54905090565b6123a161239b612788565b83612849565b6123e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123d790614bda565b60405180910390fd5b6123ec84848484612c67565b50505050565b60006123fc610dc8565b905090565b600b5481565b60606124128261271c565b612451576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161244890614b5a565b60405180910390fd5b600061245b612cc3565b9050600081511161247b57604051806020016040528060008152506124a6565b8061248584612d55565b6040516020016124969291906147f0565b6040516020818303038152906040525b915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b61254a612788565b73ffffffffffffffffffffffffffffffffffffffff16612568611e57565b73ffffffffffffffffffffffffffffffffffffffff16146125be576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125b590614afa565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561262e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126259061497a565b60405180910390fd5b61263781612ba1565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061270557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612715575061271482612f02565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661280383611569565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006128548261271c565b612893576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161288a90614a1a565b60405180910390fd5b600061289e83611569565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061290d57508373ffffffffffffffffffffffffffffffffffffffff166128f584610c2b565b73ffffffffffffffffffffffffffffffffffffffff16145b8061291e575061291d81856124ae565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661294782611569565b73ffffffffffffffffffffffffffffffffffffffff161461299d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161299490614b3a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a04906149da565b60405180910390fd5b612a18838383612f6c565b612a23600082612790565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a739190614eec565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612aca9190614e0b565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b612b9d828260405180602001604052806000815250613080565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612c72848484612927565b612c7e848484846130db565b612cbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cb49061495a565b60405180910390fd5b50505050565b6060600c8054612cd290614fd6565b80601f0160208091040260200160405190810160405280929190818152602001828054612cfe90614fd6565b8015612d4b5780601f10612d2057610100808354040283529160200191612d4b565b820191906000526020600020905b815481529060010190602001808311612d2e57829003601f168201915b5050505050905090565b60606000821415612d9d576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612efd565b600082905060005b60008214612dcf578080612db890615008565b915050600a82612dc89190614e61565b9150612da5565b60008167ffffffffffffffff811115612e11577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612e435781602001600182028036833780820191505090505b5090505b60008514612ef657600182612e5c9190614eec565b9150600a85612e6b9190615051565b6030612e779190614e0b565b60f81b818381518110612eb3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612eef9190614e61565b9450612e47565b8093505050505b919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612f77838383613272565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612fba57612fb581613277565b612ff9565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612ff857612ff783826132c0565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561303c576130378161342d565b61307b565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461307a576130798282613570565b5b5b505050565b61308a83836135ef565b61309760008484846130db565b6130d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130cd9061495a565b60405180910390fd5b505050565b60006130fc8473ffffffffffffffffffffffffffffffffffffffff166137bd565b15613265578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613125612788565b8786866040518563ffffffff1660e01b8152600401613147949392919061482f565b602060405180830381600087803b15801561316157600080fd5b505af192505050801561319257506040513d601f19601f8201168201806040525081019061318f9190613c34565b60015b613215573d80600081146131c2576040519150601f19603f3d011682016040523d82523d6000602084013e6131c7565b606091505b5060008151141561320d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132049061495a565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061326a565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016132cd8461161b565b6132d79190614eec565b90506000600760008481526020019081526020016000205490508181146133bc576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506134419190614eec565b9050600060096000848152602001908152602001600020549050600060088381548110613497577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905080600883815481106134df577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600960008381526020019081526020016000208190555060096000858152602001908152602001600020600090556008805480613554577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b600061357b8361161b565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561365f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161365690614a9a565b60405180910390fd5b6136688161271c565b156136a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161369f9061499a565b60405180910390fd5b6136b460008383612f6c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546137049190614e0b565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b8280546137dc90614fd6565b90600052602060002090601f0160209004810192826137fe5760008555613845565b82601f1061381757805160ff1916838001178555613845565b82800160010185558215613845579182015b82811115613844578251825591602001919060010190613829565b5b5090506138529190613856565b5090565b5b8082111561386f576000816000905550600101613857565b5090565b600061388661388184614d2f565b614cfe565b90508281526020810184848401111561389e57600080fd5b6138a9848285614f94565b509392505050565b60006138c46138bf84614d5f565b614cfe565b9050828152602081018484840111156138dc57600080fd5b6138e7848285614f94565b509392505050565b6000813590506138fe8161514f565b92915050565b60008083601f84011261391657600080fd5b8235905067ffffffffffffffff81111561392f57600080fd5b60208301915083602082028301111561394757600080fd5b9250929050565b60008135905061395d81615166565b92915050565b6000813590506139728161517d565b92915050565b6000815190506139878161517d565b92915050565b600082601f83011261399e57600080fd5b81356139ae848260208601613873565b91505092915050565b600082601f8301126139c857600080fd5b81356139d88482602086016138b1565b91505092915050565b6000813590506139f081615194565b92915050565b600060208284031215613a0857600080fd5b6000613a16848285016138ef565b91505092915050565b60008060408385031215613a3257600080fd5b6000613a40858286016138ef565b9250506020613a51858286016138ef565b9150509250929050565b600080600060608486031215613a7057600080fd5b6000613a7e868287016138ef565b9350506020613a8f868287016138ef565b9250506040613aa0868287016139e1565b9150509250925092565b60008060008060808587031215613ac057600080fd5b6000613ace878288016138ef565b9450506020613adf878288016138ef565b9350506040613af0878288016139e1565b925050606085013567ffffffffffffffff811115613b0d57600080fd5b613b198782880161398d565b91505092959194509250565b60008060408385031215613b3857600080fd5b6000613b46858286016138ef565b9250506020613b578582860161394e565b9150509250929050565b60008060408385031215613b7457600080fd5b6000613b82858286016138ef565b9250506020613b93858286016139e1565b9150509250929050565b60008060208385031215613bb057600080fd5b600083013567ffffffffffffffff811115613bca57600080fd5b613bd685828601613904565b92509250509250929050565b600060208284031215613bf457600080fd5b6000613c028482850161394e565b91505092915050565b600060208284031215613c1d57600080fd5b6000613c2b84828501613963565b91505092915050565b600060208284031215613c4657600080fd5b6000613c5484828501613978565b91505092915050565b600060208284031215613c6f57600080fd5b600082013567ffffffffffffffff811115613c8957600080fd5b613c95848285016139b7565b91505092915050565b600060208284031215613cb057600080fd5b6000613cbe848285016139e1565b91505092915050565b6000613cd383836147d2565b60208301905092915050565b613ce881614f20565b82525050565b6000613cf982614d9f565b613d038185614dcd565b9350613d0e83614d8f565b8060005b83811015613d3f578151613d268882613cc7565b9750613d3183614dc0565b925050600181019050613d12565b5085935050505092915050565b613d5581614f32565b82525050565b6000613d6682614daa565b613d708185614dde565b9350613d80818560208601614fa3565b613d898161513e565b840191505092915050565b6000613d9f82614db5565b613da98185614def565b9350613db9818560208601614fa3565b613dc28161513e565b840191505092915050565b6000613dd882614db5565b613de28185614e00565b9350613df2818560208601614fa3565b80840191505092915050565b6000613e0b601883614def565b91507f416c6c6f77204c697374206973206e6f742061637469766500000000000000006000830152602082019050919050565b6000613e4b601d83614def565b91507f596f7520617265206e6f74206f6e2074686520416c6c6f77204c6973740000006000830152602082019050919050565b6000613e8b601d83614def565b91507f53616c65206973206e6f74206163746976652063757272656e746c792e0000006000830152602082019050919050565b6000613ecb602b83614def565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b6000613f31603283614def565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b6000613f97602683614def565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000613ffd601c83614def565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b600061403d600f83614def565b91507f53616c652068617320656e6465642e00000000000000000000000000000000006000830152602082019050919050565b600061407d602483614def565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006140e3601983614def565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000614123602c83614def565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000614189603883614def565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b60006141ef602a83614def565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000614255602983614def565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b60006142bb602083614def565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b60006142fb602c83614def565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000614361601883614def565b91507f43616e2774206164642061206e756c6c206164647265737300000000000000006000830152602082019050919050565b60006143a1602083614def565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006143e1601e83614def565b91507f5a65726f2061646472657373206e6f74206f6e20416c6c6f77204c69737400006000830152602082019050919050565b6000614421602983614def565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b6000614487602f83614def565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b60006144ed601e83614def565b91507f45786365656473206d6178696d756d20616c6c6f77656420746f6b656e7300006000830152602082019050919050565b600061452d602183614def565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614593601683614def565b91507f546f74616c20737570706c792065786365656465642e000000000000000000006000830152602082019050919050565b60006145d3603183614def565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000614639602c83614def565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b600061469f601383614def565b91507f546f74616c20737570706c79207370656e742e000000000000000000000000006000830152602082019050919050565b60006146df601b83614def565b91507f496e7375666669656e742045544820616d6f756e742073656e742e00000000006000830152602082019050919050565b600061471f601c83614def565b91507f50757263686173652065786365656473206d617820616c6c6f776564000000006000830152602082019050919050565b600061475f601b83614def565b91507f416c6c20746f6b656e732068617665206265656e206d696e74656400000000006000830152602082019050919050565b600061479f602083614def565b91507f43616e6e6f742070757263686173652074686973206d616e7920746f6b656e736000830152602082019050919050565b6147db81614f8a565b82525050565b6147ea81614f8a565b82525050565b60006147fc8285613dcd565b91506148088284613dcd565b91508190509392505050565b60006020820190506148296000830184613cdf565b92915050565b60006080820190506148446000830187613cdf565b6148516020830186613cdf565b61485e60408301856147e1565b81810360608301526148708184613d5b565b905095945050505050565b600060208201905081810360008301526148958184613cee565b905092915050565b60006020820190506148b26000830184613d4c565b92915050565b600060208201905081810360008301526148d28184613d94565b905092915050565b600060208201905081810360008301526148f381613dfe565b9050919050565b6000602082019050818103600083015261491381613e3e565b9050919050565b6000602082019050818103600083015261493381613e7e565b9050919050565b6000602082019050818103600083015261495381613ebe565b9050919050565b6000602082019050818103600083015261497381613f24565b9050919050565b6000602082019050818103600083015261499381613f8a565b9050919050565b600060208201905081810360008301526149b381613ff0565b9050919050565b600060208201905081810360008301526149d381614030565b9050919050565b600060208201905081810360008301526149f381614070565b9050919050565b60006020820190508181036000830152614a13816140d6565b9050919050565b60006020820190508181036000830152614a3381614116565b9050919050565b60006020820190508181036000830152614a538161417c565b9050919050565b60006020820190508181036000830152614a73816141e2565b9050919050565b60006020820190508181036000830152614a9381614248565b9050919050565b60006020820190508181036000830152614ab3816142ae565b9050919050565b60006020820190508181036000830152614ad3816142ee565b9050919050565b60006020820190508181036000830152614af381614354565b9050919050565b60006020820190508181036000830152614b1381614394565b9050919050565b60006020820190508181036000830152614b33816143d4565b9050919050565b60006020820190508181036000830152614b5381614414565b9050919050565b60006020820190508181036000830152614b738161447a565b9050919050565b60006020820190508181036000830152614b93816144e0565b9050919050565b60006020820190508181036000830152614bb381614520565b9050919050565b60006020820190508181036000830152614bd381614586565b9050919050565b60006020820190508181036000830152614bf3816145c6565b9050919050565b60006020820190508181036000830152614c138161462c565b9050919050565b60006020820190508181036000830152614c3381614692565b9050919050565b60006020820190508181036000830152614c53816146d2565b9050919050565b60006020820190508181036000830152614c7381614712565b9050919050565b60006020820190508181036000830152614c9381614752565b9050919050565b60006020820190508181036000830152614cb381614792565b9050919050565b6000602082019050614ccf60008301846147e1565b92915050565b6000604082019050614cea60008301856147e1565b614cf76020830184613cdf565b9392505050565b6000604051905081810181811067ffffffffffffffff82111715614d2557614d2461510f565b5b8060405250919050565b600067ffffffffffffffff821115614d4a57614d4961510f565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff821115614d7a57614d7961510f565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000614e1682614f8a565b9150614e2183614f8a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614e5657614e55615082565b5b828201905092915050565b6000614e6c82614f8a565b9150614e7783614f8a565b925082614e8757614e866150b1565b5b828204905092915050565b6000614e9d82614f8a565b9150614ea883614f8a565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614ee157614ee0615082565b5b828202905092915050565b6000614ef782614f8a565b9150614f0283614f8a565b925082821015614f1557614f14615082565b5b828203905092915050565b6000614f2b82614f6a565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015614fc1578082015181840152602081019050614fa6565b83811115614fd0576000848401525b50505050565b60006002820490506001821680614fee57607f821691505b60208210811415615002576150016150e0565b5b50919050565b600061501382614f8a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561504657615045615082565b5b600182019050919050565b600061505c82614f8a565b915061506783614f8a565b925082615077576150766150b1565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b61515881614f20565b811461516357600080fd5b50565b61516f81614f32565b811461517a57600080fd5b50565b61518681614f3e565b811461519157600080fd5b50565b61519d81614f8a565b81146151a857600080fd5b5056fea26469706673582212207e88413b235e52d8f5e4585f5d12d82b4ac3bf88a3921b4f2c00bf4efe2163a464736f6c63430008000033

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

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002468747470733a2f2f6372617a796c656d7572636c75622e636f6d2f6d657461646174612f00000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : baseURI (string): https://crazylemurclub.com/metadata/

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000024
Arg [2] : 68747470733a2f2f6372617a796c656d7572636c75622e636f6d2f6d65746164
Arg [3] : 6174612f00000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

116:4984:2:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2301:184;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;909:222:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2349:98:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3860:217;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3398:401;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1534:111:5;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;314:46:2;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;240:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4724:330:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;272:37:2;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1930:105;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1210:253:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4953:145:2;;;;;;;;;;;;;:::i;:::-;;3187:714;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5120:179:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4643:306:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2990:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;987:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1717:230:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2578:99:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1467:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;459:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2052:235:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1790:205;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1598:92:11;;;;;;;;;;;;;:::i;:::-;;1223:128:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1593:333;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3905:734;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1355:108;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;419:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;966:85:11;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2489::2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2511:102:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2814:79:2;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;364:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4144:290:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2039:258:2;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1113:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2681:129;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5365:320:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2897:89:2;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;173:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2679:329:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4500:162;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1839:189:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2301:184:2;2367:7;2406:1;2389:19;;:5;:19;;;;2381:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;2456:17;:24;2474:5;2456:24;;;;;;;;;;;;;;;;2449:31;;2301:184;;;:::o;909:222:5:-;1011:4;1049:35;1034:50;;;:11;:50;;;;:90;;;;1088:36;1112:11;1088:23;:36::i;:::-;1034:90;1027:97;;909:222;;;:::o;2349:98:4:-;2403:13;2435:5;2428:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2349:98;:::o;3860:217::-;3936:7;3963:16;3971:7;3963;:16::i;:::-;3955:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;4046:15;:24;4062:7;4046:24;;;;;;;;;;;;;;;;;;;;;4039:31;;3860:217;;;:::o;3398:401::-;3478:13;3494:23;3509:7;3494:14;:23::i;:::-;3478:39;;3541:5;3535:11;;:2;:11;;;;3527:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;3632:5;3616:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;3641:37;3658:5;3665:12;:10;:12::i;:::-;3641:16;:37::i;:::-;3616:62;3595:165;;;;;;;;;;;;:::i;:::-;;;;;;;;;3771:21;3780:2;3784:7;3771:8;:21::i;:::-;3398:401;;;:::o;1534:111:5:-;1595:7;1621:10;:17;;;;1614:24;;1534:111;:::o;314:46:2:-;355:5;314:46;:::o;240:28::-;;;;;;;;;;;;;:::o;4724:330:4:-;4913:41;4932:12;:10;:12::i;:::-;4946:7;4913:18;:41::i;:::-;4905:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;5019:28;5029:4;5035:2;5039:7;5019:9;:28::i;:::-;4724:330;;;:::o;272:37:2:-;;;;;;;;;;;;;:::o;1930:105::-;1995:4;2014:10;:16;2025:4;2014:16;;;;;;;;;;;;;;;;;;;;;;;;;2007:23;;1930:105;;;:::o;1210:253:5:-;1307:7;1342:23;1359:5;1342:16;:23::i;:::-;1334:5;:31;1326:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;1430:12;:19;1443:5;1430:19;;;;;;;;;;;;;;;:26;1450:5;1430:26;;;;;;;;;;;;1423:33;;1210:253;;;;:::o;4953:145:2:-;960:10;949:21;;:7;:5;:7::i;:::-;:21;;;941:30;;;;;;5003:12:::1;5018:21;5003:36;;5053:7;:5;:7::i;:::-;5045:25;;:48;5071:21;5045:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;977:1;4953:145::o:0;3187:714::-;355:5;842:13;:11;:13::i;:::-;:31;;834:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;3280:7:::1;:5;:7::i;:::-;3266:21;;:10;:21;;;3262:92;;3305:8;;;;;;;;;;;3297:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;3262:92;3377:16;;3367:6;:26;;3359:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;355:5;3460:6;3444:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:40;;3436:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;355:5;3525:13;:11;:13::i;:::-;:31;;3517:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;3611:31;;3601:6;:41;;3586:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;3727:6;3715:9;;:18;;;;:::i;:::-;3702:9;:31;;3694:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;3777:9;3772:125;3796:6;3792:1;:10;3772:125;;;3822:31;3834:13;:11;:13::i;:::-;3849:3;3822:31;;;;;;;:::i;:::-;;;;;;;;3861:29;3871:3;3876:13;:11;:13::i;:::-;3861:9;:29::i;:::-;3804:3;;;;;:::i;:::-;;;;3772:125;;;;3187:714:::0;;:::o;5120:179:4:-;5253:39;5270:4;5276:2;5280:7;5253:39;;;;;;;;;;;;:16;:39::i;:::-;5120:179;;;:::o;4643:306:2:-;4704:16;4728:15;4746:17;4756:6;4746:9;:17::i;:::-;4728:35;;4769:25;4811:10;4797:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4769:53;;4833:6;4829:95;4849:10;4845:1;:14;4829:95;;;4887:30;4907:6;4915:1;4887:19;:30::i;:::-;4873:8;4882:1;4873:11;;;;;;;;;;;;;;;;;;;;;:44;;;;;4861:3;;;;;:::i;:::-;;;;4829:95;;;;4936:8;4929:15;;;;4643:306;;;:::o;2990:83::-;3039:7;3061;:5;:7::i;:::-;3054:14;;2990:83;:::o;987:122::-;960:10;949:21;;:7;:5;:7::i;:::-;:21;;;941:30;;;;;;1098:6:::1;1064:31;:40;;;;987:122:::0;:::o;1717:230:5:-;1792:7;1827:30;:28;:30::i;:::-;1819:5;:38;1811:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;1923:10;1934:5;1923:17;;;;;;;;;;;;;;;;;;;;;;;;1916:24;;1717:230;;;:::o;2578:99:2:-;960:10;949:21;;:7;:5;:7::i;:::-;:21;;;941:30;;;;;;2665:7:::1;2649:13;:23;;;;;;;;;;;;:::i;:::-;;2578:99:::0;:::o;1467:122::-;960:10;949:21;;:7;:5;:7::i;:::-;:21;;;941:30;;;;;;1577:7:::1;1551:23;:33;;;;1467:122:::0;:::o;459:42::-;;;;:::o;2052:235:4:-;2124:7;2143:13;2159:7;:16;2167:7;2159:16;;;;;;;;;;;;;;;;;;;;;2143:32;;2210:1;2193:19;;:5;:19;;;;2185:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2275:5;2268:12;;;2052:235;;;:::o;1790:205::-;1862:7;1906:1;1889:19;;:5;:19;;;;1881:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;1972:9;:16;1982:5;1972:16;;;;;;;;;;;;;;;;1965:23;;1790:205;;;:::o;1598:92:11:-;1189:12;:10;:12::i;:::-;1178:23;;:7;:5;:7::i;:::-;:23;;;1170:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1662:21:::1;1680:1;1662:9;:21::i;:::-;1598:92::o:0;1223:128:2:-;960:10;949:21;;:7;:5;:7::i;:::-;:21;;;941:30;;;;;;1328:18:::1;1308:17;;:38;;;;;;;;;;;;;;;;;;1223:128:::0;:::o;1593:333::-;960:10;949:21;;:7;:5;:7::i;:::-;:21;;;941:30;;;;;;1682:9:::1;1677:245;1701:9;;:16;;1697:1;:20;1677:245;;;1764:1;1740:26;;:9;;1750:1;1740:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:26;;;;1732:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;1830:4;1803:10;:24;1814:9;;1824:1;1814:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;1803:24;;;;;;;;;;;;;;;;:31;;;;;;;;;;;;;;;;;;1876:1;1842:17;:31;1860:9;;1870:1;1860:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;1842:31;;;;;;;;;;;;;;;;:35;:73;;1914:1;1842:73;;;1880:17;:31;1898:9;;1908:1;1898:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;1880:31;;;;;;;;;;;;;;;;1842:73;;1719:3;;;;;:::i;:::-;;;;1677:245;;;;1593:333:::0;;:::o;3905:734::-;355:5;842:13;:11;:13::i;:::-;:31;;834:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;3982:17:::1;;;;;;;;;;;3974:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;4042:10;:22;4053:10;4042:22;;;;;;;;;;;;;;;;;;;;;;;;;4034:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;355:5;4112:13;:11;:13::i;:::-;:30;4104:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;4198:23;;4188:6;:33;;4180:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;4314:23;;4304:6;4272:17;:29;4290:10;4272:29;;;;;;;;;;;;;;;;:38;;;;:::i;:::-;:65;;4264:106;;;;;;;;;;;;:::i;:::-;;;;;;;;;4409:6;4397:9;;:18;;;;:::i;:::-;4384:9;:31;;4376:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;4459:9;4454:181;4478:6;4474:1;:10;4454:181;;;4532:1;4499:17;:29;4517:10;4499:29;;;;;;;;;;;;;;;;:34;;;;;;;:::i;:::-;;;;;;;;4546:38;4558:13;:11;:13::i;:::-;4573:10;4546:38;;;;;;;:::i;:::-;;;;;;;;4592:36;4602:10;4614:13;:11;:13::i;:::-;4592:9;:36::i;:::-;4486:3;;;;;:::i;:::-;;;;4454:181;;;;3905:734:::0;:::o;1355:108::-;960:10;949:21;;:7;:5;:7::i;:::-;:21;;;941:30;;;;;;1451:7:::1;1432:16;:26;;;;1355:108:::0;:::o;419:36::-;;;;:::o;966:85:11:-;1012:7;1038:6;;;;;;;;;;;1031:13;;966:85;:::o;2489::2:-;960:10;949:21;;:7;:5;:7::i;:::-;:21;;;941:30;;;;;;2563:6:::1;2551:9;:18;;;;2489:85:::0;:::o;2511:102:4:-;2567:13;2599:7;2592:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2511:102;:::o;2814:79:2:-;2857:7;2879:9;;2872:16;;2814:79;:::o;364:51::-;;;;:::o;4144:290:4:-;4258:12;:10;:12::i;:::-;4246:24;;:8;:24;;;;4238:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;4356:8;4311:18;:32;4330:12;:10;:12::i;:::-;4311:32;;;;;;;;;;;;;;;:42;4344:8;4311:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;4408:8;4379:48;;4394:12;:10;:12::i;:::-;4379:48;;;4418:8;4379:48;;;;;;:::i;:::-;;;;;;;;4144:290;;:::o;2039:258:2:-;960:10;949:21;;:7;:5;:7::i;:::-;:21;;;941:30;;;;;;2133:9:::1;2128:165;2152:9;;:16;;2148:1;:20;2128:165;;;2215:1;2191:26;;:9;;2201:1;2191:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:26;;;;2183:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;2281:5;2254:10;:24;2265:9;;2275:1;2265:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;2254:24;;;;;;;;;;;;;;;;:32;;;;;;;;;;;;;;;;;;2170:3;;;;;:::i;:::-;;;;2128:165;;;;2039:258:::0;;:::o;1113:106::-;960:10;949:21;;:7;:5;:7::i;:::-;:21;;;941:30;;;;;;1181:3:::1;1170:8;;:14;;;;;;;;;;;;;;;;;;1195:19;1210:3;1195:19;;;;;;:::i;:::-;;;;;;;;1113:106:::0;:::o;2681:129::-;2752:7;960:10;949:21;;:7;:5;:7::i;:::-;:21;;;941:30;;;;;;2774:31:::1;;2767:38;;2681:129:::0;:::o;5365:320:4:-;5534:41;5553:12;:10;:12::i;:::-;5567:7;5534:18;:41::i;:::-;5526:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;5639:39;5653:4;5659:2;5663:7;5672:5;5639:13;:39::i;:::-;5365:320;;;;:::o;2897:89:2:-;2946:7;2968:13;:11;:13::i;:::-;2961:20;;2897:89;:::o;173:37::-;;;;:::o;2679:329:4:-;2752:13;2785:16;2793:7;2785;:16::i;:::-;2777:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;2864:21;2888:10;:8;:10::i;:::-;2864:34;;2939:1;2921:7;2915:21;:25;:86;;;;;;;;;;;;;;;;;2967:7;2976:18;:7;:16;:18::i;:::-;2950:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2915:86;2908:93;;;2679:329;;;:::o;4500:162::-;4597:4;4620:18;:25;4639:5;4620:25;;;;;;;;;;;;;;;:35;4646:8;4620:35;;;;;;;;;;;;;;;;;;;;;;;;;4613:42;;4500:162;;;;:::o;1839:189:11:-;1189:12;:10;:12::i;:::-;1178:23;;:7;:5;:7::i;:::-;:23;;;1170:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1947:1:::1;1927:22;;:8;:22;;;;1919:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2002:19;2012:8;2002:9;:19::i;:::-;1839:189:::0;:::o;1431:300:4:-;1533:4;1583:25;1568:40;;;:11;:40;;;;:104;;;;1639:33;1624:48;;;:11;:48;;;;1568:104;:156;;;;1688:36;1712:11;1688:23;:36::i;:::-;1568:156;1549:175;;1431:300;;;:::o;7157:125::-;7222:4;7273:1;7245:30;;:7;:16;7253:7;7245:16;;;;;;;;;;;;;;;;;;;;;:30;;;;7238:37;;7157:125;;;:::o;587:96:1:-;640:7;666:10;659:17;;587:96;:::o;11008:171:4:-;11109:2;11082:15;:24;11098:7;11082:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;11164:7;11160:2;11126:46;;11135:23;11150:7;11135:14;:23::i;:::-;11126:46;;;;;;;;;;;;11008:171;;:::o;7440:344::-;7533:4;7557:16;7565:7;7557;:16::i;:::-;7549:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;7632:13;7648:23;7663:7;7648:14;:23::i;:::-;7632:39;;7700:5;7689:16;;:7;:16;;;:51;;;;7733:7;7709:31;;:20;7721:7;7709:11;:20::i;:::-;:31;;;7689:51;:87;;;;7744:32;7761:5;7768:7;7744:16;:32::i;:::-;7689:87;7681:96;;;7440:344;;;;:::o;10337:560::-;10491:4;10464:31;;:23;10479:7;10464:14;:23::i;:::-;:31;;;10456:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;10573:1;10559:16;;:2;:16;;;;10551:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;10627:39;10648:4;10654:2;10658:7;10627:20;:39::i;:::-;10728:29;10745:1;10749:7;10728:8;:29::i;:::-;10787:1;10768:9;:15;10778:4;10768:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;10815:1;10798:9;:13;10808:2;10798:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;10845:2;10826:7;:16;10834:7;10826:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;10882:7;10878:2;10863:27;;10872:4;10863:27;;;;;;;;;;;;10337:560;;;:::o;8114:108::-;8189:26;8199:2;8203:7;8189:26;;;;;;;;;;;;:9;:26::i;:::-;8114:108;;:::o;2034:169:11:-;2089:16;2108:6;;;;;;;;;;;2089:25;;2133:8;2124:6;;:17;;;;;;;;;;;;;;;;;;2187:8;2156:40;;2177:8;2156:40;;;;;;;;;;;;2034:169;;:::o;6547:307:4:-;6698:28;6708:4;6714:2;6718:7;6698:9;:28::i;:::-;6744:48;6767:4;6773:2;6777:7;6786:5;6744:22;:48::i;:::-;6736:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;6547:307;;;;:::o;3077:106:2:-;3137:13;3165;3158:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3077:106;:::o;275:703:12:-;331:13;557:1;548:5;:10;544:51;;;574:10;;;;;;;;;;;;;;;;;;;;;544:51;604:12;619:5;604:20;;634:14;658:75;673:1;665:4;:9;658:75;;690:8;;;;;:::i;:::-;;;;720:2;712:10;;;;;:::i;:::-;;;658:75;;;742:19;774:6;764:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;742:39;;791:150;807:1;798:5;:10;791:150;;834:1;824:11;;;;;:::i;:::-;;;900:2;892:5;:10;;;;:::i;:::-;879:2;:24;;;;:::i;:::-;866:39;;849:6;856;849:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;928:2;919:11;;;;;:::i;:::-;;;791:150;;;964:6;950:21;;;;;275:703;;;;:::o;763:155:3:-;848:4;886:25;871:40;;;:11;:40;;;;864:47;;763:155;;;:::o;2543:572:5:-;2682:45;2709:4;2715:2;2719:7;2682:26;:45::i;:::-;2758:1;2742:18;;:4;:18;;;2738:183;;;2776:40;2808:7;2776:31;:40::i;:::-;2738:183;;;2845:2;2837:10;;:4;:10;;;2833:88;;2863:47;2896:4;2902:7;2863:32;:47::i;:::-;2833:88;2738:183;2948:1;2934:16;;:2;:16;;;2930:179;;;2966:45;3003:7;2966:36;:45::i;:::-;2930:179;;;3038:4;3032:10;;:2;:10;;;3028:81;;3058:40;3086:2;3090:7;3058:27;:40::i;:::-;3028:81;2930:179;2543:572;;;:::o;8443:311:4:-;8568:18;8574:2;8578:7;8568:5;:18::i;:::-;8617:54;8648:1;8652:2;8656:7;8665:5;8617:22;:54::i;:::-;8596:151;;;;;;;;;;;;:::i;:::-;;;;;;;;;8443:311;;;:::o;11732:778::-;11882:4;11902:15;:2;:13;;;:15::i;:::-;11898:606;;;11953:2;11937:36;;;11974:12;:10;:12::i;:::-;11988:4;11994:7;12003:5;11937:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;11933:519;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12193:1;12176:6;:13;:18;12172:266;;;12218:60;;;;;;;;;;:::i;:::-;;;;;;;;12172:266;12390:6;12384:13;12375:6;12371:2;12367:15;12360:38;11933:519;12069:41;;;12059:51;;;:6;:51;;;;12052:58;;;;;11898:606;12489:4;12482:11;;11732:778;;;;;;;:::o;13066:122::-;;;;:::o;3821:161:5:-;3924:10;:17;;;;3897:15;:24;3913:7;3897:24;;;;;;;;;;;:44;;;;3951:10;3967:7;3951:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3821:161;:::o;4599:970::-;4861:22;4911:1;4886:22;4903:4;4886:16;:22::i;:::-;:26;;;;:::i;:::-;4861:51;;4922:18;4943:17;:26;4961:7;4943:26;;;;;;;;;;;;4922:47;;5087:14;5073:10;:28;5069:323;;5117:19;5139:12;:18;5152:4;5139:18;;;;;;;;;;;;;;;:34;5158:14;5139:34;;;;;;;;;;;;5117:56;;5221:11;5188:12;:18;5201:4;5188:18;;;;;;;;;;;;;;;:30;5207:10;5188:30;;;;;;;;;;;:44;;;;5337:10;5304:17;:30;5322:11;5304:30;;;;;;;;;;;:43;;;;5069:323;;5485:17;:26;5503:7;5485:26;;;;;;;;;;;5478:33;;;5528:12;:18;5541:4;5528:18;;;;;;;;;;;;;;;:34;5547:14;5528:34;;;;;;;;;;;5521:41;;;4599:970;;;;:::o;5857:1061::-;6106:22;6151:1;6131:10;:17;;;;:21;;;;:::i;:::-;6106:46;;6162:18;6183:15;:24;6199:7;6183:24;;;;;;;;;;;;6162:45;;6529:19;6551:10;6562:14;6551:26;;;;;;;;;;;;;;;;;;;;;;;;6529:48;;6613:11;6588:10;6599;6588:22;;;;;;;;;;;;;;;;;;;;;;;:36;;;;6723:10;6692:15;:28;6708:11;6692:28;;;;;;;;;;;:41;;;;6861:15;:24;6877:7;6861:24;;;;;;;;;;;6854:31;;;6895:10;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5857:1061;;;;:::o;3409:217::-;3493:14;3510:20;3527:2;3510:16;:20::i;:::-;3493:37;;3567:7;3540:12;:16;3553:2;3540:16;;;;;;;;;;;;;;;:24;3557:6;3540:24;;;;;;;;;;;:34;;;;3613:6;3584:17;:26;3602:7;3584:26;;;;;;;;;;;:35;;;;3409:217;;;:::o;9076:372:4:-;9169:1;9155:16;;:2;:16;;;;9147:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;9227:16;9235:7;9227;:16::i;:::-;9226:17;9218:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;9287:45;9316:1;9320:2;9324:7;9287:20;:45::i;:::-;9360:1;9343:9;:13;9353:2;9343:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;9390:2;9371:7;:16;9379:7;9371:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;9433:7;9429:2;9408:33;;9425:1;9408:33;;;;;;;;;;;;9076:372;;:::o;718:377:0:-;778:4;981:12;1046:7;1034:20;1026:28;;1087:1;1080:4;:8;1073:15;;;718:377;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:342:13:-;;109:64;124:48;165:6;124:48;:::i;:::-;109:64;:::i;:::-;100:73;;196:6;189:5;182:21;234:4;227:5;223:16;272:3;263:6;258:3;254:16;251:25;248:2;;;289:1;286;279:12;248:2;302:41;336:6;331:3;326;302:41;:::i;:::-;90:259;;;;;;:::o;355:344::-;;458:65;473:49;515:6;473:49;:::i;:::-;458:65;:::i;:::-;449:74;;546:6;539:5;532:21;584:4;577:5;573:16;622:3;613:6;608:3;604:16;601:25;598:2;;;639:1;636;629:12;598:2;652:41;686:6;681:3;676;652:41;:::i;:::-;439:260;;;;;;:::o;705:139::-;;789:6;776:20;767:29;;805:33;832:5;805:33;:::i;:::-;757:87;;;;:::o;867:367::-;;;1000:3;993:4;985:6;981:17;977:27;967:2;;1018:1;1015;1008:12;967:2;1054:6;1041:20;1031:30;;1084:18;1076:6;1073:30;1070:2;;;1116:1;1113;1106:12;1070:2;1153:4;1145:6;1141:17;1129:29;;1207:3;1199:4;1191:6;1187:17;1177:8;1173:32;1170:41;1167:2;;;1224:1;1221;1214:12;1167:2;957:277;;;;;:::o;1240:133::-;;1321:6;1308:20;1299:29;;1337:30;1361:5;1337:30;:::i;:::-;1289:84;;;;:::o;1379:137::-;;1462:6;1449:20;1440:29;;1478:32;1504:5;1478:32;:::i;:::-;1430:86;;;;:::o;1522:141::-;;1609:6;1603:13;1594:22;;1625:32;1651:5;1625:32;:::i;:::-;1584:79;;;;:::o;1682:271::-;;1786:3;1779:4;1771:6;1767:17;1763:27;1753:2;;1804:1;1801;1794:12;1753:2;1844:6;1831:20;1869:78;1943:3;1935:6;1928:4;1920:6;1916:17;1869:78;:::i;:::-;1860:87;;1743:210;;;;;:::o;1973:273::-;;2078:3;2071:4;2063:6;2059:17;2055:27;2045:2;;2096:1;2093;2086:12;2045:2;2136:6;2123:20;2161:79;2236:3;2228:6;2221:4;2213:6;2209:17;2161:79;:::i;:::-;2152:88;;2035:211;;;;;:::o;2252:139::-;;2336:6;2323:20;2314:29;;2352:33;2379:5;2352:33;:::i;:::-;2304:87;;;;:::o;2397:262::-;;2505:2;2493:9;2484:7;2480:23;2476:32;2473:2;;;2521:1;2518;2511:12;2473:2;2564:1;2589:53;2634:7;2625:6;2614:9;2610:22;2589:53;:::i;:::-;2579:63;;2535:117;2463:196;;;;:::o;2665:407::-;;;2790:2;2778:9;2769:7;2765:23;2761:32;2758:2;;;2806:1;2803;2796:12;2758:2;2849:1;2874:53;2919:7;2910:6;2899:9;2895:22;2874:53;:::i;:::-;2864:63;;2820:117;2976:2;3002:53;3047:7;3038:6;3027:9;3023:22;3002:53;:::i;:::-;2992:63;;2947:118;2748:324;;;;;:::o;3078:552::-;;;;3220:2;3208:9;3199:7;3195:23;3191:32;3188:2;;;3236:1;3233;3226:12;3188:2;3279:1;3304:53;3349:7;3340:6;3329:9;3325:22;3304:53;:::i;:::-;3294:63;;3250:117;3406:2;3432:53;3477:7;3468:6;3457:9;3453:22;3432:53;:::i;:::-;3422:63;;3377:118;3534:2;3560:53;3605:7;3596:6;3585:9;3581:22;3560:53;:::i;:::-;3550:63;;3505:118;3178:452;;;;;:::o;3636:809::-;;;;;3804:3;3792:9;3783:7;3779:23;3775:33;3772:2;;;3821:1;3818;3811:12;3772:2;3864:1;3889:53;3934:7;3925:6;3914:9;3910:22;3889:53;:::i;:::-;3879:63;;3835:117;3991:2;4017:53;4062:7;4053:6;4042:9;4038:22;4017:53;:::i;:::-;4007:63;;3962:118;4119:2;4145:53;4190:7;4181:6;4170:9;4166:22;4145:53;:::i;:::-;4135:63;;4090:118;4275:2;4264:9;4260:18;4247:32;4306:18;4298:6;4295:30;4292:2;;;4338:1;4335;4328:12;4292:2;4366:62;4420:7;4411:6;4400:9;4396:22;4366:62;:::i;:::-;4356:72;;4218:220;3762:683;;;;;;;:::o;4451:401::-;;;4573:2;4561:9;4552:7;4548:23;4544:32;4541:2;;;4589:1;4586;4579:12;4541:2;4632:1;4657:53;4702:7;4693:6;4682:9;4678:22;4657:53;:::i;:::-;4647:63;;4603:117;4759:2;4785:50;4827:7;4818:6;4807:9;4803:22;4785:50;:::i;:::-;4775:60;;4730:115;4531:321;;;;;:::o;4858:407::-;;;4983:2;4971:9;4962:7;4958:23;4954:32;4951:2;;;4999:1;4996;4989:12;4951:2;5042:1;5067:53;5112:7;5103:6;5092:9;5088:22;5067:53;:::i;:::-;5057:63;;5013:117;5169:2;5195:53;5240:7;5231:6;5220:9;5216:22;5195:53;:::i;:::-;5185:63;;5140:118;4941:324;;;;;:::o;5271:425::-;;;5414:2;5402:9;5393:7;5389:23;5385:32;5382:2;;;5430:1;5427;5420:12;5382:2;5501:1;5490:9;5486:17;5473:31;5531:18;5523:6;5520:30;5517:2;;;5563:1;5560;5553:12;5517:2;5599:80;5671:7;5662:6;5651:9;5647:22;5599:80;:::i;:::-;5581:98;;;;5444:245;5372:324;;;;;:::o;5702:256::-;;5807:2;5795:9;5786:7;5782:23;5778:32;5775:2;;;5823:1;5820;5813:12;5775:2;5866:1;5891:50;5933:7;5924:6;5913:9;5909:22;5891:50;:::i;:::-;5881:60;;5837:114;5765:193;;;;:::o;5964:260::-;;6071:2;6059:9;6050:7;6046:23;6042:32;6039:2;;;6087:1;6084;6077:12;6039:2;6130:1;6155:52;6199:7;6190:6;6179:9;6175:22;6155:52;:::i;:::-;6145:62;;6101:116;6029:195;;;;:::o;6230:282::-;;6348:2;6336:9;6327:7;6323:23;6319:32;6316:2;;;6364:1;6361;6354:12;6316:2;6407:1;6432:63;6487:7;6478:6;6467:9;6463:22;6432:63;:::i;:::-;6422:73;;6378:127;6306:206;;;;:::o;6518:375::-;;6636:2;6624:9;6615:7;6611:23;6607:32;6604:2;;;6652:1;6649;6642:12;6604:2;6723:1;6712:9;6708:17;6695:31;6753:18;6745:6;6742:30;6739:2;;;6785:1;6782;6775:12;6739:2;6813:63;6868:7;6859:6;6848:9;6844:22;6813:63;:::i;:::-;6803:73;;6666:220;6594:299;;;;:::o;6899:262::-;;7007:2;6995:9;6986:7;6982:23;6978:32;6975:2;;;7023:1;7020;7013:12;6975:2;7066:1;7091:53;7136:7;7127:6;7116:9;7112:22;7091:53;:::i;:::-;7081:63;;7037:117;6965:196;;;;:::o;7167:179::-;;7257:46;7299:3;7291:6;7257:46;:::i;:::-;7335:4;7330:3;7326:14;7312:28;;7247:99;;;;:::o;7352:118::-;7439:24;7457:5;7439:24;:::i;:::-;7434:3;7427:37;7417:53;;:::o;7506:732::-;;7654:54;7702:5;7654:54;:::i;:::-;7724:86;7803:6;7798:3;7724:86;:::i;:::-;7717:93;;7834:56;7884:5;7834:56;:::i;:::-;7913:7;7944:1;7929:284;7954:6;7951:1;7948:13;7929:284;;;8030:6;8024:13;8057:63;8116:3;8101:13;8057:63;:::i;:::-;8050:70;;8143:60;8196:6;8143:60;:::i;:::-;8133:70;;7989:224;7976:1;7973;7969:9;7964:14;;7929:284;;;7933:14;8229:3;8222:10;;7630:608;;;;;;;:::o;8244:109::-;8325:21;8340:5;8325:21;:::i;:::-;8320:3;8313:34;8303:50;;:::o;8359:360::-;;8473:38;8505:5;8473:38;:::i;:::-;8527:70;8590:6;8585:3;8527:70;:::i;:::-;8520:77;;8606:52;8651:6;8646:3;8639:4;8632:5;8628:16;8606:52;:::i;:::-;8683:29;8705:6;8683:29;:::i;:::-;8678:3;8674:39;8667:46;;8449:270;;;;;:::o;8725:364::-;;8841:39;8874:5;8841:39;:::i;:::-;8896:71;8960:6;8955:3;8896:71;:::i;:::-;8889:78;;8976:52;9021:6;9016:3;9009:4;9002:5;8998:16;8976:52;:::i;:::-;9053:29;9075:6;9053:29;:::i;:::-;9048:3;9044:39;9037:46;;8817:272;;;;;:::o;9095:377::-;;9229:39;9262:5;9229:39;:::i;:::-;9284:89;9366:6;9361:3;9284:89;:::i;:::-;9277:96;;9382:52;9427:6;9422:3;9415:4;9408:5;9404:16;9382:52;:::i;:::-;9459:6;9454:3;9450:16;9443:23;;9205:267;;;;;:::o;9478:322::-;;9641:67;9705:2;9700:3;9641:67;:::i;:::-;9634:74;;9738:26;9734:1;9729:3;9725:11;9718:47;9791:2;9786:3;9782:12;9775:19;;9624:176;;;:::o;9806:327::-;;9969:67;10033:2;10028:3;9969:67;:::i;:::-;9962:74;;10066:31;10062:1;10057:3;10053:11;10046:52;10124:2;10119:3;10115:12;10108:19;;9952:181;;;:::o;10139:327::-;;10302:67;10366:2;10361:3;10302:67;:::i;:::-;10295:74;;10399:31;10395:1;10390:3;10386:11;10379:52;10457:2;10452:3;10448:12;10441:19;;10285:181;;;:::o;10472:375::-;;10635:67;10699:2;10694:3;10635:67;:::i;:::-;10628:74;;10732:34;10728:1;10723:3;10719:11;10712:55;10798:13;10793:2;10788:3;10784:12;10777:35;10838:2;10833:3;10829:12;10822:19;;10618:229;;;:::o;10853:382::-;;11016:67;11080:2;11075:3;11016:67;:::i;:::-;11009:74;;11113:34;11109:1;11104:3;11100:11;11093:55;11179:20;11174:2;11169:3;11165:12;11158:42;11226:2;11221:3;11217:12;11210:19;;10999:236;;;:::o;11241:370::-;;11404:67;11468:2;11463:3;11404:67;:::i;:::-;11397:74;;11501:34;11497:1;11492:3;11488:11;11481:55;11567:8;11562:2;11557:3;11553:12;11546:30;11602:2;11597:3;11593:12;11586:19;;11387:224;;;:::o;11617:326::-;;11780:67;11844:2;11839:3;11780:67;:::i;:::-;11773:74;;11877:30;11873:1;11868:3;11864:11;11857:51;11934:2;11929:3;11925:12;11918:19;;11763:180;;;:::o;11949:313::-;;12112:67;12176:2;12171:3;12112:67;:::i;:::-;12105:74;;12209:17;12205:1;12200:3;12196:11;12189:38;12253:2;12248:3;12244:12;12237:19;;12095:167;;;:::o;12268:368::-;;12431:67;12495:2;12490:3;12431:67;:::i;:::-;12424:74;;12528:34;12524:1;12519:3;12515:11;12508:55;12594:6;12589:2;12584:3;12580:12;12573:28;12627:2;12622:3;12618:12;12611:19;;12414:222;;;:::o;12642:323::-;;12805:67;12869:2;12864:3;12805:67;:::i;:::-;12798:74;;12902:27;12898:1;12893:3;12889:11;12882:48;12956:2;12951:3;12947:12;12940:19;;12788:177;;;:::o;12971:376::-;;13134:67;13198:2;13193:3;13134:67;:::i;:::-;13127:74;;13231:34;13227:1;13222:3;13218:11;13211:55;13297:14;13292:2;13287:3;13283:12;13276:36;13338:2;13333:3;13329:12;13322:19;;13117:230;;;:::o;13353:388::-;;13516:67;13580:2;13575:3;13516:67;:::i;:::-;13509:74;;13613:34;13609:1;13604:3;13600:11;13593:55;13679:26;13674:2;13669:3;13665:12;13658:48;13732:2;13727:3;13723:12;13716:19;;13499:242;;;:::o;13747:374::-;;13910:67;13974:2;13969:3;13910:67;:::i;:::-;13903:74;;14007:34;14003:1;13998:3;13994:11;13987:55;14073:12;14068:2;14063:3;14059:12;14052:34;14112:2;14107:3;14103:12;14096:19;;13893:228;;;:::o;14127:373::-;;14290:67;14354:2;14349:3;14290:67;:::i;:::-;14283:74;;14387:34;14383:1;14378:3;14374:11;14367:55;14453:11;14448:2;14443:3;14439:12;14432:33;14491:2;14486:3;14482:12;14475:19;;14273:227;;;:::o;14506:330::-;;14669:67;14733:2;14728:3;14669:67;:::i;:::-;14662:74;;14766:34;14762:1;14757:3;14753:11;14746:55;14827:2;14822:3;14818:12;14811:19;;14652:184;;;:::o;14842:376::-;;15005:67;15069:2;15064:3;15005:67;:::i;:::-;14998:74;;15102:34;15098:1;15093:3;15089:11;15082:55;15168:14;15163:2;15158:3;15154:12;15147:36;15209:2;15204:3;15200:12;15193:19;;14988:230;;;:::o;15224:322::-;;15387:67;15451:2;15446:3;15387:67;:::i;:::-;15380:74;;15484:26;15480:1;15475:3;15471:11;15464:47;15537:2;15532:3;15528:12;15521:19;;15370:176;;;:::o;15552:330::-;;15715:67;15779:2;15774:3;15715:67;:::i;:::-;15708:74;;15812:34;15808:1;15803:3;15799:11;15792:55;15873:2;15868:3;15864:12;15857:19;;15698:184;;;:::o;15888:328::-;;16051:67;16115:2;16110:3;16051:67;:::i;:::-;16044:74;;16148:32;16144:1;16139:3;16135:11;16128:53;16207:2;16202:3;16198:12;16191:19;;16034:182;;;:::o;16222:373::-;;16385:67;16449:2;16444:3;16385:67;:::i;:::-;16378:74;;16482:34;16478:1;16473:3;16469:11;16462:55;16548:11;16543:2;16538:3;16534:12;16527:33;16586:2;16581:3;16577:12;16570:19;;16368:227;;;:::o;16601:379::-;;16764:67;16828:2;16823:3;16764:67;:::i;:::-;16757:74;;16861:34;16857:1;16852:3;16848:11;16841:55;16927:17;16922:2;16917:3;16913:12;16906:39;16971:2;16966:3;16962:12;16955:19;;16747:233;;;:::o;16986:328::-;;17149:67;17213:2;17208:3;17149:67;:::i;:::-;17142:74;;17246:32;17242:1;17237:3;17233:11;17226:53;17305:2;17300:3;17296:12;17289:19;;17132:182;;;:::o;17320:365::-;;17483:67;17547:2;17542:3;17483:67;:::i;:::-;17476:74;;17580:34;17576:1;17571:3;17567:11;17560:55;17646:3;17641:2;17636:3;17632:12;17625:25;17676:2;17671:3;17667:12;17660:19;;17466:219;;;:::o;17691:320::-;;17854:67;17918:2;17913:3;17854:67;:::i;:::-;17847:74;;17951:24;17947:1;17942:3;17938:11;17931:45;18002:2;17997:3;17993:12;17986:19;;17837:174;;;:::o;18017:381::-;;18180:67;18244:2;18239:3;18180:67;:::i;:::-;18173:74;;18277:34;18273:1;18268:3;18264:11;18257:55;18343:19;18338:2;18333:3;18329:12;18322:41;18389:2;18384:3;18380:12;18373:19;;18163:235;;;:::o;18404:376::-;;18567:67;18631:2;18626:3;18567:67;:::i;:::-;18560:74;;18664:34;18660:1;18655:3;18651:11;18644:55;18730:14;18725:2;18720:3;18716:12;18709:36;18771:2;18766:3;18762:12;18755:19;;18550:230;;;:::o;18786:317::-;;18949:67;19013:2;19008:3;18949:67;:::i;:::-;18942:74;;19046:21;19042:1;19037:3;19033:11;19026:42;19094:2;19089:3;19085:12;19078:19;;18932:171;;;:::o;19109:325::-;;19272:67;19336:2;19331:3;19272:67;:::i;:::-;19265:74;;19369:29;19365:1;19360:3;19356:11;19349:50;19425:2;19420:3;19416:12;19409:19;;19255:179;;;:::o;19440:326::-;;19603:67;19667:2;19662:3;19603:67;:::i;:::-;19596:74;;19700:30;19696:1;19691:3;19687:11;19680:51;19757:2;19752:3;19748:12;19741:19;;19586:180;;;:::o;19772:325::-;;19935:67;19999:2;19994:3;19935:67;:::i;:::-;19928:74;;20032:29;20028:1;20023:3;20019:11;20012:50;20088:2;20083:3;20079:12;20072:19;;19918:179;;;:::o;20103:330::-;;20266:67;20330:2;20325:3;20266:67;:::i;:::-;20259:74;;20363:34;20359:1;20354:3;20350:11;20343:55;20424:2;20419:3;20415:12;20408:19;;20249:184;;;:::o;20439:108::-;20516:24;20534:5;20516:24;:::i;:::-;20511:3;20504:37;20494:53;;:::o;20553:118::-;20640:24;20658:5;20640:24;:::i;:::-;20635:3;20628:37;20618:53;;:::o;20677:435::-;;20879:95;20970:3;20961:6;20879:95;:::i;:::-;20872:102;;20991:95;21082:3;21073:6;20991:95;:::i;:::-;20984:102;;21103:3;21096:10;;20861:251;;;;;:::o;21118:222::-;;21249:2;21238:9;21234:18;21226:26;;21262:71;21330:1;21319:9;21315:17;21306:6;21262:71;:::i;:::-;21216:124;;;;:::o;21346:640::-;;21579:3;21568:9;21564:19;21556:27;;21593:71;21661:1;21650:9;21646:17;21637:6;21593:71;:::i;:::-;21674:72;21742:2;21731:9;21727:18;21718:6;21674:72;:::i;:::-;21756;21824:2;21813:9;21809:18;21800:6;21756:72;:::i;:::-;21875:9;21869:4;21865:20;21860:2;21849:9;21845:18;21838:48;21903:76;21974:4;21965:6;21903:76;:::i;:::-;21895:84;;21546:440;;;;;;;:::o;21992:373::-;;22173:2;22162:9;22158:18;22150:26;;22222:9;22216:4;22212:20;22208:1;22197:9;22193:17;22186:47;22250:108;22353:4;22344:6;22250:108;:::i;:::-;22242:116;;22140:225;;;;:::o;22371:210::-;;22496:2;22485:9;22481:18;22473:26;;22509:65;22571:1;22560:9;22556:17;22547:6;22509:65;:::i;:::-;22463:118;;;;:::o;22587:313::-;;22738:2;22727:9;22723:18;22715:26;;22787:9;22781:4;22777:20;22773:1;22762:9;22758:17;22751:47;22815:78;22888:4;22879:6;22815:78;:::i;:::-;22807:86;;22705:195;;;;:::o;22906:419::-;;23110:2;23099:9;23095:18;23087:26;;23159:9;23153:4;23149:20;23145:1;23134:9;23130:17;23123:47;23187:131;23313:4;23187:131;:::i;:::-;23179:139;;23077:248;;;:::o;23331:419::-;;23535:2;23524:9;23520:18;23512:26;;23584:9;23578:4;23574:20;23570:1;23559:9;23555:17;23548:47;23612:131;23738:4;23612:131;:::i;:::-;23604:139;;23502:248;;;:::o;23756:419::-;;23960:2;23949:9;23945:18;23937:26;;24009:9;24003:4;23999:20;23995:1;23984:9;23980:17;23973:47;24037:131;24163:4;24037:131;:::i;:::-;24029:139;;23927:248;;;:::o;24181:419::-;;24385:2;24374:9;24370:18;24362:26;;24434:9;24428:4;24424:20;24420:1;24409:9;24405:17;24398:47;24462:131;24588:4;24462:131;:::i;:::-;24454:139;;24352:248;;;:::o;24606:419::-;;24810:2;24799:9;24795:18;24787:26;;24859:9;24853:4;24849:20;24845:1;24834:9;24830:17;24823:47;24887:131;25013:4;24887:131;:::i;:::-;24879:139;;24777:248;;;:::o;25031:419::-;;25235:2;25224:9;25220:18;25212:26;;25284:9;25278:4;25274:20;25270:1;25259:9;25255:17;25248:47;25312:131;25438:4;25312:131;:::i;:::-;25304:139;;25202:248;;;:::o;25456:419::-;;25660:2;25649:9;25645:18;25637:26;;25709:9;25703:4;25699:20;25695:1;25684:9;25680:17;25673:47;25737:131;25863:4;25737:131;:::i;:::-;25729:139;;25627:248;;;:::o;25881:419::-;;26085:2;26074:9;26070:18;26062:26;;26134:9;26128:4;26124:20;26120:1;26109:9;26105:17;26098:47;26162:131;26288:4;26162:131;:::i;:::-;26154:139;;26052:248;;;:::o;26306:419::-;;26510:2;26499:9;26495:18;26487:26;;26559:9;26553:4;26549:20;26545:1;26534:9;26530:17;26523:47;26587:131;26713:4;26587:131;:::i;:::-;26579:139;;26477:248;;;:::o;26731:419::-;;26935:2;26924:9;26920:18;26912:26;;26984:9;26978:4;26974:20;26970:1;26959:9;26955:17;26948:47;27012:131;27138:4;27012:131;:::i;:::-;27004:139;;26902:248;;;:::o;27156:419::-;;27360:2;27349:9;27345:18;27337:26;;27409:9;27403:4;27399:20;27395:1;27384:9;27380:17;27373:47;27437:131;27563:4;27437:131;:::i;:::-;27429:139;;27327:248;;;:::o;27581:419::-;;27785:2;27774:9;27770:18;27762:26;;27834:9;27828:4;27824:20;27820:1;27809:9;27805:17;27798:47;27862:131;27988:4;27862:131;:::i;:::-;27854:139;;27752:248;;;:::o;28006:419::-;;28210:2;28199:9;28195:18;28187:26;;28259:9;28253:4;28249:20;28245:1;28234:9;28230:17;28223:47;28287:131;28413:4;28287:131;:::i;:::-;28279:139;;28177:248;;;:::o;28431:419::-;;28635:2;28624:9;28620:18;28612:26;;28684:9;28678:4;28674:20;28670:1;28659:9;28655:17;28648:47;28712:131;28838:4;28712:131;:::i;:::-;28704:139;;28602:248;;;:::o;28856:419::-;;29060:2;29049:9;29045:18;29037:26;;29109:9;29103:4;29099:20;29095:1;29084:9;29080:17;29073:47;29137:131;29263:4;29137:131;:::i;:::-;29129:139;;29027:248;;;:::o;29281:419::-;;29485:2;29474:9;29470:18;29462:26;;29534:9;29528:4;29524:20;29520:1;29509:9;29505:17;29498:47;29562:131;29688:4;29562:131;:::i;:::-;29554:139;;29452:248;;;:::o;29706:419::-;;29910:2;29899:9;29895:18;29887:26;;29959:9;29953:4;29949:20;29945:1;29934:9;29930:17;29923:47;29987:131;30113:4;29987:131;:::i;:::-;29979:139;;29877:248;;;:::o;30131:419::-;;30335:2;30324:9;30320:18;30312:26;;30384:9;30378:4;30374:20;30370:1;30359:9;30355:17;30348:47;30412:131;30538:4;30412:131;:::i;:::-;30404:139;;30302:248;;;:::o;30556:419::-;;30760:2;30749:9;30745:18;30737:26;;30809:9;30803:4;30799:20;30795:1;30784:9;30780:17;30773:47;30837:131;30963:4;30837:131;:::i;:::-;30829:139;;30727:248;;;:::o;30981:419::-;;31185:2;31174:9;31170:18;31162:26;;31234:9;31228:4;31224:20;31220:1;31209:9;31205:17;31198:47;31262:131;31388:4;31262:131;:::i;:::-;31254:139;;31152:248;;;:::o;31406:419::-;;31610:2;31599:9;31595:18;31587:26;;31659:9;31653:4;31649:20;31645:1;31634:9;31630:17;31623:47;31687:131;31813:4;31687:131;:::i;:::-;31679:139;;31577:248;;;:::o;31831:419::-;;32035:2;32024:9;32020:18;32012:26;;32084:9;32078:4;32074:20;32070:1;32059:9;32055:17;32048:47;32112:131;32238:4;32112:131;:::i;:::-;32104:139;;32002:248;;;:::o;32256:419::-;;32460:2;32449:9;32445:18;32437:26;;32509:9;32503:4;32499:20;32495:1;32484:9;32480:17;32473:47;32537:131;32663:4;32537:131;:::i;:::-;32529:139;;32427:248;;;:::o;32681:419::-;;32885:2;32874:9;32870:18;32862:26;;32934:9;32928:4;32924:20;32920:1;32909:9;32905:17;32898:47;32962:131;33088:4;32962:131;:::i;:::-;32954:139;;32852:248;;;:::o;33106:419::-;;33310:2;33299:9;33295:18;33287:26;;33359:9;33353:4;33349:20;33345:1;33334:9;33330:17;33323:47;33387:131;33513:4;33387:131;:::i;:::-;33379:139;;33277:248;;;:::o;33531:419::-;;33735:2;33724:9;33720:18;33712:26;;33784:9;33778:4;33774:20;33770:1;33759:9;33755:17;33748:47;33812:131;33938:4;33812:131;:::i;:::-;33804:139;;33702:248;;;:::o;33956:419::-;;34160:2;34149:9;34145:18;34137:26;;34209:9;34203:4;34199:20;34195:1;34184:9;34180:17;34173:47;34237:131;34363:4;34237:131;:::i;:::-;34229:139;;34127:248;;;:::o;34381:419::-;;34585:2;34574:9;34570:18;34562:26;;34634:9;34628:4;34624:20;34620:1;34609:9;34605:17;34598:47;34662:131;34788:4;34662:131;:::i;:::-;34654:139;;34552:248;;;:::o;34806:419::-;;35010:2;34999:9;34995:18;34987:26;;35059:9;35053:4;35049:20;35045:1;35034:9;35030:17;35023:47;35087:131;35213:4;35087:131;:::i;:::-;35079:139;;34977:248;;;:::o;35231:419::-;;35435:2;35424:9;35420:18;35412:26;;35484:9;35478:4;35474:20;35470:1;35459:9;35455:17;35448:47;35512:131;35638:4;35512:131;:::i;:::-;35504:139;;35402:248;;;:::o;35656:419::-;;35860:2;35849:9;35845:18;35837:26;;35909:9;35903:4;35899:20;35895:1;35884:9;35880:17;35873:47;35937:131;36063:4;35937:131;:::i;:::-;35929:139;;35827:248;;;:::o;36081:222::-;;36212:2;36201:9;36197:18;36189:26;;36225:71;36293:1;36282:9;36278:17;36269:6;36225:71;:::i;:::-;36179:124;;;;:::o;36309:332::-;;36468:2;36457:9;36453:18;36445:26;;36481:71;36549:1;36538:9;36534:17;36525:6;36481:71;:::i;:::-;36562:72;36630:2;36619:9;36615:18;36606:6;36562:72;:::i;:::-;36435:206;;;;;:::o;36647:283::-;;36713:2;36707:9;36697:19;;36755:4;36747:6;36743:17;36862:6;36850:10;36847:22;36826:18;36814:10;36811:34;36808:62;36805:2;;;36873:18;;:::i;:::-;36805:2;36913:10;36909:2;36902:22;36687:243;;;;:::o;36936:331::-;;37087:18;37079:6;37076:30;37073:2;;;37109:18;;:::i;:::-;37073:2;37194:4;37190:9;37183:4;37175:6;37171:17;37167:33;37159:41;;37255:4;37249;37245:15;37237:23;;37002:265;;;:::o;37273:332::-;;37425:18;37417:6;37414:30;37411:2;;;37447:18;;:::i;:::-;37411:2;37532:4;37528:9;37521:4;37513:6;37509:17;37505:33;37497:41;;37593:4;37587;37583:15;37575:23;;37340:265;;;:::o;37611:132::-;;37701:3;37693:11;;37731:4;37726:3;37722:14;37714:22;;37683:60;;;:::o;37749:114::-;;37850:5;37844:12;37834:22;;37823:40;;;:::o;37869:98::-;;37954:5;37948:12;37938:22;;37927:40;;;:::o;37973:99::-;;38059:5;38053:12;38043:22;;38032:40;;;:::o;38078:113::-;;38180:4;38175:3;38171:14;38163:22;;38153:38;;;:::o;38197:184::-;;38330:6;38325:3;38318:19;38370:4;38365:3;38361:14;38346:29;;38308:73;;;;:::o;38387:168::-;;38504:6;38499:3;38492:19;38544:4;38539:3;38535:14;38520:29;;38482:73;;;;:::o;38561:169::-;;38679:6;38674:3;38667:19;38719:4;38714:3;38710:14;38695:29;;38657:73;;;;:::o;38736:148::-;;38875:3;38860:18;;38850:34;;;;:::o;38890:305::-;;38949:20;38967:1;38949:20;:::i;:::-;38944:25;;38983:20;39001:1;38983:20;:::i;:::-;38978:25;;39137:1;39069:66;39065:74;39062:1;39059:81;39056:2;;;39143:18;;:::i;:::-;39056:2;39187:1;39184;39180:9;39173:16;;38934:261;;;;:::o;39201:185::-;;39258:20;39276:1;39258:20;:::i;:::-;39253:25;;39292:20;39310:1;39292:20;:::i;:::-;39287:25;;39331:1;39321:2;;39336:18;;:::i;:::-;39321:2;39378:1;39375;39371:9;39366:14;;39243:143;;;;:::o;39392:348::-;;39455:20;39473:1;39455:20;:::i;:::-;39450:25;;39489:20;39507:1;39489:20;:::i;:::-;39484:25;;39677:1;39609:66;39605:74;39602:1;39599:81;39594:1;39587:9;39580:17;39576:105;39573:2;;;39684:18;;:::i;:::-;39573:2;39732:1;39729;39725:9;39714:20;;39440:300;;;;:::o;39746:191::-;;39806:20;39824:1;39806:20;:::i;:::-;39801:25;;39840:20;39858:1;39840:20;:::i;:::-;39835:25;;39879:1;39876;39873:8;39870:2;;;39884:18;;:::i;:::-;39870:2;39929:1;39926;39922:9;39914:17;;39791:146;;;;:::o;39943:96::-;;40009:24;40027:5;40009:24;:::i;:::-;39998:35;;39988:51;;;:::o;40045:90::-;;40122:5;40115:13;40108:21;40097:32;;40087:48;;;:::o;40141:149::-;;40217:66;40210:5;40206:78;40195:89;;40185:105;;;:::o;40296:126::-;;40373:42;40366:5;40362:54;40351:65;;40341:81;;;:::o;40428:77::-;;40494:5;40483:16;;40473:32;;;:::o;40511:154::-;40595:6;40590:3;40585;40572:30;40657:1;40648:6;40643:3;40639:16;40632:27;40562:103;;;:::o;40671:307::-;40739:1;40749:113;40763:6;40760:1;40757:13;40749:113;;;40848:1;40843:3;40839:11;40833:18;40829:1;40824:3;40820:11;40813:39;40785:2;40782:1;40778:10;40773:15;;40749:113;;;40880:6;40877:1;40874:13;40871:2;;;40960:1;40951:6;40946:3;40942:16;40935:27;40871:2;40720:258;;;;:::o;40984:320::-;;41065:1;41059:4;41055:12;41045:22;;41112:1;41106:4;41102:12;41133:18;41123:2;;41189:4;41181:6;41177:17;41167:27;;41123:2;41251;41243:6;41240:14;41220:18;41217:38;41214:2;;;41270:18;;:::i;:::-;41214:2;41035:269;;;;:::o;41310:233::-;;41372:24;41390:5;41372:24;:::i;:::-;41363:33;;41418:66;41411:5;41408:77;41405:2;;;41488:18;;:::i;:::-;41405:2;41535:1;41528:5;41524:13;41517:20;;41353:190;;;:::o;41549:176::-;;41598:20;41616:1;41598:20;:::i;:::-;41593:25;;41632:20;41650:1;41632:20;:::i;:::-;41627:25;;41671:1;41661:2;;41676:18;;:::i;:::-;41661:2;41717:1;41714;41710:9;41705:14;;41583:142;;;;:::o;41731:180::-;41779:77;41776:1;41769:88;41876:4;41873:1;41866:15;41900:4;41897:1;41890:15;41917:180;41965:77;41962:1;41955:88;42062:4;42059:1;42052:15;42086:4;42083:1;42076:15;42103:180;42151:77;42148:1;42141:88;42248:4;42245:1;42238:15;42272:4;42269:1;42262:15;42289:180;42337:77;42334:1;42327:88;42434:4;42431:1;42424:15;42458:4;42455:1;42448:15;42475:102;;42567:2;42563:7;42558:2;42551:5;42547:14;42543:28;42533:38;;42523:54;;;:::o;42583:122::-;42656:24;42674:5;42656:24;:::i;:::-;42649:5;42646:35;42636:2;;42695:1;42692;42685:12;42636:2;42626:79;:::o;42711:116::-;42781:21;42796:5;42781:21;:::i;:::-;42774:5;42771:32;42761:2;;42817:1;42814;42807:12;42761:2;42751:76;:::o;42833:120::-;42905:23;42922:5;42905:23;:::i;:::-;42898:5;42895:34;42885:2;;42943:1;42940;42933:12;42885:2;42875:78;:::o;42959:122::-;43032:24;43050:5;43032:24;:::i;:::-;43025:5;43022:35;43012:2;;43071:1;43068;43061:12;43012:2;43002:79;:::o

Swarm Source

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