ETH Price: $3,460.33 (+2.14%)
Gas: 7 Gwei

Token

FuZZieMiNTS (FZY)
 

Overview

Max Total Supply

716 FZY

Holders

290

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 FZY
0xe6468262b5a34057676586dc1976de5f664b7083
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:
Fuzziemints

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity Multiple files format)

File 14 of 26: Fuzziemints.sol
pragma solidity ^0.8.4;

import "./SniftieERC721Common.sol";
import "./Counters.sol";
import "./ECDSA.sol";

contract Fuzziemints is SniftieERC721Common {
    using ECDSA for bytes32;
    using Counters for Counters.Counter;

    Counters.Counter private _fuzzieTokenIdTracker;

    // backend signer address used for checking if data was created by Sniftie's server
    address private _backend;

    // payable wallet addresses
    address payable private _charity1;
    address payable private _charity2;
    address payable private _charity3;
    address payable private _sniftie;
    address payable private _f100royalty;
    address payable private _fuzziemints;

    uint256 public constant FUZZIE_PREMINT_MAX = 205;
    uint256 public constant FUZZIEMAX = 5555;
    uint8 public constant PURCHASE_LIMIT = 17;

    uint256 private constant PAYMENT_GAS_LIMIT = 5000;
    uint256 private constant PRICE_PER_TOKEN = 55000000 gwei;

    uint256 private _eachCharityPercentage = 100;
    uint256 private _f100RoyaltyPercentage = 1090;
    uint256 private _sniftieRoyaltyPercentage = 2200;
    uint256 private _fuzziemintsPercentage = 6410;

    mapping(address => uint8) whitelistMintCount;
    mapping(address => bool) whitelistAddresses;

    bool private _isPublicSaleLocked = true;

    constructor (string memory name, string memory symbol, string memory baseTokenURI, string memory contractMetadataURI, address sniftieAdmin, address backend, address payable[] memory payableAddresses) SniftieERC721Common(name, symbol, baseTokenURI, contractMetadataURI, sniftieAdmin) {
            _backend = backend;

            // payable addresses array must be in this order
            _charity1 = payableAddresses[0];
            _charity2 = payableAddresses[1];
            _charity3 = payableAddresses[2];
            _f100royalty = payableAddresses[3];
            _sniftie = payableAddresses[4];
            _fuzziemints = payableAddresses[5];
    }

    function getIsPublicSaleLocked() public view returns (bool) { return _isPublicSaleLocked; }
    function getBackend() public view returns (address) { return _backend; }
    function getSniftie() public view returns (address) { return _sniftie; }
    function getFuzziemints() public view returns (address) { return _fuzziemints; }
    function getF100royalty() public view returns (address) { return _f100royalty; }
    function getCharity1() public view returns (address) { return _charity1; }
    function getCharity2() public view returns (address) { return _charity2; }
    function getCharity3() public view returns (address) { return _charity3; }

    function setIsPublicSalesLocked(bool locked) public {
        require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "Must have DEFAULT_ADMIN_ROLE");
        _isPublicSaleLocked = locked;
    }
    function setBackend(address backend) public {
        require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "Must have DEFAULT_ADMIN_ROLE");
        _backend = backend;
    }
    function setSniftie(address payable sniftie) public {
        require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "Must have DEFAULT_ADMIN_ROLE");
        _sniftie = sniftie;
    }
    function setFuzziemints(address payable fuzziemints) public {
        require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "Must have DEFAULT_ADMIN_ROLE");
        _fuzziemints = fuzziemints;
    }
    function setF100royalty(address payable f100royalty) public {
        require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "Must have DEFAULT_ADMIN_ROLE");
        _f100royalty = f100royalty;
    }
    function setCharity1(address payable charity1) public {
        require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "Must have DEFAULT_ADMIN_ROLE");
        _charity1 = charity1;
    }
    function setCharity2(address payable charity2) public {
        require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "Must have DEFAULT_ADMIN_ROLE");
        _charity2 = charity2;
    }
    function setCharity3(address payable charity3) public {
        require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "Must have DEFAULT_ADMIN_ROLE");
        _charity3 = charity3;
    }

    function premint() public {
        require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "Must have DEFAULT_ADMIN_ROLE to mint first 100 tokens");
        uint totalSupply = totalSupply();
        uint available = FUZZIE_PREMINT_MAX - totalSupply;
        uint mintQty = available >= 25 ? 25 : available;

        require(mintQty > 0, "Premint limit reached");

        for (uint i = 0; i < mintQty; i++) {
            mintToken(_msgSender());
        }
    }

    function addToWhitelist(address[] memory add) public {
        require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "Must have DEFAULT_ADMIN_ROLE to add to whitelist");
        for (uint i = 0; i < add.length; i++) {
            whitelistAddresses[add[i]] = true;
        }
    }

    function removeFromWhitelist(address[] memory remove) public {
        require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "Must have DEFAULT_ADMIN_ROLE remove from whitelist");
        for (uint i = 0; i < remove.length; i++) {
            whitelistAddresses[remove[i]] = false;
        }
    }

    function mintToken(address to) internal returns (uint256) {
        // We cannot just use balanceOf to create the new tokenId because tokens
        // can be burned (destroyed), so we need a separate counter.
        _fuzzieTokenIdTracker.increment();
        uint256 newItemId = _fuzzieTokenIdTracker.current();
        _mint(to, newItemId);

        return newItemId;
    }

    function salePayment(uint256 charityAmount, uint256 f100RoyaltyAmount, uint256 sniftieAmount, uint256 fuzziemintsAmount) internal {
        // transfer amounts to respective wallets
        (bool charity1Success, ) = _charity1.call{ value:charityAmount, gas: PAYMENT_GAS_LIMIT }("");
        require(charity1Success, "Charity 1 payment failed");

        (bool charity2Success, ) = _charity2.call{ value:charityAmount, gas: PAYMENT_GAS_LIMIT }("");
        require(charity2Success, "Charity 2 payment failed");

        (bool charity3Success, ) = _charity3.call{ value:charityAmount, gas: PAYMENT_GAS_LIMIT }("");
        require(charity3Success, "Charity 3 payment failed");

        (bool f100Success, ) = _f100royalty.call{ value:f100RoyaltyAmount, gas: PAYMENT_GAS_LIMIT }("");
        require(f100Success, "First 100 royalty payment failed");

        (bool sniftieSuccess, ) = _sniftie.call{ value:sniftieAmount, gas: PAYMENT_GAS_LIMIT }("");
        require(sniftieSuccess, "Sniftie payment failed");

        (bool fuzziemintsSuccess, ) = _fuzziemints.call{ value:fuzziemintsAmount, gas: PAYMENT_GAS_LIMIT }("");
        require(fuzziemintsSuccess, "Fuzziemints payment failed");
    }

    function purchaseAndMint(bytes32 message, bytes32 messageHash, bytes memory signature, uint8 qty) public payable {
        // calculate signer address and check if it is equal to _backendSigner
        require(messageHash.recover(signature) == _backend, "Content not signed by Sniftie");

        // regenerate hash from parameters and check if it is equal to hash generated from sniftie's backend server
        require(keccak256(abi.encodePacked(qty)) == message, "Message hash does not match");

        // check if public sale is locked
        require(!_isPublicSaleLocked, "Public sales is still closed");

        // check if total supply does not exceed FUZZIEMAX
        require(totalSupply() + qty <= FUZZIEMAX, "Qty exceeds max number of tokens");

        // check for maximum token quantity to mint
        require(qty <= PURCHASE_LIMIT, "Cannot purchase more than 17 tokens");

        // check if amount sent is at least equal to the price of token
        require(msg.value >= PRICE_PER_TOKEN * qty, "Amount less than required price");

        // calculate amounts to transfer
        uint256 charityAmount = (msg.value / 10000) * _eachCharityPercentage;
        uint256 f100RoyaltyAmount = (msg.value / 10000) * _f100RoyaltyPercentage;
        uint256 sniftieAmount = (msg.value / 10000) * _sniftieRoyaltyPercentage;

        uint256 fuzziemintsAmount = msg.value - ((charityAmount * 3) + f100RoyaltyAmount + sniftieAmount);

        // call payment function to make the payments
        salePayment(charityAmount, f100RoyaltyAmount, sniftieAmount, fuzziemintsAmount);

        // call mint function
        for (uint i = 0; i < qty; i++) {
            mintToken(msg.sender);
        }
    }

    function whitelistedPurchaseAndMint(bytes32 message, bytes32 messageHash, bytes memory signature, uint8 qty) public payable {
        // calculate signer address and check if it is equal to _backendSigner
        require(messageHash.recover(signature) == _backend, "Content not signed by Sniftie");

        // regenerate hash from parameters and check if it is equal to hash generated from sniftie's backend server
        require(keccak256(abi.encodePacked(qty)) == message, "Message hash does not match");

        // check if public sale is locked and sender is whitelisted
        require(_isPublicSaleLocked && whitelistAddresses[msg.sender], "Public sales is still closed and you are not whitelisted");

        // limit token purchase to 5 if public sale is locked (whitelist period)
        require(whitelistMintCount[msg.sender] + qty <= 5, "Whitelist minting restricted to 5 tokens");

        // check if total supply does not exceed FUZZIEMAX
        require(totalSupply() + qty <= FUZZIEMAX, "Qty exceeds max number of tokens");

        // check for maximum token quantity to mint
        require(qty <= PURCHASE_LIMIT, "Cannot purchase more than 17 tokens");

        // check if amount sent is at least equal to the price of token
        require(msg.value >= PRICE_PER_TOKEN * qty, "Amount less than required price");

        // calculate amounts to transfer
        uint256 charityAmount = (msg.value / 10000) * _eachCharityPercentage;
        uint256 f100RoyaltyAmount = (msg.value / 10000) * _f100RoyaltyPercentage;
        uint256 sniftieAmount = (msg.value / 10000) * _sniftieRoyaltyPercentage;

        uint256 fuzziemintsAmount = msg.value - ((charityAmount * 3) + f100RoyaltyAmount + sniftieAmount);

        // call payment function to make the payments
        salePayment(charityAmount, f100RoyaltyAmount, sniftieAmount, fuzziemintsAmount);

        // implement minting here
        for (uint i = 0; i < qty; i++) {
            mintToken(msg.sender);
        }

        // update whitelist mint count tracker
        whitelistMintCount[msg.sender] = whitelistMintCount[msg.sender] + qty;
    }

    function setTokenMediaHashAndURI(uint tokenId, string memory mediaHashOrId, string memory tokenURI) public {
        require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "Cannot set media hash and token URI if not admin");
        setTokenURI(tokenId, tokenURI);
        setTokenMediaHash(tokenId, mediaHashOrId);
    }

    function batchSetTokenMediaHashAndURI(uint256 startAtTokenIndex, string[] memory mediaHashes, string[] memory tokenURIs) public {
        require(mediaHashes.length == tokenURIs.length, "MediaHash Array and TokenURI Array lengths must match");
        require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "Cannot batch set media hash and token URI if not admin");

        for (uint i = startAtTokenIndex; i < startAtTokenIndex + mediaHashes.length; i++) {
            uint256 tokenId = tokenByIndex(i);
            uint256 zeroIndex = i - startAtTokenIndex;
            setTokenMediaHashAndURI(tokenId, mediaHashes[zeroIndex], tokenURIs[zeroIndex]);
        }
    }
}

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

pragma solidity ^0.8.0;

import "./Context.sol";
import "./Strings.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 Modifier that checks that an account has a specific role. Reverts
     * with a standardized message including the required role.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{20}) is missing role (0x[0-9a-f]{32})$/
     *
     * _Available since v4.1._
     */
    modifier onlyRole(bytes32 role) {
        _checkRole(role, _msgSender());
        _;
    }

    /**
     * @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 Revert with a standard message if `account` is missing `role`.
     *
     * The format of the revert reason is given by the following regular expression:
     *
     *  /^AccessControl: account (0x[0-9a-f]{20}) is missing role (0x[0-9a-f]{32})$/
     */
    function _checkRole(bytes32 role, address account) internal view {
        if(!hasRole(role, account)) {
            revert(string(abi.encodePacked(
                "AccessControl: account ",
                Strings.toHexString(uint160(account), 20),
                " is missing role ",
                Strings.toHexString(uint256(role), 32)
            )));
        }
    }

    /**
     * @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 onlyRole(getRoleAdmin(role)) {
        _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 onlyRole(getRoleAdmin(role)) {
        _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 26: 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 26: 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 26: 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 26: 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;
    }

    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 26: ECDSA.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

/**
 * @dev Elliptic Curve Digital Signature Algorithm (ECDSA) operations.
 *
 * These functions can be used to verify that a message was signed by the holder
 * of the private keys of a given address.
 */
library ECDSA {
    enum RecoverError {
        NoError,
        InvalidSignature,
        InvalidSignatureLength,
        InvalidSignatureS,
        InvalidSignatureV
    }

    function _throwError(RecoverError error) private pure {
        if (error == RecoverError.NoError) {
            return; // no error: do nothing
        } else if (error == RecoverError.InvalidSignature) {
            revert("ECDSA: invalid signature");
        } else if (error == RecoverError.InvalidSignatureLength) {
            revert("ECDSA: invalid signature length");
        } else if (error == RecoverError.InvalidSignatureS) {
            revert("ECDSA: invalid signature 's' value");
        } else if (error == RecoverError.InvalidSignatureV) {
            revert("ECDSA: invalid signature 'v' value");
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature` or error string. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     *
     * Documentation for signature generation:
     * - with https://web3js.readthedocs.io/en/v1.3.4/web3-eth-accounts.html#sign[Web3.js]
     * - with https://docs.ethers.io/v5/api/signer/#Signer-signMessage[ethers]
     *
     * _Available since v4.3._
     */
    function tryRecover(bytes32 hash, bytes memory signature) internal pure returns (address, RecoverError) {
        // Check the signature length
        // - case 65: r,s,v signature (standard)
        // - case 64: r,vs signature (cf https://eips.ethereum.org/EIPS/eip-2098) _Available since v4.1._
        if (signature.length == 65) {
            bytes32 r;
            bytes32 s;
            uint8 v;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                s := mload(add(signature, 0x40))
                v := byte(0, mload(add(signature, 0x60)))
            }
            return tryRecover(hash, v, r, s);
        } else if (signature.length == 64) {
            bytes32 r;
            bytes32 vs;
            // ecrecover takes the signature parameters, and the only way to get them
            // currently is to use assembly.
            assembly {
                r := mload(add(signature, 0x20))
                vs := mload(add(signature, 0x40))
            }
            return tryRecover(hash, r, vs);
        } else {
            return (address(0), RecoverError.InvalidSignatureLength);
        }
    }

    /**
     * @dev Returns the address that signed a hashed message (`hash`) with
     * `signature`. This address can then be used for verification purposes.
     *
     * The `ecrecover` EVM opcode allows for malleable (non-unique) signatures:
     * this function rejects them by requiring the `s` value to be in the lower
     * half order, and the `v` value to be either 27 or 28.
     *
     * IMPORTANT: `hash` _must_ be the result of a hash operation for the
     * verification to be secure: it is possible to craft signatures that
     * recover to arbitrary addresses for non-hashed data. A safe way to ensure
     * this is by receiving a hash of the original message (which may otherwise
     * be too long), and then calling {toEthSignedMessageHash} on it.
     */
    function recover(bytes32 hash, bytes memory signature) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, signature);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `r` and `vs` short-signature fields separately.
     *
     * See https://eips.ethereum.org/EIPS/eip-2098[EIP-2098 short signatures]
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address, RecoverError) {
        bytes32 s;
        uint8 v;
        assembly {
            s := and(vs, 0x7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff)
            v := add(shr(255, vs), 27)
        }
        return tryRecover(hash, v, r, s);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `r and `vs` short-signature fields separately.
     *
     * _Available since v4.2._
     */
    function recover(
        bytes32 hash,
        bytes32 r,
        bytes32 vs
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, r, vs);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Overload of {ECDSA-tryRecover} that receives the `v`,
     * `r` and `s` signature fields separately.
     *
     * _Available since v4.3._
     */
    function tryRecover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address, RecoverError) {
        // EIP-2 still allows signature malleability for ecrecover(). Remove this possibility and make the signature
        // unique. Appendix F in the Ethereum Yellow paper (https://ethereum.github.io/yellowpaper/paper.pdf), defines
        // the valid range for s in (301): 0 < s < secp256k1n ÷ 2 + 1, and for v in (302): v ∈ {27, 28}. Most
        // signatures from current libraries generate a unique signature with an s-value in the lower half order.
        //
        // If your library generates malleable signatures, such as s-values in the upper range, calculate a new s-value
        // with 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEBAAEDCE6AF48A03BBFD25E8CD0364141 - s1 and flip v from 27 to 28 or
        // vice versa. If your library also generates signatures with 0/1 for v instead 27/28, add 27 to v to accept
        // these malleable signatures as well.
        if (uint256(s) > 0x7FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF5D576E7357A4501DDFE92F46681B20A0) {
            return (address(0), RecoverError.InvalidSignatureS);
        }
        if (v != 27 && v != 28) {
            return (address(0), RecoverError.InvalidSignatureV);
        }

        // If the signature is valid (and not malleable), return the signer address
        address signer = ecrecover(hash, v, r, s);
        if (signer == address(0)) {
            return (address(0), RecoverError.InvalidSignature);
        }

        return (signer, RecoverError.NoError);
    }

    /**
     * @dev Overload of {ECDSA-recover} that receives the `v`,
     * `r` and `s` signature fields separately.
     */
    function recover(
        bytes32 hash,
        uint8 v,
        bytes32 r,
        bytes32 s
    ) internal pure returns (address) {
        (address recovered, RecoverError error) = tryRecover(hash, v, r, s);
        _throwError(error);
        return recovered;
    }

    /**
     * @dev Returns an Ethereum Signed Message, created from a `hash`. This
     * produces hash corresponding to the one signed with the
     * https://eth.wiki/json-rpc/API#eth_sign[`eth_sign`]
     * JSON-RPC method as part of EIP-191.
     *
     * See {recover}.
     */
    function toEthSignedMessageHash(bytes32 hash) internal pure returns (bytes32) {
        // 32 is the length in bytes of hash,
        // enforced by the type signature above
        return keccak256(abi.encodePacked("\x19Ethereum Signed Message:\n32", hash));
    }

    /**
     * @dev Returns an Ethereum Signed Typed Data, created from a
     * `domainSeparator` and a `structHash`. This produces hash corresponding
     * to the one signed with the
     * https://eips.ethereum.org/EIPS/eip-712[`eth_signTypedData`]
     * JSON-RPC method as part of EIP-712.
     *
     * See {recover}.
     */
    function toTypedDataHash(bytes32 domainSeparator, bytes32 structHash) internal pure returns (bytes32) {
        return keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
    }
}

File 7 of 26: 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;

            if (lastIndex != toDeleteIndex) {
                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] = valueIndex; // Replace lastvalue's index to valueIndex
            }

            // 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) {
        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 8 of 26: 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 9 of 26: ERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor (string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

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

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

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

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

    /**
     * @dev Base URI for computing {tokenURI}. Empty by default, can be overriden
     * in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(address from, address to, uint256 tokenId) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

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

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

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(address from, address to, uint256 tokenId, bytes memory _data) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

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

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

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

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

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

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

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

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

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

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

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

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(address from, address to, uint256 tokenId) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(address from, address to, uint256 tokenId, bytes memory _data)
        private returns (bool)
    {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver(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 10 of 26: 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 11 of 26: 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 12 of 26: 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 13 of 26: ERC721PresetMinterPauserAutoId.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

/**
 * @dev {ERC721} token, including:
 *
 *  - ability for holders to burn (destroy) their tokens
 *  - a minter role that allows for token minting (creation)
 *  - a pauser role that allows to stop all token transfers
 *  - token ID and URI autogeneration
 *
 * 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 ERC721PresetMinterPauserAutoId is Context, AccessControlEnumerable, ERC721Enumerable, ERC721Burnable, ERC721Pausable {
    using Counters for Counters.Counter;

    bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE");
    bytes32 public constant PAUSER_ROLE = keccak256("PAUSER_ROLE");

    Counters.Counter private _tokenIdTracker;
    mapping(string => uint8) hashes;

    string private _baseTokenURI;
    mapping (uint256 => string) private _tokenURIs;

    /**
     * @dev Grants `DEFAULT_ADMIN_ROLE`, `MINTER_ROLE` and `PAUSER_ROLE` to the
     * account that deploys the contract.
     *
     * Token URIs will be autogenerated based on `baseURI` and their token IDs.
     * See {ERC721-tokenURI}.
     */
    constructor(string memory name, string memory symbol, string memory baseTokenURI) ERC721(name, symbol) {
        _baseTokenURI = baseTokenURI;

        _setupRole(DEFAULT_ADMIN_ROLE, _msgSender());

        _setupRole(MINTER_ROLE, _msgSender());
        _setupRole(PAUSER_ROLE, _msgSender());
    }

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

    function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual {
        require(_exists(tokenId), "ERC721Metadata: URI set of nonexistent token");
        _tokenURIs[tokenId] = _tokenURI;
    }

    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: 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));
        }
        // If there is a baseURI but no tokenURI, concatenate the tokenID to the baseURI.
        return base;
    }

    /**
     * @dev Creates a new token for `to`. Its token ID will be automatically
     * assigned (and available on the emitted {IERC721-Transfer} event), and the token
     * URI autogenerated based on the base URI passed at construction.
     *
     * See {ERC721-_mint}.
     *
     * Requirements:
     *
     * - the caller must have the `MINTER_ROLE`.
     */
    function mint(address to, string memory hash, string memory metadata) public virtual {
        require(hasRole(MINTER_ROLE, _msgSender()), "ERC721PresetMinterPauserAutoId: must have minter role to mint");
        require(hashes[hash] != 1, "Hash value has already been used");
        hashes[hash] = 1;

        // We cannot just use balanceOf to create the new tokenId because tokens
        // can be burned (destroyed), so we need a separate counter.
        _tokenIdTracker.increment();
        uint256 newItemId = _tokenIdTracker.current();
        _mint(to, newItemId);
        _setTokenURI(newItemId, metadata);

        // return newItemId
    }

    /**
     * @dev Pauses all token transfers.
     *
     * See {ERC721Pausable} and {Pausable-_pause}.
     *
     * Requirements:
     *
     * - the caller must have the `PAUSER_ROLE`.
     */
    function pause() public virtual {
        require(hasRole(PAUSER_ROLE, _msgSender()), "ERC721PresetMinterPauserAutoId: must have pauser role to pause");
        _pause();
    }

    /**
     * @dev Unpauses all token transfers.
     *
     * See {ERC721Pausable} and {Pausable-_unpause}.
     *
     * Requirements:
     *
     * - the caller must have the `PAUSER_ROLE`.
     */
    function unpause() public virtual {
        require(hasRole(PAUSER_ROLE, _msgSender()), "ERC721PresetMinterPauserAutoId: must have pauser role to unpause");
        _unpause();
    }

    function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal virtual override(ERC721, ERC721Enumerable, ERC721Pausable) {
        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);
    }
}

File 15 of 26: 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 16 of 26: 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 17 of 26: 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 18 of 26: 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 19 of 26: 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 20 of 26: Ownable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./Context.sol";

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

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

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

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

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

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

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

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

File 21 of 26: 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 22 of 26: SniftieERC721Common.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.4;

import "./ERC721.sol";
import "./ERC721Enumerable.sol";
import "./ERC721Burnable.sol";
import "./ERC721Pausable.sol";
import "./AccessControlEnumerable.sol";
import "./Context.sol";
import "./Counters.sol";
import "./SniftieUtils.sol";
import "./Ownable.sol";

