ETH Price: $2,477.91 (+0.05%)

The Brolex Collection (Brolex)
 

Overview

TokenID

93

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
SCARCE_NFT

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity Multiple files format)

File 19 of 20: SCARCE_NFT.sol
//SPDX-License-Identifier: Copyright SCARCE
pragma solidity ^0.8.0;

import "./ERC721.sol";
import "./ERC721Enumerable.sol";
import "./ERC721Burnable.sol";
import "./ERC721Pausable.sol";
import "./ERC721URIStorage.sol";
import "./AccessControlEnumerable.sol";
import "./Context.sol";
import "./Strings.sol";
import "./Counters.sol";

interface INFTContract {
    function getMaxSupply() external view returns (uint max);
    function getMinted() external view returns (uint minted);
    function getMintPrice() external view returns (uint mintPrice);
    function recoverETH () external;
    function mintMany(uint256 quantity) external payable;
    function setMintingEnabled(bool Allowed) external;

}

/**
 * @dev {ERC721} token, including:
 *
 *  - ability for holders to burn (destroy) their tokens
 *  - a minter role that allows for token minting (creation)
 *  - token ID and URI autogenerationA
 *
 * This contract uses {AccessControl} to lock permissioned functions using the
 * different roles - head to its documentation for details.
 *
 * The account that deploys the contract will be granted the minter and pauser
 * roles, as well as the default admin role, which will let it grant both minter
 * and pauser roles to other accounts.
 */
contract SCARCE_NFT is Context, AccessControlEnumerable, ERC721Enumerable, ERC721URIStorage, INFTContract {
  using Counters for Counters.Counter;
  
  Counters.Counter public _tokenIdTracker;

   struct WhitelistData {
        uint256 nftAmount;
        bool minted;
    }

  string private _baseTokenURI = "https://scarce.vip/api/";
  string public _contractMeta = "https://ipfs.filebase.io/ipfs/QmPMcBisL7vCx3kzAzh1ZKpwPVNsBLQ9gTtZiRu15cwpsK";
 
  uint private _tokenPrice = 75000000000000000; // 0.075 ETH
  uint public maxSupply = 4096;

  address private _admin = 0xaFf5139a513C7715fa18B5184630ffc6821fd3e9;

  bool public canMint = false;

  address public marketingWallet = 0xe79AAa7e79a5cd28C5c7594B85d8d1C4E64BE4F7;

  mapping (uint256 => address ) public creator;
  mapping(address =>  WhitelistData) public whitelistMintData;

  constructor() ERC721("The Brolex Collection", "Brolex") {

      _setupRole(DEFAULT_ADMIN_ROLE, _admin);
      _setupRole(DEFAULT_ADMIN_ROLE, msg.sender);
     
  }

  receive () external payable {
     payable(marketingWallet).transfer(msg.value);
     
  }

  function setWhitelistWallets(address[] calldata recipients, uint256[] calldata _nftAmount) public  {
    require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "SCARCE: must have admin role to call this function");
     for (uint256 i = 0; i < recipients.length; i++){
       whitelistMintData[recipients[i]].nftAmount = _nftAmount[i];
     }
  }

  function setMarketingWallet(address _marketingWallet) public  {
    require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "SCARCE: must have admin role to make this change");
    marketingWallet = _marketingWallet;
  }

  function contractURI() public view returns (string memory) {
        return _contractMeta;
  }

  function SetcontractURI(string calldata URI) external {
        require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "SCARCE: only the admin role can do this");
        _contractMeta = URI;
  }

  function SetMintPrice(uint256 _mintPrice) external {
        require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "SCARCE: only the admin role can do this");
        _tokenPrice = _mintPrice;
  }

  function getMinted() external view override returns (uint minted){
    return _tokenIdTracker.current()-1;
  }

  function getMaxSupply() external view override returns (uint max){
    return maxSupply;
  }

  function getMintPrice() external view override returns (uint mintPrice){
    return _tokenPrice;
  }

  function setAdditionalAdmin(address newAdmin) external {
    require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "SCARCE: must have admin role to add admins");
    _setupRole(DEFAULT_ADMIN_ROLE, newAdmin);
  } 

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

  function setBaseURI(string memory baseURI) external {
    require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "SCARCE: must have admin role to change base URI");
    _baseTokenURI = baseURI;
  }

  function setTokenURI(uint256 tokenId, string memory _tokenURI) external {
    require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "SCARCE: must have admin role to change token URI");
    _setTokenURI(tokenId, _tokenURI);
  }

  function setMintingEnabled(bool Allowed) external override {
    require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "SCARCE: must have admin role to change minting ability");
    canMint = Allowed;
  }
 
   function mint() external payable {
    require(canMint, "SCARCE: minting currently disabled");
    require(msg.value >= (_tokenPrice), "SCARCE: must send correct price");
    require((_tokenIdTracker.current()) <= maxSupply, "SCARCE: all NFTs have been minted");

    _mint(msg.sender, _tokenIdTracker.current());
    creator[_tokenIdTracker.current()] = msg.sender;
    _setTokenURI(_tokenIdTracker.current(), string(abi.encodePacked(Strings.toString(_tokenIdTracker.current()))));
    _tokenIdTracker.increment();
    splitBalance(1);
  }


  function WhitelistMint() external  {
    require(whitelistMintData[_msgSender()].nftAmount > 0, "SCARCE: you have left 0 mint");
    require((_tokenIdTracker.current() + whitelistMintData[_msgSender()].nftAmount) <= maxSupply, "SCARCE: all NFTs have been minted");
    for(uint i = 0; i < whitelistMintData[_msgSender()].nftAmount; i++){
      _mint(msg.sender, _tokenIdTracker.current());
      creator[_tokenIdTracker.current()] = msg.sender;
      _setTokenURI(_tokenIdTracker.current(), string(abi.encodePacked(Strings.toString(_tokenIdTracker.current()))));
      _tokenIdTracker.increment();
    }
    whitelistMintData[_msgSender()].nftAmount = 0;
    whitelistMintData[_msgSender()].minted = true;

  }

  function mintMany(uint256 quantity) external payable override {
    require(canMint, "SCARCE: minting currently disabled");
    require(msg.value >= (quantity * _tokenPrice), "SCARCE: must send correct price");
    require((_tokenIdTracker.current() + quantity) <= maxSupply, "SCARCE: all NFTs have been minted");

    for(uint i = 0; i < quantity; i++){
      _mint(msg.sender, _tokenIdTracker.current());
      creator[_tokenIdTracker.current()] = msg.sender;
      _setTokenURI(_tokenIdTracker.current(), string(abi.encodePacked(Strings.toString(_tokenIdTracker.current()))));
      _tokenIdTracker.increment();
    }
    splitBalance(quantity);
  }
  
  function mintMultiples(address[] calldata recipients)public {
    require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "SCARCE: must have admin role to initial mint");
        for (uint256 i = 0; i < recipients.length; i++){
      _mint(recipients[i], _tokenIdTracker.current());
      creator[_tokenIdTracker.current()] = recipients[i];
      _setTokenURI(_tokenIdTracker.current(), string(abi.encodePacked(Strings.toString(_tokenIdTracker.current()))));
      _tokenIdTracker.increment();
    }
  }

  function NftCreator(uint256 tokenId) public view returns(address){
    return creator[tokenId];
  }

  function _burn(uint256 tokenId) internal virtual override(ERC721, ERC721URIStorage) {
    return ERC721URIStorage._burn(tokenId);
  }

  function tokenURI(uint256 tokenId) public view override(ERC721, ERC721URIStorage) returns (string memory) {
    return ERC721URIStorage.tokenURI(tokenId);
  }
  
  function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal virtual override(ERC721, ERC721Enumerable) {
  
    super._beforeTokenTransfer(from, to, tokenId);
  }

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

  function recoverETH () external override {
    require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "SCARCE: must have admin role to claim the balance");
    // make sure we capture all ETH that may or may not be sent to this contract
    payable(_admin).transfer(address(this).balance);
  }

  function splitBalance(uint256 amount) private {
      uint totalETH = amount * _tokenPrice; // get the total token price to sell for reflection purchases

      payable(marketingWallet).transfer(totalETH);

  }


}

File 1 of 20: AccessControl.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./Context.sol";
import "./ERC165.sol";


/**
 * @dev External interface of AccessControl declared to support ERC165 detection.
 */
interface IAccessControl {
    function hasRole(bytes32 role, address account) external view returns (bool);
    function getRoleAdmin(bytes32 role) external view returns (bytes32);
    function grantRole(bytes32 role, address account) external;
    function revokeRole(bytes32 role, address account) external;
    function renounceRole(bytes32 role, address account) external;
}

/**
 * @dev Contract module that allows children to implement role-based access
 * control mechanisms. This is a lightweight version that doesn't allow enumerating role
 * members except through off-chain means by accessing the contract event logs. Some
 * applications may benefit from on-chain enumerability, for those cases see
 * {AccessControlEnumerable}.
 *
 * Roles are referred to by their `bytes32` identifier. These should be exposed
 * in the external API and be unique. The best way to achieve this is by
 * using `public constant` hash digests:
 *
 * ```
 * bytes32 public constant MY_ROLE = keccak256("MY_ROLE");
 * ```
 *
 * Roles can be used to represent a set of permissions. To restrict access to a
 * function call, use {hasRole}:
 *
 * ```
 * function foo() public {
 *     require(hasRole(MY_ROLE, msg.sender));
 *     ...
 * }
 * ```
 *
 * Roles can be granted and revoked dynamically via the {grantRole} and
 * {revokeRole} functions. Each role has an associated admin role, and only
 * accounts that have a role's admin role can call {grantRole} and {revokeRole}.
 *
 * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means
 * that only accounts with this role will be able to grant or revoke other
 * roles. More complex role relationships can be created by using
 * {_setRoleAdmin}.
 *
 * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to
 * grant and revoke this role. Extra precautions should be taken to secure
 * accounts that have been granted it.
 */