contract SniftieERC721Common is Context, AccessControlEnumerable, ERC721Enumerable, ERC721Burnable, ERC721Pausable, Ownable {
    using Counters for Counters.Counter;

    bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE");
    bytes32 public constant PAUSER_ROLE = keccak256("PAUSER_ROLE");

    Counters.Counter private _tokenIdTracker;
    mapping(string => uint8) hashes;

    string private _baseTokenURI;
    string private _contractMetadataURI;
    mapping (uint256 => string) private _tokenURIs;

    /**
     * @dev Grants `DEFAULT_ADMIN_ROLE`, `MINTER_ROLE` and `PAUSER_ROLE` to the
     * account that deploys the contract.
     *
     * Token URIs will be autogenerated based on `baseURI` and their token IDs.
     * See {ERC721-tokenURI}.
     */
    constructor(string memory name, string memory symbol, string memory baseTokenURI, string memory contractMetadataURI, address sniftieAdmin) ERC721(name, symbol) {
        _baseTokenURI = baseTokenURI;
        _contractMetadataURI = contractMetadataURI;

        _setupRole(DEFAULT_ADMIN_ROLE, _msgSender());
        _setupRole(DEFAULT_ADMIN_ROLE, sniftieAdmin);

        _setupRole(MINTER_ROLE, _msgSender());
        _setupRole(MINTER_ROLE, sniftieAdmin);

        _setupRole(PAUSER_ROLE, _msgSender());
        _setupRole(PAUSER_ROLE, sniftieAdmin);
    }

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

    function setContractMetadataURI(string memory contractMetadataURI) public {
        require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "Must have DEFAULT_ADMIN_ROLE to set contract metadata uri");
        _contractMetadataURI = contractMetadataURI;
    }

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

    function setBaseURI(string memory baseURI) public {
        require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "Must have DEFAULT_ADMIN_ROLE to set base uri");
        _baseTokenURI = baseURI;
    }

    function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual {
        require(_exists(tokenId), "ERC721Metadata: URI set of nonexistent token");
        _tokenURIs[tokenId] = _tokenURI;
    }

    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "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 (bytes(_tokenURI).length > 0) {
            if (SniftieUtils.stringContains("://", _tokenURI)) return _tokenURI; // _tokenURI is absolute (e.g. http://domain.com/metadata/1)
            return string(abi.encodePacked(base, _tokenURI)); // _tokenURI is an identifier so concatenate with base uri
        }
        // If there is a baseURI but no tokenURI, concatenate the tokenID to the baseURI.
        return string(abi.encodePacked(base, Strings.toString(tokenId)));
    }

    function setTokenURI(uint256 tokenId, string memory tokenUri) public {
        require(_exists(tokenId), "Cannot set metadata hash for nonexistent token");
        require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "Cannot set metadata hash if not admin");

        _setTokenURI(tokenId, tokenUri);
    }

    // this function is needed in children contracts that do not use the standard mint function and
    // also do not set the media hash upon minting (a token's media hash must be unique)
    function setTokenMediaHash(uint tokenId, string memory mediaHashOrId) public {
        require(_exists(tokenId), "Cannot set media hash for nonexistent token");
        require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "Cannot set media hash if not admin");
        require(hashes[mediaHashOrId] != 1, "Hash value has already been used");

        hashes[mediaHashOrId] = 1;
    }

    /**
     * @dev Pauses all token transfers.
     *
     * See {ERC721Pausable} and {Pausable-_pause}.
     *
     * Requirements:
     *
     * - the caller must have the `PAUSER_ROLE`.
     */
    function pause() public virtual {
        require(hasRole(PAUSER_ROLE, _msgSender()), "ERC721PresetMinterPauserAutoId: must have pauser role to pause");
        _pause();
    }

    /**
     * @dev Unpauses all token transfers.
     *
     * See {ERC721Pausable} and {Pausable-_unpause}.
     *
     * Requirements:
     *
     * - the caller must have the `PAUSER_ROLE`.
     */
    function unpause() public virtual {
        require(hasRole(PAUSER_ROLE, _msgSender()), "ERC721PresetMinterPauserAutoId: must have pauser role to unpause");
        _unpause();
    }

    function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal virtual override(ERC721, ERC721Enumerable, ERC721Pausable) {
        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);
    }
}

File 23 of 26: SniftieERC721IPFS.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

/**
 * @dev {ERC721} token, including:
 *
 *  - ability for holders to burn (destroy) their tokens
 *  - a minter role that allows for token minting (creation)
 *  - a pauser role that allows to stop all token transfers
 *  - token ID and URI autogeneration
 *
 * 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 SniftieERC721IPFS is Context, AccessControlEnumerable, ERC721Enumerable, ERC721Burnable, ERC721Pausable, Ownable {
    using Counters for Counters.Counter;

    bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE");
    bytes32 public constant PAUSER_ROLE = keccak256("PAUSER_ROLE");

    Counters.Counter private _tokenIdTracker;
    mapping(string => uint8) hashes;

    string private _baseTokenURI;
    string private _contractMetadataURI;
    mapping (uint256 => string) private _tokenURIs;

    /**
     * @dev Grants `DEFAULT_ADMIN_ROLE`, `MINTER_ROLE` and `PAUSER_ROLE` to the
     * account that deploys the contract.
     *
     * Token URIs will be autogenerated based on `baseURI` and their token IDs.
     * See {ERC721-tokenURI}.
     */
    constructor(string memory name, string memory symbol, string memory baseTokenURI, address sniftieMinterContract, string memory contractMetadataURI) ERC721(name, symbol) {
        _baseTokenURI = baseTokenURI;
        _contractMetadataURI = contractMetadataURI;

        _setupRole(DEFAULT_ADMIN_ROLE, _msgSender());

        _setupRole(MINTER_ROLE, _msgSender());
        _setupRole(PAUSER_ROLE, _msgSender());

        _setupRole(MINTER_ROLE, sniftieMinterContract);
    }

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

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

    function setBaseURI(string memory baseURI) public {
        require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "Must have DEFAULT_ADMIN_ROLE to set base uri");
        _baseTokenURI = baseURI;
    }

    function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual {
        require(_exists(tokenId), "ERC721Metadata: URI set of nonexistent token");
        _tokenURIs[tokenId] = _tokenURI;
    }

    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: 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));
        }
        // If there is a baseURI but no tokenURI, concatenate the tokenID to the baseURI.
        return base;
    }

    /**
     * @dev Creates a new token for `to`. Its token ID will be automatically
     * assigned (and available on the emitted {IERC721-Transfer} event), and the token
     * URI autogenerated based on the base URI passed at construction.
     *
     * See {ERC721-_mint}.
     *
     * Requirements:
     *
     * - the caller must have the `MINTER_ROLE`.
     */
    function mint(address to, string memory hash, string memory metadata) public virtual {
        require(hasRole(MINTER_ROLE, _msgSender()), "ERC721PresetMinterPauserAutoId: must have minter role to mint");
        require(hashes[hash] != 1, "Hash value has already been used");
        hashes[hash] = 1;

        // We cannot just use balanceOf to create the new tokenId because tokens
        // can be burned (destroyed), so we need a separate counter.
        _tokenIdTracker.increment();
        uint256 newItemId = _tokenIdTracker.current();
        _mint(to, newItemId);
        _setTokenURI(newItemId, metadata);

        // return newItemId
    }

    /**
     * @dev Pauses all token transfers.
     *
     * See {ERC721Pausable} and {Pausable-_pause}.
     *
     * Requirements:
     *
     * - the caller must have the `PAUSER_ROLE`.
     */
    function pause() public virtual {
        require(hasRole(PAUSER_ROLE, _msgSender()), "ERC721PresetMinterPauserAutoId: must have pauser role to pause");
        _pause();
    }

    /**
     * @dev Unpauses all token transfers.
     *
     * See {ERC721Pausable} and {Pausable-_unpause}.
     *
     * Requirements:
     *
     * - the caller must have the `PAUSER_ROLE`.
     */
    function unpause() public virtual {
        require(hasRole(PAUSER_ROLE, _msgSender()), "ERC721PresetMinterPauserAutoId: must have pauser role to unpause");
        _unpause();
    }

    function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal virtual override(ERC721, ERC721Enumerable, ERC721Pausable) {
        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);
    }
}

File 24 of 26: SniftieERC721IPFSMultimint.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

/**
 * @dev {ERC721} token, including:
 *
 *  - ability for holders to burn (destroy) their tokens
 *  - a minter role that allows for token minting (creation)
 *  - a pauser role that allows to stop all token transfers
 *  - token ID and URI autogeneration
 *
 * 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 SniftieERC721IPFSMultimint is Context, AccessControlEnumerable, ERC721Enumerable, ERC721Burnable, ERC721Pausable {
    using Counters for Counters.Counter;

    bytes32 public constant MINTER_ROLE = keccak256("MINTER_ROLE");
    bytes32 public constant PAUSER_ROLE = keccak256("PAUSER_ROLE");

    Counters.Counter private _tokenIdTracker;
    mapping(string => uint8) hashes;

    string private _baseTokenURI;
    string private _contractMetadataURI;
    mapping (uint256 => string) private _tokenURIs;

    /**
     * @dev Grants `DEFAULT_ADMIN_ROLE`, `MINTER_ROLE` and `PAUSER_ROLE` to the
     * account that deploys the contract.
     *
     * Token URIs will be autogenerated based on `baseURI` and their token IDs.
     * See {ERC721-tokenURI}.
     */
    constructor(string memory name, string memory symbol, string memory baseTokenURI, address sniftieMinterContract, string memory contractMetadataURI) ERC721(name, symbol) {
        _baseTokenURI = baseTokenURI;
        _contractMetadataURI = contractMetadataURI;

        _setupRole(DEFAULT_ADMIN_ROLE, _msgSender());

        _setupRole(MINTER_ROLE, _msgSender());
        _setupRole(PAUSER_ROLE, _msgSender());

        _setupRole(MINTER_ROLE, sniftieMinterContract);
    }

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

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

    function setBaseURI(string memory baseURI) public {
        require(hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "Must have DEFAULT_ADMIN_ROLE to set base uri");
        _baseTokenURI = baseURI;
    }

    function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual {
        require(_exists(tokenId), "ERC721Metadata: URI set of nonexistent token");
        _tokenURIs[tokenId] = _tokenURI;
    }

    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "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));
        }
        // If there is a baseURI but no tokenURI, concatenate the tokenID to the baseURI.
        return base;
    }

    function setMetadataHash(uint256 tokenId, string memory metadataHash) public {
        require(_exists(tokenId), "Cannot set metadata hash for nonexistent token");
        require(_isApprovedOrOwner(_msgSender(), tokenId) || hasRole(DEFAULT_ADMIN_ROLE, _msgSender()), "Cannot set metadata hash if not owner or admin");

        _setTokenURI(tokenId, metadataHash);
    }

    /**
     * @dev Creates a new token for `to`. Its token ID will be automatically
     * assigned (and available on the emitted {IERC721-Transfer} event), and the token
     * URI autogenerated based on the base URI passed at construction.
     *
     * See {ERC721-_mint}.
     *
     * Requirements:
     *
     * - the caller must have the `MINTER_ROLE`.
     */
    function mint(address to, string memory hash, string memory metadata) public virtual {
        require(hasRole(MINTER_ROLE, _msgSender()), "ERC721PresetMinterPauserAutoId: must have minter role to mint");
        require(hashes[hash] != 1, "Hash value has already been used");
        hashes[hash] = 1;

        // We cannot just use balanceOf to create the new tokenId because tokens
        // can be burned (destroyed), so we need a separate counter.
        _tokenIdTracker.increment();
        uint256 newItemId = _tokenIdTracker.current();
        _mint(to, newItemId);
        _setTokenURI(newItemId, metadata);

        // return newItemId
    }

    function mint(address to, string[] memory mediaHashArray, string[] memory metadataHashArray) public virtual {
        require(hasRole(MINTER_ROLE, _msgSender()), "ERC721PresetMinterPauserAutoId: must have minter role to mint");
        require(mediaHashArray.length == metadataHashArray.length, "Media Hash Array and Metadata Hash Array lengths must match");

        for (uint i = 0; i < mediaHashArray.length; i++) {
            string memory mediaHash = mediaHashArray[i];
            require(hashes[mediaHash] != 1, "Hash value has already been used");
        }

        for (uint i = 0; i < mediaHashArray.length; i++) {
            string memory mediaHash = mediaHashArray[i];
            string memory metadataHash = metadataHashArray[i];

            hashes[mediaHash] = 1;

            // We cannot just use balanceOf to create the new tokenId because tokens
            // can be burned (destroyed), so we need a separate counter.
            _tokenIdTracker.increment();
            uint256 newItemId = _tokenIdTracker.current();
            _mint(to, newItemId);
            _setTokenURI(newItemId, metadataHash);

            // return newItemId
        }
    }

    /**
     * @dev Pauses all token transfers.
     *
     * See {ERC721Pausable} and {Pausable-_pause}.
     *
     * Requirements:
     *
     * - the caller must have the `PAUSER_ROLE`.
     */
    function pause() public virtual {
        require(hasRole(PAUSER_ROLE, _msgSender()), "ERC721PresetMinterPauserAutoId: must have pauser role to pause");
        _pause();
    }

    /**
     * @dev Unpauses all token transfers.
     *
     * See {ERC721Pausable} and {Pausable-_unpause}.
     *
     * Requirements:
     *
     * - the caller must have the `PAUSER_ROLE`.
     */
    function unpause() public virtual {
        require(hasRole(PAUSER_ROLE, _msgSender()), "ERC721PresetMinterPauserAutoId: must have pauser role to unpause");
        _unpause();
    }

    function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal virtual override(ERC721, ERC721Enumerable, ERC721Pausable) {
        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);
    }
}

File 25 of 26: SniftieUtils.sol
// SPDX-License-Identifier: UNLICENSED

pragma solidity ^0.8.0;

/**
 * @dev reusable utility functions
 */
library SniftieUtils {
    /**
     * @dev checks if string where contains string what
     */
    function stringContains(string memory what, string memory where) internal pure returns (bool) {
        bytes memory whatBytes = bytes(what);
        bytes memory whereBytes = bytes(where);

        bool found = false;
        for (uint i = 0; i < whereBytes.length - whatBytes.length; i++) {
            bool flag = true;
            for (uint j = 0; j < whatBytes.length; j++)
                if (whereBytes [i + j] != whatBytes [j]) {
                    flag = false;
                    break;
                }
            if (flag) {
                found = true;
                break;
            }
        }

        return found;
    }
}

File 26 of 26: 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":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"string","name":"baseTokenURI","type":"string"},{"internalType":"string","name":"contractMetadataURI","type":"string"},{"internalType":"address","name":"sniftieAdmin","type":"address"},{"internalType":"address","name":"backend","type":"address"},{"internalType":"address payable[]","name":"payableAddresses","type":"address[]"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FUZZIEMAX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"FUZZIE_PREMINT_MAX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MINTER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PAUSER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PURCHASE_LIMIT","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"add","type":"address[]"}],"name":"addToWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"startAtTokenIndex","type":"uint256"},{"internalType":"string[]","name":"mediaHashes","type":"string[]"},{"internalType":"string[]","name":"tokenURIs","type":"string[]"}],"name":"batchSetTokenMediaHashAndURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"getBackend","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCharity1","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCharity2","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getCharity3","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getF100royalty","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getFuzziemints","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getIsPublicSaleLocked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[],"name":"getSniftie","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"premint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"message","type":"bytes32"},{"internalType":"bytes32","name":"messageHash","type":"bytes32"},{"internalType":"bytes","name":"signature","type":"bytes"},{"internalType":"uint8","name":"qty","type":"uint8"}],"name":"purchaseAndMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address[]","name":"remove","type":"address[]"}],"name":"removeFromWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","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":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"backend","type":"address"}],"name":"setBackend","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"charity1","type":"address"}],"name":"setCharity1","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"charity2","type":"address"}],"name":"setCharity2","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"charity3","type":"address"}],"name":"setCharity3","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"contractMetadataURI","type":"string"}],"name":"setContractMetadataURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"f100royalty","type":"address"}],"name":"setF100royalty","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"fuzziemints","type":"address"}],"name":"setFuzziemints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"locked","type":"bool"}],"name":"setIsPublicSalesLocked","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"sniftie","type":"address"}],"name":"setSniftie","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"mediaHashOrId","type":"string"}],"name":"setTokenMediaHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"string","name":"mediaHashOrId","type":"string"},{"internalType":"string","name":"tokenURI","type":"string"}],"name":"setTokenMediaHashAndURI","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":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"message","type":"bytes32"},{"internalType":"bytes32","name":"messageHash","type":"bytes32"},{"internalType":"bytes","name":"signature","type":"bytes"},{"internalType":"uint8","name":"qty","type":"uint8"}],"name":"whitelistedPurchaseAndMint","outputs":[],"stateMutability":"payable","type":"function"}]

60806040526064601a55610442601b55610898601c5561190a601d556020805460ff191660011790553480156200003557600080fd5b506040516200573838038062005738833981016040819052620000589162000702565b8686868686848481600290805190602001906200007792919062000523565b5080516200008d90600390602084019062000523565b5050600c805460ff1916905550620000a53362000364565b8251620000ba90600f90602086019062000523565b508151620000d090601090602085019062000523565b50620000de600033620003be565b620000eb600082620003be565b620001066000805160206200571883398151915233620003be565b620001216000805160206200571883398151915282620003be565b6200013c600080516020620056f883398151915233620003be565b62000157600080516020620056f883398151915282620003be565b5050601380546001600160a01b0319166001600160a01b038716179055505081518291506000906200019957634e487b7160e01b600052603260045260246000fd5b6020026020010151601460006101000a8154816001600160a01b0302191690836001600160a01b0316021790555080600181518110620001e957634e487b7160e01b600052603260045260246000fd5b6020026020010151601560006101000a8154816001600160a01b0302191690836001600160a01b03160217905550806002815181106200023957634e487b7160e01b600052603260045260246000fd5b6020026020010151601660006101000a8154816001600160a01b0302191690836001600160a01b03160217905550806003815181106200028957634e487b7160e01b600052603260045260246000fd5b6020026020010151601860006101000a8154816001600160a01b0302191690836001600160a01b0316021790555080600481518110620002d957634e487b7160e01b600052603260045260246000fd5b6020026020010151601760006101000a8154816001600160a01b0302191690836001600160a01b03160217905550806005815181106200032957634e487b7160e01b600052603260045260246000fd5b6020026020010151601960006101000a8154816001600160a01b0302191690836001600160a01b0316021790555050505050505050620008a1565b600c80546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b620003d582826200040160201b620028171760201c565b6000828152600160209081526040909120620003fc9183906200282162000411821b17901c565b505050565b6200040d828262000431565b5050565b600062000428836001600160a01b038416620004d1565b90505b92915050565b6000828152602081815260408083206001600160a01b038516845290915290205460ff166200040d576000828152602081815260408083206001600160a01b03851684529091529020805460ff191660011790556200048d3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b60008181526001830160205260408120546200051a575081546001818101845560008481526020808220909301849055845484825282860190935260409020919091556200042b565b5060006200042b565b828054620005319062000835565b90600052602060002090601f016020900481019282620005555760008555620005a0565b82601f106200057057805160ff1916838001178555620005a0565b82800160010185558215620005a0579182015b82811115620005a057825182559160200191906001019062000583565b50620005ae929150620005b2565b5090565b5b80821115620005ae5760008155600101620005b3565b8051620005d68162000888565b919050565b600082601f830112620005ec578081fd5b815160206001600160401b038211156200060a576200060a62000872565b8160051b6200061b82820162000802565b83815282810190868401838801850189101562000636578687fd5b8693505b8584101562000665578051620006508162000888565b8352600193909301929184019184016200063a565b50979650505050505050565b600082601f83011262000682578081fd5b81516001600160401b038111156200069e576200069e62000872565b6020620006b4601f8301601f1916820162000802565b8281528582848701011115620006c8578384fd5b835b83811015620006e7578581018301518282018401528201620006ca565b83811115620006f857848385840101525b5095945050505050565b600080600080600080600060e0888a0312156200071d578283fd5b87516001600160401b038082111562000734578485fd5b620007428b838c0162000671565b985060208a015191508082111562000758578485fd5b620007668b838c0162000671565b975060408a01519150808211156200077c578485fd5b6200078a8b838c0162000671565b965060608a0151915080821115620007a0578485fd5b620007ae8b838c0162000671565b9550620007be60808b01620005c9565b9450620007ce60a08b01620005c9565b935060c08a0151915080821115620007e4578283fd5b50620007f38a828b01620005db565b91505092959891949750929550565b604051601f8201601f191681016001600160401b03811182821017156200082d576200082d62000872565b604052919050565b600181811c908216806200084a57607f821691505b602082108114156200086c57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b6001600160a01b03811681146200089e57600080fd5b50565b614e4780620008b16000396000f3fe6080604052600436106103c35760003560e01c806383a1919a116101f2578063c20011651161010d578063da7fc24f116100a0578063e985e9c51161006f578063e985e9c514610b2f578063eecd393114610b78578063f2fde38b14610b8b578063f90be7d914610bab57600080fd5b8063da7fc24f14610aa6578063e63ab1e914610ac6578063e7bea69f14610afa578063e8a3d48514610b1a57600080fd5b8063d19d85e9116100dc578063d19d85e914610a0d578063d539139314610a2b578063d547741f14610a5f578063d75e611014610a7f57600080fd5b8063c20011651461098f578063c55765f2146109ad578063c87b56dd146109cd578063ca15c873146109ed57600080fd5b806395d89b4111610185578063a22cb46511610154578063a22cb4651461091c578063b88d4fde1461093c578063bc7b941e1461095c578063bcaa94921461096f57600080fd5b806395d89b41146108b257806395df0d99146108c7578063a201fc50146108e7578063a217fddf1461090757600080fd5b806386dbd333116101c157806386dbd333146108315780638da5cb5b1461084f5780639010d07c1461087257806391d148541461089257600080fd5b806383a1919a146107be57806383a72302146107de5780638456cb59146107fc5780638617141b1461081157600080fd5b806342842e0e116102e2578063594eda641161027557806370a082311161024457806370a0823114610749578063715018a6146107695780637f6497831461077e57806382b446b11461079e57600080fd5b8063594eda64146106d35780635ab0e299146106f15780635c975abb146107115780636352211e1461072957600080fd5b80634f6ccce7116102b15780634f6ccce714610653578063548db1741461067357806355310ea61461069357806355f804b3146106b357600080fd5b806342842e0e146105e957806342966c681461060957806347e24a5d1461062957806348a1e66b1461063e57600080fd5b806318160ddd1161035a5780632f2ff15d116103295780632f2ff15d146105745780632f745c591461059457806336568abe146105b45780633f4ba83a146105d457600080fd5b806318160ddd146104ef5780631bccaf641461050e57806323b872dd14610524578063248a9ca31461054457600080fd5b8063095ea7b311610396578063095ea7b3146104795780630eb34660146104995780630f6f1f5f146104b7578063162094c4146104cf57600080fd5b806301ffc9a7146103c857806305fc6389146103fd57806306fdde031461041f578063081812fc14610441575b600080fd5b3480156103d457600080fd5b506103e86103e336600461482e565b610bc9565b60405190151581526020015b60405180910390f35b34801561040957600080fd5b5061041d610418366004614898565b610bda565b005b34801561042b57600080fd5b50610434610d68565b6040516103f49190614acd565b34801561044d57600080fd5b5061046161045c36600461476c565b610dfa565b6040516001600160a01b0390911681526020016103f4565b34801561048557600080fd5b5061041d61049436600461468c565b610e82565b3480156104a557600080fd5b506014546001600160a01b0316610461565b3480156104c357600080fd5b5060205460ff166103e8565b3480156104db57600080fd5b5061041d6104ea366004614901565b610f98565b3480156104fb57600080fd5b50600a545b6040519081526020016103f4565b34801561051a57600080fd5b506105006115b381565b34801561053057600080fd5b5061041d61053f3660046145af565b611077565b34801561055057600080fd5b5061050061055f36600461476c565b60009081526020819052604090206001015490565b34801561058057600080fd5b5061041d61058f366004614784565b6110a9565b3480156105a057600080fd5b506105006105af36600461468c565b6110cb565b3480156105c057600080fd5b5061041d6105cf366004614784565b611161565b3480156105e057600080fd5b5061041d611183565b3480156105f557600080fd5b5061041d6106043660046145af565b61122b565b34801561061557600080fd5b5061041d61062436600461476c565b611246565b34801561063557600080fd5b5061050060cd81565b34801561064a57600080fd5b5061041d6112c0565b34801561065f57600080fd5b5061050061066e36600461476c565b6113c4565b34801561067f57600080fd5b5061041d61068e3660046146b7565b611465565b34801561069f57600080fd5b5061041d6106ae366004614901565b61154d565b3480156106bf57600080fd5b5061041d6106ce366004614866565b6116c4565b3480156106df57600080fd5b506013546001600160a01b0316610461565b3480156106fd57600080fd5b5061041d61070c36600461455b565b611731565b34801561071d57600080fd5b50600c5460ff166103e8565b34801561073557600080fd5b5061046161074436600461476c565b61177a565b34801561075557600080fd5b5061050061076436600461455b565b6117f1565b34801561077557600080fd5b5061041d611878565b34801561078a57600080fd5b5061041d6107993660046146b7565b6118e2565b3480156107aa57600080fd5b5061041d6107b936600461455b565b6119b6565b3480156107ca57600080fd5b5061041d6107d936600461455b565b6119ff565b3480156107ea57600080fd5b506017546001600160a01b0316610461565b34801561080857600080fd5b5061041d611a48565b34801561081d57600080fd5b5061041d61082c36600461455b565b611aec565b34801561083d57600080fd5b506018546001600160a01b0316610461565b34801561085b57600080fd5b50600c5461010090046001600160a01b0316610461565b34801561087e57600080fd5b5061046161088d36600461480d565b611b35565b34801561089e57600080fd5b506103e86108ad366004614784565b611b54565b3480156108be57600080fd5b50610434611b7d565b3480156108d357600080fd5b5061041d6108e2366004614752565b611b8c565b3480156108f357600080fd5b5061041d610902366004614866565b611bc6565b34801561091357600080fd5b50610500600081565b34801561092857600080fd5b5061041d610937366004614658565b611c44565b34801561094857600080fd5b5061041d6109573660046145ef565b611d09565b61041d61096a3660046147a8565b611d3b565b34801561097b57600080fd5b5061041d61098a366004614945565b612136565b34801561099b57600080fd5b506019546001600160a01b0316610461565b3480156109b957600080fd5b5061041d6109c836600461455b565b6121ba565b3480156109d957600080fd5b506104346109e836600461476c565b612203565b3480156109f957600080fd5b50610500610a0836600461476c565b61238e565b348015610a1957600080fd5b506015546001600160a01b0316610461565b348015610a3757600080fd5b506105007f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b348015610a6b57600080fd5b5061041d610a7a366004614784565b6123a5565b348015610a8b57600080fd5b50610a94601181565b60405160ff90911681526020016103f4565b348015610ab257600080fd5b5061041d610ac136600461455b565b6123af565b348015610ad257600080fd5b506105007f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b348015610b0657600080fd5b5061041d610b1536600461455b565b6123f8565b348015610b2657600080fd5b50610434612441565b348015610b3b57600080fd5b506103e8610b4a366004614577565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b61041d610b863660046147a8565b612450565b348015610b9757600080fd5b5061041d610ba636600461455b565b612749565b348015610bb757600080fd5b506016546001600160a01b0316610461565b6000610bd482612836565b92915050565b8051825114610c4e5760405162461bcd60e51b815260206004820152603560248201527f4d656469614861736820417272617920616e6420546f6b656e555249204172726044820152740c2f240d8cadccee8d0e640daeae6e840dac2e8c6d605b1b60648201526084015b60405180910390fd5b610c59600033611b54565b610cc45760405162461bcd60e51b815260206004820152603660248201527f43616e6e6f7420626174636820736574206d65646961206861736820616e64206044820152753a37b5b2b7102aa9249034b3103737ba1030b236b4b760511b6064820152608401610c45565b825b8251610cd29085614c50565b811015610d62576000610ce4826113c4565b90506000610cf28684614cc0565b9050610d4d82868381518110610d1857634e487b7160e01b600052603260045260246000fd5b6020026020010151868481518110610d4057634e487b7160e01b600052603260045260246000fd5b6020026020010151612136565b50508080610d5a90614d55565b915050610cc6565b50505050565b606060028054610d7790614d1a565b80601f0160208091040260200160405190810160405280929190818152602001828054610da390614d1a565b8015610df05780601f10610dc557610100808354040283529160200191610df0565b820191906000526020600020905b815481529060010190602001808311610dd357829003601f168201915b5050505050905090565b6000610e058261285b565b610e665760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610c45565b506000908152600660205260409020546001600160a01b031690565b6000610e8d8261177a565b9050806001600160a01b0316836001600160a01b03161415610efb5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610c45565b336001600160a01b0382161480610f175750610f178133610b4a565b610f895760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610c45565b610f938383612878565b505050565b610fa18261285b565b6110045760405162461bcd60e51b815260206004820152602e60248201527f43616e6e6f7420736574206d65746164617461206861736820666f72206e6f6e60448201526d32bc34b9ba32b73a103a37b5b2b760911b6064820152608401610c45565b61100f600033611b54565b6110695760405162461bcd60e51b815260206004820152602560248201527f43616e6e6f7420736574206d657461646174612068617368206966206e6f742060448201526430b236b4b760d91b6064820152608401610c45565b61107382826128e6565b5050565b611082335b8261296f565b61109e5760405162461bcd60e51b8152600401610c4590614b75565b610f93838383612a59565b6110b38282612c04565b6000828152600160205260409020610f939082612821565b60006110d6836117f1565b82106111385760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610c45565b506001600160a01b03919091166000908152600860209081526040808320938352929052205490565b61116b8282612c2a565b6000828152600160205260409020610f939082612ca4565b6111ad7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a33611b54565b611221576040805162461bcd60e51b81526020600482015260248101919091527f4552433732315072657365744d696e7465725061757365724175746f49643a2060448201527f6d75737420686176652070617573657220726f6c6520746f20756e70617573656064820152608401610c45565b611229612cb9565b565b610f9383838360405180602001604052806000815250611d09565b61124f3361107c565b6112b45760405162461bcd60e51b815260206004820152603060248201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760448201526f1b995c881b9bdc88185c1c1c9bdd995960821b6064820152608401610c45565b6112bd81612d4c565b50565b6112cb600033611b54565b6113235760405162461bcd60e51b81526020600482015260356024820152600080516020614df28339815191526044820152746d696e742066697273742031303020746f6b656e7360581b6064820152608401610c45565b600061132e600a5490565b9050600061133d8260cd614cc0565b9050600060198210156113505781611353565b60195b90506000811161139d5760405162461bcd60e51b8152602060048201526015602482015274141c995b5a5b9d081b1a5b5a5d081c995858da1959605a1b6044820152606401610c45565b60005b81811015610d62576113b133612df3565b50806113bc81614d55565b9150506113a0565b60006113cf600a5490565b82106114325760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610c45565b600a828154811061145357634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b611470600033611b54565b6114d75760405162461bcd60e51b815260206004820152603260248201527f4d75737420686176652044454641554c545f41444d494e5f524f4c452072656d6044820152711bdd9948199c9bdb481dda1a5d195b1a5cdd60721b6064820152608401610c45565b60005b8151811015611073576000601f600084848151811061150957634e487b7160e01b600052603260045260246000fd5b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790558061154581614d55565b9150506114da565b6115568261285b565b6115b65760405162461bcd60e51b815260206004820152602b60248201527f43616e6e6f7420736574206d65646961206861736820666f72206e6f6e65786960448201526a39ba32b73a103a37b5b2b760a91b6064820152608401610c45565b6115c1600033611b54565b6116185760405162461bcd60e51b815260206004820152602260248201527f43616e6e6f7420736574206d656469612068617368206966206e6f742061646d60448201526134b760f11b6064820152608401610c45565b600e8160405161162891906149d0565b9081526040519081900360200190205460ff166001141561168b5760405162461bcd60e51b815260206004820181905260248201527f486173682076616c75652068617320616c7265616479206265656e20757365646044820152606401610c45565b6001600e8260405161169d91906149d0565b908152604051908190036020019020805460ff9290921660ff199092169190911790555050565b6116cf600033611b54565b61171e5760405162461bcd60e51b815260206004820152602c6024820152600080516020614df283398151915260448201526b73657420626173652075726960a01b6064820152608401610c45565b805161107390600f9060208401906143b2565b61173c600033611b54565b6117585760405162461bcd60e51b8152600401610c4590614bc6565b601980546001600160a01b0319166001600160a01b0392909216919091179055565b6000818152600460205260408120546001600160a01b031680610bd45760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610c45565b60006001600160a01b03821661185c5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610c45565b506001600160a01b031660009081526005602052604090205490565b600c546001600160a01b036101009091041633146118d85760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c45565b6112296000612e1a565b6118ed600033611b54565b6119405760405162461bcd60e51b81526020600482015260306024820152600080516020614df283398151915260448201526f185919081d1bc81dda1a5d195b1a5cdd60821b6064820152608401610c45565b60005b8151811015611073576001601f600084848151811061197257634e487b7160e01b600052603260045260246000fd5b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916911515919091179055806119ae81614d55565b915050611943565b6119c1600033611b54565b6119dd5760405162461bcd60e51b8152600401610c4590614bc6565b601780546001600160a01b0319166001600160a01b0392909216919091179055565b611a0a600033611b54565b611a265760405162461bcd60e51b8152600401610c4590614bc6565b601680546001600160a01b0319166001600160a01b0392909216919091179055565b611a727f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a33611b54565b611ae45760405162461bcd60e51b815260206004820152603e60248201527f4552433732315072657365744d696e7465725061757365724175746f49643a2060448201527f6d75737420686176652070617573657220726f6c6520746f20706175736500006064820152608401610c45565b611229612e74565b611af7600033611b54565b611b135760405162461bcd60e51b8152600401610c4590614bc6565b601880546001600160a01b0319166001600160a01b0392909216919091179055565b6000828152600160205260408120611b4d9083612eef565b9392505050565b6000918252602082815260408084206001600160a01b0393909316845291905290205460ff1690565b606060038054610d7790614d1a565b611b97600033611b54565b611bb35760405162461bcd60e51b8152600401610c4590614bc6565b6020805460ff1916911515919091179055565b611bd1600033611b54565b611c315760405162461bcd60e51b81526020600482015260396024820152600080516020614df283398151915260448201527f73657420636f6e7472616374206d6574616461746120757269000000000000006064820152608401610c45565b80516110739060109060208401906143b2565b6001600160a01b038216331415611c9d5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610c45565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611d13338361296f565b611d2f5760405162461bcd60e51b8152600401610c4590614b75565b610d6284848484612efb565b6013546001600160a01b0316611d518484612f2e565b6001600160a01b031614611da75760405162461bcd60e51b815260206004820152601d60248201527f436f6e74656e74206e6f74207369676e656420627920536e69667469650000006044820152606401610c45565b6040516001600160f81b031960f883901b16602082015284906021016040516020818303038152906040528051906020012014611e265760405162461bcd60e51b815260206004820152601b60248201527f4d657373616765206861736820646f6573206e6f74206d6174636800000000006044820152606401610c45565b60205460ff168015611e475750336000908152601f602052604090205460ff165b611eb95760405162461bcd60e51b815260206004820152603860248201527f5075626c69632073616c6573206973207374696c6c20636c6f73656420616e6460448201527f20796f7520617265206e6f742077686974656c697374656400000000000000006064820152608401610c45565b336000908152601e6020526040902054600590611eda90839060ff16614c68565b60ff161115611f3c5760405162461bcd60e51b815260206004820152602860248201527f57686974656c697374206d696e74696e67207265737472696374656420746f206044820152673520746f6b656e7360c01b6064820152608401610c45565b6115b38160ff16611f4c600a5490565b611f569190614c50565b1115611fa45760405162461bcd60e51b815260206004820181905260248201527f5174792065786365656473206d6178206e756d626572206f6620746f6b656e736044820152606401610c45565b601160ff82161115611fc85760405162461bcd60e51b8152600401610c4590614b32565b611fdc60ff821666c3663566a58000614ca1565b34101561202b5760405162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206c657373207468616e207265717569726564207072696365006044820152606401610c45565b601a5460009061203d61271034614c8d565b6120479190614ca1565b90506000601b546127103461205c9190614c8d565b6120669190614ca1565b90506000601c546127103461207b9190614c8d565b6120859190614ca1565b905060008183612096866003614ca1565b6120a09190614c50565b6120aa9190614c50565b6120b49034614cc0565b90506120c284848484612f52565b60005b8560ff168110156120ec576120d933612df3565b50806120e481614d55565b9150506120c5565b50336000908152601e602052604090205461210b90869060ff16614c68565b336000908152601e60205260409020805460ff191660ff929092169190911790555050505050505050565b612141600033611b54565b6121a65760405162461bcd60e51b815260206004820152603060248201527f43616e6e6f7420736574206d65646961206861736820616e6420746f6b656e2060448201526f2aa9249034b3103737ba1030b236b4b760811b6064820152608401610c45565b6121b08382610f98565b610f93838361154d565b6121c5600033611b54565b6121e15760405162461bcd60e51b8152600401610c4590614bc6565b601580546001600160a01b0319166001600160a01b0392909216919091179055565b606061220e8261285b565b61225a5760405162461bcd60e51b815260206004820152601f60248201527f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e006044820152606401610c45565b6000828152601160205260408120805461227390614d1a565b80601f016020809104026020016040519081016040528092919081815260200182805461229f90614d1a565b80156122ec5780601f106122c1576101008083540402835291602001916122ec565b820191906000526020600020905b8154815290600101906020018083116122cf57829003601f168201915b5050505050905060006122fd613347565b9050805160001415612310575092915050565b8151156123735761233c604051806040016040528060038152602001623a2f2f60e81b81525083613356565b15612348575092915050565b808260405160200161235b9291906149ec565b60405160208183030381529060405292505050919050565b8061237d85613435565b60405160200161235b9291906149ec565b6000818152600160205260408120610bd49061354e565b61116b8282613558565b6123ba600033611b54565b6123d65760405162461bcd60e51b8152600401610c4590614bc6565b601380546001600160a01b0319166001600160a01b0392909216919091179055565b612403600033611b54565b61241f5760405162461bcd60e51b8152600401610c4590614bc6565b601480546001600160a01b0319166001600160a01b0392909216919091179055565b606060108054610d7790614d1a565b6013546001600160a01b03166124668484612f2e565b6001600160a01b0316146124bc5760405162461bcd60e51b815260206004820152601d60248201527f436f6e74656e74206e6f74207369676e656420627920536e69667469650000006044820152606401610c45565b6040516001600160f81b031960f883901b1660208201528490602101604051602081830303815290604052805190602001201461253b5760405162461bcd60e51b815260206004820152601b60248201527f4d657373616765206861736820646f6573206e6f74206d6174636800000000006044820152606401610c45565b60205460ff161561258e5760405162461bcd60e51b815260206004820152601c60248201527f5075626c69632073616c6573206973207374696c6c20636c6f736564000000006044820152606401610c45565b6115b38160ff1661259e600a5490565b6125a89190614c50565b11156125f65760405162461bcd60e51b815260206004820181905260248201527f5174792065786365656473206d6178206e756d626572206f6620746f6b656e736044820152606401610c45565b601160ff8216111561261a5760405162461bcd60e51b8152600401610c4590614b32565b61262e60ff821666c3663566a58000614ca1565b34101561267d5760405162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206c657373207468616e207265717569726564207072696365006044820152606401610c45565b601a5460009061268f61271034614c8d565b6126999190614ca1565b90506000601b54612710346126ae9190614c8d565b6126b89190614ca1565b90506000601c54612710346126cd9190614c8d565b6126d79190614ca1565b9050600081836126e8866003614ca1565b6126f29190614c50565b6126fc9190614c50565b6127069034614cc0565b905061271484848484612f52565b60005b8560ff1681101561273e5761272b33612df3565b508061273681614d55565b915050612717565b505050505050505050565b600c546001600160a01b036101009091041633146127a95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c45565b6001600160a01b03811661280e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610c45565b6112bd81612e1a565b611073828261357e565b6000611b4d836001600160a01b038416613602565b60006001600160e01b0319821663780e9d6360e01b1480610bd45750610bd482613651565b6000908152600460205260409020546001600160a01b0316151590565b600081815260066020526040902080546001600160a01b0319166001600160a01b03841690811790915581906128ad8261177a565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6128ef8261285b565b6129505760405162461bcd60e51b815260206004820152602c60248201527f4552433732314d657461646174613a2055524920736574206f66206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610c45565b60008281526011602090815260409091208251610f93928401906143b2565b600061297a8261285b565b6129db5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610c45565b60006129e68361177a565b9050806001600160a01b0316846001600160a01b03161480612a215750836001600160a01b0316612a1684610dfa565b6001600160a01b0316145b80612a5157506001600160a01b0380821660009081526007602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316612a6c8261177a565b6001600160a01b031614612ad45760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610c45565b6001600160a01b038216612b365760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610c45565b612b41838383613691565b612b4c600082612878565b6001600160a01b0383166000908152600560205260408120805460019290612b75908490614cc0565b90915550506001600160a01b0382166000908152600560205260408120805460019290612ba3908490614c50565b909155505060008181526004602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600082815260208190526040902060010154612c20813361369c565b610f93838361357e565b6001600160a01b0381163314612c9a5760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b6064820152608401610c45565b6110738282613700565b6000611b4d836001600160a01b038416613765565b600c5460ff16612d025760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610c45565b600c805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6000612d578261177a565b9050612d6581600084613691565b612d70600083612878565b6001600160a01b0381166000908152600560205260408120805460019290612d99908490614cc0565b909155505060008281526004602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b6000612e03601280546001019055565b6000612e0e60125490565b9050610bd48382613882565b600c80546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600c5460ff1615612eba5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610c45565b600c805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258612d2f3390565b6000611b4d83836139c1565b612f06848484612a59565b612f12848484846139f9565b610d625760405162461bcd60e51b8152600401610c4590614ae0565b6000806000612f3d8585613b06565b91509150612f4a81613b76565b509392505050565b6014546040516000916001600160a01b03169061138890879084818181858888f193505050503d8060008114612fa4576040519150601f19603f3d011682016040523d82523d6000602084013e612fa9565b606091505b5050905080612ffa5760405162461bcd60e51b815260206004820152601860248201527f436861726974792031207061796d656e74206661696c656400000000000000006044820152606401610c45565b6015546040516000916001600160a01b03169061138890889084818181858888f193505050503d806000811461304c576040519150601f19603f3d011682016040523d82523d6000602084013e613051565b606091505b50509050806130a25760405162461bcd60e51b815260206004820152601860248201527f436861726974792032207061796d656e74206661696c656400000000000000006044820152606401610c45565b6016546040516000916001600160a01b03169061138890899084818181858888f193505050503d80600081146130f4576040519150601f19603f3d011682016040523d82523d6000602084013e6130f9565b606091505b505090508061314a5760405162461bcd60e51b815260206004820152601860248201527f436861726974792033207061796d656e74206661696c656400000000000000006044820152606401610c45565b6018546040516000916001600160a01b03169061138890899084818181858888f193505050503d806000811461319c576040519150601f19603f3d011682016040523d82523d6000602084013e6131a1565b606091505b50509050806131f25760405162461bcd60e51b815260206004820181905260248201527f46697273742031303020726f79616c7479207061796d656e74206661696c65646044820152606401610c45565b6017546040516000916001600160a01b03169061138890899084818181858888f193505050503d8060008114613244576040519150601f19603f3d011682016040523d82523d6000602084013e613249565b606091505b50509050806132935760405162461bcd60e51b815260206004820152601660248201527514db9a599d1a59481c185e5b595b9d0819985a5b195960521b6044820152606401610c45565b6019546040516000916001600160a01b03169061138890899084818181858888f193505050503d80600081146132e5576040519150601f19603f3d011682016040523d82523d6000602084013e6132ea565b606091505b505090508061333b5760405162461bcd60e51b815260206004820152601a60248201527f46757a7a69656d696e7473207061796d656e74206661696c65640000000000006044820152606401610c45565b50505050505050505050565b6060600f8054610d7790614d1a565b6000828282805b8351835161336b9190614cc0565b81101561342b57600160005b8551811015613407578581815181106133a057634e487b7160e01b600052603260045260246000fd5b01602001516001600160f81b031916856133ba8386614c50565b815181106133d857634e487b7160e01b600052603260045260246000fd5b01602001516001600160f81b031916146133f55760009150613407565b806133ff81614d55565b915050613377565b50801561341857600192505061342b565b508061342381614d55565b91505061335d565b5095945050505050565b6060816134595750506040805180820190915260018152600360fc1b602082015290565b8160005b8115613483578061346d81614d55565b915061347c9050600a83614c8d565b915061345d565b6000816001600160401b038111156134ab57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156134d5576020820181803683370190505b5090505b8415612a51576134ea600183614cc0565b91506134f7600a86614d70565b613502906030614c50565b60f81b81838151811061352557634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350613547600a86614c8d565b94506134d9565b6000610bd4825490565b600082815260208190526040902060010154613574813361369c565b610f938383613700565b6135888282611b54565b611073576000828152602081815260408083206001600160a01b03851684529091529020805460ff191660011790556135be3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b600081815260018301602052604081205461364957508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610bd4565b506000610bd4565b60006001600160e01b031982166380ac58cd60e01b148061368257506001600160e01b03198216635b5e139f60e01b145b80610bd45750610bd482613d77565b610f93838383613d9c565b6136a68282611b54565b611073576136be816001600160a01b03166014613e0e565b6136c9836020613e0e565b6040516020016136da929190614a1b565b60408051601f198184030181529082905262461bcd60e51b8252610c4591600401614acd565b61370a8282611b54565b15611073576000828152602081815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b60008181526001830160205260408120548015613878576000613789600183614cc0565b855490915060009061379d90600190614cc0565b905081811461381e5760008660000182815481106137cb57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050808760000184815481106137fc57634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255918252600188019052604090208390555b855486908061383d57634e487b7160e01b600052603160045260246000fd5b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050610bd4565b6000915050610bd4565b6001600160a01b0382166138d85760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610c45565b6138e18161285b565b1561392e5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610c45565b61393a60008383613691565b6001600160a01b0382166000908152600560205260408120805460019290613963908490614c50565b909155505060008181526004602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60008260000182815481106139e657634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905092915050565b60006001600160a01b0384163b15613afb57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290613a3d903390899088908890600401614a90565b602060405180830381600087803b158015613a5757600080fd5b505af1925050508015613a87575060408051601f3d908101601f19168201909252613a849181019061484a565b60015b613ae1573d808015613ab5576040519150601f19603f3d011682016040523d82523d6000602084013e613aba565b606091505b508051613ad95760405162461bcd60e51b8152600401610c4590614ae0565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612a51565b506001949350505050565b600080825160411415613b3d5760208301516040840151606085015160001a613b3187828585613fef565b94509450505050613b6f565b825160401415613b675760208301516040840151613b5c8683836140dc565b935093505050613b6f565b506000905060025b9250929050565b6000816004811115613b9857634e487b7160e01b600052602160045260246000fd5b1415613ba15750565b6001816004811115613bc357634e487b7160e01b600052602160045260246000fd5b1415613c115760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610c45565b6002816004811115613c3357634e487b7160e01b600052602160045260246000fd5b1415613c815760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610c45565b6003816004811115613ca357634e487b7160e01b600052602160045260246000fd5b1415613cfc5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610c45565b6004816004811115613d1e57634e487b7160e01b600052602160045260246000fd5b14156112bd5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b6064820152608401610c45565b60006001600160e01b03198216635a05180f60e01b1480610bd45750610bd48261410b565b613da7838383614140565b600c5460ff1615610f935760405162461bcd60e51b815260206004820152602b60248201527f4552433732315061757361626c653a20746f6b656e207472616e73666572207760448201526a1a1a5b19481c185d5cd95960aa1b6064820152608401610c45565b60606000613e1d836002614ca1565b613e28906002614c50565b6001600160401b03811115613e4d57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015613e77576020820181803683370190505b509050600360fc1b81600081518110613ea057634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110613edd57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506000613f01846002614ca1565b613f0c906001614c50565b90505b6001811115613fa0576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110613f4e57634e487b7160e01b600052603260045260246000fd5b1a60f81b828281518110613f7257634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535060049490941c93613f9981614d03565b9050613f0f565b508315611b4d5760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610c45565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a083111561402657506000905060036140d3565b8460ff16601b1415801561403e57508460ff16601c14155b1561404f57506000905060046140d3565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa1580156140a3573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166140cc576000600192509250506140d3565b9150600090505b94509492505050565b6000806001600160ff1b03831660ff84901c601b016140fd87828885613fef565b935093505050935093915050565b60006001600160e01b03198216637965db0b60e01b1480610bd457506301ffc9a760e01b6001600160e01b0319831614610bd4565b6001600160a01b03831661419b5761419681600a80546000838152600b60205260408120829055600182018355919091527fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a80155565b6141be565b816001600160a01b0316836001600160a01b0316146141be576141be83826141f8565b6001600160a01b0382166141d557610f9381614295565b826001600160a01b0316826001600160a01b031614610f9357610f93828261436e565b60006001614205846117f1565b61420f9190614cc0565b600083815260096020526040902054909150808214614262576001600160a01b03841660009081526008602090815260408083208584528252808320548484528184208190558352600990915290208190555b5060009182526009602090815260408084208490556001600160a01b039094168352600881528383209183525290812055565b600a546000906142a790600190614cc0565b6000838152600b6020526040812054600a80549394509092849081106142dd57634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905080600a838154811061430c57634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600b9091526040808220849055858252812055600a80548061435257634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000614379836117f1565b6001600160a01b039093166000908152600860209081526040808320868452825280832085905593825260099052919091209190915550565b8280546143be90614d1a565b90600052602060002090601f0160209004810192826143e05760008555614426565b82601f106143f957805160ff1916838001178555614426565b82800160010185558215614426579182015b8281111561442657825182559160200191906001019061440b565b50614432929150614436565b5090565b5b808211156144325760008155600101614437565b600082601f83011261445b578081fd5b8135602061447061446b83614c2d565b614bfd565b80838252828201915082860187848660051b890101111561448f578586fd5b855b858110156144cf5781356001600160401b038111156144ae578788fd5b6144bc8a87838c01016144f1565b8552509284019290840190600101614491565b5090979650505050505050565b803580151581146144ec57600080fd5b919050565b600082601f830112614501578081fd5b81356001600160401b0381111561451a5761451a614db0565b61452d601f8201601f1916602001614bfd565b818152846020838601011115614541578283fd5b816020850160208301379081016020019190915292915050565b60006020828403121561456c578081fd5b8135611b4d81614dc6565b60008060408385031215614589578081fd5b823561459481614dc6565b915060208301356145a481614dc6565b809150509250929050565b6000806000606084860312156145c3578081fd5b83356145ce81614dc6565b925060208401356145de81614dc6565b929592945050506040919091013590565b60008060008060808587031215614604578081fd5b843561460f81614dc6565b9350602085013561461f81614dc6565b92506040850135915060608501356001600160401b03811115614640578182fd5b61464c878288016144f1565b91505092959194509250565b6000806040838503121561466a578182fd5b823561467581614dc6565b9150614683602084016144dc565b90509250929050565b6000806040838503121561469e578182fd5b82356146a981614dc6565b946020939093013593505050565b600060208083850312156146c9578182fd5b82356001600160401b038111156146de578283fd5b8301601f810185136146ee578283fd5b80356146fc61446b82614c2d565b80828252848201915084840188868560051b870101111561471b578687fd5b8694505b8385101561474657803561473281614dc6565b83526001949094019391850191850161471f565b50979650505050505050565b600060208284031215614763578081fd5b611b4d826144dc565b60006020828403121561477d578081fd5b5035919050565b60008060408385031215614796578182fd5b8235915060208301356145a481614dc6565b600080600080608085870312156147bd578182fd5b843593506020850135925060408501356001600160401b038111156147e0578283fd5b6147ec878288016144f1565b925050606085013560ff81168114614802578182fd5b939692955090935050565b6000806040838503121561481f578182fd5b50508035926020909101359150565b60006020828403121561483f578081fd5b8135611b4d81614ddb565b60006020828403121561485b578081fd5b8151611b4d81614ddb565b600060208284031215614877578081fd5b81356001600160401b0381111561488c578182fd5b612a51848285016144f1565b6000806000606084860312156148ac578081fd5b8335925060208401356001600160401b03808211156148c9578283fd5b6148d58783880161444b565b935060408601359150808211156148ea578283fd5b506148f78682870161444b565b9150509250925092565b60008060408385031215614913578182fd5b8235915060208301356001600160401b0381111561492f578182fd5b61493b858286016144f1565b9150509250929050565b600080600060608486031215614959578081fd5b8335925060208401356001600160401b0380821115614976578283fd5b614982878388016144f1565b93506040860135915080821115614997578283fd5b506148f7868287016144f1565b600081518084526149bc816020860160208601614cd7565b601f01601f19169290920160200192915050565b600082516149e2818460208701614cd7565b9190910192915050565b600083516149fe818460208801614cd7565b835190830190614a12818360208801614cd7565b01949350505050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000815260008351614a53816017850160208801614cd7565b7001034b99036b4b9b9b4b733903937b6329607d1b6017918401918201528351614a84816028840160208801614cd7565b01602801949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090614ac3908301846149a4565b9695505050505050565b602081526000611b4d60208301846149a4565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526023908201527f43616e6e6f74207075726368617365206d6f7265207468616e20313720746f6b604082015262656e7360e81b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252601c908201527f4d75737420686176652044454641554c545f41444d494e5f524f4c4500000000604082015260600190565b604051601f8201601f191681016001600160401b0381118282101715614c2557614c25614db0565b604052919050565b60006001600160401b03821115614c4657614c46614db0565b5060051b60200190565b60008219821115614c6357614c63614d84565b500190565b600060ff821660ff84168060ff03821115614c8557614c85614d84565b019392505050565b600082614c9c57614c9c614d9a565b500490565b6000816000190483118215151615614cbb57614cbb614d84565b500290565b600082821015614cd257614cd2614d84565b500390565b60005b83811015614cf2578181015183820152602001614cda565b83811115610d625750506000910152565b600081614d1257614d12614d84565b506000190190565b600181811c90821680614d2e57607f821691505b60208210811415614d4f57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415614d6957614d69614d84565b5060010190565b600082614d7f57614d7f614d9a565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b03811681146112bd57600080fd5b6001600160e01b0319811681146112bd57600080fdfe4d75737420686176652044454641554c545f41444d494e5f524f4c4520746f20a2646970667358221220539ed5eedb1f8be4ca6f09be6446052186cbad97dfed634aa578c6efa33284f764736f6c6343000804003365d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a600000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001c000000000000000000000000007ebcc0400d154bd16a9cffde5aea0b0abfb5bd9000000000000000000000000650013e47449041f5c0d122298c4db195216082f0000000000000000000000000000000000000000000000000000000000000220000000000000000000000000000000000000000000000000000000000000000b46755a5a69654d694e54530000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003465a590000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002468747470733a2f2f6170692e736e69667469652e636f6d2f66757a7a69656d696e74732f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d55785038756661484538715631744a6f35376365426539784c36717253644c794c76686841734a5636626f64000000000000000000000000000000000000000000000000000000000000000000000000000000000000060000000000000000000000003b682506470466106a17ad055c1c5a65ae84590b0000000000000000000000002f46686e73ab3b138b827d88d06ee228bc6fa96c000000000000000000000000f91e167cd3a031cf604f0eb63948052c7252a533000000000000000000000000f33476de5c7d2559807cccd7db3a30b812e37972000000000000000000000000f99817730be6e5cd7e1f9955562a20bf0a337aa8000000000000000000000000d124cd58c6ab9eb9911be753859c9713f59831dc