abstract contract AccessControl is Context, IAccessControl, ERC165 {
    struct RoleData {
        mapping (address => bool) members;
        bytes32 adminRole;
    }

    mapping (bytes32 => RoleData) private _roles;

    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;

    /**
     * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`
     *
     * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite
     * {RoleAdminChanged} not being emitted signaling this.
     *
     * _Available since v3.1._
     */
    event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole);

    /**
     * @dev Emitted when `account` is granted `role`.
     *
     * `sender` is the account that originated the contract call, an admin role
     * bearer except when using {_setupRole}.
     */
    event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Emitted when `account` is revoked `role`.
     *
     * `sender` is the account that originated the contract call:
     *   - if using `revokeRole`, it is the admin role bearer
     *   - if using `renounceRole`, it is the role bearer (i.e. `account`)
     */
    event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender);

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

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) public view override returns (bool) {
        return _roles[role].members[account];
    }

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) public view override returns (bytes32) {
        return _roles[role].adminRole;
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function grantRole(bytes32 role, address account) public virtual override {
        require(hasRole(getRoleAdmin(role), _msgSender()), "AccessControl: sender must be an admin to grant");

        _grantRole(role, account);
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function revokeRole(bytes32 role, address account) public virtual override {
        require(hasRole(getRoleAdmin(role), _msgSender()), "AccessControl: sender must be an admin to revoke");

        _revokeRole(role, account);
    }

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been granted `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    function renounceRole(bytes32 role, address account) public virtual override {
        require(account == _msgSender(), "AccessControl: can only renounce roles for self");

        _revokeRole(role, account);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event. Note that unlike {grantRole}, this function doesn't perform any
     * checks on the calling account.
     *
     * [WARNING]
     * ====
     * This function should only be called from the constructor when setting
     * up the initial roles for the system.
     *
     * Using this function in any other way is effectively circumventing the admin
     * system imposed by {AccessControl}.
     * ====
     */
    function _setupRole(bytes32 role, address account) internal virtual {
        _grantRole(role, account);
    }

    /**
     * @dev Sets `adminRole` as ``role``'s admin role.
     *
     * Emits a {RoleAdminChanged} event.
     */
    function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual {
        emit RoleAdminChanged(role, getRoleAdmin(role), adminRole);
        _roles[role].adminRole = adminRole;
    }

    function _grantRole(bytes32 role, address account) private {
        if (!hasRole(role, account)) {
            _roles[role].members[account] = true;
            emit RoleGranted(role, account, _msgSender());
        }
    }

    function _revokeRole(bytes32 role, address account) private {
        if (hasRole(role, account)) {
            _roles[role].members[account] = false;
            emit RoleRevoked(role, account, _msgSender());
        }
    }
}

File 2 of 20: AccessControlEnumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./AccessControl.sol";
import "./EnumerableSet.sol";


/**
 * @dev External interface of AccessControlEnumerable declared to support ERC165 detection.
 */
interface IAccessControlEnumerable {
    function getRoleMember(bytes32 role, uint256 index) external view returns (address);
    function getRoleMemberCount(bytes32 role) external view returns (uint256);
}

/**
 * @dev Extension of {AccessControl} that allows enumerating the members of each role.
 */
abstract contract AccessControlEnumerable is IAccessControlEnumerable, AccessControl {
    using EnumerableSet for EnumerableSet.AddressSet;

    mapping (bytes32 => EnumerableSet.AddressSet) private _roleMembers;

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

    /**
     * @dev Returns one of the accounts that have `role`. `index` must be a
     * value between 0 and {getRoleMemberCount}, non-inclusive.
     *
     * Role bearers are not sorted in any particular way, and their ordering may
     * change at any point.
     *
     * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure
     * you perform all queries on the same block. See the following
     * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post]
     * for more information.
     */
    function getRoleMember(bytes32 role, uint256 index) public view override returns (address) {
        return _roleMembers[role].at(index);
    }

    /**
     * @dev Returns the number of accounts that have `role`. Can be used
     * together with {getRoleMember} to enumerate all bearers of a role.
     */
    function getRoleMemberCount(bytes32 role) public view override returns (uint256) {
        return _roleMembers[role].length();
    }

    /**
     * @dev Overload {grantRole} to track enumerable memberships
     */
    function grantRole(bytes32 role, address account) public virtual override {
        super.grantRole(role, account);
        _roleMembers[role].add(account);
    }

    /**
     * @dev Overload {revokeRole} to track enumerable memberships
     */
    function revokeRole(bytes32 role, address account) public virtual override {
        super.revokeRole(role, account);
        _roleMembers[role].remove(account);
    }

    /**
     * @dev Overload {renounceRole} to track enumerable memberships
     */
    function renounceRole(bytes32 role, address account) public virtual override {
        super.renounceRole(role, account);
        _roleMembers[role].remove(account);
    }

    /**
     * @dev Overload {_setupRole} to track enumerable memberships
     */
    function _setupRole(bytes32 role, address account) internal virtual override {
        super._setupRole(role, account);
        _roleMembers[role].add(account);
    }
}

File 3 of 20: 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;
        // solhint-disable-next-line no-inline-assembly
        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");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private 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

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

File 4 of 20: 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) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}

File 5 of 20: Counters.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented or decremented by one. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value+1;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }
}

File 6 of 20: EnumerableSet.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Library for managing
 * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive
 * types.
 *
 * Sets have the following properties:
 *
 * - Elements are added, removed, and checked for existence in constant time
 * (O(1)).
 * - Elements are enumerated in O(n). No guarantees are made on the ordering.
 *
 * ```
 * contract Example {
 *     // Add the library methods
 *     using EnumerableSet for EnumerableSet.AddressSet;
 *
 *     // Declare a set state variable
 *     EnumerableSet.AddressSet private mySet;
 * }
 * ```
 *
 * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`)
 * and `uint256` (`UintSet`) are supported.
 */
library EnumerableSet {
    // To implement this library for multiple types with as little code
    // repetition as possible, we write it in terms of a generic Set type with
    // bytes32 values.
    // The Set implementation uses private functions, and user-facing
    // implementations (such as AddressSet) are just wrappers around the
    // underlying Set.
    // This means that we can only create new EnumerableSets for types that fit
    // in bytes32.

    struct Set {
        // Storage of set values
        bytes32[] _values;

        // Position of the value in the `values` array, plus 1 because index 0
        // means a value is not in the set.
        mapping (bytes32 => uint256) _indexes;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function _add(Set storage set, bytes32 value) private returns (bool) {
        if (!_contains(set, value)) {
            set._values.push(value);
            // The value is stored at length-1, but we add 1 to all indexes
            // and use 0 as a sentinel value
            set._indexes[value] = set._values.length;
            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function _remove(Set storage set, bytes32 value) private returns (bool) {
        // We read and store the value's index to prevent multiple reads from the same storage slot
        uint256 valueIndex = set._indexes[value];

        if (valueIndex != 0) { // Equivalent to contains(set, value)
            // To delete an element from the _values array in O(1), we swap the element to delete with the last one in
            // the array, and then remove the last element (sometimes called as 'swap and pop').
            // This modifies the order of the array, as noted in {at}.

            uint256 toDeleteIndex = valueIndex - 1;
            uint256 lastIndex = set._values.length - 1;

            // When the value to delete is the last one, the swap operation is unnecessary. However, since this occurs
            // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement.

            bytes32 lastvalue = set._values[lastIndex];

            // Move the last value to the index where the value to delete is
            set._values[toDeleteIndex] = lastvalue;
            // Update the index for the moved value
            set._indexes[lastvalue] = toDeleteIndex + 1; // All indexes are 1-based

            // Delete the slot where the moved value was stored
            set._values.pop();

            // Delete the index for the deleted slot
            delete set._indexes[value];

            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function _contains(Set storage set, bytes32 value) private view returns (bool) {
        return set._indexes[value] != 0;
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function _length(Set storage set) private view returns (uint256) {
        return set._values.length;
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function _at(Set storage set, uint256 index) private view returns (bytes32) {
        require(set._values.length > index, "EnumerableSet: index out of bounds");
        return set._values[index];
    }

    // Bytes32Set

    struct Bytes32Set {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _add(set._inner, value);
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _remove(set._inner, value);
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) {
        return _contains(set._inner, value);
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(Bytes32Set storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) {
        return _at(set._inner, index);
    }

    // AddressSet

    struct AddressSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(AddressSet storage set, address value) internal returns (bool) {
        return _add(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(AddressSet storage set, address value) internal returns (bool) {
        return _remove(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(AddressSet storage set, address value) internal view returns (bool) {
        return _contains(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(AddressSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function at(AddressSet storage set, uint256 index) internal view returns (address) {
        return address(uint160(uint256(_at(set._inner, index))));
    }


    // UintSet

    struct UintSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(UintSet storage set, uint256 value) internal returns (bool) {
        return _add(set._inner, bytes32(value));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(UintSet storage set, uint256 value) internal returns (bool) {
        return _remove(set._inner, bytes32(value));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(UintSet storage set, uint256 value) internal view returns (bool) {
        return _contains(set._inner, bytes32(value));
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function length(UintSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

   /**
    * @dev Returns the value stored at position `index` in the set. O(1).
    *
    * Note that there are no guarantees on the ordering of values inside the
    * array, and it may change when more values are added or removed.
    *
    * Requirements:
    *
    * - `index` must be strictly less than {length}.
    */
    function at(UintSet storage set, uint256 index) internal view returns (uint256) {
        return uint256(_at(set._inner, index));
    }
}

File 7 of 20: 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 8 of 20: ERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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


/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata 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}. 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 || ERC721.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 || ERC721.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(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    // solhint-disable-next-line no-inline-assembly
                    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` 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 { }
}

File 9 of 20: ERC721Burnable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./ERC721.sol";
import "./Context.sol";

/**
 * @title ERC721 Burnable Token
 * @dev ERC721 Token that can be irreversibly burned (destroyed).
 */
abstract contract ERC721Burnable is Context, ERC721 {
    /**
     * @dev Burns `tokenId`. See {ERC721-_burn}.
     *
     * Requirements:
     *
     * - The caller must own `tokenId` or be an approved operator.
     */
    function burn(uint256 tokenId) public virtual {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721Burnable: caller is not owner nor approved");
        _burn(tokenId);
    }
}

File 10 of 20: 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 11 of 20: ERC721Pausable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./ERC721.sol";
import "./Pausable.sol";

/**
 * @dev ERC721 token with pausable token transfers, minting and burning.
 *
 * Useful for scenarios such as preventing trades until the end of an evaluation
 * period, or having an emergency switch for freezing all token transfers in the
 * event of a large bug.
 */
abstract contract ERC721Pausable is ERC721, Pausable {
    /**
     * @dev See {ERC721-_beforeTokenTransfer}.
     *
     * Requirements:
     *
     * - the contract must not be paused.
     */
    function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal virtual override {
        super._beforeTokenTransfer(from, to, tokenId);

        require(!paused(), "ERC721Pausable: token transfer while paused");
    }
}

File 12 of 20: ERC721URIStorage.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./ERC721.sol";

/**
 * @dev ERC721 token with storage based token uri management.
 */
abstract contract ERC721URIStorage is ERC721 {
    using Strings for uint256;

    // Optional mapping for token URIs
    mapping (uint256 => string) private _tokenURIs;

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

        string memory _tokenURI = _tokenURIs[tokenId];
        string memory base = _baseURI();

        // If there is no base URI, return the token URI.
        if (bytes(base).length == 0) {
            return _tokenURI;
        }
        // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked).
        if (bytes(_tokenURI).length > 0) {
            return string(abi.encodePacked(base, _tokenURI));
        }

        return super.tokenURI(tokenId);
    }

    /**
     * @dev Sets `_tokenURI` as the tokenURI of `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual {
        require(_exists(tokenId), "ERC721URIStorage: URI set of nonexistent token");
        _tokenURIs[tokenId] = _tokenURI;
    }

    /**
     * @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 override {
        super._burn(tokenId);

        if (bytes(_tokenURIs[tokenId]).length != 0) {
            delete _tokenURIs[tokenId];
        }
    }
}

File 13 of 20: 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 14 of 20: 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 15 of 20: 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 16 of 20: 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 17 of 20: 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 18 of 20: Pausable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./Context.sol";

/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor () {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}

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

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant alphabet = "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] = alphabet[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","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":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"NftCreator","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintPrice","type":"uint256"}],"name":"SetMintPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"SetcontractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"WhitelistMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"_contractMeta","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_tokenIdTracker","outputs":[{"internalType":"uint256","name":"_value","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":"canMint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"creator","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"getMaxSupply","outputs":[{"internalType":"uint256","name":"max","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMintPrice","outputs":[{"internalType":"uint256","name":"mintPrice","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMinted","outputs":[{"internalType":"uint256","name":"minted","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getRoleMember","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleMemberCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","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":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mintMany","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address[]","name":"recipients","type":"address[]"}],"name":"mintMultiples","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"recoverETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newAdmin","type":"address"}],"name":"setAdditionalAdmin","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":"address","name":"_marketingWallet","type":"address"}],"name":"setMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"Allowed","type":"bool"}],"name":"setMintingEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"_tokenURI","type":"string"}],"name":"setTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"recipients","type":"address[]"},{"internalType":"uint256[]","name":"_nftAmount","type":"uint256[]"}],"name":"setWhitelistWallets","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":"","type":"address"}],"name":"whitelistMintData","outputs":[{"internalType":"uint256","name":"nftAmount","type":"uint256"},{"internalType":"bool","name":"minted","type":"bool"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c0604052601760809081527f68747470733a2f2f7363617263652e7669702f6170692f00000000000000000060a052600e906200003e90826200036b565b506040518060800160405280604c8152602001620039b1604c9139600f906200006890826200036b565b5067010a741a46278000601055611000601155601280546001600160a81b03191673aff5139a513c7715fa18b5184630ffc6821fd3e9179055601380546001600160a01b03191673e79aaa7e79a5cd28c5c7594b85d8d1c4e64be4f7179055348015620000d457600080fd5b506040518060400160405280601581526020017f5468652042726f6c657820436f6c6c656374696f6e000000000000000000000081525060405180604001604052806006815260200165084e4ded8caf60d31b81525081600290816200013b91906200036b565b5060036200014a82826200036b565b50506012546200016791506000906001600160a01b03166200017a565b620001746000336200017a565b62000437565b620001868282620001a5565b6000828152600160205260409020620001a09082620001b5565b505050565b620001b18282620001d5565b5050565b6000620001cc836001600160a01b03841662000275565b90505b92915050565b6000828152602081815260408083206001600160a01b038516845290915290205460ff16620001b1576000828152602081815260408083206001600160a01b03851684529091529020805460ff19166001179055620002313390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b6000818152600183016020526040812054620002be57508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155620001cf565b506000620001cf565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620002f257607f821691505b6020821081036200031357634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620001a057600081815260208120601f850160051c81016020861015620003425750805b601f850160051c820191505b8181101562000363578281556001016200034e565b505050505050565b81516001600160401b03811115620003875762000387620002c7565b6200039f81620003988454620002dd565b8462000319565b602080601f831160018114620003d75760008415620003be5750858301515b600019600386901b1c1916600185901b17855562000363565b600085815260208120601f198616915b828110156200040857888601518255948401946001909101908401620003e7565b5085821015620004275787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b61356a80620004476000396000f3fe6080604052600436106102b25760003560e01c80635d098b3811610175578063a7f93ebd116100dc578063ca15c87311610095578063e576df1c1161006f578063e576df1c146108a9578063e8a3d485146108c9578063e985e9c5146108de578063edcbb4a11461092757600080fd5b8063ca15c87314610853578063d547741f14610873578063d5abeb011461089357600080fd5b8063a7f93ebd14610792578063ac72200d146107a7578063b7530819146107bc578063b88d4fde146107f2578063beb9716d14610812578063c87b56dd1461083357600080fd5b806391d148541161012e57806391d14854146106f1578063926f353b1461071157806395d89b411461073157806398bcede914610746578063a217fddf1461075d578063a22cb4651461077257600080fd5b80635d098b38146106315780636352211e14610651578063653088cf1461067157806370a082311461069157806375f0a874146106b15780639010d07c146106d157600080fd5b8063248a9ca31161021957806343e61a41116101d257806343e61a41146105715780634c0f38c2146105865780634ea3871a1461059b5780634f6ccce7146105bb578063510b5158146105db57806355f804b31461061157600080fd5b8063248a9ca3146104755780632f2ff15d146104a55780632f745c59146104c557806336568abe146104e55780633b4fcc4f1461050557806342842e0e1461055157600080fd5b8063095ea7b31161026b578063095ea7b3146103ce5780631249c58b146103ee578063162094c4146103f657806318160ddd146104165780631e1a1e761461043557806323b872dd1461045557600080fd5b806301ffc9a7146102f757806302ebcb791461032c578063059513a61461034c5780630614117a1461035f57806306fdde0314610374578063081812fc1461039657600080fd5b366102f2576013546040516001600160a01b03909116903480156108fc02916000818181858888f193505050501580156102f0573d6000803e3d6000fd5b005b600080fd5b34801561030357600080fd5b50610317610312366004612b11565b61093c565b60405190151581526020015b60405180910390f35b34801561033857600080fd5b506102f0610347366004612b2e565b61094d565b6102f061035a366004612b2e565b610982565b34801561036b57600080fd5b506102f0610b0c565b34801561038057600080fd5b50610389610ba4565b6040516103239190612b97565b3480156103a257600080fd5b506103b66103b1366004612b2e565b610c36565b6040516001600160a01b039091168152602001610323565b3480156103da57600080fd5b506102f06103e9366004612bc6565b610cbe565b6102f0610dd3565b34801561040257600080fd5b506102f0610411366004612c9c565b610eef565b34801561042257600080fd5b50600a545b604051908152602001610323565b34801561044157600080fd5b506102f0610450366004612d2f565b610f5b565b34801561046157600080fd5b506102f0610470366004612d71565b611088565b34801561048157600080fd5b50610427610490366004612b2e565b60009081526020819052604090206001015490565b3480156104b157600080fd5b506102f06104c0366004612dad565b6110b9565b3480156104d157600080fd5b506104276104e0366004612bc6565b6110db565b3480156104f157600080fd5b506102f0610500366004612dad565b611171565b34801561051157600080fd5b5061053c610520366004612dd9565b6015602052600090815260409020805460019091015460ff1682565b60408051928352901515602083015201610323565b34801561055d57600080fd5b506102f061056c366004612d71565b611193565b34801561057d57600080fd5b506103896111ae565b34801561059257600080fd5b50601154610427565b3480156105a757600080fd5b506102f06105b6366004612e04565b61123c565b3480156105c757600080fd5b506104276105d6366004612b2e565b6112be565b3480156105e757600080fd5b506103b66105f6366004612b2e565b6014602052600090815260409020546001600160a01b031681565b34801561061d57600080fd5b506102f061062c366004612e1f565b611351565b34801561063d57600080fd5b506102f061064c366004612dd9565b6113ba565b34801561065d57600080fd5b506103b661066c366004612b2e565b61143a565b34801561067d57600080fd5b506102f061068c366004612e54565b6114b1565b34801561069d57600080fd5b506104276106ac366004612dd9565b6114e5565b3480156106bd57600080fd5b506013546103b6906001600160a01b031681565b3480156106dd57600080fd5b506103b66106ec366004612ec6565b61156c565b3480156106fd57600080fd5b5061031761070c366004612dad565b61158b565b34801561071d57600080fd5b506102f061072c366004612dd9565b6115b4565b34801561073d57600080fd5b50610389611617565b34801561075257600080fd5b50600d546104279081565b34801561076957600080fd5b50610427600081565b34801561077e57600080fd5b506102f061078d366004612ee8565b611626565b34801561079e57600080fd5b50601054610427565b3480156107b357600080fd5b506104276116ea565b3480156107c857600080fd5b506103b66107d7366004612b2e565b6000908152601460205260409020546001600160a01b031690565b3480156107fe57600080fd5b506102f061080d366004612f12565b611707565b34801561081e57600080fd5b5060125461031790600160a01b900460ff1681565b34801561083f57600080fd5b5061038961084e366004612b2e565b61173f565b34801561085f57600080fd5b5061042761086e366004612b2e565b61174a565b34801561087f57600080fd5b506102f061088e366004612dad565b611761565b34801561089f57600080fd5b5061042760115481565b3480156108b557600080fd5b506102f06108c4366004612f8e565b61176b565b3480156108d557600080fd5b5061038961184d565b3480156108ea57600080fd5b506103176108f9366004612ffa565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561093357600080fd5b506102f061185c565b6000610947826119b8565b92915050565b61095860003361158b565b61097d5760405162461bcd60e51b815260040161097490613024565b60405180910390fd5b601055565b601254600160a01b900460ff166109ab5760405162461bcd60e51b81526004016109749061306b565b6010546109b890826130c3565b341015610a075760405162461bcd60e51b815260206004820152601f60248201527f5343415243453a206d7573742073656e6420636f7272656374207072696365006044820152606401610974565b60115481610a15600d6119dd565b610a1f91906130da565b1115610a3d5760405162461bcd60e51b8152600401610974906130ed565b60005b81811015610aff57610a5b33610a56600d6119dd565b6119ed565b3360146000610a6a600d6119dd565b815260200190815260200160002060006101000a8154816001600160a01b0302191690836001600160a01b03160217905550610adf610aa9600d6119dd565b610abb610ab6600d6119dd565b611b2c565b604051602001610acb919061312e565b604051602081830303815290604052611c35565b610aed600d80546001019055565b80610af78161314a565b915050610a40565b50610b0981611cb9565b50565b610b1760003361158b565b610b6b5760405162461bcd60e51b81526020600482015260316024820152600080516020613515833981519152604482015270636c61696d207468652062616c616e636560781b6064820152608401610974565b6012546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610b09573d6000803e3d6000fd5b606060028054610bb390613163565b80601f0160208091040260200160405190810160405280929190818152602001828054610bdf90613163565b8015610c2c5780601f10610c0157610100808354040283529160200191610c2c565b820191906000526020600020905b815481529060010190602001808311610c0f57829003601f168201915b5050505050905090565b6000610c4182611d04565b610ca25760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610974565b506000908152600660205260409020546001600160a01b031690565b6000610cc98261143a565b9050806001600160a01b0316836001600160a01b031603610d365760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610974565b336001600160a01b0382161480610d525750610d5281336108f9565b610dc45760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610974565b610dce8383611d21565b505050565b601254600160a01b900460ff16610dfc5760405162461bcd60e51b81526004016109749061306b565b601054341015610e4e5760405162461bcd60e51b815260206004820152601f60248201527f5343415243453a206d7573742073656e6420636f7272656374207072696365006044820152606401610974565b601154610e5b600d6119dd565b1115610e795760405162461bcd60e51b8152600401610974906130ed565b610e8733610a56600d6119dd565b3360146000610e96600d6119dd565b815260200190815260200160002060006101000a8154816001600160a01b0302191690836001600160a01b03160217905550610ed5610aa9600d6119dd565b610ee3600d80546001019055565b610eed6001611cb9565b565b610efa60003361158b565b610f4d5760405162461bcd60e51b8152602060048201526030602482015260008051602061351583398151915260448201526f6368616e676520746f6b656e2055524960801b6064820152608401610974565b610f578282611c35565b5050565b610f6660003361158b565b610fb55760405162461bcd60e51b815260206004820152602c602482015260008051602061351583398151915260448201526b1a5b9a5d1a585b081b5a5b9d60a21b6064820152608401610974565b60005b81811015610dce57610ff4838383818110610fd557610fd561319d565b9050602002016020810190610fea9190612dd9565b610a56600d6119dd565b8282828181106110065761100661319d565b905060200201602081019061101b9190612dd9565b60146000611029600d6119dd565b815260200190815260200160002060006101000a8154816001600160a01b0302191690836001600160a01b03160217905550611068610aa9600d6119dd565b611076600d80546001019055565b806110808161314a565b915050610fb8565b6110923382611d8f565b6110ae5760405162461bcd60e51b8152600401610974906131b3565b610dce838383611e75565b6110c38282612020565b6000828152600160205260409020610dce90826120ab565b60006110e6836114e5565b82106111485760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610974565b506001600160a01b03919091166000908152600860209081526040808320938352929052205490565b61117b82826120c0565b6000828152600160205260409020610dce908261213a565b610dce83838360405180602001604052806000815250611707565b600f80546111bb90613163565b80601f01602080910402602001604051908101604052809291908181526020018280546111e790613163565b80156112345780601f1061120957610100808354040283529160200191611234565b820191906000526020600020905b81548152906001019060200180831161121757829003601f168201915b505050505081565b61124760003361158b565b6112a05760405162461bcd60e51b815260206004820152603660248201526000805160206135158339815191526044820152756368616e6765206d696e74696e67206162696c69747960501b6064820152608401610974565b60128054911515600160a01b0260ff60a01b19909216919091179055565b60006112c9600a5490565b821061132c5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610974565b600a828154811061133f5761133f61319d565b90600052602060002001549050919050565b61135c60003361158b565b6113ae5760405162461bcd60e51b815260206004820152602f602482015260008051602061351583398151915260448201526e6368616e676520626173652055524960881b6064820152608401610974565b600e610f578282613252565b6113c560003361158b565b6114185760405162461bcd60e51b8152602060048201526030602482015260008051602061351583398151915260448201526f6d616b652074686973206368616e676560801b6064820152608401610974565b601380546001600160a01b0319166001600160a01b0392909216919091179055565b6000818152600460205260408120546001600160a01b0316806109475760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610974565b6114bc60003361158b565b6114d85760405162461bcd60e51b815260040161097490613024565b600f610dce828483613312565b60006001600160a01b0382166115505760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610974565b506001600160a01b031660009081526005602052604090205490565b6000828152600160205260408120611584908361214f565b9392505050565b6000918252602082815260408084206001600160a01b0393909316845291905290205460ff1690565b6115bf60003361158b565b61160c5760405162461bcd60e51b815260206004820152602a60248201526000805160206135158339815191526044820152696164642061646d696e7360b01b6064820152608401610974565b610b0960008261215b565b606060038054610bb390613163565b336001600160a01b0383160361167e5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610974565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600060016116f8600d6119dd565b61170291906133d2565b905090565b6117113383611d8f565b61172d5760405162461bcd60e51b8152600401610974906131b3565b61173984848484612165565b50505050565b606061094782612198565b6000818152600160205260408120610947906122f9565b61117b8282612303565b61177660003361158b565b6117cb5760405162461bcd60e51b8152602060048201526032602482015260008051602061351583398151915260448201527131b0b636103a3434b990333ab731ba34b7b760711b6064820152608401610974565b60005b83811015611846578282828181106117e8576117e861319d565b90506020020135601560008787858181106118055761180561319d565b905060200201602081019061181a9190612dd9565b6001600160a01b031681526020810191909152604001600020558061183e8161314a565b9150506117ce565b5050505050565b6060600f8054610bb390613163565b336000908152601560205260409020546118b85760405162461bcd60e51b815260206004820152601c60248201527f5343415243453a20796f752068617665206c6566742030206d696e74000000006044820152606401610974565b601154336000908152601560205260409020546118d5600d6119dd565b6118df91906130da565b11156118fd5760405162461bcd60e51b8152600401610974906130ed565b60005b336000908152601560205260409020548110156119935761192533610a56600d6119dd565b3360146000611934600d6119dd565b815260200190815260200160002060006101000a8154816001600160a01b0302191690836001600160a01b03160217905550611973610aa9600d6119dd565b611981600d80546001019055565b8061198b8161314a565b915050611900565b503360009081526015602052604081209081556001908101805460ff19169091179055565b60006001600160e01b0319821663780e9d6360e01b1480610947575061094782612383565b80546000906109479060016130da565b6001600160a01b038216611a435760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610974565b611a4c81611d04565b15611a995760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610974565b611aa5600083836123c3565b6001600160a01b0382166000908152600560205260408120805460019290611ace9084906130da565b909155505060008181526004602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b606081600003611b535750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611b7d5780611b678161314a565b9150611b769050600a836133fb565b9150611b57565b60008167ffffffffffffffff811115611b9857611b98612bf0565b6040519080825280601f01601f191660200182016040528015611bc2576020820181803683370190505b5090505b8415611c2d57611bd76001836133d2565b9150611be4600a8661340f565b611bef9060306130da565b60f81b818381518110611c0457611c0461319d565b60200101906001600160f81b031916908160001a905350611c26600a866133fb565b9450611bc6565b949350505050565b611c3e82611d04565b611ca15760405162461bcd60e51b815260206004820152602e60248201527f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60448201526d32bc34b9ba32b73a103a37b5b2b760911b6064820152608401610974565b6000828152600c60205260409020610dce8282613252565b600060105482611cc991906130c3565b6013546040519192506001600160a01b03169082156108fc029083906000818181858888f19350505050158015610dce573d6000803e3d6000fd5b6000908152600460205260409020546001600160a01b0316151590565b600081815260066020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611d568261143a565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611d9a82611d04565b611dfb5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610974565b6000611e068361143a565b9050806001600160a01b0316846001600160a01b03161480611e415750836001600160a01b0316611e3684610c36565b6001600160a01b0316145b80611c2d57506001600160a01b0380821660009081526007602090815260408083209388168352929052205460ff16611c2d565b826001600160a01b0316611e888261143a565b6001600160a01b031614611ef05760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610974565b6001600160a01b038216611f525760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610974565b611f5d8383836123c3565b611f68600082611d21565b6001600160a01b0383166000908152600560205260408120805460019290611f919084906133d2565b90915550506001600160a01b0382166000908152600560205260408120805460019290611fbf9084906130da565b909155505060008181526004602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60008281526020819052604090206001015461203d905b3361158b565b6120a15760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e60448201526e0818591b5a5b881d1bc819dc985b9d608a1b6064820152608401610974565b610f5782826123ce565b6000611584836001600160a01b038416612452565b6001600160a01b03811633146121305760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b6064820152608401610974565b610f5782826124a1565b6000611584836001600160a01b038416612506565b600061158483836125f9565b6110c382826120a1565b612170848484611e75565b61217c8484848461267f565b6117395760405162461bcd60e51b815260040161097490613423565b60606121a382611d04565b6122095760405162461bcd60e51b815260206004820152603160248201527f45524337323155524953746f726167653a2055524920717565727920666f72206044820152703737b732bc34b9ba32b73a103a37b5b2b760791b6064820152608401610974565b6000828152600c60205260408120805461222290613163565b80601f016020809104026020016040519081016040528092919081815260200182805461224e90613163565b801561229b5780601f106122705761010080835404028352916020019161229b565b820191906000526020600020905b81548152906001019060200180831161227e57829003601f168201915b5050505050905060006122ac612780565b905080516000036122be575092915050565b8151156122f05780826040516020016122d8929190613475565b60405160208183030381529060405292505050919050565b611c2d8461278f565b6000610947825490565b60008281526020819052604090206001015461231e90612037565b6121305760405162461bcd60e51b815260206004820152603060248201527f416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e60448201526f2061646d696e20746f207265766f6b6560801b6064820152608401610974565b60006001600160e01b031982166380ac58cd60e01b14806123b457506001600160e01b03198216635b5e139f60e01b145b80610947575061094782612859565b610dce83838361287e565b6123d8828261158b565b610f57576000828152602081815260408083206001600160a01b03851684529091529020805460ff1916600117905561240e3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b600081815260018301602052604081205461249957508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610947565b506000610947565b6124ab828261158b565b15610f57576000828152602081815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b600081815260018301602052604081205480156125ef57600061252a6001836133d2565b855490915060009061253e906001906133d2565b905060008660000182815481106125575761255761319d565b906000526020600020015490508087600001848154811061257a5761257a61319d565b6000918252602090912001556125918360016130da565b600082815260018901602052604090205586548790806125b3576125b36134a4565b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050610947565b6000915050610947565b815460009082106126575760405162461bcd60e51b815260206004820152602260248201527f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610974565b82600001828154811061266c5761266c61319d565b9060005260206000200154905092915050565b60006001600160a01b0384163b1561277557604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906126c39033908990889088906004016134ba565b6020604051808303816000875af19250505080156126fe575060408051601f3d908101601f191682019092526126fb918101906134f7565b60015b61275b573d80801561272c576040519150601f19603f3d011682016040523d82523d6000602084013e612731565b606091505b5080516000036127535760405162461bcd60e51b815260040161097490613423565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611c2d565b506001949350505050565b6060600e8054610bb390613163565b606061279a82611d04565b6127fe5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610974565b6000612808612780565b905060008151116128285760405180602001604052806000815250611584565b8061283284611b2c565b604051602001612843929190613475565b6040516020818303038152906040529392505050565b60006001600160e01b03198216635a05180f60e01b1480610947575061094782612936565b6001600160a01b0383166128d9576128d481600a80546000838152600b60205260408120829055600182018355919091527fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a80155565b6128fc565b816001600160a01b0316836001600160a01b0316146128fc576128fc838261296b565b6001600160a01b03821661291357610dce81612a08565b826001600160a01b0316826001600160a01b031614610dce57610dce8282612ab7565b60006001600160e01b03198216637965db0b60e01b148061094757506301ffc9a760e01b6001600160e01b0319831614610947565b60006001612978846114e5565b61298291906133d2565b6000838152600960205260409020549091508082146129d5576001600160a01b03841660009081526008602090815260408083208584528252808320548484528184208190558352600990915290208190555b5060009182526009602090815260408084208490556001600160a01b039094168352600881528383209183525290812055565b600a54600090612a1a906001906133d2565b6000838152600b6020526040812054600a8054939450909284908110612a4257612a4261319d565b9060005260206000200154905080600a8381548110612a6357612a6361319d565b6000918252602080832090910192909255828152600b9091526040808220849055858252812055600a805480612a9b57612a9b6134a4565b6001900381819060005260206000200160009055905550505050565b6000612ac2836114e5565b6001600160a01b039093166000908152600860209081526040808320868452825280832085905593825260099052919091209190915550565b6001600160e01b031981168114610b0957600080fd5b600060208284031215612b2357600080fd5b813561158481612afb565b600060208284031215612b4057600080fd5b5035919050565b60005b83811015612b62578181015183820152602001612b4a565b50506000910152565b60008151808452612b83816020860160208601612b47565b601f01601f19169290920160200192915050565b6020815260006115846020830184612b6b565b80356001600160a01b0381168114612bc157600080fd5b919050565b60008060408385031215612bd957600080fd5b612be283612baa565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115612c2157612c21612bf0565b604051601f8501601f19908116603f01168101908282118183101715612c4957612c49612bf0565b81604052809350858152868686011115612c6257600080fd5b858560208301376000602087830101525050509392505050565b600082601f830112612c8d57600080fd5b61158483833560208501612c06565b60008060408385031215612caf57600080fd5b82359150602083013567ffffffffffffffff811115612ccd57600080fd5b612cd985828601612c7c565b9150509250929050565b60008083601f840112612cf557600080fd5b50813567ffffffffffffffff811115612d0d57600080fd5b6020830191508360208260051b8501011115612d2857600080fd5b9250929050565b60008060208385031215612d4257600080fd5b823567ffffffffffffffff811115612d5957600080fd5b612d6585828601612ce3565b90969095509350505050565b600080600060608486031215612d8657600080fd5b612d8f84612baa565b9250612d9d60208501612baa565b9150604084013590509250925092565b60008060408385031215612dc057600080fd5b82359150612dd060208401612baa565b90509250929050565b600060208284031215612deb57600080fd5b61158482612baa565b80358015158114612bc157600080fd5b600060208284031215612e1657600080fd5b61158482612df4565b600060208284031215612e3157600080fd5b813567ffffffffffffffff811115612e4857600080fd5b611c2d84828501612c7c565b60008060208385031215612e6757600080fd5b823567ffffffffffffffff80821115612e7f57600080fd5b818501915085601f830112612e9357600080fd5b813581811115612ea257600080fd5b866020828501011115612eb457600080fd5b60209290920196919550909350505050565b60008060408385031215612ed957600080fd5b50508035926020909101359150565b60008060408385031215612efb57600080fd5b612f0483612baa565b9150612dd060208401612df4565b60008060008060808587031215612f2857600080fd5b612f3185612baa565b9350612f3f60208601612baa565b925060408501359150606085013567ffffffffffffffff811115612f6257600080fd5b8501601f81018713612f7357600080fd5b612f8287823560208401612c06565b91505092959194509250565b60008060008060408587031215612fa457600080fd5b843567ffffffffffffffff80821115612fbc57600080fd5b612fc888838901612ce3565b90965094506020870135915080821115612fe157600080fd5b50612fee87828801612ce3565b95989497509550505050565b6000806040838503121561300d57600080fd5b61301683612baa565b9150612dd060208401612baa565b60208082526027908201527f5343415243453a206f6e6c79207468652061646d696e20726f6c652063616e20604082015266646f207468697360c81b606082015260800190565b60208082526022908201527f5343415243453a206d696e74696e672063757272656e746c792064697361626c604082015261195960f21b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417610947576109476130ad565b80820180821115610947576109476130ad565b60208082526021908201527f5343415243453a20616c6c204e4654732068617665206265656e206d696e74656040820152601960fa1b606082015260800190565b60008251613140818460208701612b47565b9190910192915050565b60006001820161315c5761315c6130ad565b5060010190565b600181811c9082168061317757607f821691505b60208210810361319757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b601f821115610dce57600081815260208120601f850160051c8101602086101561322b5750805b601f850160051c820191505b8181101561324a57828155600101613237565b505050505050565b815167ffffffffffffffff81111561326c5761326c612bf0565b6132808161327a8454613163565b84613204565b602080601f8311600181146132b5576000841561329d5750858301515b600019600386901b1c1916600185901b17855561324a565b600085815260208120601f198616915b828110156132e4578886015182559484019460019091019084016132c5565b50858210156133025787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b67ffffffffffffffff83111561332a5761332a612bf0565b61333e836133388354613163565b83613204565b6000601f841160018114613372576000851561335a5750838201355b600019600387901b1c1916600186901b178355611846565b600083815260209020601f19861690835b828110156133a35786850135825560209485019460019092019101613383565b50868210156133c05760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b81810381811115610947576109476130ad565b634e487b7160e01b600052601260045260246000fd5b60008261340a5761340a6133e5565b500490565b60008261341e5761341e6133e5565b500690565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60008351613487818460208801612b47565b83519083019061349b818360208801612b47565b01949350505050565b634e487b7160e01b600052603160045260246000fd5b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906134ed90830184612b6b565b9695505050505050565b60006020828403121561350957600080fd5b815161158481612afb56fe5343415243453a206d75737420686176652061646d696e20726f6c6520746f20a2646970667358221220fd6f5bcba56a5da143d9ebb969f7602c5db18b813ab045e86279967e64c7784c64736f6c6343000813003368747470733a2f2f697066732e66696c65626173652e696f2f697066732f516d504d634269734c37764378336b7a417a68315a4b707750564e73424c51396754745a6952753135637770734b

Deployed Bytecode

0x6080604052600436106102b25760003560e01c80635d098b3811610175578063a7f93ebd116100dc578063ca15c87311610095578063e576df1c1161006f578063e576df1c146108a9578063e8a3d485146108c9578063e985e9c5146108de578063edcbb4a11461092757600080fd5b8063ca15c87314610853578063d547741f14610873578063d5abeb011461089357600080fd5b8063a7f93ebd14610792578063ac72200d146107a7578063b7530819146107bc578063b88d4fde146107f2578063beb9716d14610812578063c87b56dd1461083357600080fd5b806391d148541161012e57806391d14854146106f1578063926f353b1461071157806395d89b411461073157806398bcede914610746578063a217fddf1461075d578063a22cb4651461077257600080fd5b80635d098b38146106315780636352211e14610651578063653088cf1461067157806370a082311461069157806375f0a874146106b15780639010d07c146106d157600080fd5b8063248a9ca31161021957806343e61a41116101d257806343e61a41146105715780634c0f38c2146105865780634ea3871a1461059b5780634f6ccce7146105bb578063510b5158146105db57806355f804b31461061157600080fd5b8063248a9ca3146104755780632f2ff15d146104a55780632f745c59146104c557806336568abe146104e55780633b4fcc4f1461050557806342842e0e1461055157600080fd5b8063095ea7b31161026b578063095ea7b3146103ce5780631249c58b146103ee578063162094c4146103f657806318160ddd146104165780631e1a1e761461043557806323b872dd1461045557600080fd5b806301ffc9a7146102f757806302ebcb791461032c578063059513a61461034c5780630614117a1461035f57806306fdde0314610374578063081812fc1461039657600080fd5b366102f2576013546040516001600160a01b03909116903480156108fc02916000818181858888f193505050501580156102f0573d6000803e3d6000fd5b005b600080fd5b34801561030357600080fd5b50610317610312366004612b11565b61093c565b60405190151581526020015b60405180910390f35b34801561033857600080fd5b506102f0610347366004612b2e565b61094d565b6102f061035a366004612b2e565b610982565b34801561036b57600080fd5b506102f0610b0c565b34801561038057600080fd5b50610389610ba4565b6040516103239190612b97565b3480156103a257600080fd5b506103b66103b1366004612b2e565b610c36565b6040516001600160a01b039091168152602001610323565b3480156103da57600080fd5b506102f06103e9366004612bc6565b610cbe565b6102f0610dd3565b34801561040257600080fd5b506102f0610411366004612c9c565b610eef565b34801561042257600080fd5b50600a545b604051908152602001610323565b34801561044157600080fd5b506102f0610450366004612d2f565b610f5b565b34801561046157600080fd5b506102f0610470366004612d71565b611088565b34801561048157600080fd5b50610427610490366004612b2e565b60009081526020819052604090206001015490565b3480156104b157600080fd5b506102f06104c0366004612dad565b6110b9565b3480156104d157600080fd5b506104276104e0366004612bc6565b6110db565b3480156104f157600080fd5b506102f0610500366004612dad565b611171565b34801561051157600080fd5b5061053c610520366004612dd9565b6015602052600090815260409020805460019091015460ff1682565b60408051928352901515602083015201610323565b34801561055d57600080fd5b506102f061056c366004612d71565b611193565b34801561057d57600080fd5b506103896111ae565b34801561059257600080fd5b50601154610427565b3480156105a757600080fd5b506102f06105b6366004612e04565b61123c565b3480156105c757600080fd5b506104276105d6366004612b2e565b6112be565b3480156105e757600080fd5b506103b66105f6366004612b2e565b6014602052600090815260409020546001600160a01b031681565b34801561061d57600080fd5b506102f061062c366004612e1f565b611351565b34801561063d57600080fd5b506102f061064c366004612dd9565b6113ba565b34801561065d57600080fd5b506103b661066c366004612b2e565b61143a565b34801561067d57600080fd5b506102f061068c366004612e54565b6114b1565b34801561069d57600080fd5b506104276106ac366004612dd9565b6114e5565b3480156106bd57600080fd5b506013546103b6906001600160a01b031681565b3480156106dd57600080fd5b506103b66106ec366004612ec6565b61156c565b3480156106fd57600080fd5b5061031761070c366004612dad565b61158b565b34801561071d57600080fd5b506102f061072c366004612dd9565b6115b4565b34801561073d57600080fd5b50610389611617565b34801561075257600080fd5b50600d546104279081565b34801561076957600080fd5b50610427600081565b34801561077e57600080fd5b506102f061078d366004612ee8565b611626565b34801561079e57600080fd5b50601054610427565b3480156107b357600080fd5b506104276116ea565b3480156107c857600080fd5b506103b66107d7366004612b2e565b6000908152601460205260409020546001600160a01b031690565b3480156107fe57600080fd5b506102f061080d366004612f12565b611707565b34801561081e57600080fd5b5060125461031790600160a01b900460ff1681565b34801561083f57600080fd5b5061038961084e366004612b2e565b61173f565b34801561085f57600080fd5b5061042761086e366004612b2e565b61174a565b34801561087f57600080fd5b506102f061088e366004612dad565b611761565b34801561089f57600080fd5b5061042760115481565b3480156108b557600080fd5b506102f06108c4366004612f8e565b61176b565b3480156108d557600080fd5b5061038961184d565b3480156108ea57600080fd5b506103176108f9366004612ffa565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b34801561093357600080fd5b506102f061185c565b6000610947826119b8565b92915050565b61095860003361158b565b61097d5760405162461bcd60e51b815260040161097490613024565b60405180910390fd5b601055565b601254600160a01b900460ff166109ab5760405162461bcd60e51b81526004016109749061306b565b6010546109b890826130c3565b341015610a075760405162461bcd60e51b815260206004820152601f60248201527f5343415243453a206d7573742073656e6420636f7272656374207072696365006044820152606401610974565b60115481610a15600d6119dd565b610a1f91906130da565b1115610a3d5760405162461bcd60e51b8152600401610974906130ed565b60005b81811015610aff57610a5b33610a56600d6119dd565b6119ed565b3360146000610a6a600d6119dd565b815260200190815260200160002060006101000a8154816001600160a01b0302191690836001600160a01b03160217905550610adf610aa9600d6119dd565b610abb610ab6600d6119dd565b611b2c565b604051602001610acb919061312e565b604051602081830303815290604052611c35565b610aed600d80546001019055565b80610af78161314a565b915050610a40565b50610b0981611cb9565b50565b610b1760003361158b565b610b6b5760405162461bcd60e51b81526020600482015260316024820152600080516020613515833981519152604482015270636c61696d207468652062616c616e636560781b6064820152608401610974565b6012546040516001600160a01b03909116904780156108fc02916000818181858888f19350505050158015610b09573d6000803e3d6000fd5b606060028054610bb390613163565b80601f0160208091040260200160405190810160405280929190818152602001828054610bdf90613163565b8015610c2c5780601f10610c0157610100808354040283529160200191610c2c565b820191906000526020600020905b815481529060010190602001808311610c0f57829003601f168201915b5050505050905090565b6000610c4182611d04565b610ca25760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610974565b506000908152600660205260409020546001600160a01b031690565b6000610cc98261143a565b9050806001600160a01b0316836001600160a01b031603610d365760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610974565b336001600160a01b0382161480610d525750610d5281336108f9565b610dc45760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610974565b610dce8383611d21565b505050565b601254600160a01b900460ff16610dfc5760405162461bcd60e51b81526004016109749061306b565b601054341015610e4e5760405162461bcd60e51b815260206004820152601f60248201527f5343415243453a206d7573742073656e6420636f7272656374207072696365006044820152606401610974565b601154610e5b600d6119dd565b1115610e795760405162461bcd60e51b8152600401610974906130ed565b610e8733610a56600d6119dd565b3360146000610e96600d6119dd565b815260200190815260200160002060006101000a8154816001600160a01b0302191690836001600160a01b03160217905550610ed5610aa9600d6119dd565b610ee3600d80546001019055565b610eed6001611cb9565b565b610efa60003361158b565b610f4d5760405162461bcd60e51b8152602060048201526030602482015260008051602061351583398151915260448201526f6368616e676520746f6b656e2055524960801b6064820152608401610974565b610f578282611c35565b5050565b610f6660003361158b565b610fb55760405162461bcd60e51b815260206004820152602c602482015260008051602061351583398151915260448201526b1a5b9a5d1a585b081b5a5b9d60a21b6064820152608401610974565b60005b81811015610dce57610ff4838383818110610fd557610fd561319d565b9050602002016020810190610fea9190612dd9565b610a56600d6119dd565b8282828181106110065761100661319d565b905060200201602081019061101b9190612dd9565b60146000611029600d6119dd565b815260200190815260200160002060006101000a8154816001600160a01b0302191690836001600160a01b03160217905550611068610aa9600d6119dd565b611076600d80546001019055565b806110808161314a565b915050610fb8565b6110923382611d8f565b6110ae5760405162461bcd60e51b8152600401610974906131b3565b610dce838383611e75565b6110c38282612020565b6000828152600160205260409020610dce90826120ab565b60006110e6836114e5565b82106111485760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610974565b506001600160a01b03919091166000908152600860209081526040808320938352929052205490565b61117b82826120c0565b6000828152600160205260409020610dce908261213a565b610dce83838360405180602001604052806000815250611707565b600f80546111bb90613163565b80601f01602080910402602001604051908101604052809291908181526020018280546111e790613163565b80156112345780601f1061120957610100808354040283529160200191611234565b820191906000526020600020905b81548152906001019060200180831161121757829003601f168201915b505050505081565b61124760003361158b565b6112a05760405162461bcd60e51b815260206004820152603660248201526000805160206135158339815191526044820152756368616e6765206d696e74696e67206162696c69747960501b6064820152608401610974565b60128054911515600160a01b0260ff60a01b19909216919091179055565b60006112c9600a5490565b821061132c5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610974565b600a828154811061133f5761133f61319d565b90600052602060002001549050919050565b61135c60003361158b565b6113ae5760405162461bcd60e51b815260206004820152602f602482015260008051602061351583398151915260448201526e6368616e676520626173652055524960881b6064820152608401610974565b600e610f578282613252565b6113c560003361158b565b6114185760405162461bcd60e51b8152602060048201526030602482015260008051602061351583398151915260448201526f6d616b652074686973206368616e676560801b6064820152608401610974565b601380546001600160a01b0319166001600160a01b0392909216919091179055565b6000818152600460205260408120546001600160a01b0316806109475760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610974565b6114bc60003361158b565b6114d85760405162461bcd60e51b815260040161097490613024565b600f610dce828483613312565b60006001600160a01b0382166115505760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610974565b506001600160a01b031660009081526005602052604090205490565b6000828152600160205260408120611584908361214f565b9392505050565b6000918252602082815260408084206001600160a01b0393909316845291905290205460ff1690565b6115bf60003361158b565b61160c5760405162461bcd60e51b815260206004820152602a60248201526000805160206135158339815191526044820152696164642061646d696e7360b01b6064820152608401610974565b610b0960008261215b565b606060038054610bb390613163565b336001600160a01b0383160361167e5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610974565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600060016116f8600d6119dd565b61170291906133d2565b905090565b6117113383611d8f565b61172d5760405162461bcd60e51b8152600401610974906131b3565b61173984848484612165565b50505050565b606061094782612198565b6000818152600160205260408120610947906122f9565b61117b8282612303565b61177660003361158b565b6117cb5760405162461bcd60e51b8152602060048201526032602482015260008051602061351583398151915260448201527131b0b636103a3434b990333ab731ba34b7b760711b6064820152608401610974565b60005b83811015611846578282828181106117e8576117e861319d565b90506020020135601560008787858181106118055761180561319d565b905060200201602081019061181a9190612dd9565b6001600160a01b031681526020810191909152604001600020558061183e8161314a565b9150506117ce565b5050505050565b6060600f8054610bb390613163565b336000908152601560205260409020546118b85760405162461bcd60e51b815260206004820152601c60248201527f5343415243453a20796f752068617665206c6566742030206d696e74000000006044820152606401610974565b601154336000908152601560205260409020546118d5600d6119dd565b6118df91906130da565b11156118fd5760405162461bcd60e51b8152600401610974906130ed565b60005b336000908152601560205260409020548110156119935761192533610a56600d6119dd565b3360146000611934600d6119dd565b815260200190815260200160002060006101000a8154816001600160a01b0302191690836001600160a01b03160217905550611973610aa9600d6119dd565b611981600d80546001019055565b8061198b8161314a565b915050611900565b503360009081526015602052604081209081556001908101805460ff19169091179055565b60006001600160e01b0319821663780e9d6360e01b1480610947575061094782612383565b80546000906109479060016130da565b6001600160a01b038216611a435760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610974565b611a4c81611d04565b15611a995760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610974565b611aa5600083836123c3565b6001600160a01b0382166000908152600560205260408120805460019290611ace9084906130da565b909155505060008181526004602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b606081600003611b535750506040805180820190915260018152600360fc1b602082015290565b8160005b8115611b7d5780611b678161314a565b9150611b769050600a836133fb565b9150611b57565b60008167ffffffffffffffff811115611b9857611b98612bf0565b6040519080825280601f01601f191660200182016040528015611bc2576020820181803683370190505b5090505b8415611c2d57611bd76001836133d2565b9150611be4600a8661340f565b611bef9060306130da565b60f81b818381518110611c0457611c0461319d565b60200101906001600160f81b031916908160001a905350611c26600a866133fb565b9450611bc6565b949350505050565b611c3e82611d04565b611ca15760405162461bcd60e51b815260206004820152602e60248201527f45524337323155524953746f726167653a2055524920736574206f66206e6f6e60448201526d32bc34b9ba32b73a103a37b5b2b760911b6064820152608401610974565b6000828152600c60205260409020610dce8282613252565b600060105482611cc991906130c3565b6013546040519192506001600160a01b03169082156108fc029083906000818181858888f19350505050158015610dce573d6000803e3d6000fd5b6000908152600460205260409020546001600160a01b0316151590565b600081815260066020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611d568261143a565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611d9a82611d04565b611dfb5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610974565b6000611e068361143a565b9050806001600160a01b0316846001600160a01b03161480611e415750836001600160a01b0316611e3684610c36565b6001600160a01b0316145b80611c2d57506001600160a01b0380821660009081526007602090815260408083209388168352929052205460ff16611c2d565b826001600160a01b0316611e888261143a565b6001600160a01b031614611ef05760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610974565b6001600160a01b038216611f525760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610974565b611f5d8383836123c3565b611f68600082611d21565b6001600160a01b0383166000908152600560205260408120805460019290611f919084906133d2565b90915550506001600160a01b0382166000908152600560205260408120805460019290611fbf9084906130da565b909155505060008181526004602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60008281526020819052604090206001015461203d905b3361158b565b6120a15760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e60448201526e0818591b5a5b881d1bc819dc985b9d608a1b6064820152608401610974565b610f5782826123ce565b6000611584836001600160a01b038416612452565b6001600160a01b03811633146121305760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b6064820152608401610974565b610f5782826124a1565b6000611584836001600160a01b038416612506565b600061158483836125f9565b6110c382826120a1565b612170848484611e75565b61217c8484848461267f565b6117395760405162461bcd60e51b815260040161097490613423565b60606121a382611d04565b6122095760405162461bcd60e51b815260206004820152603160248201527f45524337323155524953746f726167653a2055524920717565727920666f72206044820152703737b732bc34b9ba32b73a103a37b5b2b760791b6064820152608401610974565b6000828152600c60205260408120805461222290613163565b80601f016020809104026020016040519081016040528092919081815260200182805461224e90613163565b801561229b5780601f106122705761010080835404028352916020019161229b565b820191906000526020600020905b81548152906001019060200180831161227e57829003601f168201915b5050505050905060006122ac612780565b905080516000036122be575092915050565b8151156122f05780826040516020016122d8929190613475565b60405160208183030381529060405292505050919050565b611c2d8461278f565b6000610947825490565b60008281526020819052604090206001015461231e90612037565b6121305760405162461bcd60e51b815260206004820152603060248201527f416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e60448201526f2061646d696e20746f207265766f6b6560801b6064820152608401610974565b60006001600160e01b031982166380ac58cd60e01b14806123b457506001600160e01b03198216635b5e139f60e01b145b80610947575061094782612859565b610dce83838361287e565b6123d8828261158b565b610f57576000828152602081815260408083206001600160a01b03851684529091529020805460ff1916600117905561240e3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b600081815260018301602052604081205461249957508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610947565b506000610947565b6124ab828261158b565b15610f57576000828152602081815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b600081815260018301602052604081205480156125ef57600061252a6001836133d2565b855490915060009061253e906001906133d2565b905060008660000182815481106125575761255761319d565b906000526020600020015490508087600001848154811061257a5761257a61319d565b6000918252602090912001556125918360016130da565b600082815260018901602052604090205586548790806125b3576125b36134a4565b60019003818190600052602060002001600090559055866001016000878152602001908152602001600020600090556001945050505050610947565b6000915050610947565b815460009082106126575760405162461bcd60e51b815260206004820152602260248201527f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610974565b82600001828154811061266c5761266c61319d565b9060005260206000200154905092915050565b60006001600160a01b0384163b1561277557604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906126c39033908990889088906004016134ba565b6020604051808303816000875af19250505080156126fe575060408051601f3d908101601f191682019092526126fb918101906134f7565b60015b61275b573d80801561272c576040519150601f19603f3d011682016040523d82523d6000602084013e612731565b606091505b5080516000036127535760405162461bcd60e51b815260040161097490613423565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611c2d565b506001949350505050565b6060600e8054610bb390613163565b606061279a82611d04565b6127fe5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610974565b6000612808612780565b905060008151116128285760405180602001604052806000815250611584565b8061283284611b2c565b604051602001612843929190613475565b6040516020818303038152906040529392505050565b60006001600160e01b03198216635a05180f60e01b1480610947575061094782612936565b6001600160a01b0383166128d9576128d481600a80546000838152600b60205260408120829055600182018355919091527fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a80155565b6128fc565b816001600160a01b0316836001600160a01b0316146128fc576128fc838261296b565b6001600160a01b03821661291357610dce81612a08565b826001600160a01b0316826001600160a01b031614610dce57610dce8282612ab7565b60006001600160e01b03198216637965db0b60e01b148061094757506301ffc9a760e01b6001600160e01b0319831614610947565b60006001612978846114e5565b61298291906133d2565b6000838152600960205260409020549091508082146129d5576001600160a01b03841660009081526008602090815260408083208584528252808320548484528184208190558352600990915290208190555b5060009182526009602090815260408084208490556001600160a01b039094168352600881528383209183525290812055565b600a54600090612a1a906001906133d2565b6000838152600b6020526040812054600a8054939450909284908110612a4257612a4261319d565b9060005260206000200154905080600a8381548110612a6357612a6361319d565b6000918252602080832090910192909255828152600b9091526040808220849055858252812055600a805480612a9b57612a9b6134a4565b6001900381819060005260206000200160009055905550505050565b6000612ac2836114e5565b6001600160a01b039093166000908152600860209081526040808320868452825280832085905593825260099052919091209190915550565b6001600160e01b031981168114610b0957600080fd5b600060208284031215612b2357600080fd5b813561158481612afb565b600060208284031215612b4057600080fd5b5035919050565b60005b83811015612b62578181015183820152602001612b4a565b50506000910152565b60008151808452612b83816020860160208601612b47565b601f01601f19169290920160200192915050565b6020815260006115846020830184612b6b565b80356001600160a01b0381168114612bc157600080fd5b919050565b60008060408385031215612bd957600080fd5b612be283612baa565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b600067ffffffffffffffff80841115612c2157612c21612bf0565b604051601f8501601f19908116603f01168101908282118183101715612c4957612c49612bf0565b81604052809350858152868686011115612c6257600080fd5b858560208301376000602087830101525050509392505050565b600082601f830112612c8d57600080fd5b61158483833560208501612c06565b60008060408385031215612caf57600080fd5b82359150602083013567ffffffffffffffff811115612ccd57600080fd5b612cd985828601612c7c565b9150509250929050565b60008083601f840112612cf557600080fd5b50813567ffffffffffffffff811115612d0d57600080fd5b6020830191508360208260051b8501011115612d2857600080fd5b9250929050565b60008060208385031215612d4257600080fd5b823567ffffffffffffffff811115612d5957600080fd5b612d6585828601612ce3565b90969095509350505050565b600080600060608486031215612d8657600080fd5b612d8f84612baa565b9250612d9d60208501612baa565b9150604084013590509250925092565b60008060408385031215612dc057600080fd5b82359150612dd060208401612baa565b90509250929050565b600060208284031215612deb57600080fd5b61158482612baa565b80358015158114612bc157600080fd5b600060208284031215612e1657600080fd5b61158482612df4565b600060208284031215612e3157600080fd5b813567ffffffffffffffff811115612e4857600080fd5b611c2d84828501612c7c565b60008060208385031215612e6757600080fd5b823567ffffffffffffffff80821115612e7f57600080fd5b818501915085601f830112612e9357600080fd5b813581811115612ea257600080fd5b866020828501011115612eb457600080fd5b60209290920196919550909350505050565b60008060408385031215612ed957600080fd5b50508035926020909101359150565b60008060408385031215612efb57600080fd5b612f0483612baa565b9150612dd060208401612df4565b60008060008060808587031215612f2857600080fd5b612f3185612baa565b9350612f3f60208601612baa565b925060408501359150606085013567ffffffffffffffff811115612f6257600080fd5b8501601f81018713612f7357600080fd5b612f8287823560208401612c06565b91505092959194509250565b60008060008060408587031215612fa457600080fd5b843567ffffffffffffffff80821115612fbc57600080fd5b612fc888838901612ce3565b90965094506020870135915080821115612fe157600080fd5b50612fee87828801612ce3565b95989497509550505050565b6000806040838503121561300d57600080fd5b61301683612baa565b9150612dd060208401612baa565b60208082526027908201527f5343415243453a206f6e6c79207468652061646d696e20726f6c652063616e20604082015266646f207468697360c81b606082015260800190565b60208082526022908201527f5343415243453a206d696e74696e672063757272656e746c792064697361626c604082015261195960f21b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b8082028115828204841417610947576109476130ad565b80820180821115610947576109476130ad565b60208082526021908201527f5343415243453a20616c6c204e4654732068617665206265656e206d696e74656040820152601960fa1b606082015260800190565b60008251613140818460208701612b47565b9190910192915050565b60006001820161315c5761315c6130ad565b5060010190565b600181811c9082168061317757607f821691505b60208210810361319757634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b601f821115610dce57600081815260208120601f850160051c8101602086101561322b5750805b601f850160051c820191505b8181101561324a57828155600101613237565b505050505050565b815167ffffffffffffffff81111561326c5761326c612bf0565b6132808161327a8454613163565b84613204565b602080601f8311600181146132b5576000841561329d5750858301515b600019600386901b1c1916600185901b17855561324a565b600085815260208120601f198616915b828110156132e4578886015182559484019460019091019084016132c5565b50858210156133025787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b67ffffffffffffffff83111561332a5761332a612bf0565b61333e836133388354613163565b83613204565b6000601f841160018114613372576000851561335a5750838201355b600019600387901b1c1916600186901b178355611846565b600083815260209020601f19861690835b828110156133a35786850135825560209485019460019092019101613383565b50868210156133c05760001960f88860031b161c19848701351681555b505060018560011b0183555050505050565b81810381811115610947576109476130ad565b634e487b7160e01b600052601260045260246000fd5b60008261340a5761340a6133e5565b500490565b60008261341e5761341e6133e5565b500690565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60008351613487818460208801612b47565b83519083019061349b818360208801612b47565b01949350505050565b634e487b7160e01b600052603160045260246000fd5b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906134ed90830184612b6b565b9695505050505050565b60006020828403121561350957600080fd5b815161158481612afb56fe5343415243453a206d75737420686176652061646d696e20726f6c6520746f20a2646970667358221220fd6f5bcba56a5da143d9ebb969f7602c5db18b813ab045e86279967e64c7784c64736f6c63430008130033

Deployed Bytecode Sourcemap

1289:7391:18:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2374:15;;2366:44;;-1:-1:-1;;;;;2374:15:18;;;;2400:9;2366:44;;;;;2374:15;2366:44;2374:15;2366:44;2400:9;2374:15;2366:44;;;;;;;;;;;;;;;;;;;;;1289:7391;;;;7955:198;;;;;;;;;;-1:-1:-1;7955:198:18;;;;;:::i;:::-;;:::i;:::-;;;565:14:20;;558:22;540:41;;528:2;513:18;7955:198:18;;;;;;;;3308:196;;;;;;;;;;-1:-1:-1;3308:196:18;;;;;:::i;:::-;;:::i;6102:664::-;;;;;;:::i;:::-;;:::i;8159:293::-;;;;;;;;;;;;;:::i;2456:100:6:-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;3923:221::-;;;;;;;;;;-1:-1:-1;3923:221:6;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;1697:32:20;;;1679:51;;1667:2;1652:18;3923:221:6;1533:203:20;3453:404:6;;;;;;;;;;-1:-1:-1;3453:404:6;;;;;:::i;:::-;;:::i;4816:550:18:-;;;:::i;4372:226::-;;;;;;;;;;-1:-1:-1;4372:226:18;;;;;:::i;:::-;;:::i;1590:113:8:-;;;;;;;;;;-1:-1:-1;1678:10:8;:17;1590:113;;;3715:25:20;;;3703:2;3688:18;1590:113:8;3569:177:20;6774:506:18;;;;;;;;;;-1:-1:-1;6774:506:18;;;;;:::i;:::-;;:::i;4813:305:6:-;;;;;;;;;;-1:-1:-1;4813:305:6;;;;;:::i;:::-;;:::i;4273:123:0:-;;;;;;;;;;-1:-1:-1;4273:123:0;;;;;:::i;:::-;4339:7;4366:12;;;;;;;;;;:22;;;;4273:123;2201:165:1;;;;;;;;;;-1:-1:-1;2201:165:1;;;;;:::i;:::-;;:::i;1258:256:8:-;;;;;;;;;;-1:-1:-1;1258:256:8;;;;;:::i;:::-;;:::i;2724:174:1:-;;;;;;;;;;-1:-1:-1;2724:174:1;;;;;:::i;:::-;;:::i;2089:59:18:-;;;;;;;;;;-1:-1:-1;2089:59:18;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;5883:25:20;;;5951:14;;5944:22;5939:2;5924:18;;5917:50;5856:18;2089:59:18;5715:258:20;5189:151:6;;;;;;;;;;-1:-1:-1;5189:151:6;;;;;:::i;:::-;;:::i;1637:108:18:-;;;;;;;;;;;;;:::i;3628:94::-;;;;;;;;;;-1:-1:-1;3707:9:18;;3628:94;;4604:204;;;;;;;;;;-1:-1:-1;4604:204:18;;;;;:::i;:::-;;:::i;1780:233:8:-;;;;;;;;;;-1:-1:-1;1780:233:8;;;;;:::i;:::-;;:::i;2040:44:18:-;;;;;;;;;;-1:-1:-1;2040:44:18;;;;;:::i;:::-;;;;;;;;;;;;-1:-1:-1;;;;;2040:44:18;;;4170:196;;;;;;;;;;-1:-1:-1;4170:196:18;;;;;:::i;:::-;;:::i;2782:218::-;;;;;;;;;;-1:-1:-1;2782:218:18;;;;;:::i;:::-;;:::i;2150:239:6:-;;;;;;;;;;-1:-1:-1;2150:239:6;;;;;:::i;:::-;;:::i;3108:194:18:-;;;;;;;;;;-1:-1:-1;3108:194:18;;;;;:::i;:::-;;:::i;1880:208:6:-;;;;;;;;;;-1:-1:-1;1880:208:6;;;;;:::i;:::-;;:::i;1958:75:18:-;;;;;;;;;;-1:-1:-1;1958:75:18;;;;-1:-1:-1;;;;;1958:75:18;;;1656:145:1;;;;;;;;;;-1:-1:-1;1656:145:1;;;;;:::i;:::-;;:::i;3945:139:0:-;;;;;;;;;;-1:-1:-1;3945:139:0;;;;;:::i;:::-;;:::i;3836:211:18:-;;;;;;;;;;-1:-1:-1;3836:211:18;;;;;:::i;:::-;;:::i;2625:104:6:-;;;;;;;;;;;;;:::i;1444:39:18:-;;;;;;;;;;-1:-1:-1;1444:39:18;;;;;;2401:49:0;;;;;;;;;;-1:-1:-1;2401:49:0;2446:4;2401:49;;4216:295:6;;;;;;;;;;-1:-1:-1;4216:295:6;;;;;:::i;:::-;;:::i;3728:102:18:-;;;;;;;;;;-1:-1:-1;3813:11:18;;3728:102;;3510:112;;;;;;;;;;;;;:::i;7286:101::-;;;;;;;;;;-1:-1:-1;7286:101:18;;;;;:::i;:::-;7343:7;7365:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7365:16:18;;7286:101;5411:285:6;;;;;;;;;;-1:-1:-1;5411:285:6;;;;;:::i;:::-;;:::i;1924:27:18:-;;;;;;;;;;-1:-1:-1;1924:27:18;;;;-1:-1:-1;;;1924:27:18;;;;;;7534:160;;;;;;;;;;-1:-1:-1;7534:160:18;;;;;:::i;:::-;;:::i;1975:134:1:-;;;;;;;;;;-1:-1:-1;1975:134:1;;;;;:::i;:::-;;:::i;2459:170::-;;;;;;;;;;-1:-1:-1;2459:170:1;;;;;:::i;:::-;;:::i;1815:28:18:-;;;;;;;;;;;;;;;;2429:347;;;;;;;;;;-1:-1:-1;2429:347:18;;;;;:::i;:::-;;:::i;3006:96::-;;;;;;;;;;;;;:::i;4582:164:6:-;;;;;;;;;;-1:-1:-1;4582:164:6;;;;;:::i;:::-;-1:-1:-1;;;;;4703:25:6;;;4679:4;4703:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;4582:164;5374:722:18;;;;;;;;;;;;;:::i;7955:198::-;8091:4;8111:36;8135:11;8111:23;:36::i;:::-;8104:43;7955:198;-1:-1:-1;;7955:198:18:o;3308:196::-;3378:41;2446:4:0;681:10:3;3945:139:0;:::i;3378:41:18:-;3370:93;;;;-1:-1:-1;;;3370:93:18;;;;;;;:::i;:::-;;;;;;;;;3474:11;:24;3308:196::o;6102:664::-;6179:7;;-1:-1:-1;;;6179:7:18;;;;6171:54;;;;-1:-1:-1;;;6171:54:18;;;;;;;:::i;:::-;6265:11;;6254:22;;:8;:22;:::i;:::-;6240:9;:37;;6232:81;;;;-1:-1:-1;;;6232:81:18;;10797:2:20;6232:81:18;;;10779:21:20;10836:2;10816:18;;;10809:30;10875:33;10855:18;;;10848:61;10926:18;;6232:81:18;10595:355:20;6232:81:18;6370:9;;6357:8;6329:25;:15;:23;:25::i;:::-;:36;;;;:::i;:::-;6328:51;;6320:97;;;;-1:-1:-1;;;6320:97:18;;;;;;;:::i;:::-;6430:6;6426:306;6446:8;6442:1;:12;6426:306;;;6469:44;6475:10;6487:25;:15;:23;:25::i;:::-;6469:5;:44::i;:::-;6559:10;6522:7;:34;6530:25;:15;:23;:25::i;:::-;6522:34;;;;;;;;;;;;:47;;;;;-1:-1:-1;;;;;6522:47:18;;;;;-1:-1:-1;;;;;6522:47:18;;;;;;6578:110;6591:25;:15;:23;:25::i;:::-;6642:43;6659:25;:15;:23;:25::i;:::-;6642:16;:43::i;:::-;6625:61;;;;;;;;:::i;:::-;;;;;;;;;;;;;6578:12;:110::i;:::-;6697:27;:15;1006:19:4;;1024:1;1006:19;;;917:127;6697:27:18;6456:3;;;;:::i;:::-;;;;6426:306;;;;6738:22;6751:8;6738:12;:22::i;:::-;6102:664;:::o;8159:293::-;8215:41;2446:4:0;681:10:3;3945:139:0;:::i;8215:41:18:-;8207:103;;;;-1:-1:-1;;;8207:103:18;;12123:2:20;8207:103:18;;;12105:21:20;12162:2;12142:18;;;12135:30;-1:-1:-1;;;;;;;;;;;12181:18:20;;;12174:62;-1:-1:-1;;;12252:18:20;;;12245:47;12309:19;;8207:103:18;11921:413:20;8207:103:18;8407:6;;8399:47;;-1:-1:-1;;;;;8407:6:18;;;;8424:21;8399:47;;;;;8407:6;8399:47;8407:6;8399:47;8424:21;8407:6;8399:47;;;;;;;;;;;;;;;;;;;2456:100:6;2510:13;2543:5;2536:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2456:100;:::o;3923:221::-;3999:7;4027:16;4035:7;4027;:16::i;:::-;4019:73;;;;-1:-1:-1;;;4019:73:6;;12926:2:20;4019:73:6;;;12908:21:20;12965:2;12945:18;;;12938:30;13004:34;12984:18;;;12977:62;-1:-1:-1;;;13055:18:20;;;13048:42;13107:19;;4019:73:6;12724:408:20;4019:73:6;-1:-1:-1;4112:24:6;;;;:15;:24;;;;;;-1:-1:-1;;;;;4112:24:6;;3923:221::o;3453:404::-;3534:13;3550:23;3565:7;3550:14;:23::i;:::-;3534:39;;3598:5;-1:-1:-1;;;;;3592:11:6;:2;-1:-1:-1;;;;;3592:11:6;;3584:57;;;;-1:-1:-1;;;3584:57:6;;13339:2:20;3584:57:6;;;13321:21:20;13378:2;13358:18;;;13351:30;13417:34;13397:18;;;13390:62;-1:-1:-1;;;13468:18:20;;;13461:31;13509:19;;3584:57:6;13137:397:20;3584:57:6;681:10:3;-1:-1:-1;;;;;3662:21:6;;;;:69;;-1:-1:-1;3687:44:6;3711:5;681:10:3;4582:164:6;:::i;3687:44::-;3654:161;;;;-1:-1:-1;;;3654:161:6;;13741:2:20;3654:161:6;;;13723:21:20;13780:2;13760:18;;;13753:30;13819:34;13799:18;;;13792:62;13890:26;13870:18;;;13863:54;13934:19;;3654:161:6;13539:420:20;3654:161:6;3828:21;3837:2;3841:7;3828:8;:21::i;:::-;3523:334;3453:404;;:::o;4816:550:18:-;4864:7;;-1:-1:-1;;;4864:7:18;;;;4856:54;;;;-1:-1:-1;;;4856:54:18;;;;;;;:::i;:::-;4939:11;;4925:9;:26;;4917:70;;;;-1:-1:-1;;;4917:70:18;;10797:2:20;4917:70:18;;;10779:21:20;10836:2;10816:18;;;10809:30;10875:33;10855:18;;;10848:61;10926:18;;4917:70:18;10595:355:20;4917:70:18;5033:9;;5003:25;:15;:23;:25::i;:::-;5002:40;;4994:86;;;;-1:-1:-1;;;4994:86:18;;;;;;;:::i;:::-;5089:44;5095:10;5107:25;:15;:23;:25::i;5089:44::-;5177:10;5140:7;:34;5148:25;:15;:23;:25::i;:::-;5140:34;;;;;;;;;;;;:47;;;;;-1:-1:-1;;;;;5140:47:18;;;;;-1:-1:-1;;;;;5140:47:18;;;;;;5194:110;5207:25;:15;:23;:25::i;5194:110::-;5311:27;:15;1006:19:4;;1024:1;1006:19;;;917:127;5311:27:18;5345:15;5358:1;5345:12;:15::i;:::-;4816:550::o;4372:226::-;4459:41;2446:4:0;681:10:3;3945:139:0;:::i;4459:41:18:-;4451:102;;;;-1:-1:-1;;;4451:102:18;;14166:2:20;4451:102:18;;;14148:21:20;14205:2;14185:18;;;14178:30;-1:-1:-1;;;;;;;;;;;14224:18:20;;;14217:62;-1:-1:-1;;;14295:18:20;;;14288:46;14351:19;;4451:102:18;13964:412:20;4451:102:18;4560:32;4573:7;4582:9;4560:12;:32::i;:::-;4372:226;;:::o;6774:506::-;6849:41;2446:4:0;681:10:3;3945:139:0;:::i;6849:41:18:-;6841:98;;;;-1:-1:-1;;;6841:98:18;;14583:2:20;6841:98:18;;;14565:21:20;14622:2;14602:18;;;14595:30;-1:-1:-1;;;;;;;;;;;14641:18:20;;;14634:62;-1:-1:-1;;;14712:18:20;;;14705:42;14764:19;;6841:98:18;14381:408:20;6841:98:18;6955:9;6950:325;6970:21;;;6950:325;;;7006:47;7012:10;;7023:1;7012:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;7027:25;:15;:23;:25::i;7006:47::-;7099:10;;7110:1;7099:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;7062:7;:34;7070:25;:15;:23;:25::i;:::-;7062:34;;;;;;;;;;;;:50;;;;;-1:-1:-1;;;;;7062:50:18;;;;;-1:-1:-1;;;;;7062:50:18;;;;;;7121:110;7134:25;:15;:23;:25::i;7121:110::-;7240:27;:15;1006:19:4;;1024:1;1006:19;;;917:127;7240:27:18;6993:3;;;;:::i;:::-;;;;6950:325;;4813:305:6;4974:41;681:10:3;5007:7:6;4974:18;:41::i;:::-;4966:103;;;;-1:-1:-1;;;4966:103:6;;;;;;;:::i;:::-;5082:28;5092:4;5098:2;5102:7;5082:9;:28::i;2201:165:1:-;2286:30;2302:4;2308:7;2286:15;:30::i;:::-;2327:18;;;;:12;:18;;;;;:31;;2350:7;2327:22;:31::i;1258:256:8:-;1355:7;1391:23;1408:5;1391:16;:23::i;:::-;1383:5;:31;1375:87;;;;-1:-1:-1;;;1375:87:8;;15546:2:20;1375:87:8;;;15528:21:20;15585:2;15565:18;;;15558:30;15624:34;15604:18;;;15597:62;-1:-1:-1;;;15675:18:20;;;15668:41;15726:19;;1375:87:8;15344:407:20;1375:87:8;-1:-1:-1;;;;;;1480:19:8;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;1258:256::o;2724:174:1:-;2812:33;2831:4;2837:7;2812:18;:33::i;:::-;2856:18;;;;:12;:18;;;;;:34;;2882:7;2856:25;:34::i;5189:151:6:-;5293:39;5310:4;5316:2;5320:7;5293:39;;;;;;;;;;;;:16;:39::i;1637:108:18:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;4604:204::-;4678:41;2446:4:0;681:10:3;3945:139:0;:::i;4678:41:18:-;4670:108;;;;-1:-1:-1;;;4670:108:18;;15958:2:20;4670:108:18;;;15940:21:20;15997:2;15977:18;;;15970:30;-1:-1:-1;;;;;;;;;;;16016:18:20;;;16009:62;-1:-1:-1;;;16087:18:20;;;16080:52;16149:19;;4670:108:18;15756:418:20;4670:108:18;4785:7;:17;;;;;-1:-1:-1;;;4785:17:18;-1:-1:-1;;;;4785:17:18;;;;;;;;;4604:204::o;1780:233:8:-;1855:7;1891:30;1678:10;:17;;1590:113;1891:30;1883:5;:38;1875:95;;;;-1:-1:-1;;;1875:95:8;;16381:2:20;1875:95:8;;;16363:21:20;16420:2;16400:18;;;16393:30;16459:34;16439:18;;;16432:62;-1:-1:-1;;;16510:18:20;;;16503:42;16562:19;;1875:95:8;16179:408:20;1875:95:8;1988:10;1999:5;1988:17;;;;;;;;:::i;:::-;;;;;;;;;1981:24;;1780:233;;;:::o;4170:196:18:-;4237:41;2446:4:0;681:10:3;3945:139:0;:::i;4237:41:18:-;4229:101;;;;-1:-1:-1;;;4229:101:18;;16794:2:20;4229:101:18;;;16776:21:20;16833:2;16813:18;;;16806:30;-1:-1:-1;;;;;;;;;;;16852:18:20;;;16845:62;-1:-1:-1;;;16923:18:20;;;16916:45;16978:19;;4229:101:18;16592:411:20;4229:101:18;4337:13;:23;4353:7;4337:13;:23;:::i;2782:218::-;2859:41;2446:4:0;681:10:3;3945:139:0;:::i;2859:41:18:-;2851:102;;;;-1:-1:-1;;;2851:102:18;;19414:2:20;2851:102:18;;;19396:21:20;19453:2;19433:18;;;19426:30;-1:-1:-1;;;;;;;;;;;19472:18:20;;;19465:62;-1:-1:-1;;;19543:18:20;;;19536:46;19599:19;;2851:102:18;19212:412:20;2851:102:18;2960:15;:34;;-1:-1:-1;;;;;;2960:34:18;-1:-1:-1;;;;;2960:34:18;;;;;;;;;;2782:218::o;2150:239:6:-;2222:7;2258:16;;;:7;:16;;;;;;-1:-1:-1;;;;;2258:16:6;;2285:73;;;;-1:-1:-1;;;2285:73:6;;19831:2:20;2285:73:6;;;19813:21:20;19870:2;19850:18;;;19843:30;19909:34;19889:18;;;19882:62;-1:-1:-1;;;19960:18:20;;;19953:39;20009:19;;2285:73:6;19629:405:20;3108:194:18;3181:41;2446:4:0;681:10:3;3945:139:0;:::i;3181:41:18:-;3173:93;;;;-1:-1:-1;;;3173:93:18;;;;;;;:::i;:::-;3277:13;:19;3293:3;;3277:13;:19;:::i;1880:208:6:-;1952:7;-1:-1:-1;;;;;1980:19:6;;1972:74;;;;-1:-1:-1;;;1972:74:6;;21452:2:20;1972:74:6;;;21434:21:20;21491:2;21471:18;;;21464:30;21530:34;21510:18;;;21503:62;-1:-1:-1;;;21581:18:20;;;21574:40;21631:19;;1972:74:6;21250:406:20;1972:74:6;-1:-1:-1;;;;;;2064:16:6;;;;;:9;:16;;;;;;;1880:208::o;1656:145:1:-;1738:7;1765:18;;;:12;:18;;;;;:28;;1787:5;1765:21;:28::i;:::-;1758:35;1656:145;-1:-1:-1;;;1656:145:1:o;3945:139:0:-;4023:4;4047:12;;;;;;;;;;;-1:-1:-1;;;;;4047:29:0;;;;;;;;;;;;;;;3945:139::o;3836:211:18:-;3906:41;2446:4:0;681:10:3;3945:139:0;:::i;3906:41:18:-;3898:96;;;;-1:-1:-1;;;3898:96:18;;21863:2:20;3898:96:18;;;21845:21:20;21902:2;21882:18;;;21875:30;-1:-1:-1;;;;;;;;;;;21921:18:20;;;21914:62;-1:-1:-1;;;21992:18:20;;;21985:40;22042:19;;3898:96:18;21661:406:20;3898:96:18;4001:40;2446:4:0;4032:8:18;4001:10;:40::i;2625:104:6:-;2681:13;2714:7;2707:14;;;;;:::i;4216:295::-;681:10:3;-1:-1:-1;;;;;4319:24:6;;;4311:62;;;;-1:-1:-1;;;4311:62:6;;22274:2:20;4311:62:6;;;22256:21:20;22313:2;22293:18;;;22286:30;22352:27;22332:18;;;22325:55;22397:18;;4311:62:6;22072:349:20;4311:62:6;681:10:3;4386:32:6;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;4386:42:6;;;;;;;;;;;;:53;;-1:-1:-1;;4386:53:6;;;;;;;;;;4455:48;;540:41:20;;;4386:42:6;;681:10:3;4455:48:6;;513:18:20;4455:48:6;;;;;;;4216:295;;:::o;3510:112:18:-;3563:11;3615:1;3589:25;:15;:23;:25::i;:::-;:27;;;;:::i;:::-;3582:34;;3510:112;:::o;5411:285:6:-;5543:41;681:10:3;5576:7:6;5543:18;:41::i;:::-;5535:103;;;;-1:-1:-1;;;5535:103:6;;;;;;;:::i;:::-;5649:39;5663:4;5669:2;5673:7;5682:5;5649:13;:39::i;:::-;5411:285;;;;:::o;7534:160:18:-;7625:13;7654:34;7680:7;7654:25;:34::i;1975:134:1:-;2047:7;2074:18;;;:12;:18;;;;;:27;;:25;:27::i;2459:170::-;2545:31;2562:4;2568:7;2545:16;:31::i;2429:347:18:-;2543:41;2446:4:0;681:10:3;3945:139:0;:::i;2543:41:18:-;2535:104;;;;-1:-1:-1;;;2535:104:18;;22761:2:20;2535:104:18;;;22743:21:20;22800:2;22780:18;;;22773:30;-1:-1:-1;;;;;;;;;;;22819:18:20;;;22812:62;-1:-1:-1;;;22890:18:20;;;22883:48;22948:19;;2535:104:18;22559:414:20;2535:104:18;2652:9;2647:124;2667:21;;;2647:124;;;2749:10;;2760:1;2749:13;;;;;;;:::i;:::-;;;;;;;2704:17;:32;2722:10;;2733:1;2722:13;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1;;;;;2704:32:18;;;;;;;;;;;;-1:-1:-1;2704:32:18;:58;2690:3;;;;:::i;:::-;;;;2647:124;;;;2429:347;;;;:::o;3006:96::-;3050:13;3083;3076:20;;;;;:::i;5374:722::-;681:10:3;5468:1:18;5424:31;;;:17;:31;;;;;:41;5416:86;;;;-1:-1:-1;;;5416:86:18;;23180:2:20;5416:86:18;;;23162:21:20;23219:2;23199:18;;;23192:30;23258;23238:18;;;23231:58;23306:18;;5416:86:18;22978:352:20;5416:86:18;5592:9;;681:10:3;5546:31:18;;;;:17;:31;;;;;:41;5518:25;:15;:23;:25::i;:::-;:69;;;;:::i;:::-;5517:84;;5509:130;;;;-1:-1:-1;;;5509:130:18;;;;;;;:::i;:::-;5650:6;5646:339;681:10:3;5666:31:18;;;;:17;:31;;;;;:41;5662:45;;5646:339;;;5722:44;5728:10;5740:25;:15;:23;:25::i;5722:44::-;5812:10;5775:7;:34;5783:25;:15;:23;:25::i;:::-;5775:34;;;;;;;;;;;;:47;;;;;-1:-1:-1;;;;;5775:47:18;;;;;-1:-1:-1;;;;;5775:47:18;;;;;;5831:110;5844:25;:15;:23;:25::i;5831:110::-;5950:27;:15;1006:19:4;;1024:1;1006:19;;;917:127;5950:27:18;5709:3;;;;:::i;:::-;;;;5646:339;;;-1:-1:-1;681:10:3;6035:1:18;5991:31;;;:17;:31;;;;;:45;;;6084:4;6043:38;;;:45;;-1:-1:-1;;6043:45:18;;;;;;5374:722::o;937:237:8:-;1039:4;-1:-1:-1;;;;;;1063:50:8;;-1:-1:-1;;;1063:50:8;;:103;;;1130:36;1154:11;1130:23;:36::i;793:116:4:-;885:14;;858:7;;885:16;;900:1;885:16;:::i;9077:382:6:-;-1:-1:-1;;;;;9157:16:6;;9149:61;;;;-1:-1:-1;;;9149:61:6;;23537:2:20;9149:61:6;;;23519:21:20;;;23556:18;;;23549:30;23615:34;23595:18;;;23588:62;23667:18;;9149:61:6;23335:356:20;9149:61:6;9230:16;9238:7;9230;:16::i;:::-;9229:17;9221:58;;;;-1:-1:-1;;;9221:58:6;;23898:2:20;9221:58:6;;;23880:21:20;23937:2;23917:18;;;23910:30;23976;23956:18;;;23949:58;24024:18;;9221:58:6;23696:352:20;9221:58:6;9292:45;9321:1;9325:2;9329:7;9292:20;:45::i;:::-;-1:-1:-1;;;;;9350:13:6;;;;;;:9;:13;;;;;:18;;9367:1;;9350:13;:18;;9367:1;;9350:18;:::i;:::-;;;;-1:-1:-1;;9379:16:6;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;9379:21:6;-1:-1:-1;;;;;9379:21:6;;;;;;;;9418:33;;9379:16;;;9418:33;;9379:16;;9418:33;9077:382;;:::o;284:723:19:-;340:13;561:5;570:1;561:10;557:53;;-1:-1:-1;;588:10:19;;;;;;;;;;;;-1:-1:-1;;;588:10:19;;;;;284:723::o;557:53::-;635:5;620:12;676:78;683:9;;676:78;;709:8;;;;:::i;:::-;;-1:-1:-1;732:10:19;;-1:-1:-1;740:2:19;732:10;;:::i;:::-;;;676:78;;;764:19;796:6;786:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;786:17:19;;764:39;;814:154;821:10;;814:154;;848:11;858:1;848:11;;:::i;:::-;;-1:-1:-1;917:10:19;925:2;917:5;:10;:::i;:::-;904:24;;:2;:24;:::i;:::-;891:39;;874:6;881;874:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;874:56:19;;;;;;;;-1:-1:-1;945:11:19;954:2;945:11;;:::i;:::-;;;814:154;;;992:6;284:723;-1:-1:-1;;;;284:723:19:o;1240:217:10:-;1340:16;1348:7;1340;:16::i;:::-;1332:75;;;;-1:-1:-1;;;1332:75:10;;24629:2:20;1332:75:10;;;24611:21:20;24668:2;24648:18;;;24641:30;24707:34;24687:18;;;24680:62;-1:-1:-1;;;24758:18:20;;;24751:44;24812:19;;1332:75:10;24427:410:20;1332:75:10;1418:19;;;;:10;:19;;;;;:31;1440:9;1418:19;:31;:::i;8458:215:18:-;8513:13;8538:11;;8529:6;:20;;;;:::i;:::-;8630:15;;8622:43;;8513:36;;-1:-1:-1;;;;;;8630:15:18;;8622:43;;;;;8513:36;;8630:15;8622:43;8630:15;8622:43;8513:36;8630:15;8622:43;;;;;;;;;;;;;;;;;;;7163:127:6;7228:4;7252:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7252:16:6;:30;;;7163:127::o;11047:174::-;11122:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;11122:29:6;-1:-1:-1;;;;;11122:29:6;;;;;;;;:24;;11176:23;11122:24;11176:14;:23::i;:::-;-1:-1:-1;;;;;11167:46:6;;;;;;;;;;;11047:174;;:::o;7457:355::-;7550:4;7575:16;7583:7;7575;:16::i;:::-;7567:73;;;;-1:-1:-1;;;7567:73:6;;25044:2:20;7567:73:6;;;25026:21:20;25083:2;25063:18;;;25056:30;25122:34;25102:18;;;25095:62;-1:-1:-1;;;25173:18:20;;;25166:42;25225:19;;7567:73:6;24842:408:20;7567:73:6;7651:13;7667:23;7682:7;7667:14;:23::i;:::-;7651:39;;7720:5;-1:-1:-1;;;;;7709:16:6;:7;-1:-1:-1;;;;;7709:16:6;;:51;;;;7753:7;-1:-1:-1;;;;;7729:31:6;:20;7741:7;7729:11;:20::i;:::-;-1:-1:-1;;;;;7729:31:6;;7709:51;:94;;;-1:-1:-1;;;;;;4703:25:6;;;4679:4;4703:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;7764:39;4582:164;10385:544;10510:4;-1:-1:-1;;;;;10483:31:6;:23;10498:7;10483:14;:23::i;:::-;-1:-1:-1;;;;;10483:31:6;;10475:85;;;;-1:-1:-1;;;10475:85:6;;25457:2:20;10475:85:6;;;25439:21:20;25496:2;25476:18;;;25469:30;25535:34;25515:18;;;25508:62;-1:-1:-1;;;25586:18:20;;;25579:39;25635:19;;10475:85:6;25255:405:20;10475:85:6;-1:-1:-1;;;;;10579:16:6;;10571:65;;;;-1:-1:-1;;;10571:65:6;;25867:2:20;10571:65:6;;;25849:21:20;25906:2;25886:18;;;25879:30;25945:34;25925:18;;;25918:62;-1:-1:-1;;;25996:18:20;;;25989:34;26040:19;;10571:65:6;25665:400:20;10571:65:6;10649:39;10670:4;10676:2;10680:7;10649:20;:39::i;:::-;10753:29;10770:1;10774:7;10753:8;:29::i;:::-;-1:-1:-1;;;;;10795:15:6;;;;;;:9;:15;;;;;:20;;10814:1;;10795:15;:20;;10814:1;;10795:20;:::i;:::-;;;;-1:-1:-1;;;;;;;10826:13:6;;;;;;:9;:13;;;;;:18;;10843:1;;10826:13;:18;;10843:1;;10826:18;:::i;:::-;;;;-1:-1:-1;;10855:16:6;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;10855:21:6;-1:-1:-1;;;;;10855:21:6;;;;;;;;;10894:27;;10855:16;;10894:27;;;;;;;10385:544;;;:::o;4658:232:0:-;4339:7;4366:12;;;;;;;;;;:22;;;4751:41;;4759:18;681:10:3;3945:139:0;:::i;4751:41::-;4743:101;;;;-1:-1:-1;;;4743:101:0;;26272:2:20;4743:101:0;;;26254:21:20;26311:2;26291:18;;;26284:30;26350:34;26330:18;;;26323:62;-1:-1:-1;;;26401:18:20;;;26394:45;26456:19;;4743:101:0;26070:411:20;4743:101:0;4857:25;4868:4;4874:7;4857:10;:25::i;6621:152:11:-;6691:4;6715:50;6720:3;-1:-1:-1;;;;;6740:23:11;;6715:4;:50::i;5877:218:0:-;-1:-1:-1;;;;;5973:23:0;;681:10:3;5973:23:0;5965:83;;;;-1:-1:-1;;;5965:83:0;;26688:2:20;5965:83:0;;;26670:21:20;26727:2;26707:18;;;26700:30;26766:34;26746:18;;;26739:62;-1:-1:-1;;;26817:18:20;;;26810:45;26872:19;;5965:83:0;26486:411:20;5965:83:0;6061:26;6073:4;6079:7;6061:11;:26::i;6949:158:11:-;7022:4;7046:53;7054:3;-1:-1:-1;;;;;7074:23:11;;7046:7;:53::i;7907:158::-;7981:7;8032:22;8036:3;8048:5;8032:3;:22::i;2991:169:1:-;3079:31;3096:4;3102:7;3079:16;:31::i;6578:272:6:-;6692:28;6702:4;6708:2;6712:7;6692:9;:28::i;:::-;6739:48;6762:4;6768:2;6772:7;6781:5;6739:22;:48::i;:::-;6731:111;;;;-1:-1:-1;;;6731:111:6;;;;;;;:::i;405:679:10:-;478:13;512:16;520:7;512;:16::i;:::-;504:78;;;;-1:-1:-1;;;504:78:10;;27523:2:20;504:78:10;;;27505:21:20;27562:2;27542:18;;;27535:30;27601:34;27581:18;;;27574:62;-1:-1:-1;;;27652:18:20;;;27645:47;27709:19;;504:78:10;27321:413:20;504:78:10;595:23;621:19;;;:10;:19;;;;;595:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;651:18;672:10;:8;:10::i;:::-;651:31;;764:4;758:18;780:1;758:23;754:72;;-1:-1:-1;805:9:10;405:679;-1:-1:-1;;405:679:10:o;754:72::-;930:23;;:27;926:108;;1005:4;1011:9;988:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;974:48;;;;405:679;;;:::o;926:108::-;1053:23;1068:7;1053:14;:23::i;7446:117:11:-;7509:7;7536:19;7544:3;4203:18;;4120:109;5135:235:0;4339:7;4366:12;;;;;;;;;;:22;;;5229:41;;5237:18;4273:123;5229:41;5221:102;;;;-1:-1:-1;;;5221:102:0;;28442:2:20;5221:102:0;;;28424:21:20;28481:2;28461:18;;;28454:30;28520:34;28500:18;;;28493:62;-1:-1:-1;;;28571:18:20;;;28564:46;28627:19;;5221:102:0;28240:412:20;1524:292:6;1626:4;-1:-1:-1;;;;;;1650:40:6;;-1:-1:-1;;;1650:40:6;;:105;;-1:-1:-1;;;;;;;1707:48:6;;-1:-1:-1;;;1707:48:6;1650:105;:158;;;;1772:36;1796:11;1772:23;:36::i;7702:187:18:-;7838:45;7865:4;7871:2;7875:7;7838:26;:45::i;7125:229:0:-;7200:22;7208:4;7214:7;7200;:22::i;:::-;7195:152;;7239:6;:12;;;;;;;;;;;-1:-1:-1;;;;;7239:29:0;;;;;;;;;:36;;-1:-1:-1;;7239:36:0;7271:4;7239:36;;;7322:12;681:10:3;;601:98;7322:12:0;-1:-1:-1;;;;;7295:40:0;7313:7;-1:-1:-1;;;;;7295:40:0;7307:4;7295:40;;;;;;;;;;7125:229;;:::o;1685:414:11:-;1748:4;4002:19;;;:12;;;:19;;;;;;1765:327;;-1:-1:-1;1808:23:11;;;;;;;;:11;:23;;;;;;;;;;;;;1991:18;;1969:19;;;:12;;;:19;;;;;;:40;;;;2024:11;;1765:327;-1:-1:-1;2075:5:11;2068:12;;7362:230:0;7437:22;7445:4;7451:7;7437;:22::i;:::-;7433:152;;;7508:5;7476:12;;;;;;;;;;;-1:-1:-1;;;;;7476:29:0;;;;;;;;;;:37;;-1:-1:-1;;7476:37:0;;;7533:40;681:10:3;;7476:12:0;;7533:40;;7508:5;7533:40;7362:230;;:::o;2275:1544:11:-;2341:4;2480:19;;;:12;;;:19;;;;;;2516:15;;2512:1300;;2878:21;2902:14;2915:1;2902:10;:14;:::i;:::-;2951:18;;2878:38;;-1:-1:-1;2931:17:11;;2951:22;;2972:1;;2951:22;:::i;:::-;2931:42;;3218:17;3238:3;:11;;3250:9;3238:22;;;;;;;;:::i;:::-;;;;;;;;;3218:42;;3384:9;3355:3;:11;;3367:13;3355:26;;;;;;;;:::i;:::-;;;;;;;;;;:38;3487:17;:13;3503:1;3487:17;:::i;:::-;3461:23;;;;:12;;;:23;;;;;:43;3613:17;;3461:3;;3613:17;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;3708:3;:12;;:19;3721:5;3708:19;;;;;;;;;;;3701:26;;;3751:4;3744:11;;;;;;;;2512:1300;3795:5;3788:12;;;;;4573:204;4668:18;;4640:7;;4668:26;-1:-1:-1;4660:73:11;;;;-1:-1:-1;;;4660:73:11;;28991:2:20;4660:73:11;;;28973:21:20;29030:2;29010:18;;;29003:30;29069:34;29049:18;;;29042:62;-1:-1:-1;;;29120:18:20;;;29113:32;29162:19;;4660:73:11;28789:398:20;4660:73:11;4751:3;:11;;4763:5;4751:18;;;;;;;;:::i;:::-;;;;;;;;;4744:25;;4573:204;;;;:::o;11786:843:6:-;11907:4;-1:-1:-1;;;;;11933:13:6;;1110:20:2;1149:8;11929:693:6;;11969:72;;-1:-1:-1;;;11969:72:6;;-1:-1:-1;;;;;11969:36:6;;;;;:72;;681:10:3;;12020:4:6;;12026:7;;12035:5;;11969:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;11969:72:6;;;;;;;;-1:-1:-1;;11969:72:6;;;;;;;;;;;;:::i;:::-;;;11965:602;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12215:6;:13;12232:1;12215:18;12211:341;;12258:60;;-1:-1:-1;;;12258:60:6;;;;;;;:::i;12211:341::-;12502:6;12496:13;12487:6;12483:2;12479:15;12472:38;11965:602;-1:-1:-1;;;;;;12092:55:6;-1:-1:-1;;;12092:55:6;;-1:-1:-1;12085:62:6;;11929:693;-1:-1:-1;12606:4:6;11786:843;;;;;;:::o;4054:110:18:-;4114:13;4145;4138:20;;;;;:::i;2800:360:6:-;2873:13;2907:16;2915:7;2907;:16::i;:::-;2899:76;;;;-1:-1:-1;;;2899:76:6;;30142:2:20;2899:76:6;;;30124:21:20;30181:2;30161:18;;;30154:30;30220:34;30200:18;;;30193:62;-1:-1:-1;;;30271:18:20;;;30264:45;30326:19;;2899:76:6;29940:411:20;2899:76:6;2988:21;3012:10;:8;:10::i;:::-;2988:34;;3064:1;3046:7;3040:21;:25;:112;;;;;;;;;;;;;;;;;3105:7;3114:18;:7;:16;:18::i;:::-;3088:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;3033:119;2800:360;-1:-1:-1;;;2800:360:6:o;830:227:1:-;915:4;-1:-1:-1;;;;;;939:57:1;;-1:-1:-1;;;939:57:1;;:110;;;1013:36;1037:11;1013:23;:36::i;2626:555:8:-;-1:-1:-1;;;;;2798:18:8;;2794:187;;2833:40;2865:7;4008:10;:17;;3981:24;;;;:15;:24;;;;;:44;;;4036:24;;;;;;;;;;;;3904:164;2833:40;2794:187;;;2903:2;-1:-1:-1;;;;;2895:10:8;:4;-1:-1:-1;;;;;2895:10:8;;2891:90;;2922:47;2955:4;2961:7;2922:32;:47::i;:::-;-1:-1:-1;;;;;2995:16:8;;2991:183;;3028:45;3065:7;3028:36;:45::i;2991:183::-;3101:4;-1:-1:-1;;;;;3095:10:8;:2;-1:-1:-1;;;;;3095:10:8;;3091:83;;3122:40;3150:2;3154:7;3122:27;:40::i;3636:217:0:-;3721:4;-1:-1:-1;;;;;;3745:47:0;;-1:-1:-1;;;3745:47:0;;:100;;-1:-1:-1;;;;;;;;;;898:40:5;;;3809:36:0;789:157:5;4695:988:8;4961:22;5011:1;4986:22;5003:4;4986:16;:22::i;:::-;:26;;;;:::i;:::-;5023:18;5044:26;;;:17;:26;;;;;;4961:51;;-1:-1:-1;5177:28:8;;;5173:328;;-1:-1:-1;;;;;5244:18:8;;5222:19;5244:18;;;:12;:18;;;;;;;;:34;;;;;;;;;5295:30;;;;;;:44;;;5412:30;;:17;:30;;;;;:43;;;5173:328;-1:-1:-1;5597:26:8;;;;:17;:26;;;;;;;;5590:33;;;-1:-1:-1;;;;;5641:18:8;;;;;:12;:18;;;;;:34;;;;;;;5634:41;4695:988::o;5978:1079::-;6256:10;:17;6231:22;;6256:21;;6276:1;;6256:21;:::i;:::-;6288:18;6309:24;;;:15;:24;;;;;;6682:10;:26;;6231:46;;-1:-1:-1;6309:24:8;;6231:46;;6682:26;;;;;;:::i;:::-;;;;;;;;;6660:48;;6746:11;6721:10;6732;6721:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;6826:28;;;:15;:28;;;;;;;:41;;;6998:24;;;;;6991:31;7033:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;6049:1008;;;5978:1079;:::o;3482:221::-;3567:14;3584:20;3601:2;3584:16;:20::i;:::-;-1:-1:-1;;;;;3615:16:8;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;3660:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;3482:221:8:o;14:131:20:-;-1:-1:-1;;;;;;88:32:20;;78:43;;68:71;;135:1;132;125:12;150:245;208:6;261:2;249:9;240:7;236:23;232:32;229:52;;;277:1;274;267:12;229:52;316:9;303:23;335:30;359:5;335:30;:::i;592:180::-;651:6;704:2;692:9;683:7;679:23;675:32;672:52;;;720:1;717;710:12;672:52;-1:-1:-1;743:23:20;;592:180;-1:-1:-1;592:180:20:o;777:250::-;862:1;872:113;886:6;883:1;880:13;872:113;;;962:11;;;956:18;943:11;;;936:39;908:2;901:10;872:113;;;-1:-1:-1;;1019:1:20;1001:16;;994:27;777:250::o;1032:271::-;1074:3;1112:5;1106:12;1139:6;1134:3;1127:19;1155:76;1224:6;1217:4;1212:3;1208:14;1201:4;1194:5;1190:16;1155:76;:::i;:::-;1285:2;1264:15;-1:-1:-1;;1260:29:20;1251:39;;;;1292:4;1247:50;;1032:271;-1:-1:-1;;1032:271:20:o;1308:220::-;1457:2;1446:9;1439:21;1420:4;1477:45;1518:2;1507:9;1503:18;1495:6;1477:45;:::i;1741:173::-;1809:20;;-1:-1:-1;;;;;1858:31:20;;1848:42;;1838:70;;1904:1;1901;1894:12;1838:70;1741:173;;;:::o;1919:254::-;1987:6;1995;2048:2;2036:9;2027:7;2023:23;2019:32;2016:52;;;2064:1;2061;2054:12;2016:52;2087:29;2106:9;2087:29;:::i;:::-;2077:39;2163:2;2148:18;;;;2135:32;;-1:-1:-1;;;1919:254:20:o;2178:127::-;2239:10;2234:3;2230:20;2227:1;2220:31;2270:4;2267:1;2260:15;2294:4;2291:1;2284:15;2310:632;2375:5;2405:18;2446:2;2438:6;2435:14;2432:40;;;2452:18;;:::i;:::-;2527:2;2521:9;2495:2;2581:15;;-1:-1:-1;;2577:24:20;;;2603:2;2573:33;2569:42;2557:55;;;2627:18;;;2647:22;;;2624:46;2621:72;;;2673:18;;:::i;:::-;2713:10;2709:2;2702:22;2742:6;2733:15;;2772:6;2764;2757:22;2812:3;2803:6;2798:3;2794:16;2791:25;2788:45;;;2829:1;2826;2819:12;2788:45;2879:6;2874:3;2867:4;2859:6;2855:17;2842:44;2934:1;2927:4;2918:6;2910;2906:19;2902:30;2895:41;;;;2310:632;;;;;:::o;2947:222::-;2990:5;3043:3;3036:4;3028:6;3024:17;3020:27;3010:55;;3061:1;3058;3051:12;3010:55;3083:80;3159:3;3150:6;3137:20;3130:4;3122:6;3118:17;3083:80;:::i;3174:390::-;3252:6;3260;3313:2;3301:9;3292:7;3288:23;3284:32;3281:52;;;3329:1;3326;3319:12;3281:52;3365:9;3352:23;3342:33;;3426:2;3415:9;3411:18;3398:32;3453:18;3445:6;3442:30;3439:50;;;3485:1;3482;3475:12;3439:50;3508;3550:7;3541:6;3530:9;3526:22;3508:50;:::i;:::-;3498:60;;;3174:390;;;;;:::o;3751:367::-;3814:8;3824:6;3878:3;3871:4;3863:6;3859:17;3855:27;3845:55;;3896:1;3893;3886:12;3845:55;-1:-1:-1;3919:20:20;;3962:18;3951:30;;3948:50;;;3994:1;3991;3984:12;3948:50;4031:4;4023:6;4019:17;4007:29;;4091:3;4084:4;4074:6;4071:1;4067:14;4059:6;4055:27;4051:38;4048:47;4045:67;;;4108:1;4105;4098:12;4045:67;3751:367;;;;;:::o;4123:437::-;4209:6;4217;4270:2;4258:9;4249:7;4245:23;4241:32;4238:52;;;4286:1;4283;4276:12;4238:52;4326:9;4313:23;4359:18;4351:6;4348:30;4345:50;;;4391:1;4388;4381:12;4345:50;4430:70;4492:7;4483:6;4472:9;4468:22;4430:70;:::i;:::-;4519:8;;4404:96;;-1:-1:-1;4123:437:20;-1:-1:-1;;;;4123:437:20:o;4565:328::-;4642:6;4650;4658;4711:2;4699:9;4690:7;4686:23;4682:32;4679:52;;;4727:1;4724;4717:12;4679:52;4750:29;4769:9;4750:29;:::i;:::-;4740:39;;4798:38;4832:2;4821:9;4817:18;4798:38;:::i;:::-;4788:48;;4883:2;4872:9;4868:18;4855:32;4845:42;;4565:328;;;;;:::o;5265:254::-;5333:6;5341;5394:2;5382:9;5373:7;5369:23;5365:32;5362:52;;;5410:1;5407;5400:12;5362:52;5446:9;5433:23;5423:33;;5475:38;5509:2;5498:9;5494:18;5475:38;:::i;:::-;5465:48;;5265:254;;;;;:::o;5524:186::-;5583:6;5636:2;5624:9;5615:7;5611:23;5607:32;5604:52;;;5652:1;5649;5642:12;5604:52;5675:29;5694:9;5675:29;:::i;5978:160::-;6043:20;;6099:13;;6092:21;6082:32;;6072:60;;6128:1;6125;6118:12;6143:180;6199:6;6252:2;6240:9;6231:7;6227:23;6223:32;6220:52;;;6268:1;6265;6258:12;6220:52;6291:26;6307:9;6291:26;:::i;6328:322::-;6397:6;6450:2;6438:9;6429:7;6425:23;6421:32;6418:52;;;6466:1;6463;6456:12;6418:52;6506:9;6493:23;6539:18;6531:6;6528:30;6525:50;;;6571:1;6568;6561:12;6525:50;6594;6636:7;6627:6;6616:9;6612:22;6594:50;:::i;6655:592::-;6726:6;6734;6787:2;6775:9;6766:7;6762:23;6758:32;6755:52;;;6803:1;6800;6793:12;6755:52;6843:9;6830:23;6872:18;6913:2;6905:6;6902:14;6899:34;;;6929:1;6926;6919:12;6899:34;6967:6;6956:9;6952:22;6942:32;;7012:7;7005:4;7001:2;6997:13;6993:27;6983:55;;7034:1;7031;7024:12;6983:55;7074:2;7061:16;7100:2;7092:6;7089:14;7086:34;;;7116:1;7113;7106:12;7086:34;7161:7;7156:2;7147:6;7143:2;7139:15;7135:24;7132:37;7129:57;;;7182:1;7179;7172:12;7129:57;7213:2;7205:11;;;;;7235:6;;-1:-1:-1;6655:592:20;;-1:-1:-1;;;;6655:592:20:o;7252:248::-;7320:6;7328;7381:2;7369:9;7360:7;7356:23;7352:32;7349:52;;;7397:1;7394;7387:12;7349:52;-1:-1:-1;;7420:23:20;;;7490:2;7475:18;;;7462:32;;-1:-1:-1;7252:248:20:o;7505:254::-;7570:6;7578;7631:2;7619:9;7610:7;7606:23;7602:32;7599:52;;;7647:1;7644;7637:12;7599:52;7670:29;7689:9;7670:29;:::i;:::-;7660:39;;7718:35;7749:2;7738:9;7734:18;7718:35;:::i;7764:667::-;7859:6;7867;7875;7883;7936:3;7924:9;7915:7;7911:23;7907:33;7904:53;;;7953:1;7950;7943:12;7904:53;7976:29;7995:9;7976:29;:::i;:::-;7966:39;;8024:38;8058:2;8047:9;8043:18;8024:38;:::i;:::-;8014:48;;8109:2;8098:9;8094:18;8081:32;8071:42;;8164:2;8153:9;8149:18;8136:32;8191:18;8183:6;8180:30;8177:50;;;8223:1;8220;8213:12;8177:50;8246:22;;8299:4;8291:13;;8287:27;-1:-1:-1;8277:55:20;;8328:1;8325;8318:12;8277:55;8351:74;8417:7;8412:2;8399:16;8394:2;8390;8386:11;8351:74;:::i;:::-;8341:84;;;7764:667;;;;;;;:::o;8436:773::-;8558:6;8566;8574;8582;8635:2;8623:9;8614:7;8610:23;8606:32;8603:52;;;8651:1;8648;8641:12;8603:52;8691:9;8678:23;8720:18;8761:2;8753:6;8750:14;8747:34;;;8777:1;8774;8767:12;8747:34;8816:70;8878:7;8869:6;8858:9;8854:22;8816:70;:::i;:::-;8905:8;;-1:-1:-1;8790:96:20;-1:-1:-1;8993:2:20;8978:18;;8965:32;;-1:-1:-1;9009:16:20;;;9006:36;;;9038:1;9035;9028:12;9006:36;;9077:72;9141:7;9130:8;9119:9;9115:24;9077:72;:::i;:::-;8436:773;;;;-1:-1:-1;9168:8:20;-1:-1:-1;;;;8436:773:20:o;9214:260::-;9282:6;9290;9343:2;9331:9;9322:7;9318:23;9314:32;9311:52;;;9359:1;9356;9349:12;9311:52;9382:29;9401:9;9382:29;:::i;:::-;9372:39;;9430:38;9464:2;9453:9;9449:18;9430:38;:::i;9479:403::-;9681:2;9663:21;;;9720:2;9700:18;;;9693:30;9759:34;9754:2;9739:18;;9732:62;-1:-1:-1;;;9825:2:20;9810:18;;9803:37;9872:3;9857:19;;9479:403::o;9887:398::-;10089:2;10071:21;;;10128:2;10108:18;;;10101:30;10167:34;10162:2;10147:18;;10140:62;-1:-1:-1;;;10233:2:20;10218:18;;10211:32;10275:3;10260:19;;9887:398::o;10290:127::-;10351:10;10346:3;10342:20;10339:1;10332:31;10382:4;10379:1;10372:15;10406:4;10403:1;10396:15;10422:168;10495:9;;;10526;;10543:15;;;10537:22;;10523:37;10513:71;;10564:18;;:::i;10955:125::-;11020:9;;;11041:10;;;11038:36;;;11054:18;;:::i;11085:397::-;11287:2;11269:21;;;11326:2;11306:18;;;11299:30;11365:34;11360:2;11345:18;;11338:62;-1:-1:-1;;;11431:2:20;11416:18;;11409:31;11472:3;11457:19;;11085:397::o;11487:289::-;11618:3;11656:6;11650:13;11672:66;11731:6;11726:3;11719:4;11711:6;11707:17;11672:66;:::i;:::-;11754:16;;;;;11487:289;-1:-1:-1;;11487:289:20:o;11781:135::-;11820:3;11841:17;;;11838:43;;11861:18;;:::i;:::-;-1:-1:-1;11908:1:20;11897:13;;11781:135::o;12339:380::-;12418:1;12414:12;;;;12461;;;12482:61;;12536:4;12528:6;12524:17;12514:27;;12482:61;12589:2;12581:6;12578:14;12558:18;12555:38;12552:161;;12635:10;12630:3;12626:20;12623:1;12616:31;12670:4;12667:1;12660:15;12698:4;12695:1;12688:15;12552:161;;12339:380;;;:::o;14794:127::-;14855:10;14850:3;14846:20;14843:1;14836:31;14886:4;14883:1;14876:15;14910:4;14907:1;14900:15;14926:413;15128:2;15110:21;;;15167:2;15147:18;;;15140:30;15206:34;15201:2;15186:18;;15179:62;-1:-1:-1;;;15272:2:20;15257:18;;15250:47;15329:3;15314:19;;14926:413::o;17134:545::-;17236:2;17231:3;17228:11;17225:448;;;17272:1;17297:5;17293:2;17286:17;17342:4;17338:2;17328:19;17412:2;17400:10;17396:19;17393:1;17389:27;17383:4;17379:38;17448:4;17436:10;17433:20;17430:47;;;-1:-1:-1;17471:4:20;17430:47;17526:2;17521:3;17517:12;17514:1;17510:20;17504:4;17500:31;17490:41;;17581:82;17599:2;17592:5;17589:13;17581:82;;;17644:17;;;17625:1;17614:13;17581:82;;;17585:3;;;17134:545;;;:::o;17855:1352::-;17981:3;17975:10;18008:18;18000:6;17997:30;17994:56;;;18030:18;;:::i;:::-;18059:97;18149:6;18109:38;18141:4;18135:11;18109:38;:::i;:::-;18103:4;18059:97;:::i;:::-;18211:4;;18275:2;18264:14;;18292:1;18287:663;;;;18994:1;19011:6;19008:89;;;-1:-1:-1;19063:19:20;;;19057:26;19008:89;-1:-1:-1;;17812:1:20;17808:11;;;17804:24;17800:29;17790:40;17836:1;17832:11;;;17787:57;19110:81;;18257:944;;18287:663;17081:1;17074:14;;;17118:4;17105:18;;-1:-1:-1;;18323:20:20;;;18441:236;18455:7;18452:1;18449:14;18441:236;;;18544:19;;;18538:26;18523:42;;18636:27;;;;18604:1;18592:14;;;;18471:19;;18441:236;;;18445:3;18705:6;18696:7;18693:19;18690:201;;;18766:19;;;18760:26;-1:-1:-1;;18849:1:20;18845:14;;;18861:3;18841:24;18837:37;18833:42;18818:58;18803:74;;18690:201;-1:-1:-1;;;;;18937:1:20;18921:14;;;18917:22;18904:36;;-1:-1:-1;17855:1352:20:o;20039:1206::-;20163:18;20158:3;20155:27;20152:53;;;20185:18;;:::i;:::-;20214:94;20304:3;20264:38;20296:4;20290:11;20264:38;:::i;:::-;20258:4;20214:94;:::i;:::-;20334:1;20359:2;20354:3;20351:11;20376:1;20371:616;;;;21031:1;21048:3;21045:93;;;-1:-1:-1;21104:19:20;;;21091:33;21045:93;-1:-1:-1;;17812:1:20;17808:11;;;17804:24;17800:29;17790:40;17836:1;17832:11;;;17787:57;21151:78;;20344:895;;20371:616;17081:1;17074:14;;;17118:4;17105:18;;-1:-1:-1;;20407:17:20;;;20508:9;20530:229;20544:7;20541:1;20538:14;20530:229;;;20633:19;;;20620:33;20605:49;;20740:4;20725:20;;;;20693:1;20681:14;;;;20560:12;20530:229;;;20534:3;20787;20778:7;20775:16;20772:159;;;20911:1;20907:6;20901:3;20895;20892:1;20888:11;20884:21;20880:34;20876:39;20863:9;20858:3;20854:19;20841:33;20837:79;20829:6;20822:95;20772:159;;;20974:1;20968:3;20965:1;20961:11;20957:19;20951:4;20944:33;20344:895;;20039:1206;;;:::o;22426:128::-;22493:9;;;22514:11;;;22511:37;;;22528:18;;:::i;24053:127::-;24114:10;24109:3;24105:20;24102:1;24095:31;24145:4;24142:1;24135:15;24169:4;24166:1;24159:15;24185:120;24225:1;24251;24241:35;;24256:18;;:::i;:::-;-1:-1:-1;24290:9:20;;24185:120::o;24310:112::-;24342:1;24368;24358:35;;24373:18;;:::i;:::-;-1:-1:-1;24407:9:20;;24310:112::o;26902:414::-;27104:2;27086:21;;;27143:2;27123:18;;;27116:30;27182:34;27177:2;27162:18;;27155:62;-1:-1:-1;;;27248:2:20;27233:18;;27226:48;27306:3;27291:19;;26902:414::o;27739:496::-;27918:3;27956:6;27950:13;27972:66;28031:6;28026:3;28019:4;28011:6;28007:17;27972:66;:::i;:::-;28101:13;;28060:16;;;;28123:70;28101:13;28060:16;28170:4;28158:17;;28123:70;:::i;:::-;28209:20;;27739:496;-1:-1:-1;;;;27739:496:20:o;28657:127::-;28718:10;28713:3;28709:20;28706:1;28699:31;28749:4;28746:1;28739:15;28773:4;28770:1;28763:15;29192:489;-1:-1:-1;;;;;29461:15:20;;;29443:34;;29513:15;;29508:2;29493:18;;29486:43;29560:2;29545:18;;29538:34;;;29608:3;29603:2;29588:18;;29581:31;;;29386:4;;29629:46;;29655:19;;29647:6;29629:46;:::i;:::-;29621:54;29192:489;-1:-1:-1;;;;;;29192:489:20:o;29686:249::-;29755:6;29808:2;29796:9;29787:7;29783:23;29779:32;29776:52;;;29824:1;29821;29814:12;29776:52;29856:9;29850:16;29875:30;29899:5;29875:30;:::i

Swarm Source

ipfs://fd6f5bcba56a5da143d9ebb969f7602c5db18b813ab045e86279967e64c7784c
Loading...
Loading
Loading...
Loading
[ 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.