Deployed Bytecode

0x6080604052600436106103c35760003560e01c806383a1919a116101f2578063c20011651161010d578063da7fc24f116100a0578063e985e9c51161006f578063e985e9c514610b2f578063eecd393114610b78578063f2fde38b14610b8b578063f90be7d914610bab57600080fd5b8063da7fc24f14610aa6578063e63ab1e914610ac6578063e7bea69f14610afa578063e8a3d48514610b1a57600080fd5b8063d19d85e9116100dc578063d19d85e914610a0d578063d539139314610a2b578063d547741f14610a5f578063d75e611014610a7f57600080fd5b8063c20011651461098f578063c55765f2146109ad578063c87b56dd146109cd578063ca15c873146109ed57600080fd5b806395d89b4111610185578063a22cb46511610154578063a22cb4651461091c578063b88d4fde1461093c578063bc7b941e1461095c578063bcaa94921461096f57600080fd5b806395d89b41146108b257806395df0d99146108c7578063a201fc50146108e7578063a217fddf1461090757600080fd5b806386dbd333116101c157806386dbd333146108315780638da5cb5b1461084f5780639010d07c1461087257806391d148541461089257600080fd5b806383a1919a146107be57806383a72302146107de5780638456cb59146107fc5780638617141b1461081157600080fd5b806342842e0e116102e2578063594eda641161027557806370a082311161024457806370a0823114610749578063715018a6146107695780637f6497831461077e57806382b446b11461079e57600080fd5b8063594eda64146106d35780635ab0e299146106f15780635c975abb146107115780636352211e1461072957600080fd5b80634f6ccce7116102b15780634f6ccce714610653578063548db1741461067357806355310ea61461069357806355f804b3146106b357600080fd5b806342842e0e146105e957806342966c681461060957806347e24a5d1461062957806348a1e66b1461063e57600080fd5b806318160ddd1161035a5780632f2ff15d116103295780632f2ff15d146105745780632f745c591461059457806336568abe146105b45780633f4ba83a146105d457600080fd5b806318160ddd146104ef5780631bccaf641461050e57806323b872dd14610524578063248a9ca31461054457600080fd5b8063095ea7b311610396578063095ea7b3146104795780630eb34660146104995780630f6f1f5f146104b7578063162094c4146104cf57600080fd5b806301ffc9a7146103c857806305fc6389146103fd57806306fdde031461041f578063081812fc14610441575b600080fd5b3480156103d457600080fd5b506103e86103e336600461482e565b610bc9565b60405190151581526020015b60405180910390f35b34801561040957600080fd5b5061041d610418366004614898565b610bda565b005b34801561042b57600080fd5b50610434610d68565b6040516103f49190614acd565b34801561044d57600080fd5b5061046161045c36600461476c565b610dfa565b6040516001600160a01b0390911681526020016103f4565b34801561048557600080fd5b5061041d61049436600461468c565b610e82565b3480156104a557600080fd5b506014546001600160a01b0316610461565b3480156104c357600080fd5b5060205460ff166103e8565b3480156104db57600080fd5b5061041d6104ea366004614901565b610f98565b3480156104fb57600080fd5b50600a545b6040519081526020016103f4565b34801561051a57600080fd5b506105006115b381565b34801561053057600080fd5b5061041d61053f3660046145af565b611077565b34801561055057600080fd5b5061050061055f36600461476c565b60009081526020819052604090206001015490565b34801561058057600080fd5b5061041d61058f366004614784565b6110a9565b3480156105a057600080fd5b506105006105af36600461468c565b6110cb565b3480156105c057600080fd5b5061041d6105cf366004614784565b611161565b3480156105e057600080fd5b5061041d611183565b3480156105f557600080fd5b5061041d6106043660046145af565b61122b565b34801561061557600080fd5b5061041d61062436600461476c565b611246565b34801561063557600080fd5b5061050060cd81565b34801561064a57600080fd5b5061041d6112c0565b34801561065f57600080fd5b5061050061066e36600461476c565b6113c4565b34801561067f57600080fd5b5061041d61068e3660046146b7565b611465565b34801561069f57600080fd5b5061041d6106ae366004614901565b61154d565b3480156106bf57600080fd5b5061041d6106ce366004614866565b6116c4565b3480156106df57600080fd5b506013546001600160a01b0316610461565b3480156106fd57600080fd5b5061041d61070c36600461455b565b611731565b34801561071d57600080fd5b50600c5460ff166103e8565b34801561073557600080fd5b5061046161074436600461476c565b61177a565b34801561075557600080fd5b5061050061076436600461455b565b6117f1565b34801561077557600080fd5b5061041d611878565b34801561078a57600080fd5b5061041d6107993660046146b7565b6118e2565b3480156107aa57600080fd5b5061041d6107b936600461455b565b6119b6565b3480156107ca57600080fd5b5061041d6107d936600461455b565b6119ff565b3480156107ea57600080fd5b506017546001600160a01b0316610461565b34801561080857600080fd5b5061041d611a48565b34801561081d57600080fd5b5061041d61082c36600461455b565b611aec565b34801561083d57600080fd5b506018546001600160a01b0316610461565b34801561085b57600080fd5b50600c5461010090046001600160a01b0316610461565b34801561087e57600080fd5b5061046161088d36600461480d565b611b35565b34801561089e57600080fd5b506103e86108ad366004614784565b611b54565b3480156108be57600080fd5b50610434611b7d565b3480156108d357600080fd5b5061041d6108e2366004614752565b611b8c565b3480156108f357600080fd5b5061041d610902366004614866565b611bc6565b34801561091357600080fd5b50610500600081565b34801561092857600080fd5b5061041d610937366004614658565b611c44565b34801561094857600080fd5b5061041d6109573660046145ef565b611d09565b61041d61096a3660046147a8565b611d3b565b34801561097b57600080fd5b5061041d61098a366004614945565b612136565b34801561099b57600080fd5b506019546001600160a01b0316610461565b3480156109b957600080fd5b5061041d6109c836600461455b565b6121ba565b3480156109d957600080fd5b506104346109e836600461476c565b612203565b3480156109f957600080fd5b50610500610a0836600461476c565b61238e565b348015610a1957600080fd5b506015546001600160a01b0316610461565b348015610a3757600080fd5b506105007f9f2df0fed2c77648de5860a4cc508cd0818c85b8b8a1ab4ceeef8d981c8956a681565b348015610a6b57600080fd5b5061041d610a7a366004614784565b6123a5565b348015610a8b57600080fd5b50610a94601181565b60405160ff90911681526020016103f4565b348015610ab257600080fd5b5061041d610ac136600461455b565b6123af565b348015610ad257600080fd5b506105007f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a81565b348015610b0657600080fd5b5061041d610b1536600461455b565b6123f8565b348015610b2657600080fd5b50610434612441565b348015610b3b57600080fd5b506103e8610b4a366004614577565b6001600160a01b03918216600090815260076020908152604080832093909416825291909152205460ff1690565b61041d610b863660046147a8565b612450565b348015610b9757600080fd5b5061041d610ba636600461455b565b612749565b348015610bb757600080fd5b506016546001600160a01b0316610461565b6000610bd482612836565b92915050565b8051825114610c4e5760405162461bcd60e51b815260206004820152603560248201527f4d656469614861736820417272617920616e6420546f6b656e555249204172726044820152740c2f240d8cadccee8d0e640daeae6e840dac2e8c6d605b1b60648201526084015b60405180910390fd5b610c59600033611b54565b610cc45760405162461bcd60e51b815260206004820152603660248201527f43616e6e6f7420626174636820736574206d65646961206861736820616e64206044820152753a37b5b2b7102aa9249034b3103737ba1030b236b4b760511b6064820152608401610c45565b825b8251610cd29085614c50565b811015610d62576000610ce4826113c4565b90506000610cf28684614cc0565b9050610d4d82868381518110610d1857634e487b7160e01b600052603260045260246000fd5b6020026020010151868481518110610d4057634e487b7160e01b600052603260045260246000fd5b6020026020010151612136565b50508080610d5a90614d55565b915050610cc6565b50505050565b606060028054610d7790614d1a565b80601f0160208091040260200160405190810160405280929190818152602001828054610da390614d1a565b8015610df05780601f10610dc557610100808354040283529160200191610df0565b820191906000526020600020905b815481529060010190602001808311610dd357829003601f168201915b5050505050905090565b6000610e058261285b565b610e665760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610c45565b506000908152600660205260409020546001600160a01b031690565b6000610e8d8261177a565b9050806001600160a01b0316836001600160a01b03161415610efb5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610c45565b336001600160a01b0382161480610f175750610f178133610b4a565b610f895760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610c45565b610f938383612878565b505050565b610fa18261285b565b6110045760405162461bcd60e51b815260206004820152602e60248201527f43616e6e6f7420736574206d65746164617461206861736820666f72206e6f6e60448201526d32bc34b9ba32b73a103a37b5b2b760911b6064820152608401610c45565b61100f600033611b54565b6110695760405162461bcd60e51b815260206004820152602560248201527f43616e6e6f7420736574206d657461646174612068617368206966206e6f742060448201526430b236b4b760d91b6064820152608401610c45565b61107382826128e6565b5050565b611082335b8261296f565b61109e5760405162461bcd60e51b8152600401610c4590614b75565b610f93838383612a59565b6110b38282612c04565b6000828152600160205260409020610f939082612821565b60006110d6836117f1565b82106111385760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610c45565b506001600160a01b03919091166000908152600860209081526040808320938352929052205490565b61116b8282612c2a565b6000828152600160205260409020610f939082612ca4565b6111ad7f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a33611b54565b611221576040805162461bcd60e51b81526020600482015260248101919091527f4552433732315072657365744d696e7465725061757365724175746f49643a2060448201527f6d75737420686176652070617573657220726f6c6520746f20756e70617573656064820152608401610c45565b611229612cb9565b565b610f9383838360405180602001604052806000815250611d09565b61124f3361107c565b6112b45760405162461bcd60e51b815260206004820152603060248201527f4552433732314275726e61626c653a2063616c6c6572206973206e6f74206f7760448201526f1b995c881b9bdc88185c1c1c9bdd995960821b6064820152608401610c45565b6112bd81612d4c565b50565b6112cb600033611b54565b6113235760405162461bcd60e51b81526020600482015260356024820152600080516020614df28339815191526044820152746d696e742066697273742031303020746f6b656e7360581b6064820152608401610c45565b600061132e600a5490565b9050600061133d8260cd614cc0565b9050600060198210156113505781611353565b60195b90506000811161139d5760405162461bcd60e51b8152602060048201526015602482015274141c995b5a5b9d081b1a5b5a5d081c995858da1959605a1b6044820152606401610c45565b60005b81811015610d62576113b133612df3565b50806113bc81614d55565b9150506113a0565b60006113cf600a5490565b82106114325760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610c45565b600a828154811061145357634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b611470600033611b54565b6114d75760405162461bcd60e51b815260206004820152603260248201527f4d75737420686176652044454641554c545f41444d494e5f524f4c452072656d6044820152711bdd9948199c9bdb481dda1a5d195b1a5cdd60721b6064820152608401610c45565b60005b8151811015611073576000601f600084848151811061150957634e487b7160e01b600052603260045260246000fd5b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff19169115159190911790558061154581614d55565b9150506114da565b6115568261285b565b6115b65760405162461bcd60e51b815260206004820152602b60248201527f43616e6e6f7420736574206d65646961206861736820666f72206e6f6e65786960448201526a39ba32b73a103a37b5b2b760a91b6064820152608401610c45565b6115c1600033611b54565b6116185760405162461bcd60e51b815260206004820152602260248201527f43616e6e6f7420736574206d656469612068617368206966206e6f742061646d60448201526134b760f11b6064820152608401610c45565b600e8160405161162891906149d0565b9081526040519081900360200190205460ff166001141561168b5760405162461bcd60e51b815260206004820181905260248201527f486173682076616c75652068617320616c7265616479206265656e20757365646044820152606401610c45565b6001600e8260405161169d91906149d0565b908152604051908190036020019020805460ff9290921660ff199092169190911790555050565b6116cf600033611b54565b61171e5760405162461bcd60e51b815260206004820152602c6024820152600080516020614df283398151915260448201526b73657420626173652075726960a01b6064820152608401610c45565b805161107390600f9060208401906143b2565b61173c600033611b54565b6117585760405162461bcd60e51b8152600401610c4590614bc6565b601980546001600160a01b0319166001600160a01b0392909216919091179055565b6000818152600460205260408120546001600160a01b031680610bd45760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610c45565b60006001600160a01b03821661185c5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610c45565b506001600160a01b031660009081526005602052604090205490565b600c546001600160a01b036101009091041633146118d85760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c45565b6112296000612e1a565b6118ed600033611b54565b6119405760405162461bcd60e51b81526020600482015260306024820152600080516020614df283398151915260448201526f185919081d1bc81dda1a5d195b1a5cdd60821b6064820152608401610c45565b60005b8151811015611073576001601f600084848151811061197257634e487b7160e01b600052603260045260246000fd5b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff1916911515919091179055806119ae81614d55565b915050611943565b6119c1600033611b54565b6119dd5760405162461bcd60e51b8152600401610c4590614bc6565b601780546001600160a01b0319166001600160a01b0392909216919091179055565b611a0a600033611b54565b611a265760405162461bcd60e51b8152600401610c4590614bc6565b601680546001600160a01b0319166001600160a01b0392909216919091179055565b611a727f65d7a28e3265b37a6474929f336521b332c1681b933f6cb9f3376673440d862a33611b54565b611ae45760405162461bcd60e51b815260206004820152603e60248201527f4552433732315072657365744d696e7465725061757365724175746f49643a2060448201527f6d75737420686176652070617573657220726f6c6520746f20706175736500006064820152608401610c45565b611229612e74565b611af7600033611b54565b611b135760405162461bcd60e51b8152600401610c4590614bc6565b601880546001600160a01b0319166001600160a01b0392909216919091179055565b6000828152600160205260408120611b4d9083612eef565b9392505050565b6000918252602082815260408084206001600160a01b0393909316845291905290205460ff1690565b606060038054610d7790614d1a565b611b97600033611b54565b611bb35760405162461bcd60e51b8152600401610c4590614bc6565b6020805460ff1916911515919091179055565b611bd1600033611b54565b611c315760405162461bcd60e51b81526020600482015260396024820152600080516020614df283398151915260448201527f73657420636f6e7472616374206d6574616461746120757269000000000000006064820152608401610c45565b80516110739060109060208401906143b2565b6001600160a01b038216331415611c9d5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610c45565b3360008181526007602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611d13338361296f565b611d2f5760405162461bcd60e51b8152600401610c4590614b75565b610d6284848484612efb565b6013546001600160a01b0316611d518484612f2e565b6001600160a01b031614611da75760405162461bcd60e51b815260206004820152601d60248201527f436f6e74656e74206e6f74207369676e656420627920536e69667469650000006044820152606401610c45565b6040516001600160f81b031960f883901b16602082015284906021016040516020818303038152906040528051906020012014611e265760405162461bcd60e51b815260206004820152601b60248201527f4d657373616765206861736820646f6573206e6f74206d6174636800000000006044820152606401610c45565b60205460ff168015611e475750336000908152601f602052604090205460ff165b611eb95760405162461bcd60e51b815260206004820152603860248201527f5075626c69632073616c6573206973207374696c6c20636c6f73656420616e6460448201527f20796f7520617265206e6f742077686974656c697374656400000000000000006064820152608401610c45565b336000908152601e6020526040902054600590611eda90839060ff16614c68565b60ff161115611f3c5760405162461bcd60e51b815260206004820152602860248201527f57686974656c697374206d696e74696e67207265737472696374656420746f206044820152673520746f6b656e7360c01b6064820152608401610c45565b6115b38160ff16611f4c600a5490565b611f569190614c50565b1115611fa45760405162461bcd60e51b815260206004820181905260248201527f5174792065786365656473206d6178206e756d626572206f6620746f6b656e736044820152606401610c45565b601160ff82161115611fc85760405162461bcd60e51b8152600401610c4590614b32565b611fdc60ff821666c3663566a58000614ca1565b34101561202b5760405162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206c657373207468616e207265717569726564207072696365006044820152606401610c45565b601a5460009061203d61271034614c8d565b6120479190614ca1565b90506000601b546127103461205c9190614c8d565b6120669190614ca1565b90506000601c546127103461207b9190614c8d565b6120859190614ca1565b905060008183612096866003614ca1565b6120a09190614c50565b6120aa9190614c50565b6120b49034614cc0565b90506120c284848484612f52565b60005b8560ff168110156120ec576120d933612df3565b50806120e481614d55565b9150506120c5565b50336000908152601e602052604090205461210b90869060ff16614c68565b336000908152601e60205260409020805460ff191660ff929092169190911790555050505050505050565b612141600033611b54565b6121a65760405162461bcd60e51b815260206004820152603060248201527f43616e6e6f7420736574206d65646961206861736820616e6420746f6b656e2060448201526f2aa9249034b3103737ba1030b236b4b760811b6064820152608401610c45565b6121b08382610f98565b610f93838361154d565b6121c5600033611b54565b6121e15760405162461bcd60e51b8152600401610c4590614bc6565b601580546001600160a01b0319166001600160a01b0392909216919091179055565b606061220e8261285b565b61225a5760405162461bcd60e51b815260206004820152601f60248201527f55524920717565727920666f72206e6f6e6578697374656e7420746f6b656e006044820152606401610c45565b6000828152601160205260408120805461227390614d1a565b80601f016020809104026020016040519081016040528092919081815260200182805461229f90614d1a565b80156122ec5780601f106122c1576101008083540402835291602001916122ec565b820191906000526020600020905b8154815290600101906020018083116122cf57829003601f168201915b5050505050905060006122fd613347565b9050805160001415612310575092915050565b8151156123735761233c604051806040016040528060038152602001623a2f2f60e81b81525083613356565b15612348575092915050565b808260405160200161235b9291906149ec565b60405160208183030381529060405292505050919050565b8061237d85613435565b60405160200161235b9291906149ec565b6000818152600160205260408120610bd49061354e565b61116b8282613558565b6123ba600033611b54565b6123d65760405162461bcd60e51b8152600401610c4590614bc6565b601380546001600160a01b0319166001600160a01b0392909216919091179055565b612403600033611b54565b61241f5760405162461bcd60e51b8152600401610c4590614bc6565b601480546001600160a01b0319166001600160a01b0392909216919091179055565b606060108054610d7790614d1a565b6013546001600160a01b03166124668484612f2e565b6001600160a01b0316146124bc5760405162461bcd60e51b815260206004820152601d60248201527f436f6e74656e74206e6f74207369676e656420627920536e69667469650000006044820152606401610c45565b6040516001600160f81b031960f883901b1660208201528490602101604051602081830303815290604052805190602001201461253b5760405162461bcd60e51b815260206004820152601b60248201527f4d657373616765206861736820646f6573206e6f74206d6174636800000000006044820152606401610c45565b60205460ff161561258e5760405162461bcd60e51b815260206004820152601c60248201527f5075626c69632073616c6573206973207374696c6c20636c6f736564000000006044820152606401610c45565b6115b38160ff1661259e600a5490565b6125a89190614c50565b11156125f65760405162461bcd60e51b815260206004820181905260248201527f5174792065786365656473206d6178206e756d626572206f6620746f6b656e736044820152606401610c45565b601160ff8216111561261a5760405162461bcd60e51b8152600401610c4590614b32565b61262e60ff821666c3663566a58000614ca1565b34101561267d5760405162461bcd60e51b815260206004820152601f60248201527f416d6f756e74206c657373207468616e207265717569726564207072696365006044820152606401610c45565b601a5460009061268f61271034614c8d565b6126999190614ca1565b90506000601b54612710346126ae9190614c8d565b6126b89190614ca1565b90506000601c54612710346126cd9190614c8d565b6126d79190614ca1565b9050600081836126e8866003614ca1565b6126f29190614c50565b6126fc9190614c50565b6127069034614cc0565b905061271484848484612f52565b60005b8560ff1681101561273e5761272b33612df3565b508061273681614d55565b915050612717565b505050505050505050565b600c546001600160a01b036101009091041633146127a95760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610c45565b6001600160a01b03811661280e5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610c45565b6112bd81612e1a565b611073828261357e565b6000611b4d836001600160a01b038416613602565b60006001600160e01b0319821663780e9d6360e01b1480610bd45750610bd482613651565b6000908152600460205260409020546001600160a01b0316151590565b600081815260066020526040902080546001600160a01b0319166001600160a01b03841690811790915581906128ad8261177a565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6128ef8261285b565b6129505760405162461bcd60e51b815260206004820152602c60248201527f4552433732314d657461646174613a2055524920736574206f66206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610c45565b60008281526011602090815260409091208251610f93928401906143b2565b600061297a8261285b565b6129db5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610c45565b60006129e68361177a565b9050806001600160a01b0316846001600160a01b03161480612a215750836001600160a01b0316612a1684610dfa565b6001600160a01b0316145b80612a5157506001600160a01b0380821660009081526007602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316612a6c8261177a565b6001600160a01b031614612ad45760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610c45565b6001600160a01b038216612b365760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610c45565b612b41838383613691565b612b4c600082612878565b6001600160a01b0383166000908152600560205260408120805460019290612b75908490614cc0565b90915550506001600160a01b0382166000908152600560205260408120805460019290612ba3908490614c50565b909155505060008181526004602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600082815260208190526040902060010154612c20813361369c565b610f93838361357e565b6001600160a01b0381163314612c9a5760405162461bcd60e51b815260206004820152602f60248201527f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560448201526e103937b632b9903337b91039b2b63360891b6064820152608401610c45565b6110738282613700565b6000611b4d836001600160a01b038416613765565b600c5460ff16612d025760405162461bcd60e51b815260206004820152601460248201527314185d5cd8589b194e881b9bdd081c185d5cd95960621b6044820152606401610c45565b600c805460ff191690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b6040516001600160a01b03909116815260200160405180910390a1565b6000612d578261177a565b9050612d6581600084613691565b612d70600083612878565b6001600160a01b0381166000908152600560205260408120805460019290612d99908490614cc0565b909155505060008281526004602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b6000612e03601280546001019055565b6000612e0e60125490565b9050610bd48382613882565b600c80546001600160a01b03838116610100818102610100600160a81b031985161790945560405193909204169182907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b600c5460ff1615612eba5760405162461bcd60e51b815260206004820152601060248201526f14185d5cd8589b194e881c185d5cd95960821b6044820152606401610c45565b600c805460ff191660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258612d2f3390565b6000611b4d83836139c1565b612f06848484612a59565b612f12848484846139f9565b610d625760405162461bcd60e51b8152600401610c4590614ae0565b6000806000612f3d8585613b06565b91509150612f4a81613b76565b509392505050565b6014546040516000916001600160a01b03169061138890879084818181858888f193505050503d8060008114612fa4576040519150601f19603f3d011682016040523d82523d6000602084013e612fa9565b606091505b5050905080612ffa5760405162461bcd60e51b815260206004820152601860248201527f436861726974792031207061796d656e74206661696c656400000000000000006044820152606401610c45565b6015546040516000916001600160a01b03169061138890889084818181858888f193505050503d806000811461304c576040519150601f19603f3d011682016040523d82523d6000602084013e613051565b606091505b50509050806130a25760405162461bcd60e51b815260206004820152601860248201527f436861726974792032207061796d656e74206661696c656400000000000000006044820152606401610c45565b6016546040516000916001600160a01b03169061138890899084818181858888f193505050503d80600081146130f4576040519150601f19603f3d011682016040523d82523d6000602084013e6130f9565b606091505b505090508061314a5760405162461bcd60e51b815260206004820152601860248201527f436861726974792033207061796d656e74206661696c656400000000000000006044820152606401610c45565b6018546040516000916001600160a01b03169061138890899084818181858888f193505050503d806000811461319c576040519150601f19603f3d011682016040523d82523d6000602084013e6131a1565b606091505b50509050806131f25760405162461bcd60e51b815260206004820181905260248201527f46697273742031303020726f79616c7479207061796d656e74206661696c65646044820152606401610c45565b6017546040516000916001600160a01b03169061138890899084818181858888f193505050503d8060008114613244576040519150601f19603f3d011682016040523d82523d6000602084013e613249565b606091505b50509050806132935760405162461bcd60e51b815260206004820152601660248201527514db9a599d1a59481c185e5b595b9d0819985a5b195960521b6044820152606401610c45565b6019546040516000916001600160a01b03169061138890899084818181858888f193505050503d80600081146132e5576040519150601f19603f3d011682016040523d82523d6000602084013e6132ea565b606091505b505090508061333b5760405162461bcd60e51b815260206004820152601a60248201527f46757a7a69656d696e7473207061796d656e74206661696c65640000000000006044820152606401610c45565b50505050505050505050565b6060600f8054610d7790614d1a565b6000828282805b8351835161336b9190614cc0565b81101561342b57600160005b8551811015613407578581815181106133a057634e487b7160e01b600052603260045260246000fd5b01602001516001600160f81b031916856133ba8386614c50565b815181106133d857634e487b7160e01b600052603260045260246000fd5b01602001516001600160f81b031916146133f55760009150613407565b806133ff81614d55565b915050613377565b50801561341857600192505061342b565b508061342381614d55565b91505061335d565b5095945050505050565b6060816134595750506040805180820190915260018152600360fc1b602082015290565b8160005b8115613483578061346d81614d55565b915061347c9050600a83614c8d565b915061345d565b6000816001600160401b038111156134ab57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156134d5576020820181803683370190505b5090505b8415612a51576134ea600183614cc0565b91506134f7600a86614d70565b613502906030614c50565b60f81b81838151811061352557634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350613547600a86614c8d565b94506134d9565b6000610bd4825490565b600082815260208190526040902060010154613574813361369c565b610f938383613700565b6135888282611b54565b611073576000828152602081815260408083206001600160a01b03851684529091529020805460ff191660011790556135be3390565b6001600160a01b0316816001600160a01b0316837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45050565b600081815260018301602052604081205461364957508154600181810184556000848152602080822090930184905584548482528286019093526040902091909155610bd4565b506000610bd4565b60006001600160e01b031982166380ac58cd60e01b148061368257506001600160e01b03198216635b5e139f60e01b145b80610bd45750610bd482613d77565b610f93838383613d9c565b6136a68282611b54565b611073576136be816001600160a01b03166014613e0e565b6136c9836020613e0e565b6040516020016136da929190614a1b565b60408051601f198184030181529082905262461bcd60e51b8252610c4591600401614acd565b61370a8282611b54565b15611073576000828152602081815260408083206001600160a01b0385168085529252808320805460ff1916905551339285917ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b9190a45050565b60008181526001830160205260408120548015613878576000613789600183614cc0565b855490915060009061379d90600190614cc0565b905081811461381e5760008660000182815481106137cb57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050808760000184815481106137fc57634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255918252600188019052604090208390555b855486908061383d57634e487b7160e01b600052603160045260246000fd5b600190038181906000526020600020016000905590558560010160008681526020019081526020016000206000905560019350505050610bd4565b6000915050610bd4565b6001600160a01b0382166138d85760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610c45565b6138e18161285b565b1561392e5760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610c45565b61393a60008383613691565b6001600160a01b0382166000908152600560205260408120805460019290613963908490614c50565b909155505060008181526004602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60008260000182815481106139e657634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905092915050565b60006001600160a01b0384163b15613afb57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290613a3d903390899088908890600401614a90565b602060405180830381600087803b158015613a5757600080fd5b505af1925050508015613a87575060408051601f3d908101601f19168201909252613a849181019061484a565b60015b613ae1573d808015613ab5576040519150601f19603f3d011682016040523d82523d6000602084013e613aba565b606091505b508051613ad95760405162461bcd60e51b8152600401610c4590614ae0565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612a51565b506001949350505050565b600080825160411415613b3d5760208301516040840151606085015160001a613b3187828585613fef565b94509450505050613b6f565b825160401415613b675760208301516040840151613b5c8683836140dc565b935093505050613b6f565b506000905060025b9250929050565b6000816004811115613b9857634e487b7160e01b600052602160045260246000fd5b1415613ba15750565b6001816004811115613bc357634e487b7160e01b600052602160045260246000fd5b1415613c115760405162461bcd60e51b815260206004820152601860248201527f45434453413a20696e76616c6964207369676e617475726500000000000000006044820152606401610c45565b6002816004811115613c3357634e487b7160e01b600052602160045260246000fd5b1415613c815760405162461bcd60e51b815260206004820152601f60248201527f45434453413a20696e76616c6964207369676e6174757265206c656e677468006044820152606401610c45565b6003816004811115613ca357634e487b7160e01b600052602160045260246000fd5b1415613cfc5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202773272076616c604482015261756560f01b6064820152608401610c45565b6004816004811115613d1e57634e487b7160e01b600052602160045260246000fd5b14156112bd5760405162461bcd60e51b815260206004820152602260248201527f45434453413a20696e76616c6964207369676e6174757265202776272076616c604482015261756560f01b6064820152608401610c45565b60006001600160e01b03198216635a05180f60e01b1480610bd45750610bd48261410b565b613da7838383614140565b600c5460ff1615610f935760405162461bcd60e51b815260206004820152602b60248201527f4552433732315061757361626c653a20746f6b656e207472616e73666572207760448201526a1a1a5b19481c185d5cd95960aa1b6064820152608401610c45565b60606000613e1d836002614ca1565b613e28906002614c50565b6001600160401b03811115613e4d57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015613e77576020820181803683370190505b509050600360fc1b81600081518110613ea057634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350600f60fb1b81600181518110613edd57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506000613f01846002614ca1565b613f0c906001614c50565b90505b6001811115613fa0576f181899199a1a9b1b9c1cb0b131b232b360811b85600f1660108110613f4e57634e487b7160e01b600052603260045260246000fd5b1a60f81b828281518110613f7257634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a90535060049490941c93613f9981614d03565b9050613f0f565b508315611b4d5760405162461bcd60e51b815260206004820181905260248201527f537472696e67733a20686578206c656e67746820696e73756666696369656e746044820152606401610c45565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a083111561402657506000905060036140d3565b8460ff16601b1415801561403e57508460ff16601c14155b1561404f57506000905060046140d3565b6040805160008082526020820180845289905260ff881692820192909252606081018690526080810185905260019060a0016020604051602081039080840390855afa1580156140a3573d6000803e3d6000fd5b5050604051601f1901519150506001600160a01b0381166140cc576000600192509250506140d3565b9150600090505b94509492505050565b6000806001600160ff1b03831660ff84901c601b016140fd87828885613fef565b935093505050935093915050565b60006001600160e01b03198216637965db0b60e01b1480610bd457506301ffc9a760e01b6001600160e01b0319831614610bd4565b6001600160a01b03831661419b5761419681600a80546000838152600b60205260408120829055600182018355919091527fc65a7bb8d6351c1cf70c95a316cc6a92839c986682d98bc35f958f4883f9d2a80155565b6141be565b816001600160a01b0316836001600160a01b0316146141be576141be83826141f8565b6001600160a01b0382166141d557610f9381614295565b826001600160a01b0316826001600160a01b031614610f9357610f93828261436e565b60006001614205846117f1565b61420f9190614cc0565b600083815260096020526040902054909150808214614262576001600160a01b03841660009081526008602090815260408083208584528252808320548484528184208190558352600990915290208190555b5060009182526009602090815260408084208490556001600160a01b039094168352600881528383209183525290812055565b600a546000906142a790600190614cc0565b6000838152600b6020526040812054600a80549394509092849081106142dd57634e487b7160e01b600052603260045260246000fd5b9060005260206000200154905080600a838154811061430c57634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600b9091526040808220849055858252812055600a80548061435257634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000614379836117f1565b6001600160a01b039093166000908152600860209081526040808320868452825280832085905593825260099052919091209190915550565b8280546143be90614d1a565b90600052602060002090601f0160209004810192826143e05760008555614426565b82601f106143f957805160ff1916838001178555614426565b82800160010185558215614426579182015b8281111561442657825182559160200191906001019061440b565b50614432929150614436565b5090565b5b808211156144325760008155600101614437565b600082601f83011261445b578081fd5b8135602061447061446b83614c2d565b614bfd565b80838252828201915082860187848660051b890101111561448f578586fd5b855b858110156144cf5781356001600160401b038111156144ae578788fd5b6144bc8a87838c01016144f1565b8552509284019290840190600101614491565b5090979650505050505050565b803580151581146144ec57600080fd5b919050565b600082601f830112614501578081fd5b81356001600160401b0381111561451a5761451a614db0565b61452d601f8201601f1916602001614bfd565b818152846020838601011115614541578283fd5b816020850160208301379081016020019190915292915050565b60006020828403121561456c578081fd5b8135611b4d81614dc6565b60008060408385031215614589578081fd5b823561459481614dc6565b915060208301356145a481614dc6565b809150509250929050565b6000806000606084860312156145c3578081fd5b83356145ce81614dc6565b925060208401356145de81614dc6565b929592945050506040919091013590565b60008060008060808587031215614604578081fd5b843561460f81614dc6565b9350602085013561461f81614dc6565b92506040850135915060608501356001600160401b03811115614640578182fd5b61464c878288016144f1565b91505092959194509250565b6000806040838503121561466a578182fd5b823561467581614dc6565b9150614683602084016144dc565b90509250929050565b6000806040838503121561469e578182fd5b82356146a981614dc6565b946020939093013593505050565b600060208083850312156146c9578182fd5b82356001600160401b038111156146de578283fd5b8301601f810185136146ee578283fd5b80356146fc61446b82614c2d565b80828252848201915084840188868560051b870101111561471b578687fd5b8694505b8385101561474657803561473281614dc6565b83526001949094019391850191850161471f565b50979650505050505050565b600060208284031215614763578081fd5b611b4d826144dc565b60006020828403121561477d578081fd5b5035919050565b60008060408385031215614796578182fd5b8235915060208301356145a481614dc6565b600080600080608085870312156147bd578182fd5b843593506020850135925060408501356001600160401b038111156147e0578283fd5b6147ec878288016144f1565b925050606085013560ff81168114614802578182fd5b939692955090935050565b6000806040838503121561481f578182fd5b50508035926020909101359150565b60006020828403121561483f578081fd5b8135611b4d81614ddb565b60006020828403121561485b578081fd5b8151611b4d81614ddb565b600060208284031215614877578081fd5b81356001600160401b0381111561488c578182fd5b612a51848285016144f1565b6000806000606084860312156148ac578081fd5b8335925060208401356001600160401b03808211156148c9578283fd5b6148d58783880161444b565b935060408601359150808211156148ea578283fd5b506148f78682870161444b565b9150509250925092565b60008060408385031215614913578182fd5b8235915060208301356001600160401b0381111561492f578182fd5b61493b858286016144f1565b9150509250929050565b600080600060608486031215614959578081fd5b8335925060208401356001600160401b0380821115614976578283fd5b614982878388016144f1565b93506040860135915080821115614997578283fd5b506148f7868287016144f1565b600081518084526149bc816020860160208601614cd7565b601f01601f19169290920160200192915050565b600082516149e2818460208701614cd7565b9190910192915050565b600083516149fe818460208801614cd7565b835190830190614a12818360208801614cd7565b01949350505050565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000815260008351614a53816017850160208801614cd7565b7001034b99036b4b9b9b4b733903937b6329607d1b6017918401918201528351614a84816028840160208801614cd7565b01602801949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090614ac3908301846149a4565b9695505050505050565b602081526000611b4d60208301846149a4565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526023908201527f43616e6e6f74207075726368617365206d6f7265207468616e20313720746f6b604082015262656e7360e81b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6020808252601c908201527f4d75737420686176652044454641554c545f41444d494e5f524f4c4500000000604082015260600190565b604051601f8201601f191681016001600160401b0381118282101715614c2557614c25614db0565b604052919050565b60006001600160401b03821115614c4657614c46614db0565b5060051b60200190565b60008219821115614c6357614c63614d84565b500190565b600060ff821660ff84168060ff03821115614c8557614c85614d84565b019392505050565b600082614c9c57614c9c614d9a565b500490565b6000816000190483118215151615614cbb57614cbb614d84565b500290565b600082821015614cd257614cd2614d84565b500390565b60005b83811015614cf2578181015183820152602001614cda565b83811115610d625750506000910152565b600081614d1257614d12614d84565b506000190190565b600181811c90821680614d2e57607f821691505b60208210811415614d4f57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415614d6957614d69614d84565b5060010190565b600082614d7f57614d7f614d9a565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b03811681146112bd57600080fd5b6001600160e01b0319811681146112bd57600080fdfe4d75737420686176652044454641554c545f41444d494e5f524f4c4520746f20a2646970667358221220539ed5eedb1f8be4ca6f09be6446052186cbad97dfed634aa578c6efa33284f764736f6c63430008040033

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

00000000000000000000000000000000000000000000000000000000000000e00000000000000000000000000000000000000000000000000000000000000120000000000000000000000000000000000000000000000000000000000000016000000000000000000000000000000000000000000000000000000000000001c000000000000000000000000007ebcc0400d154bd16a9cffde5aea0b0abfb5bd9000000000000000000000000650013e47449041f5c0d122298c4db195216082f0000000000000000000000000000000000000000000000000000000000000220000000000000000000000000000000000000000000000000000000000000000b46755a5a69654d694e54530000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003465a590000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000002468747470733a2f2f6170692e736e69667469652e636f6d2f66757a7a69656d696e74732f000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d55785038756661484538715631744a6f35376365426539784c36717253644c794c76686841734a5636626f64000000000000000000000000000000000000000000000000000000000000000000000000000000000000060000000000000000000000003b682506470466106a17ad055c1c5a65ae84590b0000000000000000000000002f46686e73ab3b138b827d88d06ee228bc6fa96c000000000000000000000000f91e167cd3a031cf604f0eb63948052c7252a533000000000000000000000000f33476de5c7d2559807cccd7db3a30b812e37972000000000000000000000000f99817730be6e5cd7e1f9955562a20bf0a337aa8000000000000000000000000d124cd58c6ab9eb9911be753859c9713f59831dc

-----Decoded View---------------
Arg [0] : name (string): FuZZieMiNTS
Arg [1] : symbol (string): FZY
Arg [2] : baseTokenURI (string): https://api.sniftie.com/fuzziemints/
Arg [3] : contractMetadataURI (string): ipfs://QmUxP8ufaHE8qV1tJo57ceBe9xL6qrSdLyLvhhAsJV6bod
Arg [4] : sniftieAdmin (address): 0x07ebcc0400d154bd16A9cFfdE5aEa0b0Abfb5bd9
Arg [5] : backend (address): 0x650013E47449041F5c0d122298C4Db195216082f
Arg [6] : payableAddresses (address[]): 0x3B682506470466106a17AD055C1c5A65AE84590B,0x2f46686e73AB3b138B827D88D06eE228Bc6FA96c,0xf91E167Cd3A031cF604F0Eb63948052C7252a533,0xF33476DE5c7d2559807CcCD7DB3A30b812E37972,0xf99817730BE6e5CD7E1F9955562A20BF0a337Aa8,0xd124Cd58c6ab9eB9911bE753859c9713f59831dc

-----Encoded View---------------
24 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000e0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000120
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000160
Arg [3] : 00000000000000000000000000000000000000000000000000000000000001c0
Arg [4] : 00000000000000000000000007ebcc0400d154bd16a9cffde5aea0b0abfb5bd9
Arg [5] : 000000000000000000000000650013e47449041f5c0d122298c4db195216082f
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000220
Arg [7] : 000000000000000000000000000000000000000000000000000000000000000b
Arg [8] : 46755a5a69654d694e5453000000000000000000000000000000000000000000
Arg [9] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [10] : 465a590000000000000000000000000000000000000000000000000000000000
Arg [11] : 0000000000000000000000000000000000000000000000000000000000000024
Arg [12] : 68747470733a2f2f6170692e736e69667469652e636f6d2f66757a7a69656d69
Arg [13] : 6e74732f00000000000000000000000000000000000000000000000000000000
Arg [14] : 0000000000000000000000000000000000000000000000000000000000000035
Arg [15] : 697066733a2f2f516d55785038756661484538715631744a6f35376365426539
Arg [16] : 784c36717253644c794c76686841734a5636626f640000000000000000000000
Arg [17] : 0000000000000000000000000000000000000000000000000000000000000006
Arg [18] : 0000000000000000000000003b682506470466106a17ad055c1c5a65ae84590b
Arg [19] : 0000000000000000000000002f46686e73ab3b138b827d88d06ee228bc6fa96c
Arg [20] : 000000000000000000000000f91e167cd3a031cf604f0eb63948052c7252a533
Arg [21] : 000000000000000000000000f33476de5c7d2559807cccd7db3a30b812e37972
Arg [22] : 000000000000000000000000f99817730be6e5cd7e1f9955562a20bf0a337aa8
Arg [23] : 000000000000000000000000d124cd58c6ab9eb9911be753859c9713f59831dc


Deployed Bytecode Sourcemap

115:11725:13:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5521:204:21;;;;;;;;;;-1:-1:-1;5521:204:21;;;;;:::i;:::-;;:::i;:::-;;;12946:14:26;;12939:22;12921:41;;12909:2;12894:18;5521:204:21;;;;;;;;11164:673:13;;;;;;;;;;-1:-1:-1;11164:673:13;;;;;:::i;:::-;;:::i;:::-;;2419:100:7;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;3879:221::-;;;;;;;;;;-1:-1:-1;3879:221:7;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;12244:32:26;;;12226:51;;12214:2;12199:18;3879:221:7;12181:102:26;3416:397:7;;;;;;;;;;-1:-1:-1;3416:397:7;;;;;:::i;:::-;;:::i;2435:74:13:-;;;;;;;;;;-1:-1:-1;2497:9:13;;-1:-1:-1;;;;;2497:9:13;2435:74;;2010:91;;;;;;;;;;-1:-1:-1;2079:19:13;;;;2010:91;;3543:309:21;;;;;;;;;;-1:-1:-1;3543:309:21;;;;;:::i;:::-;;:::i;1590:113:9:-;;;;;;;;;;-1:-1:-1;1678:10:9;:17;1590:113;;;13119:25:26;;;13107:2;13092:18;1590:113:9;13074:76:26;752:40:13;;;;;;;;;;;;788:4;752:40;;4769:305:7;;;;;;;;;;-1:-1:-1;4769:305:7;;;;;:::i;:::-;;:::i;5461:123:0:-;;;;;;;;;;-1:-1:-1;5461:123:0;;;;;:::i;:::-;5527:7;5554:12;;;;;;;;;;:22;;;;5461:123;2199:165:1;;;;;;;;;;-1:-1:-1;2199:165:1;;;;;:::i;:::-;;:::i;1258:256:9:-;;;;;;;;;;-1:-1:-1;1258:256:9;;;;;:::i;:::-;;:::i;2722:174:1:-;;;;;;;;;;-1:-1:-1;2722:174:1;;;;;:::i;:::-;;:::i;5051:185:21:-;;;;;;;;;;;;;:::i;5145:151:7:-;;;;;;;;;;-1:-1:-1;5145:151:7;;;;;:::i;:::-;;:::i;456:245:8:-;;;;;;;;;;-1:-1:-1;456:245:8;;;;;:::i;:::-;;:::i;697:48:13:-;;;;;;;;;;;;742:3;697:48;;4229:468;;;;;;;;;;;;;:::i;1780:233:9:-;;;;;;;;;;-1:-1:-1;1780:233:9;;;;;:::i;:::-;;:::i;4995:299:13:-;;;;;;;;;;-1:-1:-1;4995:299:13;;;;;:::i;:::-;;:::i;4051:387:21:-;;;;;;;;;;-1:-1:-1;4051:387:21;;;;;:::i;:::-;;:::i;2205:201::-;;;;;;;;;;-1:-1:-1;2205:201:21;;;;;:::i;:::-;;:::i;2107:72:13:-;;;;;;;;;;-1:-1:-1;2168:8:13;;-1:-1:-1;;;;;2168:8:13;2107:72;;3243:198;;;;;;;;;;-1:-1:-1;3243:198:13;;;;;:::i;:::-;;:::i;1073:86:20:-;;;;;;;;;;-1:-1:-1;1144:7:20;;;;1073:86;;2113:239:7;;;;;;;;;;-1:-1:-1;2113:239:7;;;;;:::i;:::-;;:::i;1843:208::-;;;;;;;;;;-1:-1:-1;1843:208:7;;;;;:::i;:::-;;:::i;1650:94:19:-;;;;;;;;;;;;;:::i;4705:282:13:-;;;;;;;;;;-1:-1:-1;4705:282:13;;;;;:::i;:::-;;:::i;3055:182::-;;;;;;;;;;-1:-1:-1;3055:182:13;;;;;:::i;:::-;;:::i;4035:186::-;;;;;;;;;;-1:-1:-1;4035:186:13;;;;;:::i;:::-;;:::i;2185:72::-;;;;;;;;;;-1:-1:-1;2246:8:13;;-1:-1:-1;;;;;2246:8:13;2185:72;;4653:179:21;;;;;;;;;;;;;:::i;3447:198:13:-;;;;;;;;;;-1:-1:-1;3447:198:13;;;;;:::i;:::-;;:::i;2349:80::-;;;;;;;;;;-1:-1:-1;2414:12:13;;-1:-1:-1;;;;;2414:12:13;2349:80;;999:87:19;;;;;;;;;;-1:-1:-1;1072:6:19;;;;;-1:-1:-1;;;;;1072:6:19;999:87;;1654:145:1;;;;;;;;;;-1:-1:-1;1654:145:1;;;;;:::i;:::-;;:::i;4459:139:0:-;;;;;;;;;;-1:-1:-1;4459:139:0;;;;;:::i;:::-;;:::i;2588:104:7:-;;;;;;;;;;;;;:::i;2677:192:13:-;;;;;;;;;;-1:-1:-1;2677:192:13;;;;;:::i;:::-;;:::i;1818:257:21:-;;;;;;;;;;-1:-1:-1;1818:257:21;;;;;:::i;:::-;;:::i;2424:49:0:-;;;;;;;;;;-1:-1:-1;2424:49:0;2469:4;2424:49;;4172:295:7;;;;;;;;;;-1:-1:-1;4172:295:7;;;;;:::i;:::-;;:::i;5367:285::-;;;;;;;;;;-1:-1:-1;5367:285:7;;;;;:::i;:::-;;:::i;8664:2163:13:-;;;;;;:::i;:::-;;:::i;10835:321::-;;;;;;;;;;-1:-1:-1;10835:321:13;;;;;:::i;:::-;;:::i;2263:80::-;;;;;;;;;;-1:-1:-1;2328:12:13;;-1:-1:-1;;;;;2328:12:13;2263:80;;3843:186;;;;;;;;;;-1:-1:-1;3843:186:13;;;;;:::i;:::-;;:::i;2637:898:21:-;;;;;;;;;;-1:-1:-1;2637:898:21;;;;;:::i;:::-;;:::i;1973:134:1:-;;;;;;;;;;-1:-1:-1;1973:134:1;;;;;:::i;:::-;;:::i;2515:74:13:-;;;;;;;;;;-1:-1:-1;2577:9:13;;-1:-1:-1;;;;;2577:9:13;2515:74;;508:62:21;;;;;;;;;;;;546:24;508:62;;2457:170:1;;;;;;;;;;-1:-1:-1;2457:170:1;;;;;:::i;:::-;;:::i;799:41:13:-;;;;;;;;;;;;838:2;799:41;;;;;37602:4:26;37590:17;;;37572:36;;37560:2;37545:18;799:41:13;37527:87:26;2875:174:13;;;;;;;;;;-1:-1:-1;2875:174:13;;;;;:::i;:::-;;:::i;577:62:21:-;;;;;;;;;;;;615:24;577:62;;3651:186:13;;;;;;;;;;-1:-1:-1;3651:186:13;;;;;:::i;:::-;;:::i;1705:105:21:-;;;;;;;;;;;;;:::i;4538:164:7:-;;;;;;;;;;-1:-1:-1;4538:164:7;;;;;:::i;:::-;-1:-1:-1;;;;;4659:25:7;;;4635:4;4659:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;4538:164;6914:1742:13;;;;;;:::i;:::-;;:::i;1899:192:19:-;;;;;;;;;;-1:-1:-1;1899:192:19;;;;;:::i;:::-;;:::i;2595:74:13:-;;;;;;;;;;-1:-1:-1;2657:9:13;;-1:-1:-1;;;;;2657:9:13;2595:74;;5521:204:21;5657:4;5681:36;5705:11;5681:23;:36::i;:::-;5674:43;5521:204;-1:-1:-1;;5521:204:21:o;11164:673:13:-;11333:9;:16;11311:11;:18;:38;11303:104;;;;-1:-1:-1;;;11303:104:13;;19675:2:26;11303:104:13;;;19657:21:26;19714:2;19694:18;;;19687:30;19753:34;19733:18;;;19726:62;-1:-1:-1;;;19804:18:26;;;19797:51;19865:19;;11303:104:13;;;;;;;;;11426:41;2469:4:0;681:10:3;4459:139:0;:::i;11426:41:13:-;11418:108;;;;-1:-1:-1;;;11418:108:13;;35352:2:26;11418:108:13;;;35334:21:26;35391:2;35371:18;;;35364:30;35430:34;35410:18;;;35403:62;-1:-1:-1;;;35481:18:26;;;35474:52;35543:19;;11418:108:13;35324:244:26;11418:108:13;11553:17;11539:291;11596:18;;11576:38;;:17;:38;:::i;:::-;11572:1;:42;11539:291;;;11636:15;11654;11667:1;11654:12;:15::i;:::-;11636:33;-1:-1:-1;11684:17:13;11704:21;11708:17;11704:1;:21;:::i;:::-;11684:41;;11740:78;11764:7;11773:11;11785:9;11773:22;;;;;;-1:-1:-1;;;11773:22:13;;;;;;;;;;;;;;;11797:9;11807;11797:20;;;;;;-1:-1:-1;;;11797:20:13;;;;;;;;;;;;;;;11740:23;:78::i;:::-;11539:291;;11616:3;;;;;:::i;:::-;;;;11539:291;;;;11164:673;;;:::o;2419:100:7:-;2473:13;2506:5;2499:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2419:100;:::o;3879:221::-;3955:7;3983:16;3991:7;3983;:16::i;:::-;3975:73;;;;-1:-1:-1;;;3975:73:7;;29546:2:26;3975:73:7;;;29528:21:26;29585:2;29565:18;;;29558:30;29624:34;29604:18;;;29597:62;-1:-1:-1;;;29675:18:26;;;29668:42;29727:19;;3975:73:7;29518:234:26;3975:73:7;-1:-1:-1;4068:24:7;;;;:15;:24;;;;;;-1:-1:-1;;;;;4068:24:7;;3879:221::o;3416:397::-;3497:13;3513:23;3528:7;3513:14;:23::i;:::-;3497:39;;3561:5;-1:-1:-1;;;;;3555:11:7;:2;-1:-1:-1;;;;;3555:11:7;;;3547:57;;;;-1:-1:-1;;;3547:57:7;;31500:2:26;3547:57:7;;;31482:21:26;31539:2;31519:18;;;31512:30;31578:34;31558:18;;;31551:62;-1:-1:-1;;;31629:18:26;;;31622:31;31670:19;;3547:57:7;31472:223:26;3547:57:7;681:10:3;-1:-1:-1;;;;;3625:21:7;;;;:62;;-1:-1:-1;3650:37:7;3667:5;681:10:3;4538:164:7;:::i;3650:37::-;3617:154;;;;-1:-1:-1;;;3617:154:7;;25102:2:26;3617:154:7;;;25084:21:26;25141:2;25121:18;;;25114:30;25180:34;25160:18;;;25153:62;25251:26;25231:18;;;25224:54;25295:19;;3617:154:7;25074:246:26;3617:154:7;3784:21;3793:2;3797:7;3784:8;:21::i;:::-;3416:397;;;:::o;3543:309:21:-;3631:16;3639:7;3631;:16::i;:::-;3623:75;;;;-1:-1:-1;;;3623:75:21;;25527:2:26;3623:75:21;;;25509:21:26;25566:2;25546:18;;;25539:30;25605:34;25585:18;;;25578:62;-1:-1:-1;;;25656:18:26;;;25649:44;25710:19;;3623:75:21;25499:236:26;3623:75:21;3717:41;2469:4:0;681:10:3;4459:139:0;:::i;3717:41:21:-;3709:91;;;;-1:-1:-1;;;3709:91:21;;20097:2:26;3709:91:21;;;20079:21:26;20136:2;20116:18;;;20109:30;20175:34;20155:18;;;20148:62;-1:-1:-1;;;20226:18:26;;;20219:35;20271:19;;3709:91:21;20069:227:26;3709:91:21;3813:31;3826:7;3835:8;3813:12;:31::i;:::-;3543:309;;:::o;4769:305:7:-;4930:41;681:10:3;4949:12:7;4963:7;4930:18;:41::i;:::-;4922:103;;;;-1:-1:-1;;;4922:103:7;;;;;;;:::i;:::-;5038:28;5048:4;5054:2;5058:7;5038:9;:28::i;2199:165:1:-;2284:30;2300:4;2306:7;2284:15;:30::i;:::-;2325:18;;;;:12;:18;;;;;:31;;2348:7;2325:22;:31::i;1258:256:9:-;1355:7;1391:23;1408:5;1391:16;:23::i;:::-;1383:5;:31;1375:87;;;;-1:-1:-1;;;1375:87:9;;17719:2:26;1375:87:9;;;17701:21:26;17758:2;17738:18;;;17731:30;17797:34;17777:18;;;17770:62;-1:-1:-1;;;17848:18:26;;;17841:41;17899:19;;1375:87:9;17691:233:26;1375:87:9;-1:-1:-1;;;;;;1480:19:9;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;1258:256::o;2722:174:1:-;2810:33;2829:4;2835:7;2810:18;:33::i;:::-;2854:18;;;;:12;:18;;;;;:34;;2880:7;2854:25;:34::i;5051:185:21:-;5104:34;615:24;681:10:3;4459:139:0;:::i;5104:34:21:-;5096:111;;;;;-1:-1:-1;;;5096:111:21;;36192:2:26;5096:111:21;;;36174:21:26;36211:18;;;36204:30;;;;36270:34;36250:18;;;36243:62;36341:34;36321:18;;;36314:62;36393:19;;5096:111:21;36164:254:26;5096:111:21;5218:10;:8;:10::i;:::-;5051:185::o;5145:151:7:-;5249:39;5266:4;5272:2;5276:7;5249:39;;;;;;;;;;;;:16;:39::i;456:245:8:-;574:41;681:10:3;593:12:8;601:98:3;574:41:8;566:102;;;;-1:-1:-1;;;566:102:8;;35775:2:26;566:102:8;;;35757:21:26;35814:2;35794:18;;;35787:30;35853:34;35833:18;;;35826:62;-1:-1:-1;;;35904:18:26;;;35897:46;35960:19;;566:102:8;35747:238:26;566:102:8;679:14;685:7;679:5;:14::i;:::-;456:245;:::o;4229:468:13:-;4274:41;2469:4:0;681:10:3;4459:139:0;:::i;4274:41:13:-;4266:107;;;;-1:-1:-1;;;4266:107:13;;20503:2:26;4266:107:13;;;20485:21:26;20542:2;20522:18;;;20515:30;-1:-1:-1;;;;;;;;;;;20561:18:26;;;20554:62;-1:-1:-1;;;20632:18:26;;;20625:51;20693:19;;4266:107:13;20475:243:26;4266:107:13;4384:16;4403:13;1678:10:9;:17;;1590:113;4403:13:13;4384:32;-1:-1:-1;4427:14:13;4444:32;4384;742:3;4444:32;:::i;:::-;4427:49;;4487:12;4515:2;4502:9;:15;;:32;;4525:9;4502:32;;;4520:2;4502:32;4487:47;;4565:1;4555:7;:11;4547:45;;;;-1:-1:-1;;;4547:45:13;;21356:2:26;4547:45:13;;;21338:21:26;21395:2;21375:18;;;21368:30;-1:-1:-1;;;21414:18:26;;;21407:51;21475:18;;4547:45:13;21328:171:26;4547:45:13;4610:6;4605:85;4626:7;4622:1;:11;4605:85;;;4655:23;681:10:3;4655:9:13;:23::i;:::-;-1:-1:-1;4635:3:13;;;;:::i;:::-;;;;4605:85;;1780:233:9;1855:7;1891:30;1678:10;:17;;1590:113;1891:30;1883:5;:38;1875:95;;;;-1:-1:-1;;;1875:95:9;;33443:2:26;1875:95:9;;;33425:21:26;33482:2;33462:18;;;33455:30;33521:34;33501:18;;;33494:62;-1:-1:-1;;;33572:18:26;;;33565:42;33624:19;;1875:95:9;33415:234:26;1875:95:9;1988:10;1999:5;1988:17;;;;;;-1:-1:-1;;;1988:17:9;;;;;;;;;;;;;;;;;1981:24;;1780:233;;;:::o;4995:299:13:-;5075:41;2469:4:0;681:10:3;4459:139:0;:::i;5075:41:13:-;5067:104;;;;-1:-1:-1;;;5067:104:13;;32671:2:26;5067:104:13;;;32653:21:26;32710:2;32690:18;;;32683:30;32749:34;32729:18;;;32722:62;-1:-1:-1;;;32800:18:26;;;32793:48;32858:19;;5067:104:13;32643:240:26;5067:104:13;5187:6;5182:105;5203:6;:13;5199:1;:17;5182:105;;;5270:5;5238:18;:29;5257:6;5264:1;5257:9;;;;;;-1:-1:-1;;;5257:9:13;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;5238:29:13;;;;;;;;;;;-1:-1:-1;5238:29:13;:37;;-1:-1:-1;;5238:37:13;;;;;;;;;;5218:3;;;;:::i;:::-;;;;5182:105;;4051:387:21;4147:16;4155:7;4147;:16::i;:::-;4139:72;;;;-1:-1:-1;;;4139:72:21;;16947:2:26;4139:72:21;;;16929:21:26;16986:2;16966:18;;;16959:30;17025:34;17005:18;;;16998:62;-1:-1:-1;;;17076:18:26;;;17069:41;17127:19;;4139:72:21;16919:233:26;4139:72:21;4230:41;2469:4:0;681:10:3;4459:139:0;:::i;4230:41:21:-;4222:88;;;;-1:-1:-1;;;4222:88:21;;29143:2:26;4222:88:21;;;29125:21:26;29182:2;29162:18;;;29155:30;29221:34;29201:18;;;29194:62;-1:-1:-1;;;29272:18:26;;;29265:32;29314:19;;4222:88:21;29115:224:26;4222:88:21;4329:6;4336:13;4329:21;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;:26;;4321:71;;;;-1:-1:-1;;;4321:71:21;;26763:2:26;4321:71:21;;;26745:21:26;;;26782:18;;;26775:30;26841:34;26821:18;;;26814:62;26893:18;;4321:71:21;26735:182:26;4321:71:21;4429:1;4405:6;4412:13;4405:21;;;;;;:::i;:::-;;;;;;;;;;;;;;:25;;;;;;;-1:-1:-1;;4405:25:21;;;;;;;;;-1:-1:-1;;4051:387:21:o;2205:201::-;2274:41;2469:4:0;681:10:3;4459:139:0;:::i;2274:41:21:-;2266:98;;;;-1:-1:-1;;;2266:98:21;;28730:2:26;2266:98:21;;;28712:21:26;28769:2;28749:18;;;28742:30;-1:-1:-1;;;;;;;;;;;28788:18:26;;;28781:62;-1:-1:-1;;;28859:18:26;;;28852:42;28911:19;;2266:98:21;28702:234:26;2266:98:21;2375:23;;;;:13;;:23;;;;;:::i;3243:198:13:-;3322:41;2469:4:0;681:10:3;4459:139:0;:::i;3322:41:13:-;3314:82;;;;-1:-1:-1;;;3314:82:13;;;;;;;:::i;:::-;3407:12;:26;;-1:-1:-1;;;;;;3407:26:13;-1:-1:-1;;;;;3407:26:13;;;;;;;;;;3243:198::o;2113:239:7:-;2185:7;2221:16;;;:7;:16;;;;;;-1:-1:-1;;;;;2221:16:7;2256:19;2248:73;;;;-1:-1:-1;;;2248:73:7;;26353:2:26;2248:73:7;;;26335:21:26;26392:2;26372:18;;;26365:30;26431:34;26411:18;;;26404:62;-1:-1:-1;;;26482:18:26;;;26475:39;26531:19;;2248:73:7;26325:231:26;1843:208:7;1915:7;-1:-1:-1;;;;;1943:19:7;;1935:74;;;;-1:-1:-1;;;1935:74:7;;25942:2:26;1935:74:7;;;25924:21:26;25981:2;25961:18;;;25954:30;26020:34;26000:18;;;25993:62;-1:-1:-1;;;26071:18:26;;;26064:40;26121:19;;1935:74:7;25914:232:26;1935:74:7;-1:-1:-1;;;;;;2027:16:7;;;;;:9;:16;;;;;;;1843:208::o;1650:94:19:-;1072:6;;-1:-1:-1;;;;;1072:6:19;;;;;681:10:3;1219:23:19;1211:68;;;;-1:-1:-1;;;1211:68:19;;30372:2:26;1211:68:19;;;30354:21:26;;;30391:18;;;30384:30;30450:34;30430:18;;;30423:62;30502:18;;1211:68:19;30344:182:26;1211:68:19;1715:21:::1;1733:1;1715:9;:21::i;4705:282:13:-:0;4777:41;2469:4:0;681:10:3;4459:139:0;:::i;4777:41:13:-;4769:102;;;;-1:-1:-1;;;4769:102:13;;27124:2:26;4769:102:13;;;27106:21:26;27163:2;27143:18;;;27136:30;-1:-1:-1;;;;;;;;;;;27182:18:26;;;27175:62;-1:-1:-1;;;27253:18:26;;;27246:46;27309:19;;4769:102:13;27096:238:26;4769:102:13;4887:6;4882:98;4903:3;:10;4899:1;:14;4882:98;;;4964:4;4935:18;:26;4954:3;4958:1;4954:6;;;;;;-1:-1:-1;;;4954:6:13;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;4935:26:13;;;;;;;;;;;-1:-1:-1;4935:26:13;:33;;-1:-1:-1;;4935:33:13;;;;;;;;;;4915:3;;;;:::i;:::-;;;;4882:98;;3055:182;3126:41;2469:4:0;681:10:3;4459:139:0;:::i;3126:41:13:-;3118:82;;;;-1:-1:-1;;;3118:82:13;;;;;;;:::i;:::-;3211:8;:18;;-1:-1:-1;;;;;;3211:18:13;-1:-1:-1;;;;;3211:18:13;;;;;;;;;;3055:182::o;4035:186::-;4108:41;2469:4:0;681:10:3;4459:139:0;:::i;4108:41:13:-;4100:82;;;;-1:-1:-1;;;4100:82:13;;;;;;;:::i;:::-;4193:9;:20;;-1:-1:-1;;;;;;4193:20:13;-1:-1:-1;;;;;4193:20:13;;;;;;;;;;4035:186::o;4653:179:21:-;4704:34;615:24;681:10:3;4459:139:0;:::i;4704:34:21:-;4696:109;;;;-1:-1:-1;;;4696:109:21;;20925:2:26;4696:109:21;;;20907:21:26;20964:2;20944:18;;;20937:30;21003:34;20983:18;;;20976:62;21074:32;21054:18;;;21047:60;21124:19;;4696:109:21;20897:252:26;4696:109:21;4816:8;:6;:8::i;3447:198:13:-;3526:41;2469:4:0;681:10:3;4459:139:0;:::i;3526:41:13:-;3518:82;;;;-1:-1:-1;;;3518:82:13;;;;;;;:::i;:::-;3611:12;:26;;-1:-1:-1;;;;;;3611:26:13;-1:-1:-1;;;;;3611:26:13;;;;;;;;;;3447:198::o;1654:145:1:-;1736:7;1763:18;;;:12;:18;;;;;:28;;1785:5;1763:21;:28::i;:::-;1756:35;1654:145;-1:-1:-1;;;1654:145:1:o;4459:139:0:-;4537:4;4561:12;;;;;;;;;;;-1:-1:-1;;;;;4561:29:0;;;;;;;;;;;;;;;4459:139::o;2588:104:7:-;2644:13;2677:7;2670:14;;;;;:::i;2677:192:13:-;2748:41;2469:4:0;681:10:3;4459:139:0;:::i;2748:41:13:-;2740:82;;;;-1:-1:-1;;;2740:82:13;;;;;;;:::i;:::-;2833:19;:28;;-1:-1:-1;;2833:28:13;;;;;;;;;;2677:192::o;1818:257:21:-;1911:41;2469:4:0;681:10:3;4459:139:0;:::i;1911:41:21:-;1903:111;;;;-1:-1:-1;;;1903:111:21;;34926:2:26;1903:111:21;;;34908:21:26;34965:2;34945:18;;;34938:30;-1:-1:-1;;;;;;;;;;;34984:18:26;;;34977:62;35075:27;35055:18;;;35048:55;35120:19;;1903:111:21;34898:247:26;1903:111:21;2025:42;;;;:20;;:42;;;;;:::i;4172:295:7:-;-1:-1:-1;;;;;4275:24:7;;681:10:3;4275:24:7;;4267:62;;;;-1:-1:-1;;;4267:62:7;;22515:2:26;4267:62:7;;;22497:21:26;22554:2;22534:18;;;22527:30;22593:27;22573:18;;;22566:55;22638:18;;4267:62:7;22487:175:26;4267:62:7;681:10:3;4342:32:7;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;4342:42:7;;;;;;;;;;;;:53;;-1:-1:-1;;4342:53:7;;;;;;;;;;4411:48;;12921:41:26;;;4342:42:7;;681:10:3;4411:48:7;;12894:18:26;4411:48:7;;;;;;;4172:295;;:::o;5367:285::-;5499:41;681:10:3;5532:7:7;5499:18;:41::i;:::-;5491:103;;;;-1:-1:-1;;;5491:103:7;;;;;;;:::i;:::-;5605:39;5619:4;5625:2;5629:7;5638:5;5605:13;:39::i;8664:2163:13:-;8921:8;;-1:-1:-1;;;;;8921:8:13;8887:30;:11;8907:9;8887:19;:30::i;:::-;-1:-1:-1;;;;;8887:42:13;;8879:84;;;;-1:-1:-1;;;8879:84:13;;24038:2:26;8879:84:13;;;24020:21:26;24077:2;24057:18;;;24050:30;24116:31;24096:18;;;24089:59;24165:18;;8879:84:13;24010:179:26;8879:84:13;9111:21;;-1:-1:-1;;;;;;12031:3:26;12009:16;;;12005:36;9111:21:13;;;11993:49:26;9137:7:13;;12058:11:26;;9111:21:13;;;;;;;;;;;;9101:32;;;;;;:43;9093:83;;;;-1:-1:-1;;;9093:83:13;;14337:2:26;9093:83:13;;;14319:21:26;14376:2;14356:18;;;14349:30;14415:29;14395:18;;;14388:57;14462:18;;9093:83:13;14309:177:26;9093:83:13;9266:19;;;;:53;;;;-1:-1:-1;9308:10:13;9289:30;;;;:18;:30;;;;;;;;9266:53;9258:122;;;;-1:-1:-1;;;9258:122:13;;27944:2:26;9258:122:13;;;27926:21:26;27983:2;27963:18;;;27956:30;28022:34;28002:18;;;27995:62;28093:26;28073:18;;;28066:54;28137:19;;9258:122:13;27916:246:26;9258:122:13;9502:10;9483:30;;;;:18;:30;;;;;;9523:1;;9483:36;;9516:3;;9483:30;;:36;:::i;:::-;:41;;;;9475:94;;;;-1:-1:-1;;;9475:94:13;;36625:2:26;9475:94:13;;;36607:21:26;36664:2;36644:18;;;36637:30;36703:34;36683:18;;;36676:62;-1:-1:-1;;;36754:18:26;;;36747:38;36802:19;;9475:94:13;36597:230:26;9475:94:13;788:4;9666:3;9650:19;;:13;1678:10:9;:17;;1590:113;9650:13:13;:19;;;;:::i;:::-;:32;;9642:77;;;;-1:-1:-1;;;9642:77:13;;19314:2:26;9642:77:13;;;19296:21:26;;;19333:18;;;19326:30;19392:34;19372:18;;;19365:62;19444:18;;9642:77:13;19286:182:26;9642:77:13;838:2;9793:21;;;;;9785:69;;;;-1:-1:-1;;;9785:69:13;;;;;;;:::i;:::-;9961:21;;;;948:13;9961:21;:::i;:::-;9948:9;:34;;9940:78;;;;-1:-1:-1;;;9940:78:13;;34566:2:26;9940:78:13;;;34548:21:26;34605:2;34585:18;;;34578:30;34644:33;34624:18;;;34617:61;34695:18;;9940:78:13;34538:181:26;9940:78:13;10119:22;;10073:21;;10098:17;10110:5;10098:9;:17;:::i;:::-;10097:44;;;;:::i;:::-;10073:68;;10152:25;10202:22;;10193:5;10181:9;:17;;;;:::i;:::-;10180:44;;;;:::i;:::-;10152:72;;10235:21;10281:25;;10272:5;10260:9;:17;;;;:::i;:::-;10259:47;;;;:::i;:::-;10235:71;-1:-1:-1;10319:25:13;10235:71;10382:17;10361;:13;10377:1;10361:17;:::i;:::-;10360:39;;;;:::i;:::-;:55;;;;:::i;:::-;10347:69;;:9;:69;:::i;:::-;10319:97;;10484:79;10496:13;10511:17;10530:13;10545:17;10484:11;:79::i;:::-;10616:6;10611:79;10632:3;10628:7;;:1;:7;10611:79;;;10657:21;10667:10;10657:9;:21::i;:::-;-1:-1:-1;10637:3:13;;;;:::i;:::-;;;;10611:79;;;-1:-1:-1;10802:10:13;10783:30;;;;:18;:30;;;;;;:36;;10816:3;;10783:30;;:36;:::i;:::-;10769:10;10750:30;;;;:18;:30;;;;;:69;;-1:-1:-1;;10750:69:13;;;;;;;;;;;;-1:-1:-1;;;;;;;;8664:2163:13:o;10835:321::-;10961:41;2469:4:0;681:10:3;4459:139:0;:::i;10961:41:13:-;10953:102;;;;-1:-1:-1;;;10953:102:13;;16530:2:26;10953:102:13;;;16512:21:26;16569:2;16549:18;;;16542:30;16608:34;16588:18;;;16581:62;-1:-1:-1;;;16659:18:26;;;16652:46;16715:19;;10953:102:13;16502:238:26;10953:102:13;11066:30;11078:7;11087:8;11066:11;:30::i;:::-;11107:41;11125:7;11134:13;11107:17;:41::i;3843:186::-;3916:41;2469:4:0;681:10:3;4459:139:0;:::i;3916:41:13:-;3908:82;;;;-1:-1:-1;;;3908:82:13;;;;;;;:::i;:::-;4001:9;:20;;-1:-1:-1;;;;;;4001:20:13;-1:-1:-1;;;;;4001:20:13;;;;;;;;;;3843:186::o;2637:898:21:-;2710:13;2744:16;2752:7;2744;:16::i;:::-;2736:60;;;;-1:-1:-1;;;2736:60:21;;17359:2:26;2736:60:21;;;17341:21:26;17398:2;17378:18;;;17371:30;17437:33;17417:18;;;17410:61;17488:18;;2736:60:21;17331:181:26;2736:60:21;2809:23;2835:19;;;:10;:19;;;;;2809:45;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2865:18;2886:10;:8;:10::i;:::-;2865:31;;2978:4;2972:18;2994:1;2972:23;2968:72;;;-1:-1:-1;3019:9:21;2637:898;-1:-1:-1;;2637:898:21:o;2968:72::-;3056:23;;:27;3052:310;;3104:45;;;;;;;;;;;;;;-1:-1:-1;;;3104:45:21;;;3139:9;3104:27;:45::i;:::-;3100:67;;;-1:-1:-1;3158:9:21;2637:898;-1:-1:-1;;2637:898:21:o;3100:67::-;3274:4;3280:9;3257:33;;;;;;;;;:::i;:::-;;;;;;;;;;;;;3243:48;;;;2637:898;;;:::o;3052:310::-;3494:4;3500:25;3517:7;3500:16;:25::i;:::-;3477:49;;;;;;;;;:::i;1973:134:1:-;2045:7;2072:18;;;:12;:18;;;;;:27;;:25;:27::i;2457:170::-;2543:31;2560:4;2566:7;2543:16;:31::i;2875:174:13:-;2938:41;2469:4:0;681:10:3;4459:139:0;:::i;2938:41:13:-;2930:82;;;;-1:-1:-1;;;2930:82:13;;;;;;;:::i;:::-;3023:8;:18;;-1:-1:-1;;;;;;3023:18:13;-1:-1:-1;;;;;3023:18:13;;;;;;;;;;2875:174::o;3651:186::-;3724:41;2469:4:0;681:10:3;4459:139:0;:::i;3724:41:13:-;3716:82;;;;-1:-1:-1;;;3716:82:13;;;;;;;:::i;:::-;3809:9;:20;;-1:-1:-1;;;;;;3809:20:13;-1:-1:-1;;;;;3809:20:13;;;;;;;;;;3651:186::o;1705:105:21:-;1749:13;1782:20;1775:27;;;;;:::i;6914:1742:13:-;7160:8;;-1:-1:-1;;;;;7160:8:13;7126:30;:11;7146:9;7126:19;:30::i;:::-;-1:-1:-1;;;;;7126:42:13;;7118:84;;;;-1:-1:-1;;;7118:84:13;;24038:2:26;7118:84:13;;;24020:21:26;24077:2;24057:18;;;24050:30;24116:31;24096:18;;;24089:59;24165:18;;7118:84:13;24010:179:26;7118:84:13;7350:21;;-1:-1:-1;;;;;;12031:3:26;12009:16;;;12005:36;7350:21:13;;;11993:49:26;7376:7:13;;12058:11:26;;7350:21:13;;;;;;;;;;;;7340:32;;;;;;:43;7332:83;;;;-1:-1:-1;;;7332:83:13;;14337:2:26;7332:83:13;;;14319:21:26;14376:2;14356:18;;;14349:30;14415:29;14395:18;;;14388:57;14462:18;;7332:83:13;14309:177:26;7332:83:13;7480:19;;;;7479:20;7471:61;;;;-1:-1:-1;;;7471:61:13;;30733:2:26;7471:61:13;;;30715:21:26;30772:2;30752:18;;;30745:30;30811;30791:18;;;30784:58;30859:18;;7471:61:13;30705:178:26;7471:61:13;788:4;7629:3;7613:19;;:13;1678:10:9;:17;;1590:113;7613:13:13;:19;;;;:::i;:::-;:32;;7605:77;;;;-1:-1:-1;;;7605:77:13;;19314:2:26;7605:77:13;;;19296:21:26;;;19333:18;;;19326:30;19392:34;19372:18;;;19365:62;19444:18;;7605:77:13;19286:182:26;7605:77:13;838:2;7756:21;;;;;7748:69;;;;-1:-1:-1;;;7748:69:13;;;;;;;:::i;:::-;7924:21;;;;948:13;7924:21;:::i;:::-;7911:9;:34;;7903:78;;;;-1:-1:-1;;;7903:78:13;;34566:2:26;7903:78:13;;;34548:21:26;34605:2;34585:18;;;34578:30;34644:33;34624:18;;;34617:61;34695:18;;7903:78:13;34538:181:26;7903:78:13;8082:22;;8036:21;;8061:17;8073:5;8061:9;:17;:::i;:::-;8060:44;;;;:::i;:::-;8036:68;;8115:25;8165:22;;8156:5;8144:9;:17;;;;:::i;:::-;8143:44;;;;:::i;:::-;8115:72;;8198:21;8244:25;;8235:5;8223:9;:17;;;;:::i;:::-;8222:47;;;;:::i;:::-;8198:71;-1:-1:-1;8282:25:13;8198:71;8345:17;8324;:13;8340:1;8324:17;:::i;:::-;8323:39;;;;:::i;:::-;:55;;;;:::i;:::-;8310:69;;:9;:69;:::i;:::-;8282:97;;8447:79;8459:13;8474:17;8493:13;8508:17;8447:11;:79::i;:::-;8575:6;8570:79;8591:3;8587:7;;:1;:7;8570:79;;;8616:21;8626:10;8616:9;:21::i;:::-;-1:-1:-1;8596:3:13;;;;:::i;:::-;;;;8570:79;;;;6914:1742;;;;;;;;:::o;1899:192:19:-;1072:6;;-1:-1:-1;;;;;1072:6:19;;;;;681:10:3;1219:23:19;1211:68;;;;-1:-1:-1;;;1211:68:19;;30372:2:26;1211:68:19;;;30354:21:26;;;30391:18;;;30384:30;30450:34;30430:18;;;30423:62;30502:18;;1211:68:19;30344:182:26;1211:68:19;-1:-1:-1;;;;;1988:22:19;::::1;1980:73;;;::::0;-1:-1:-1;;;1980:73:19;;18550:2:26;1980:73:19::1;::::0;::::1;18532:21:26::0;18589:2;18569:18;;;18562:30;18628:34;18608:18;;;18601:62;-1:-1:-1;;;18679:18:26;;;18672:36;18725:19;;1980:73:19::1;18522:228:26::0;1980:73:19::1;2064:19;2074:8;2064:9;:19::i;7695:112:0:-:0;7774:25;7785:4;7791:7;7774:10;:25::i;6400:152:12:-;6470:4;6494:50;6499:3;-1:-1:-1;;;;;6519:23:12;;6494:4;:50::i;937:237:9:-;1039:4;-1:-1:-1;;;;;;1063:50:9;;-1:-1:-1;;;1063:50:9;;:103;;;1130:36;1154:11;1130:23;:36::i;7119:127:7:-;7184:4;7208:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7208:16:7;:30;;;7119:127::o;10996:174::-;11071:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;11071:29:7;-1:-1:-1;;;;;11071:29:7;;;;;;;;:24;;11125:23;11071:24;11125:14;:23::i;:::-;-1:-1:-1;;;;;11116:46:7;;;;;;;;;;;10996:174;;:::o;2414:215:21:-;2514:16;2522:7;2514;:16::i;:::-;2506:73;;;;-1:-1:-1;;;2506:73:21;;29959:2:26;2506:73:21;;;29941:21:26;29998:2;29978:18;;;29971:30;30037:34;30017:18;;;30010:62;-1:-1:-1;;;30088:18:26;;;30081:42;30140:19;;2506:73:21;29931:234:26;2506:73:21;2590:19;;;;:10;:19;;;;;;;;:31;;;;;;;;:::i;7413:348:7:-;7506:4;7531:16;7539:7;7531;:16::i;:::-;7523:73;;;;-1:-1:-1;;;7523:73:7;;23625:2:26;7523:73:7;;;23607:21:26;23664:2;23644:18;;;23637:30;23703:34;23683:18;;;23676:62;-1:-1:-1;;;23754:18:26;;;23747:42;23806:19;;7523:73:7;23597:234:26;7523:73:7;7607:13;7623:23;7638:7;7623:14;:23::i;:::-;7607:39;;7676:5;-1:-1:-1;;;;;7665:16:7;:7;-1:-1:-1;;;;;7665:16:7;;:51;;;;7709:7;-1:-1:-1;;;;;7685:31:7;:20;7697:7;7685:11;:20::i;:::-;-1:-1:-1;;;;;7685:31:7;;7665:51;:87;;;-1:-1:-1;;;;;;4659:25:7;;;4635:4;4659:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;7720:32;7657:96;7413:348;-1:-1:-1;;;;7413:348:7:o;10334:544::-;10459:4;-1:-1:-1;;;;;10432:31:7;:23;10447:7;10432:14;:23::i;:::-;-1:-1:-1;;;;;10432:31:7;;10424:85;;;;-1:-1:-1;;;10424:85:7;;31090:2:26;10424:85:7;;;31072:21:26;31129:2;31109:18;;;31102:30;31168:34;31148:18;;;31141:62;-1:-1:-1;;;31219:18:26;;;31212:39;31268:19;;10424:85:7;31062:231:26;10424:85:7;-1:-1:-1;;;;;10528:16:7;;10520:65;;;;-1:-1:-1;;;10520:65:7;;22110:2:26;10520:65:7;;;22092:21:26;22149:2;22129:18;;;22122:30;22188:34;22168:18;;;22161:62;-1:-1:-1;;;22239:18:26;;;22232:34;22283:19;;10520:65:7;22082:226:26;10520:65:7;10598:39;10619:4;10625:2;10629:7;10598:20;:39::i;:::-;10702:29;10719:1;10723:7;10702:8;:29::i;:::-;-1:-1:-1;;;;;10744:15:7;;;;;;:9;:15;;;;;:20;;10763:1;;10744:15;:20;;10763:1;;10744:20;:::i;:::-;;;;-1:-1:-1;;;;;;;10775:13:7;;;;;;:9;:13;;;;;:18;;10792:1;;10775:13;:18;;10792:1;;10775:18;:::i;:::-;;;;-1:-1:-1;;10804:16:7;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;10804:21:7;-1:-1:-1;;;;;10804:21:7;;;;;;;;;10843:27;;10804:16;;10843:27;;;;;;;10334:544;;;:::o;5846:147:0:-;5527:7;5554:12;;;;;;;;;;:22;;;4028:30;4039:4;681:10:3;4028::0;:30::i;:::-;5960:25:::1;5971:4;5977:7;5960:10;:25::i;6894:218::-:0;-1:-1:-1;;;;;6990:23:0;;681:10:3;6990:23:0;6982:83;;;;-1:-1:-1;;;6982:83:0;;37034:2:26;6982:83:0;;;37016:21:26;37073:2;37053:18;;;37046:30;37112:34;37092:18;;;37085:62;-1:-1:-1;;;37163:18:26;;;37156:45;37218:19;;6982:83:0;37006:237:26;6982:83:0;7078:26;7090:4;7096:7;7078:11;:26::i;6728:158:12:-;6801:4;6825:53;6833:3;-1:-1:-1;;;;;6853:23:12;;6825:7;:53::i;2132:120:20:-;1144:7;;;;1668:41;;;;-1:-1:-1;;;1668:41:20;;15466:2:26;1668:41:20;;;15448:21:26;15505:2;15485:18;;;15478:30;-1:-1:-1;;;15524:18:26;;;15517:50;15584:18;;1668:41:20;15438:170:26;1668:41:20;2191:7:::1;:15:::0;;-1:-1:-1;;2191:15:20::1;::::0;;2222:22:::1;681:10:3::0;2231:12:20::1;2222:22;::::0;-1:-1:-1;;;;;12244:32:26;;;12226:51;;12214:2;12199:18;2222:22:20::1;;;;;;;2132:120::o:0;9637:360:7:-;9697:13;9713:23;9728:7;9713:14;:23::i;:::-;9697:39;;9749:48;9770:5;9785:1;9789:7;9749:20;:48::i;:::-;9838:29;9855:1;9859:7;9838:8;:29::i;:::-;-1:-1:-1;;;;;9880:16:7;;;;;;:9;:16;;;;;:21;;9900:1;;9880:16;:21;;9900:1;;9880:21;:::i;:::-;;;;-1:-1:-1;;9919:16:7;;;;:7;:16;;;;;;9912:23;;-1:-1:-1;;;;;;9912:23:7;;;9953:36;9927:7;;9919:16;-1:-1:-1;;;;;9953:36:7;;;;;9919:16;;9953:36;9637:360;;:::o;5302:384:13:-;5351:7;5523:33;:21;1004:19:4;;1022:1;1004:19;;;915:127;5523:33:13;5567:17;5587:31;:21;885:14:4;;793:114;5587:31:13;5567:51;;5629:20;5635:2;5639:9;5629:5;:20::i;2099:173:19:-;2174:6;;;-1:-1:-1;;;;;2191:17:19;;;2174:6;2191:17;;;-1:-1:-1;;;;;;2191:17:19;;;;;;2224:40;;2174:6;;;;;;;;2224:40;;2155:16;;2224:40;2099:173;;:::o;1873:118:20:-;1144:7;;;;1398:9;1390:38;;;;-1:-1:-1;;;1390:38:20;;24757:2:26;1390:38:20;;;24739:21:26;24796:2;24776:18;;;24769:30;-1:-1:-1;;;24815:18:26;;;24808:46;24871:18;;1390:38:20;24729:166:26;1390:38:20;1933:7:::1;:14:::0;;-1:-1:-1;;1933:14:20::1;1943:4;1933:14;::::0;;1963:20:::1;1970:12;681:10:3::0;;601:98;7686:158:12;7760:7;7811:22;7815:3;7827:5;7811:3;:22::i;6534:272:7:-;6648:28;6658:4;6664:2;6668:7;6648:9;:28::i;:::-;6695:48;6718:4;6724:2;6728:7;6737:5;6695:22;:48::i;:::-;6687:111;;;;-1:-1:-1;;;6687:111:7;;;;;;;:::i;4203:227:5:-;4281:7;4301:17;4320:18;4342:27;4353:4;4359:9;4342:10;:27::i;:::-;4300:69;;;;4379:18;4391:5;4379:11;:18::i;:::-;-1:-1:-1;4414:9:5;4203:227;-1:-1:-1;;;4203:227:5:o;5694:1212:13:-;5913:9;;:65;;5887:20;;-1:-1:-1;;;;;5913:9:13;;894:4;;5935:13;;5887:20;5913:65;5887:20;5913:65;5935:13;5913:9;894:4;5913:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5886:92;;;5997:15;5989:52;;;;-1:-1:-1;;;5989:52:13;;33090:2:26;5989:52:13;;;33072:21:26;33129:2;33109:18;;;33102:30;33168:26;33148:18;;;33141:54;33212:18;;5989:52:13;33062:174:26;5989:52:13;6081:9;;:65;;6055:20;;-1:-1:-1;;;;;6081:9:13;;894:4;;6103:13;;6055:20;6081:65;6055:20;6081:65;6103:13;6081:9;894:4;6081:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6054:92;;;6165:15;6157:52;;;;-1:-1:-1;;;6157:52:13;;34213:2:26;6157:52:13;;;34195:21:26;34252:2;34232:18;;;34225:30;34291:26;34271:18;;;34264:54;34335:18;;6157:52:13;34185:174:26;6157:52:13;6249:9;;:65;;6223:20;;-1:-1:-1;;;;;6249:9:13;;894:4;;6271:13;;6223:20;6249:65;6223:20;6249:65;6271:13;6249:9;894:4;6249:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6222:92;;;6333:15;6325:52;;;;-1:-1:-1;;;6325:52:13;;22869:2:26;6325:52:13;;;22851:21:26;22908:2;22888:18;;;22881:30;22947:26;22927:18;;;22920:54;22991:18;;6325:52:13;22841:174:26;6325:52:13;6413:12;;:72;;6391:16;;-1:-1:-1;;;;;6413:12:13;;894:4;;6438:17;;6391:16;6413:72;6391:16;6413:72;6438:17;6413:12;894:4;6413:72;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6390:95;;;6504:11;6496:56;;;;-1:-1:-1;;;6496:56:13;;24396:2:26;6496:56:13;;;24378:21:26;;;24415:18;;;24408:30;24474:34;24454:18;;;24447:62;24526:18;;6496:56:13;24368:182:26;6496:56:13;6591:8;;:64;;6566:19;;-1:-1:-1;;;;;6591:8:13;;894:4;;6612:13;;6566:19;6591:64;6566:19;6591:64;6612:13;6591:8;894:4;6591:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6565:90;;;6674:14;6666:49;;;;-1:-1:-1;;;6666:49:13;;31902:2:26;6666:49:13;;;31884:21:26;31941:2;31921:18;;;31914:30;-1:-1:-1;;;31960:18:26;;;31953:52;32022:18;;6666:49:13;31874:172:26;6666:49:13;6758:12;;:72;;6729:23;;-1:-1:-1;;;;;6758:12:13;;894:4;;6783:17;;6729:23;6758:72;6729:23;6758:72;6783:17;6758:12;894:4;6758:72;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6728:102;;;6849:18;6841:57;;;;-1:-1:-1;;;6841:57:13;;15815:2:26;6841:57:13;;;15797:21:26;15854:2;15834:18;;;15827:30;15893:28;15873:18;;;15866:56;15939:18;;6841:57:13;15787:176:26;6841:57:13;5694:1212;;;;;;;;;;:::o;2083:114:21:-;2143:13;2176;2169:20;;;;;:::i;218:665:24:-;306:4;354;402:5;306:4;;450:401;491:9;:16;471:10;:17;:36;;;;:::i;:::-;467:1;:40;450:401;;;541:4;529:9;560:185;581:9;:16;577:1;:20;560:185;;;647:9;658:1;647:13;;;;;;-1:-1:-1;;;647:13:24;;;;;;;;;;;;;-1:-1:-1;;;;;;647:13:24;625:10;637:5;641:1;637;:5;:::i;:::-;625:18;;;;;;-1:-1:-1;;;625:18:24;;;;;;;;;;;;;-1:-1:-1;;;;;;625:18:24;:35;621:124;;692:5;685:12;;720:5;;621:124;599:3;;;;:::i;:::-;;;;560:185;;;;763:4;759:81;;;796:4;788:12;;819:5;;;759:81;-1:-1:-1;509:3:24;;;;:::i;:::-;;;;450:401;;;-1:-1:-1;870:5:24;218:665;-1:-1:-1;;;;;218:665:24:o;284:723:25:-;340:13;561:10;557:53;;-1:-1:-1;;588:10:25;;;;;;;;;;;;-1:-1:-1;;;588:10:25;;;;;284:723::o;557:53::-;635:5;620:12;676:78;683:9;;676:78;;709:8;;;;:::i;:::-;;-1:-1:-1;732:10:25;;-1:-1:-1;740:2:25;732:10;;:::i;:::-;;;676:78;;;764:19;796:6;-1:-1:-1;;;;;786:17:25;;;;;-1:-1:-1;;;786:17:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;786:17:25;;764:39;;814:154;821:10;;814:154;;848:11;858:1;848:11;;:::i;:::-;;-1:-1:-1;917:10:25;925:2;917:5;:10;:::i;:::-;904:24;;:2;:24;:::i;:::-;891:39;;874:6;881;874:14;;;;;;-1:-1:-1;;;874:14:25;;;;;;;;;;;;:56;-1:-1:-1;;;;;874:56:25;;;;;;;;-1:-1:-1;945:11:25;954:2;945:11;;:::i;:::-;;;814:154;;7225:117:12;7288:7;7315:19;7323:3;4066:18;;3983:109;6238:149:0;5527:7;5554:12;;;;;;;;;;:22;;;4028:30;4039:4;681:10:3;4028::0;:30::i;:::-;6353:26:::1;6365:4;6371:7;6353:11;:26::i;8142:229::-:0;8217:22;8225:4;8231:7;8217;:22::i;:::-;8212:152;;8256:6;:12;;;;;;;;;;;-1:-1:-1;;;;;8256:29:0;;;;;;;;;:36;;-1:-1:-1;;8256:36:0;8288:4;8256:36;;;8339:12;681:10:3;;601:98;8339:12:0;-1:-1:-1;;;;;8312:40:0;8330:7;-1:-1:-1;;;;;8312:40:0;8324:4;8312:40;;;;;;;;;;8142:229;;:::o;1685:414:12:-;1748:4;3865:19;;;:12;;;:19;;;;;;1765:327;;-1:-1:-1;1808:23:12;;;;;;;;:11;:23;;;;;;;;;;;;;1991:18;;1969:19;;;:12;;;:19;;;;;;:40;;;;2024:11;;1765:327;-1:-1:-1;2075:5:12;2068:12;;1487:292:7;1589:4;-1:-1:-1;;;;;;1613:40:7;;-1:-1:-1;;;1613:40:7;;:105;;-1:-1:-1;;;;;;;1670:48:7;;-1:-1:-1;;;1670:48:7;1613:105;:158;;;;1735:36;1759:11;1735:23;:36::i;5244:205:21:-;5396:45;5423:4;5429:2;5433:7;5396:26;:45::i;4888:384:0:-;4968:22;4976:4;4982:7;4968;:22::i;:::-;4964:301;;5100:41;5128:7;-1:-1:-1;;;;;5100:41:0;5138:2;5100:19;:41::i;:::-;5198:38;5226:4;5233:2;5198:19;:38::i;:::-;5021:230;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;5021:230:0;;;;;;;;;;-1:-1:-1;;;5007:246:0;;;;;;;:::i;8379:230::-;8454:22;8462:4;8468:7;8454;:22::i;:::-;8450:152;;;8525:5;8493:12;;;;;;;;;;;-1:-1:-1;;;;;8493:29:0;;;;;;;;;;:37;;-1:-1:-1;;8493:37:0;;;8550:40;681:10:3;;8493:12:0;;8550:40;;8525:5;8550:40;8379:230;;:::o;2275:1407:12:-;2341:4;2480:19;;;:12;;;:19;;;;;;2516:15;;2512:1163;;2878:21;2902:14;2915:1;2902:10;:14;:::i;:::-;2951:18;;2878:38;;-1:-1:-1;2931:17:12;;2951:22;;2972:1;;2951:22;:::i;:::-;2931:42;;3007:13;2994:9;:26;2990:405;;3041:17;3061:3;:11;;3073:9;3061:22;;;;;;-1:-1:-1;;;3061:22:12;;;;;;;;;;;;;;;;;3041:42;;3215:9;3186:3;:11;;3198:13;3186:26;;;;;;-1:-1:-1;;;3186:26:12;;;;;;;;;;;;;;;;;;;;:38;;;;3300:23;;;:12;;;:23;;;;;:36;;;2990:405;3476:17;;:3;;:17;;;-1:-1:-1;;;3476:17:12;;;;;;;;;;;;;;;;;;;;;;;;;;3571:3;:12;;:19;3584:5;3571:19;;;;;;;;;;;3564:26;;;3614:4;3607:11;;;;;;;2512:1163;3658:5;3651:12;;;;;9026:382:7;-1:-1:-1;;;;;9106:16:7;;9098:61;;;;-1:-1:-1;;;9098:61:7;;28369:2:26;9098:61:7;;;28351:21:26;;;28388:18;;;28381:30;28447:34;28427:18;;;28420:62;28499:18;;9098:61:7;28341:182:26;9098:61:7;9179:16;9187:7;9179;:16::i;:::-;9178:17;9170:58;;;;-1:-1:-1;;;9170:58:7;;18957:2:26;9170:58:7;;;18939:21:26;18996:2;18976:18;;;18969:30;19035;19015:18;;;19008:58;19083:18;;9170:58:7;18929:178:26;9170:58:7;9241:45;9270:1;9274:2;9278:7;9241:20;:45::i;:::-;-1:-1:-1;;;;;9299:13:7;;;;;;:9;:13;;;;;:18;;9316:1;;9299:13;:18;;9316:1;;9299:18;:::i;:::-;;;;-1:-1:-1;;9328:16:7;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;9328:21:7;-1:-1:-1;;;;;9328:21:7;;;;;;;;9367:33;;9328:16;;;9367:33;;9328:16;;9367:33;9026:382;;:::o;4436:120:12:-;4503:7;4530:3;:11;;4542:5;4530:18;;;;;;-1:-1:-1;;;4530:18:12;;;;;;;;;;;;;;;;;4523:25;;4436:120;;;;:::o;11735:843:7:-;11856:4;-1:-1:-1;;;;;11882:13:7;;1110:20:2;1149:8;11878:693:7;;11918:72;;-1:-1:-1;;;11918:72:7;;-1:-1:-1;;;;;11918:36:7;;;;;:72;;681:10:3;;11969:4:7;;11975:7;;11984:5;;11918:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;11918:72:7;;;;;;;;-1:-1:-1;;11918:72:7;;;;;;;;;;;;:::i;:::-;;;11914:602;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12164:13:7;;12160:341;;12207:60;;-1:-1:-1;;;12207:60:7;;;;;;;:::i;12160:341::-;12451:6;12445:13;12436:6;12432:2;12428:15;12421:38;11914:602;-1:-1:-1;;;;;;12041:55:7;-1:-1:-1;;;12041:55:7;;-1:-1:-1;12034:62:7;;11878:693;-1:-1:-1;12555:4:7;11735:843;;;;;;:::o;2138:1279:5:-;2219:7;2228:12;2449:9;:16;2469:2;2449:22;2445:966;;;2738:4;2723:20;;2717:27;2787:4;2772:20;;2766:27;2844:4;2829:20;;2823:27;2487:9;2815:36;2885:25;2896:4;2815:36;2717:27;2766;2885:10;:25::i;:::-;2878:32;;;;;;;;;2445:966;2931:9;:16;2951:2;2931:22;2927:484;;;3200:4;3185:20;;3179:27;3250:4;3235:20;;3229:27;3290:23;3301:4;3179:27;3229;3290:10;:23::i;:::-;3283:30;;;;;;;;2927:484;-1:-1:-1;3360:1:5;;-1:-1:-1;3364:35:5;2927:484;2138:1279;;;;;:::o;443:631::-;520:20;511:5;:29;;;;;;-1:-1:-1;;;511:29:5;;;;;;;;;;507:561;;;443:631;:::o;507:561::-;616:29;607:5;:38;;;;;;-1:-1:-1;;;607:38:5;;;;;;;;;;603:465;;;661:34;;-1:-1:-1;;;661:34:5;;13984:2:26;661:34:5;;;13966:21:26;14023:2;14003:18;;;13996:30;14062:26;14042:18;;;14035:54;14106:18;;661:34:5;13956:174:26;603:465:5;725:35;716:5;:44;;;;;;-1:-1:-1;;;716:44:5;;;;;;;;;;712:356;;;776:41;;-1:-1:-1;;;776:41:5;;16170:2:26;776:41:5;;;16152:21:26;16209:2;16189:18;;;16182:30;16248:33;16228:18;;;16221:61;16299:18;;776:41:5;16142:181:26;712:356:5;847:30;838:5;:39;;;;;;-1:-1:-1;;;838:39:5;;;;;;;;;;834:234;;;893:44;;-1:-1:-1;;;893:44:5;;23222:2:26;893:44:5;;;23204:21:26;23261:2;23241:18;;;23234:30;23300:34;23280:18;;;23273:62;-1:-1:-1;;;23351:18:26;;;23344:32;23393:19;;893:44:5;23194:224:26;834:234:5;967:30;958:5;:39;;;;;;-1:-1:-1;;;958:39:5;;;;;;;;;;954:114;;;1013:44;;-1:-1:-1;;;1013:44:5;;27541:2:26;1013:44:5;;;27523:21:26;27580:2;27560:18;;;27553:30;27619:34;27599:18;;;27592:62;-1:-1:-1;;;27670:18:26;;;27663:32;27712:19;;1013:44:5;27513:224:26;828:227:1;913:4;-1:-1:-1;;;;;;937:57:1;;-1:-1:-1;;;937:57:1;;:110;;;1011:36;1035:11;1011:23;:36::i;599:241:10:-;709:45;736:4;742:2;746:7;709:26;:45::i;:::-;1144:7:20;;;;775:9:10;767:65;;;;-1:-1:-1;;;767:65:10;;15054:2:26;767:65:10;;;15036:21:26;15093:2;15073:18;;;15066:30;15132:34;15112:18;;;15105:62;-1:-1:-1;;;15183:18:26;;;15176:41;15234:19;;767:65:10;15026:233:26;1585:447:25;1660:13;1686:19;1718:10;1722:6;1718:1;:10;:::i;:::-;:14;;1731:1;1718:14;:::i;:::-;-1:-1:-1;;;;;1708:25:25;;;;;-1:-1:-1;;;1708:25:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;1708:25:25;;1686:47;;-1:-1:-1;;;1744:6:25;1751:1;1744:9;;;;;;-1:-1:-1;;;1744:9:25;;;;;;;;;;;;:15;-1:-1:-1;;;;;1744:15:25;;;;;;;;;-1:-1:-1;;;1770:6:25;1777:1;1770:9;;;;;;-1:-1:-1;;;1770:9:25;;;;;;;;;;;;:15;-1:-1:-1;;;;;1770:15:25;;;;;;;;-1:-1:-1;1801:9:25;1813:10;1817:6;1813:1;:10;:::i;:::-;:14;;1826:1;1813:14;:::i;:::-;1801:26;;1796:131;1833:1;1829;:5;1796:131;;;-1:-1:-1;;;1877:5:25;1885:3;1877:11;1868:21;;;;;-1:-1:-1;;;1868:21:25;;;;;;;;;;;;1856:6;1863:1;1856:9;;;;;;-1:-1:-1;;;1856:9:25;;;;;;;;;;;;:33;-1:-1:-1;;;;;1856:33:25;;;;;;;;-1:-1:-1;1914:1:25;1904:11;;;;;1836:3;;;:::i;:::-;;;1796:131;;;-1:-1:-1;1945:10:25;;1937:55;;;;-1:-1:-1;;;1937:55:25;;14693:2:26;1937:55:25;;;14675:21:26;;;14712:18;;;14705:30;14771:34;14751:18;;;14744:62;14823:18;;1937:55:25;14665:182:26;5654:1603:5;5780:7;;6704:66;6691:79;;6687:161;;;-1:-1:-1;6802:1:5;;-1:-1:-1;6806:30:5;6786:51;;6687:161;6861:1;:7;;6866:2;6861:7;;:18;;;;;6872:1;:7;;6877:2;6872:7;;6861:18;6857:100;;;-1:-1:-1;6911:1:5;;-1:-1:-1;6915:30:5;6895:51;;6857:100;7068:24;;;7051:14;7068:24;;;;;;;;;13382:25:26;;;13455:4;13443:17;;13423:18;;;13416:45;;;;13477:18;;;13470:34;;;13520:18;;;13513:34;;;7068:24:5;;13354:19:26;;7068:24:5;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;7068:24:5;;-1:-1:-1;;7068:24:5;;;-1:-1:-1;;;;;;;7106:20:5;;7102:101;;7158:1;7162:29;7142:50;;;;;;;7102:101;7221:6;-1:-1:-1;7229:20:5;;-1:-1:-1;5654:1603:5;;;;;;;;:::o;4684:379::-;4794:7;;-1:-1:-1;;;;;4891:75:5;;4992:3;4988:12;;;5002:2;4984:21;5031:25;5042:4;4984:21;5051:1;4891:75;5031:10;:25::i;:::-;5024:32;;;;;;4684:379;;;;;;:::o;4150:217:0:-;4235:4;-1:-1:-1;;;;;;4259:47:0;;-1:-1:-1;;;4259:47:0;;:100;;-1:-1:-1;;;;;;;;;;896:40:6;;;4323:36:0;787:157:6;2626:555:9;-1:-1:-1;;;;;2798:18:9;;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:9;:4;-1:-1:-1;;;;;2895:10:9;;2891:90;;2922:47;2955:4;2961:7;2922:32;:47::i;:::-;-1:-1:-1;;;;;2995:16:9;;2991:183;;3028:45;3065:7;3028:36;:45::i;2991:183::-;3101:4;-1:-1:-1;;;;;3095:10:9;:2;-1:-1:-1;;;;;3095:10:9;;3091:83;;3122:40;3150:2;3154:7;3122:27;:40::i;4695:988::-;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:9;;;5173:328;;-1:-1:-1;;;;;5244:18:9;;5222:19;5244:18;;;:12;:18;;;;;;;;:34;;;;;;;;;5295:30;;;;;;:44;;;5412:30;;:17;:30;;;;;:43;;;5173:328;-1:-1:-1;5597:26:9;;;;:17;:26;;;;;;;;5590:33;;;-1:-1:-1;;;;;5641:18:9;;;;;: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:9;;6231:46;;6682:26;;;;-1:-1:-1;;;6682:26:9;;;;;;;;;;;;;;;;;6660:48;;6746:11;6721:10;6732;6721:22;;;;;;-1:-1:-1;;;6721:22:9;;;;;;;;;;;;;;;;;;;;:36;;;;6826:28;;;:15;:28;;;;;;;:41;;;6998:24;;;;;6991:31;7033:10;:16;;;;;-1:-1:-1;;;7033:16:9;;;;;;;;;;;;;;;;;;;;;;;;;;5978:1079;;;;:::o;3482:221::-;3567:14;3584:20;3601:2;3584:16;:20::i;:::-;-1:-1:-1;;;;;3615:16:9;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;3660:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;3482:221:9:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:856:26;67:5;120:3;113:4;105:6;101:17;97:27;87:2;;142:5;135;128:20;87:2;182:6;169:20;208:4;232:60;248:43;288:2;248:43;:::i;:::-;232:60;:::i;:::-;314:3;338:2;333:3;326:15;366:2;361:3;357:12;350:19;;401:2;393:6;389:15;453:3;448:2;442;439:1;435:10;427:6;423:23;419:32;416:41;413:2;;;474:5;467;460:20;413:2;500:5;514:327;528:2;525:1;522:9;514:327;;;605:3;592:17;-1:-1:-1;;;;;628:11:26;625:35;622:2;;;677:5;670;663:20;622:2;710:56;762:3;757:2;743:11;735:6;731:24;727:33;710:56;:::i;:::-;698:69;;-1:-1:-1;787:12:26;;;;819;;;;546:1;539:9;514:327;;;-1:-1:-1;859:5:26;;77:793;-1:-1:-1;;;;;;;77:793:26:o;875:160::-;940:20;;996:13;;989:21;979:32;;969:2;;1025:1;1022;1015:12;969:2;921:114;;;:::o;1040:550::-;1082:5;1135:3;1128:4;1120:6;1116:17;1112:27;1102:2;;1157:5;1150;1143:20;1102:2;1197:6;1184:20;-1:-1:-1;;;;;1219:2:26;1216:26;1213:2;;;1245:18;;:::i;:::-;1289:55;1332:2;1313:13;;-1:-1:-1;;1309:27:26;1338:4;1305:38;1289:55;:::i;:::-;1369:2;1360:7;1353:19;1415:3;1408:4;1403:2;1395:6;1391:15;1387:26;1384:35;1381:2;;;1436:5;1429;1422:20;1381:2;1505;1498:4;1490:6;1486:17;1479:4;1470:7;1466:18;1453:55;1528:16;;;1546:4;1524:27;1517:42;;;;1532:7;1092:498;-1:-1:-1;;1092:498:26:o;1595:257::-;1654:6;1707:2;1695:9;1686:7;1682:23;1678:32;1675:2;;;1728:6;1720;1713:22;1675:2;1772:9;1759:23;1791:31;1816:5;1791:31;:::i;2127:398::-;2195:6;2203;2256:2;2244:9;2235:7;2231:23;2227:32;2224:2;;;2277:6;2269;2262:22;2224:2;2321:9;2308:23;2340:31;2365:5;2340:31;:::i;:::-;2390:5;-1:-1:-1;2447:2:26;2432:18;;2419:32;2460:33;2419:32;2460:33;:::i;:::-;2512:7;2502:17;;;2214:311;;;;;:::o;2530:466::-;2607:6;2615;2623;2676:2;2664:9;2655:7;2651:23;2647:32;2644:2;;;2697:6;2689;2682:22;2644:2;2741:9;2728:23;2760:31;2785:5;2760:31;:::i;:::-;2810:5;-1:-1:-1;2867:2:26;2852:18;;2839:32;2880:33;2839:32;2880:33;:::i;:::-;2634:362;;2932:7;;-1:-1:-1;;;2986:2:26;2971:18;;;;2958:32;;2634:362::o;3001:685::-;3096:6;3104;3112;3120;3173:3;3161:9;3152:7;3148:23;3144:33;3141:2;;;3195:6;3187;3180:22;3141:2;3239:9;3226:23;3258:31;3283:5;3258:31;:::i;:::-;3308:5;-1:-1:-1;3365:2:26;3350:18;;3337:32;3378:33;3337:32;3378:33;:::i;:::-;3430:7;-1:-1:-1;3484:2:26;3469:18;;3456:32;;-1:-1:-1;3539:2:26;3524:18;;3511:32;-1:-1:-1;;;;;3555:30:26;;3552:2;;;3603:6;3595;3588:22;3552:2;3631:49;3672:7;3663:6;3652:9;3648:22;3631:49;:::i;:::-;3621:59;;;3131:555;;;;;;;:::o;3691:325::-;3756:6;3764;3817:2;3805:9;3796:7;3792:23;3788:32;3785:2;;;3838:6;3830;3823:22;3785:2;3882:9;3869:23;3901:31;3926:5;3901:31;:::i;:::-;3951:5;-1:-1:-1;3975:35:26;4006:2;3991:18;;3975:35;:::i;:::-;3965:45;;3775:241;;;;;:::o;4021:325::-;4089:6;4097;4150:2;4138:9;4129:7;4125:23;4121:32;4118:2;;;4171:6;4163;4156:22;4118:2;4215:9;4202:23;4234:31;4259:5;4234:31;:::i;:::-;4284:5;4336:2;4321:18;;;;4308:32;;-1:-1:-1;;;4108:238:26:o;4351:1022::-;4435:6;4466:2;4509;4497:9;4488:7;4484:23;4480:32;4477:2;;;4530:6;4522;4515:22;4477:2;4575:9;4562:23;-1:-1:-1;;;;;4600:6:26;4597:30;4594:2;;;4645:6;4637;4630:22;4594:2;4673:22;;4726:4;4718:13;;4714:27;-1:-1:-1;4704:2:26;;4760:6;4752;4745:22;4704:2;4801;4788:16;4824:60;4840:43;4880:2;4840:43;:::i;4824:60::-;4906:3;4930:2;4925:3;4918:15;4958:2;4953:3;4949:12;4942:19;;4989:2;4985;4981:11;5037:7;5032:2;5026;5023:1;5019:10;5015:2;5011:19;5007:28;5004:41;5001:2;;;5063:6;5055;5048:22;5001:2;5090:6;5081:15;;5105:238;5119:2;5116:1;5113:9;5105:238;;;5190:3;5177:17;5207:31;5232:5;5207:31;:::i;:::-;5251:18;;5137:1;5130:9;;;;;5289:12;;;;5321;;5105:238;;;-1:-1:-1;5362:5:26;4446:927;-1:-1:-1;;;;;;;4446:927:26:o;5378:190::-;5434:6;5487:2;5475:9;5466:7;5462:23;5458:32;5455:2;;;5508:6;5500;5493:22;5455:2;5536:26;5552:9;5536:26;:::i;5573:190::-;5632:6;5685:2;5673:9;5664:7;5660:23;5656:32;5653:2;;;5706:6;5698;5691:22;5653:2;-1:-1:-1;5734:23:26;;5643:120;-1:-1:-1;5643:120:26:o;5768:325::-;5836:6;5844;5897:2;5885:9;5876:7;5872:23;5868:32;5865:2;;;5918:6;5910;5903:22;5865:2;5959:9;5946:23;5936:33;;6019:2;6008:9;6004:18;5991:32;6032:31;6057:5;6032:31;:::i;6098:644::-;6191:6;6199;6207;6215;6268:3;6256:9;6247:7;6243:23;6239:33;6236:2;;;6290:6;6282;6275:22;6236:2;6331:9;6318:23;6308:33;;6388:2;6377:9;6373:18;6360:32;6350:42;;6443:2;6432:9;6428:18;6415:32;-1:-1:-1;;;;;6462:6:26;6459:30;6456:2;;;6507:6;6499;6492:22;6456:2;6535:49;6576:7;6567:6;6556:9;6552:22;6535:49;:::i;:::-;6525:59;;;6634:2;6623:9;6619:18;6606:32;6678:4;6671:5;6667:16;6660:5;6657:27;6647:2;;6703:6;6695;6688:22;6647:2;6226:516;;;;-1:-1:-1;6226:516:26;;-1:-1:-1;;6226:516:26:o;6747:258::-;6815:6;6823;6876:2;6864:9;6855:7;6851:23;6847:32;6844:2;;;6897:6;6889;6882:22;6844:2;-1:-1:-1;;6925:23:26;;;6995:2;6980:18;;;6967:32;;-1:-1:-1;6834:171:26:o;7010:255::-;7068:6;7121:2;7109:9;7100:7;7096:23;7092:32;7089:2;;;7142:6;7134;7127:22;7089:2;7186:9;7173:23;7205:30;7229:5;7205:30;:::i;7270:259::-;7339:6;7392:2;7380:9;7371:7;7367:23;7363:32;7360:2;;;7413:6;7405;7398:22;7360:2;7450:9;7444:16;7469:30;7493:5;7469:30;:::i;7534:341::-;7603:6;7656:2;7644:9;7635:7;7631:23;7627:32;7624:2;;;7677:6;7669;7662:22;7624:2;7722:9;7709:23;-1:-1:-1;;;;;7747:6:26;7744:30;7741:2;;;7792:6;7784;7777:22;7741:2;7820:49;7861:7;7852:6;7841:9;7837:22;7820:49;:::i;8075:711::-;8222:6;8230;8238;8291:2;8279:9;8270:7;8266:23;8262:32;8259:2;;;8312:6;8304;8297:22;8259:2;8353:9;8340:23;8330:33;;8414:2;8403:9;8399:18;8386:32;-1:-1:-1;;;;;8478:2:26;8470:6;8467:14;8464:2;;;8499:6;8491;8484:22;8464:2;8527:60;8579:7;8570:6;8559:9;8555:22;8527:60;:::i;:::-;8517:70;;8640:2;8629:9;8625:18;8612:32;8596:48;;8669:2;8659:8;8656:16;8653:2;;;8690:6;8682;8675:22;8653:2;;8718:62;8772:7;8761:8;8750:9;8746:24;8718:62;:::i;:::-;8708:72;;;8249:537;;;;;:::o;8791:409::-;8869:6;8877;8930:2;8918:9;8909:7;8905:23;8901:32;8898:2;;;8951:6;8943;8936:22;8898:2;8992:9;8979:23;8969:33;;9053:2;9042:9;9038:18;9025:32;-1:-1:-1;;;;;9072:6:26;9069:30;9066:2;;;9117:6;9109;9102:22;9066:2;9145:49;9186:7;9177:6;9166:9;9162:22;9145:49;:::i;:::-;9135:59;;;8888:312;;;;;:::o;9205:639::-;9302:6;9310;9318;9371:2;9359:9;9350:7;9346:23;9342:32;9339:2;;;9392:6;9384;9377:22;9339:2;9433:9;9420:23;9410:33;;9494:2;9483:9;9479:18;9466:32;-1:-1:-1;;;;;9558:2:26;9550:6;9547:14;9544:2;;;9579:6;9571;9564:22;9544:2;9607:49;9648:7;9639:6;9628:9;9624:22;9607:49;:::i;:::-;9597:59;;9709:2;9698:9;9694:18;9681:32;9665:48;;9738:2;9728:8;9725:16;9722:2;;;9759:6;9751;9744:22;9722:2;;9787:51;9830:7;9819:8;9808:9;9804:24;9787:51;:::i;9849:257::-;9890:3;9928:5;9922:12;9955:6;9950:3;9943:19;9971:63;10027:6;10020:4;10015:3;10011:14;10004:4;9997:5;9993:16;9971:63;:::i;:::-;10088:2;10067:15;-1:-1:-1;;10063:29:26;10054:39;;;;10095:4;10050:50;;9898:208;-1:-1:-1;;9898:208:26:o;10111:276::-;10242:3;10280:6;10274:13;10296:53;10342:6;10337:3;10330:4;10322:6;10318:17;10296:53;:::i;:::-;10365:16;;;;;10250:137;-1:-1:-1;;10250:137:26:o;10392:470::-;10571:3;10609:6;10603:13;10625:53;10671:6;10666:3;10659:4;10651:6;10647:17;10625:53;:::i;:::-;10741:13;;10700:16;;;;10763:57;10741:13;10700:16;10797:4;10785:17;;10763:57;:::i;:::-;10836:20;;10579:283;-1:-1:-1;;;;10579:283:26:o;11077:786::-;11488:25;11483:3;11476:38;11458:3;11543:6;11537:13;11559:62;11614:6;11609:2;11604:3;11600:12;11593:4;11585:6;11581:17;11559:62;:::i;:::-;-1:-1:-1;;;11680:2:26;11640:16;;;11672:11;;;11665:40;11730:13;;11752:63;11730:13;11801:2;11793:11;;11786:4;11774:17;;11752:63;:::i;:::-;11835:17;11854:2;11831:26;;11466:397;-1:-1:-1;;;;11466:397:26:o;12288:488::-;-1:-1:-1;;;;;12557:15:26;;;12539:34;;12609:15;;12604:2;12589:18;;12582:43;12656:2;12641:18;;12634:34;;;12704:3;12699:2;12684:18;;12677:31;;;12482:4;;12725:45;;12750:19;;12742:6;12725:45;:::i;:::-;12717:53;12491:285;-1:-1:-1;;;;;;12491:285:26:o;13558:219::-;13707:2;13696:9;13689:21;13670:4;13727:44;13767:2;13756:9;13752:18;13744:6;13727:44;:::i;17929:414::-;18131:2;18113:21;;;18170:2;18150:18;;;18143:30;18209:34;18204:2;18189:18;;18182:62;-1:-1:-1;;;18275:2:26;18260:18;;18253:48;18333:3;18318:19;;18103:240::o;21504:399::-;21706:2;21688:21;;;21745:2;21725:18;;;21718:30;21784:34;21779:2;21764:18;;21757:62;-1:-1:-1;;;21850:2:26;21835:18;;21828:33;21893:3;21878:19;;21678:225::o;32051:413::-;32253:2;32235:21;;;32292:2;32272:18;;;32265:30;32331:34;32326:2;32311:18;;32304:62;-1:-1:-1;;;32397:2:26;32382:18;;32375:47;32454:3;32439:19;;32225:239::o;33654:352::-;33856:2;33838:21;;;33895:2;33875:18;;;33868:30;33934;33929:2;33914:18;;33907:58;33997:2;33982:18;;33828:178::o;37619:275::-;37690:2;37684:9;37755:2;37736:13;;-1:-1:-1;;37732:27:26;37720:40;;-1:-1:-1;;;;;37775:34:26;;37811:22;;;37772:62;37769:2;;;37837:18;;:::i;:::-;37873:2;37866:22;37664:230;;-1:-1:-1;37664:230:26:o;37899:183::-;37959:4;-1:-1:-1;;;;;37984:6:26;37981:30;37978:2;;;38014:18;;:::i;:::-;-1:-1:-1;38059:1:26;38055:14;38071:4;38051:25;;37968:114::o;38087:128::-;38127:3;38158:1;38154:6;38151:1;38148:13;38145:2;;;38164:18;;:::i;:::-;-1:-1:-1;38200:9:26;;38135:80::o;38220:204::-;38258:3;38294:4;38291:1;38287:12;38326:4;38323:1;38319:12;38361:3;38355:4;38351:14;38346:3;38343:23;38340:2;;;38369:18;;:::i;:::-;38405:13;;38266:158;-1:-1:-1;;;38266:158:26:o;38429:120::-;38469:1;38495;38485:2;;38500:18;;:::i;:::-;-1:-1:-1;38534:9:26;;38475:74::o;38554:168::-;38594:7;38660:1;38656;38652:6;38648:14;38645:1;38642:21;38637:1;38630:9;38623:17;38619:45;38616:2;;;38667:18;;:::i;:::-;-1:-1:-1;38707:9:26;;38606:116::o;38727:125::-;38767:4;38795:1;38792;38789:8;38786:2;;;38800:18;;:::i;:::-;-1:-1:-1;38837:9:26;;38776:76::o;38857:258::-;38929:1;38939:113;38953:6;38950:1;38947:13;38939:113;;;39029:11;;;39023:18;39010:11;;;39003:39;38975:2;38968:10;38939:113;;;39070:6;39067:1;39064:13;39061:2;;;-1:-1:-1;;39105:1:26;39087:16;;39080:27;38910:205::o;39120:136::-;39159:3;39187:5;39177:2;;39196:18;;:::i;:::-;-1:-1:-1;;;39232:18:26;;39167:89::o;39261:380::-;39340:1;39336:12;;;;39383;;;39404:2;;39458:4;39450:6;39446:17;39436:27;;39404:2;39511;39503:6;39500:14;39480:18;39477:38;39474:2;;;39557:10;39552:3;39548:20;39545:1;39538:31;39592:4;39589:1;39582:15;39620:4;39617:1;39610:15;39474:2;;39316:325;;;:::o;39646:135::-;39685:3;-1:-1:-1;;39706:17:26;;39703:2;;;39726:18;;:::i;:::-;-1:-1:-1;39773:1:26;39762:13;;39693:88::o;39786:112::-;39818:1;39844;39834:2;;39849:18;;:::i;:::-;-1:-1:-1;39883:9:26;;39824:74::o;39903:127::-;39964:10;39959:3;39955:20;39952:1;39945:31;39995:4;39992:1;39985:15;40019:4;40016:1;40009:15;40035:127;40096:10;40091:3;40087:20;40084:1;40077:31;40127:4;40124:1;40117:15;40151:4;40148:1;40141:15;40167:127;40228:10;40223:3;40219:20;40216:1;40209:31;40259:4;40256:1;40249:15;40283:4;40280:1;40273:15;40299:131;-1:-1:-1;;;;;40374:31:26;;40364:42;;40354:2;;40420:1;40417;40410:12;40435:131;-1:-1:-1;;;;;;40509:32:26;;40499:43;;40489:2;;40556:1;40553;40546:12

Swarm Source

ipfs://539ed5eedb1f8be4ca6f09be6446052186cbad97dfed634aa578c6efa33284f7
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.