ETH Price: $2,647.85 (+1.74%)

Token

Decal by Rich Caldwell (DECAL)
 

Overview

Max Total Supply

100 DECAL

Holders

85

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
latteinlondon.eth
Balance
1 DECAL
0xace1e41547899bda3db142ca28bc6f6de92e362b
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:
Caldwell_Decal

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-10-03
*/

// File: @openzeppelin/contracts/access/IAccessControl.sol

// OpenZeppelin Contracts v4.4.1 (access/IAccessControl.sol)

pragma solidity ^0.8.0;

/**
 * @dev External interface of AccessControl declared to support ERC165 detection.
 */
interface IAccessControl {
  /**
   * @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 {AccessControl-_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 Returns `true` if `account` has been granted `role`.
   */
  function hasRole(bytes32 role, address account) external view returns (bool);

  /**
   * @dev Returns the admin role that controls `role`. See {grantRole} and
   * {revokeRole}.
   *
   * To change a role's admin, use {AccessControl-_setRoleAdmin}.
   */
  function getRoleAdmin(bytes32 role) external view returns (bytes32);

  /**
   * @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) external;

  /**
   * @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) external;

  /**
   * @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) external;
}

// File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol

// OpenZeppelin Contracts (last updated v4.6.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

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

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

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

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol

// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
  // Booleans are more expensive than uint256 or any type that takes up a full
  // word because each write operation emits an extra SLOAD to first read the
  // slot's contents, replace the bits taken up by the boolean, and then write
  // back. This is the compiler's defense against contract upgrades and
  // pointer aliasing, and it cannot be disabled.

  // The values being non-zero value makes deployment a bit more expensive,
  // but in exchange the refund on every call to nonReentrant will be lower in
  // amount. Since refunds are capped to a percentage of the total
  // transaction's gas, it is best to keep them low in cases like this one, to
  // increase the likelihood of the full refund coming into effect.
  uint256 private constant _NOT_ENTERED = 1;
  uint256 private constant _ENTERED = 2;

  uint256 private _status;

  constructor() {
    _status = _NOT_ENTERED;
  }

  /**
   * @dev Prevents a contract from calling itself, directly or indirectly.
   * Calling a `nonReentrant` function from another `nonReentrant`
   * function is not supported. It is possible to prevent this from happening
   * by making the `nonReentrant` function external, and making it call a
   * `private` function that does the actual work.
   */
  modifier nonReentrant() {
    // On the first call to nonReentrant, _notEntered will be true
    require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

    // Any calls to nonReentrant after this point will fail
    _status = _ENTERED;

    _;

    // By storing the original value once again, a refund is triggered (see
    // https://eips.ethereum.org/EIPS/eip-2200)
    _status = _NOT_ENTERED;
  }
}

// File: @openzeppelin/contracts/utils/Strings.sol

// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

// File: @openzeppelin/contracts/utils/Context.sol

// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

// File: @openzeppelin/contracts/utils/Address.sol

// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

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

    return account.code.length > 0;
  }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol

// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol

// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol

// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

/**
 * @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: @openzeppelin/contracts/access/AccessControl.sol

// OpenZeppelin Contracts (last updated v4.6.0) (access/AccessControl.sol)

pragma solidity ^0.8.0;

/**
 * @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 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]{40}) is missing role (0x[0-9a-f]{64})$/
   *
   * _Available since v4.1._
   */
  modifier onlyRole(bytes32 role) {
    _checkRole(role);
    _;
  }

  /**
   * @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
    virtual
    override
    returns (bool)
  {
    return _roles[role].members[account];
  }

  /**
   * @dev Revert with a standard message if `_msgSender()` is missing `role`.
   * Overriding this function changes the behavior of the {onlyRole} modifier.
   *
   * Format of the revert message is described in {_checkRole}.
   *
   * _Available since v4.6._
   */
  function _checkRole(bytes32 role) internal view virtual {
    _checkRole(role, _msgSender());
  }

  /**
   * @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]{40}) is missing role (0x[0-9a-f]{64})$/
   */
  function _checkRole(bytes32 role, address account) internal view virtual {
    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
    virtual
    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 revoked `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}.
   * ====
   *
   * NOTE: This function is deprecated in favor of {_grantRole}.
   */
  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 {
    bytes32 previousAdminRole = getRoleAdmin(role);
    _roles[role].adminRole = adminRole;
    emit RoleAdminChanged(role, previousAdminRole, adminRole);
  }

  /**
   * @dev Grants `role` to `account`.
   *
   * Internal function without access restriction.
   */
  function _grantRole(bytes32 role, address account) internal virtual {
    if (!hasRole(role, account)) {
      _roles[role].members[account] = true;
      emit RoleGranted(role, account, _msgSender());
    }
  }

  /**
   * @dev Revokes `role` from `account`.
   *
   * Internal function without access restriction.
   */
  function _revokeRole(bytes32 role, address account) internal virtual {
    if (hasRole(role, account)) {
      _roles[role].members[account] = false;
      emit RoleRevoked(role, account, _msgSender());
    }
  }
}

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol

// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol

// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

/**
 * @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: @openzeppelin/contracts/token/ERC721/ERC721.sol

// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;

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

  // Token name
  string private _name;

  // Token symbol
  string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

  /**
   * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
   * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
   * by default, can be overridden 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
  {
    _setApprovalForAll(_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 ||
      isApprovedForAll(owner, spender) ||
      getApproved(tokenId) == 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);

    _afterTokenTransfer(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);

    _afterTokenTransfer(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 from incorrect owner"
    );
    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);

    _afterTokenTransfer(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 Approve `operator` to operate on all of `owner` tokens
   *
   * Emits a {ApprovalForAll} event.
   */
  function _setApprovalForAll(
    address owner,
    address operator,
    bool approved
  ) internal virtual {
    require(owner != operator, "ERC721: approve to caller");
    _operatorApprovals[owner][operator] = approved;
    emit ApprovalForAll(owner, operator, approved);
  }

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

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

  /**
   * @dev Hook that is called after any transfer of tokens. This includes
   * minting and burning.
   *
   * Calling conditions:
   *
   * - when `from` and `to` are both non-zero.
   * - `from` and `to` are never both zero.
   *
   * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
   */
  function _afterTokenTransfer(
    address from,
    address to,
    uint256 tokenId
  ) internal virtual {}
}

// File: contracts/Base64.sol

pragma solidity ^0.8.0;

/// @title Base64
/// @notice Provides a function for encoding some bytes in base64
/// @author Brecht Devos <[email protected]>
library Base64 {
  bytes internal constant TABLE =
    "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/";

  /// @notice Encodes some bytes to the base64 representation
  function encode(bytes memory data) internal pure returns (string memory) {
    uint256 len = data.length;
    if (len == 0) return "";

    // multiply by 4/3 rounded up
    uint256 encodedLen = 4 * ((len + 2) / 3);

    // Add some extra buffer at the end
    bytes memory result = new bytes(encodedLen + 32);

    bytes memory table = TABLE;

    assembly {
      let tablePtr := add(table, 1)
      let resultPtr := add(result, 32)

      for {
        let i := 0
      } lt(i, len) {

      } {
        i := add(i, 3)
        let input := and(mload(add(data, i)), 0xffffff)

        let out := mload(add(tablePtr, and(shr(18, input), 0x3F)))
        out := shl(8, out)
        out := add(
          out,
          and(mload(add(tablePtr, and(shr(12, input), 0x3F))), 0xFF)
        )
        out := shl(8, out)
        out := add(
          out,
          and(mload(add(tablePtr, and(shr(6, input), 0x3F))), 0xFF)
        )
        out := shl(8, out)
        out := add(out, and(mload(add(tablePtr, and(input, 0x3F))), 0xFF))
        out := shl(224, out)

        mstore(resultPtr, out)

        resultPtr := add(resultPtr, 4)
      }

      switch mod(len, 3)
      case 1 {
        mstore(sub(resultPtr, 2), shl(240, 0x3d3d))
      }
      case 2 {
        mstore(sub(resultPtr, 1), shl(248, 0x3d))
      }

      mstore(result, encodedLen)
    }

    return string(result);
  }
}

// File: contracts/Ownable.sol

pragma solidity ^0.8.0;

contract Ownable {
  address private _convenienceOwner;

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

  /// @notice returns the address of the current _convenienceOwner
  /// @dev not used for access control, used by services that require a single owner account
  /// @return _convenienceOwner address
  function owner() public view virtual returns (address) {
    return _convenienceOwner;
  }

  /// @notice Set the _convenienceOwner address
  /// @dev not used for access control, used by services that require a single owner account
  /// @param newOwner address of the new _convenienceOwner
  function _setOwnership(address newOwner) internal virtual {
    address oldOwner = _convenienceOwner;
    _convenienceOwner = newOwner;
    emit OwnershipSet(oldOwner, newOwner);
  }

  /// @notice This empty reserved space is put in place to allow future versions to add new
  /// variables without shifting down storage in the inheritance chain.
  /// See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps
  uint256[100] private __gap;
}

// File: contracts/Errors.sol

pragma solidity ^0.8.0;

error MaxSupplyReached();
error AlreadyMinted();
error ProofInvalidOrNotInAllowlist();
error CannotMintFromContract();

// File: contracts/Caldwell_Decal.sol

pragma solidity ^0.8.0;

/// @author @0x__jj, @llio (Deca)
contract Caldwell_Decal is ERC721, ReentrancyGuard, AccessControl, Ownable {
  using Address for address;
  using Strings for *;

  mapping(address => bool) public minted;

  uint256 public totalSupply = 0;

  uint256 public constant MAX_SUPPLY = 100;

  bytes32 public merkleRoot;

  string public baseUri;

  constructor(string memory _baseUri, address[] memory _admins)
    ERC721("Decal by Rich Caldwell", "DECAL")
  {
    _setOwnership(msg.sender);
    _grantRole(DEFAULT_ADMIN_ROLE, msg.sender);
    for (uint256 i = 0; i < _admins.length; i++) {
      _grantRole(DEFAULT_ADMIN_ROLE, _admins[i]);
    }
    baseUri = _baseUri;
  }

  function setMerkleRoot(bytes32 _merkleRoot)
    external
    onlyRole(DEFAULT_ADMIN_ROLE)
  {
    merkleRoot = _merkleRoot;
  }

  function setOwnership(address _newOwner)
    external
    onlyRole(DEFAULT_ADMIN_ROLE)
  {
    _setOwnership(_newOwner);
  }

  function setBaseUri(string memory _newBaseUri)
    external
    onlyRole(DEFAULT_ADMIN_ROLE)
  {
    baseUri = _newBaseUri;
  }

  function mint(bytes32[] calldata _merkleProof)
    external
    nonReentrant
    returns (uint256)
  {
    if (totalSupply >= MAX_SUPPLY) revert MaxSupplyReached();
    if (minted[msg.sender]) revert AlreadyMinted();
    if (msg.sender.isContract()) revert CannotMintFromContract();
    bytes32 leaf = keccak256(abi.encodePacked(msg.sender));
    if (!MerkleProof.verify(_merkleProof, merkleRoot, leaf))
      revert ProofInvalidOrNotInAllowlist();

    uint256 tokenId = totalSupply;
    totalSupply++;
    minted[msg.sender] = true;
    _safeMint(msg.sender, tokenId);
    return tokenId;
  }

  function tokenURI(uint256 _tokenId)
    public
    view
    override(ERC721)
    returns (string memory)
  {
    require(_exists(_tokenId), "DECAL: URI query for nonexistent token");
    string memory baseURI = _baseURI();
    require(bytes(baseURI).length > 0, "baseURI not set");
    return string(abi.encodePacked(baseURI, _tokenId.toString()));
  }

  function getTokensOfOwner(address _owner)
    public
    view
    returns (uint256[] memory)
  {
    uint256 tokenCount = balanceOf(_owner);
    uint256[] memory tokenIds = new uint256[](tokenCount);
    uint256 seen = 0;
    for (uint256 i; i < totalSupply; i++) {
      if (ownerOf(i) == _owner) {
        tokenIds[seen] = i;
        seen++;
      }
      if (seen == tokenCount) break;
    }
    return tokenIds;
  }

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

  function _baseURI() internal view override(ERC721) returns (string memory) {
    return baseUri;
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_baseUri","type":"string"},{"internalType":"address[]","name":"_admins","type":"address[]"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AlreadyMinted","type":"error"},{"inputs":[],"name":"CannotMintFromContract","type":"error"},{"inputs":[],"name":"MaxSupplyReached","type":"error"},{"inputs":[],"name":"ProofInvalidOrNotInAllowlist","type":"error"},{"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":"OwnershipSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseUri","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":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"getTokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"mint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"minted","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":[{"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":"string","name":"_newBaseUri","type":"string"}],"name":"setBaseUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newOwner","type":"address"}],"name":"setOwnership","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":"_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"}]

60806040526000606e553480156200001657600080fd5b50604051620048e4380380620048e483398181016040528101906200003c9190620005ab565b6040518060400160405280601681526020017f446563616c20627920526963682043616c6477656c6c000000000000000000008152506040518060400160405280600581526020017f444543414c0000000000000000000000000000000000000000000000000000008152508160009080519060200190620000c0929190620003d0565b508060019080519060200190620000d9929190620003d0565b5050506001600681905550620000f533620001a560201b60201c565b6200010a6000801b336200026b60201b60201c565b60005b815181101562000183576200016d6000801b83838151811062000159577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516200026b60201b60201c565b80806200017a906200078c565b9150506200010d565b5081607090805190602001906200019c929190620003d0565b50505062000892565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167ff6a7092513e1f3f720c1d0ad65eb323494afe10d43e19dc4a40bac61ade7579160405160405180910390a35050565b6200027d82826200035d60201b60201c565b620003595760016007600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620002fe620003c860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b60006007600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600033905090565b828054620003de9062000720565b90600052602060002090601f0160209004810192826200040257600085556200044e565b82601f106200041d57805160ff19168380011785556200044e565b828001600101855582156200044e579182015b828111156200044d57825182559160200191906001019062000430565b5b5090506200045d919062000461565b5090565b5b808211156200047c57600081600090555060010162000462565b5090565b600062000497620004918462000647565b6200061e565b90508083825260208201905082856020860282011115620004b757600080fd5b60005b85811015620004eb5781620004d088826200053a565b845260208401935060208301925050600181019050620004ba565b5050509392505050565b60006200050c620005068462000676565b6200061e565b9050828152602081018484840111156200052557600080fd5b62000532848285620006ea565b509392505050565b6000815190506200054b8162000878565b92915050565b600082601f8301126200056357600080fd5b81516200057584826020860162000480565b91505092915050565b600082601f8301126200059057600080fd5b8151620005a2848260208601620004f5565b91505092915050565b60008060408385031215620005bf57600080fd5b600083015167ffffffffffffffff811115620005da57600080fd5b620005e8858286016200057e565b925050602083015167ffffffffffffffff8111156200060657600080fd5b620006148582860162000551565b9150509250929050565b60006200062a6200063d565b905062000638828262000756565b919050565b6000604051905090565b600067ffffffffffffffff82111562000665576200066462000838565b5b602082029050602081019050919050565b600067ffffffffffffffff82111562000694576200069362000838565b5b6200069f8262000867565b9050602081019050919050565b6000620006b982620006c0565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b838110156200070a578082015181840152602081019050620006ed565b838111156200071a576000848401525b50505050565b600060028204905060018216806200073957607f821691505b6020821081141562000750576200074f62000809565b5b50919050565b620007618262000867565b810181811067ffffffffffffffff8211171562000783576200078262000838565b5b80604052505050565b60006200079982620006e0565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415620007cf57620007ce620007da565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b6200088381620006ac565b81146200088f57600080fd5b50565b61404280620008a26000396000f3fe608060405234801561001057600080fd5b50600436106101da5760003560e01c806370a0823111610104578063a217fddf116100a2578063b88d4fde11610071578063b88d4fde1461057b578063c87b56dd14610597578063d547741f146105c7578063e985e9c5146105e3576101da565b8063a217fddf146104f5578063a22cb46514610513578063a70160231461052f578063b77a147b1461054b576101da565b806391d14854116100de57806391d148541461046d57806395d89b411461049d5780639abc8320146104bb578063a0bcfc7f146104d9576101da565b806370a08231146104035780637cb64759146104335780638da5cb5b1461044f576101da565b8063248a9ca31161017c57806336568abe1161014b57806336568abe1461036b57806342842e0e146103875780635de6dc55146103a35780636352211e146103d3576101da565b8063248a9ca3146102e35780632eb4a7ab146103135780632f2ff15d1461033157806332cb6b0c1461034d576101da565b8063095ea7b3116101b8578063095ea7b31461025d57806318160ddd146102795780631e7269c51461029757806323b872dd146102c7576101da565b806301ffc9a7146101df57806306fdde031461020f578063081812fc1461022d575b600080fd5b6101f960048036038101906101f49190612d18565b610613565b604051610206919061330d565b60405180910390f35b610217610625565b6040516102249190613343565b60405180910390f35b61024760048036038101906102429190612dab565b6106b7565b6040516102549190613284565b60405180910390f35b61027760048036038101906102729190612c32565b61073c565b005b610281610854565b60405161028e91906135a5565b60405180910390f35b6102b160048036038101906102ac9190612ac7565b61085a565b6040516102be919061330d565b60405180910390f35b6102e160048036038101906102dc9190612b2c565b61087a565b005b6102fd60048036038101906102f89190612cb3565b6108da565b60405161030a9190613328565b60405180910390f35b61031b6108fa565b6040516103289190613328565b60405180910390f35b61034b60048036038101906103469190612cdc565b610900565b005b610355610921565b60405161036291906135a5565b60405180910390f35b61038560048036038101906103809190612cdc565b610926565b005b6103a1600480360381019061039c9190612b2c565b6109a9565b005b6103bd60048036038101906103b89190612ac7565b6109c9565b6040516103ca91906132eb565b60405180910390f35b6103ed60048036038101906103e89190612dab565b610b16565b6040516103fa9190613284565b60405180910390f35b61041d60048036038101906104189190612ac7565b610bc8565b60405161042a91906135a5565b60405180910390f35b61044d60048036038101906104489190612cb3565b610c80565b005b610457610c98565b6040516104649190613284565b60405180910390f35b61048760048036038101906104829190612cdc565b610cc2565b604051610494919061330d565b60405180910390f35b6104a5610d2d565b6040516104b29190613343565b60405180910390f35b6104c3610dbf565b6040516104d09190613343565b60405180910390f35b6104f360048036038101906104ee9190612d6a565b610e4d565b005b6104fd610e75565b60405161050a9190613328565b60405180910390f35b61052d60048036038101906105289190612bf6565b610e7c565b005b61054960048036038101906105449190612ac7565b610e92565b005b61056560048036038101906105609190612c6e565b610eac565b60405161057291906135a5565b60405180910390f35b61059560048036038101906105909190612b7b565b611155565b005b6105b160048036038101906105ac9190612dab565b6111b7565b6040516105be9190613343565b60405180910390f35b6105e160048036038101906105dc9190612cdc565b611283565b005b6105fd60048036038101906105f89190612af0565b6112a4565b60405161060a919061330d565b60405180910390f35b600061061e82611338565b9050919050565b606060008054610634906138c2565b80601f0160208091040260200160405190810160405280929190818152602001828054610660906138c2565b80156106ad5780601f10610682576101008083540402835291602001916106ad565b820191906000526020600020905b81548152906001019060200180831161069057829003601f168201915b5050505050905090565b60006106c2826113b2565b610701576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106f8906134c5565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061074782610b16565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156107b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107af90613505565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166107d761141e565b73ffffffffffffffffffffffffffffffffffffffff16148061080657506108058161080061141e565b6112a4565b5b610845576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083c90613445565b60405180910390fd5b61084f8383611426565b505050565b606e5481565b606d6020528060005260406000206000915054906101000a900460ff1681565b61088b61088561141e565b826114df565b6108ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108c190613525565b60405180910390fd5b6108d58383836115bd565b505050565b600060076000838152602001908152602001600020600101549050919050565b606f5481565b610909826108da565b61091281611824565b61091c8383611838565b505050565b606481565b61092e61141e565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461099b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099290613585565b60405180910390fd5b6109a58282611919565b5050565b6109c483838360405180602001604052806000815250611155565b505050565b606060006109d683610bc8565b905060008167ffffffffffffffff811115610a1a577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015610a485781602001602082028036833780820191505090505b5090506000805b606e54811015610b0a578573ffffffffffffffffffffffffffffffffffffffff16610a7982610b16565b73ffffffffffffffffffffffffffffffffffffffff161415610aea5780838381518110610acf577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250508180610ae690613925565b9250505b83821415610af757610b0a565b8080610b0290613925565b915050610a4f565b50819350505050919050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610bbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb690613485565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3090613465565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000801b610c8d81611824565b81606f819055505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60006007600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b606060018054610d3c906138c2565b80601f0160208091040260200160405190810160405280929190818152602001828054610d68906138c2565b8015610db55780601f10610d8a57610100808354040283529160200191610db5565b820191906000526020600020905b815481529060010190602001808311610d9857829003601f168201915b5050505050905090565b60708054610dcc906138c2565b80601f0160208091040260200160405190810160405280929190818152602001828054610df8906138c2565b8015610e455780601f10610e1a57610100808354040283529160200191610e45565b820191906000526020600020905b815481529060010190602001808311610e2857829003601f168201915b505050505081565b6000801b610e5a81611824565b8160709080519060200190610e7092919061288c565b505050565b6000801b81565b610e8e610e8761141e565b83836119fb565b5050565b6000801b610e9f81611824565b610ea882611b68565b5050565b600060026006541415610ef4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eeb90613565565b60405180910390fd5b60026006819055506064606e5410610f38576040517fd05cb60900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b606d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610fbc576040517fddefae2800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610fdb3373ffffffffffffffffffffffffffffffffffffffff16611c2e565b15611012576040517f2dd5679600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600033604051602001611025919061320b565b60405160208183030381529060405280519060200120905061108b848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050606f5483611c51565b6110c1576040517f0ed6f64500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000606e549050606e60008154809291906110db90613925565b91905055506001606d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506111423382611c68565b8092505050600160068190555092915050565b61116661116061141e565b836114df565b6111a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119c90613525565b60405180910390fd5b6111b184848484611c86565b50505050565b60606111c2826113b2565b611201576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f890613545565b60405180910390fd5b600061120b611ce2565b90506000815111611251576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611248906134e5565b60405180910390fd5b8061125b84611d74565b60405160200161126c929190613226565b604051602081830303815290604052915050919050565b61128c826108da565b61129581611824565b61129f8383611919565b505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806113ab57506113aa82611f21565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661149983610b16565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006114ea826113b2565b611529576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152090613425565b60405180910390fd5b600061153483610b16565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611576575061157581856112a4565b5b806115b457508373ffffffffffffffffffffffffffffffffffffffff1661159c846106b7565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166115dd82610b16565b73ffffffffffffffffffffffffffffffffffffffff1614611633576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162a906133a5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169a906133e5565b60405180910390fd5b6116ae838383612003565b6116b9600082611426565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461170991906137a4565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461176091906136c3565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461181f838383612008565b505050565b6118358161183061141e565b61200d565b50565b6118428282610cc2565b6119155760016007600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506118ba61141e565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6119238282610cc2565b156119f75760006007600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061199c61141e565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611a6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6190613405565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b5b919061330d565b60405180910390a3505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167ff6a7092513e1f3f720c1d0ad65eb323494afe10d43e19dc4a40bac61ade7579160405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600082611c5e85846120aa565b1490509392505050565b611c82828260405180602001604052806000815250612145565b5050565b611c918484846115bd565b611c9d848484846121a0565b611cdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd390613385565b60405180910390fd5b50505050565b606060708054611cf1906138c2565b80601f0160208091040260200160405190810160405280929190818152602001828054611d1d906138c2565b8015611d6a5780601f10611d3f57610100808354040283529160200191611d6a565b820191906000526020600020905b815481529060010190602001808311611d4d57829003601f168201915b5050505050905090565b60606000821415611dbc576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611f1c565b600082905060005b60008214611dee578080611dd790613925565b915050600a82611de79190613719565b9150611dc4565b60008167ffffffffffffffff811115611e30577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611e625781602001600182028036833780820191505090505b5090505b60008514611f1557600182611e7b91906137a4565b9150600a85611e8a9190613992565b6030611e9691906136c3565b60f81b818381518110611ed2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611f0e9190613719565b9450611e66565b8093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611fec57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611ffc5750611ffb82612337565b5b9050919050565b505050565b505050565b6120178282610cc2565b6120a65761203c8173ffffffffffffffffffffffffffffffffffffffff1660146123a1565b61204a8360001c60206123a1565b60405160200161205b92919061324a565b6040516020818303038152906040526040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209d9190613343565b60405180910390fd5b5050565b60008082905060005b845181101561213a5760008582815181106120f7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151905080831161211957612112838261269b565b9250612126565b612123818461269b565b92505b50808061213290613925565b9150506120b3565b508091505092915050565b61214f83836126b2565b61215c60008484846121a0565b61219b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219290613385565b60405180910390fd5b505050565b60006121c18473ffffffffffffffffffffffffffffffffffffffff16611c2e565b1561232a578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026121ea61141e565b8786866040518563ffffffff1660e01b815260040161220c949392919061329f565b602060405180830381600087803b15801561222657600080fd5b505af192505050801561225757506040513d601f19601f820116820180604052508101906122549190612d41565b60015b6122da573d8060008114612287576040519150601f19603f3d011682016040523d82523d6000602084013e61228c565b606091505b506000815114156122d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122c990613385565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061232f565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6060600060028360026123b4919061374a565b6123be91906136c3565b67ffffffffffffffff8111156123fd577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561242f5781602001600182028036833780820191505090505b5090507f30000000000000000000000000000000000000000000000000000000000000008160008151811061248d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110612517577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060006001846002612557919061374a565b61256191906136c3565b90505b600181111561264d577f3031323334353637383961626364656600000000000000000000000000000000600f8616601081106125c9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b1a60f81b828281518110612606577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c94508061264690613898565b9050612564565b5060008414612691576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268890613365565b60405180910390fd5b8091505092915050565b600082600052816020526040600020905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612722576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612719906134a5565b60405180910390fd5b61272b816113b2565b1561276b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612762906133c5565b60405180910390fd5b61277760008383612003565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546127c791906136c3565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461288860008383612008565b5050565b828054612898906138c2565b90600052602060002090601f0160209004810192826128ba5760008555612901565b82601f106128d357805160ff1916838001178555612901565b82800160010185558215612901579182015b828111156129005782518255916020019190600101906128e5565b5b50905061290e9190612912565b5090565b5b8082111561292b576000816000905550600101612913565b5090565b600061294261293d846135e5565b6135c0565b90508281526020810184848401111561295a57600080fd5b612965848285613856565b509392505050565b600061298061297b84613616565b6135c0565b90508281526020810184848401111561299857600080fd5b6129a3848285613856565b509392505050565b6000813590506129ba81613f99565b92915050565b60008083601f8401126129d257600080fd5b8235905067ffffffffffffffff8111156129eb57600080fd5b602083019150836020820283011115612a0357600080fd5b9250929050565b600081359050612a1981613fb0565b92915050565b600081359050612a2e81613fc7565b92915050565b600081359050612a4381613fde565b92915050565b600081519050612a5881613fde565b92915050565b600082601f830112612a6f57600080fd5b8135612a7f84826020860161292f565b91505092915050565b600082601f830112612a9957600080fd5b8135612aa984826020860161296d565b91505092915050565b600081359050612ac181613ff5565b92915050565b600060208284031215612ad957600080fd5b6000612ae7848285016129ab565b91505092915050565b60008060408385031215612b0357600080fd5b6000612b11858286016129ab565b9250506020612b22858286016129ab565b9150509250929050565b600080600060608486031215612b4157600080fd5b6000612b4f868287016129ab565b9350506020612b60868287016129ab565b9250506040612b7186828701612ab2565b9150509250925092565b60008060008060808587031215612b9157600080fd5b6000612b9f878288016129ab565b9450506020612bb0878288016129ab565b9350506040612bc187828801612ab2565b925050606085013567ffffffffffffffff811115612bde57600080fd5b612bea87828801612a5e565b91505092959194509250565b60008060408385031215612c0957600080fd5b6000612c17858286016129ab565b9250506020612c2885828601612a0a565b9150509250929050565b60008060408385031215612c4557600080fd5b6000612c53858286016129ab565b9250506020612c6485828601612ab2565b9150509250929050565b60008060208385031215612c8157600080fd5b600083013567ffffffffffffffff811115612c9b57600080fd5b612ca7858286016129c0565b92509250509250929050565b600060208284031215612cc557600080fd5b6000612cd384828501612a1f565b91505092915050565b60008060408385031215612cef57600080fd5b6000612cfd85828601612a1f565b9250506020612d0e858286016129ab565b9150509250929050565b600060208284031215612d2a57600080fd5b6000612d3884828501612a34565b91505092915050565b600060208284031215612d5357600080fd5b6000612d6184828501612a49565b91505092915050565b600060208284031215612d7c57600080fd5b600082013567ffffffffffffffff811115612d9657600080fd5b612da284828501612a88565b91505092915050565b600060208284031215612dbd57600080fd5b6000612dcb84828501612ab2565b91505092915050565b6000612de083836131ed565b60208301905092915050565b612df5816137d8565b82525050565b612e0c612e07826137d8565b61396e565b82525050565b6000612e1d82613657565b612e278185613685565b9350612e3283613647565b8060005b83811015612e63578151612e4a8882612dd4565b9750612e5583613678565b925050600181019050612e36565b5085935050505092915050565b612e79816137ea565b82525050565b612e88816137f6565b82525050565b6000612e9982613662565b612ea38185613696565b9350612eb3818560208601613865565b612ebc81613a7f565b840191505092915050565b6000612ed28261366d565b612edc81856136a7565b9350612eec818560208601613865565b612ef581613a7f565b840191505092915050565b6000612f0b8261366d565b612f1581856136b8565b9350612f25818560208601613865565b80840191505092915050565b6000612f3e6020836136a7565b9150612f4982613a9d565b602082019050919050565b6000612f616032836136a7565b9150612f6c82613ac6565b604082019050919050565b6000612f846025836136a7565b9150612f8f82613b15565b604082019050919050565b6000612fa7601c836136a7565b9150612fb282613b64565b602082019050919050565b6000612fca6024836136a7565b9150612fd582613b8d565b604082019050919050565b6000612fed6019836136a7565b9150612ff882613bdc565b602082019050919050565b6000613010602c836136a7565b915061301b82613c05565b604082019050919050565b60006130336038836136a7565b915061303e82613c54565b604082019050919050565b6000613056602a836136a7565b915061306182613ca3565b604082019050919050565b60006130796029836136a7565b915061308482613cf2565b604082019050919050565b600061309c6020836136a7565b91506130a782613d41565b602082019050919050565b60006130bf602c836136a7565b91506130ca82613d6a565b604082019050919050565b60006130e2600f836136a7565b91506130ed82613db9565b602082019050919050565b60006131056021836136a7565b915061311082613de2565b604082019050919050565b60006131286031836136a7565b915061313382613e31565b604082019050919050565b600061314b6017836136b8565b915061315682613e80565b601782019050919050565b600061316e6026836136a7565b915061317982613ea9565b604082019050919050565b6000613191601f836136a7565b915061319c82613ef8565b602082019050919050565b60006131b46011836136b8565b91506131bf82613f21565b601182019050919050565b60006131d7602f836136a7565b91506131e282613f4a565b604082019050919050565b6131f68161384c565b82525050565b6132058161384c565b82525050565b60006132178284612dfb565b60148201915081905092915050565b60006132328285612f00565b915061323e8284612f00565b91508190509392505050565b60006132558261313e565b91506132618285612f00565b915061326c826131a7565b91506132788284612f00565b91508190509392505050565b60006020820190506132996000830184612dec565b92915050565b60006080820190506132b46000830187612dec565b6132c16020830186612dec565b6132ce60408301856131fc565b81810360608301526132e08184612e8e565b905095945050505050565b600060208201905081810360008301526133058184612e12565b905092915050565b60006020820190506133226000830184612e70565b92915050565b600060208201905061333d6000830184612e7f565b92915050565b6000602082019050818103600083015261335d8184612ec7565b905092915050565b6000602082019050818103600083015261337e81612f31565b9050919050565b6000602082019050818103600083015261339e81612f54565b9050919050565b600060208201905081810360008301526133be81612f77565b9050919050565b600060208201905081810360008301526133de81612f9a565b9050919050565b600060208201905081810360008301526133fe81612fbd565b9050919050565b6000602082019050818103600083015261341e81612fe0565b9050919050565b6000602082019050818103600083015261343e81613003565b9050919050565b6000602082019050818103600083015261345e81613026565b9050919050565b6000602082019050818103600083015261347e81613049565b9050919050565b6000602082019050818103600083015261349e8161306c565b9050919050565b600060208201905081810360008301526134be8161308f565b9050919050565b600060208201905081810360008301526134de816130b2565b9050919050565b600060208201905081810360008301526134fe816130d5565b9050919050565b6000602082019050818103600083015261351e816130f8565b9050919050565b6000602082019050818103600083015261353e8161311b565b9050919050565b6000602082019050818103600083015261355e81613161565b9050919050565b6000602082019050818103600083015261357e81613184565b9050919050565b6000602082019050818103600083015261359e816131ca565b9050919050565b60006020820190506135ba60008301846131fc565b92915050565b60006135ca6135db565b90506135d682826138f4565b919050565b6000604051905090565b600067ffffffffffffffff821115613600576135ff613a50565b5b61360982613a7f565b9050602081019050919050565b600067ffffffffffffffff82111561363157613630613a50565b5b61363a82613a7f565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006136ce8261384c565b91506136d98361384c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561370e5761370d6139c3565b5b828201905092915050565b60006137248261384c565b915061372f8361384c565b92508261373f5761373e6139f2565b5b828204905092915050565b60006137558261384c565b91506137608361384c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613799576137986139c3565b5b828202905092915050565b60006137af8261384c565b91506137ba8361384c565b9250828210156137cd576137cc6139c3565b5b828203905092915050565b60006137e38261382c565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613883578082015181840152602081019050613868565b83811115613892576000848401525b50505050565b60006138a38261384c565b915060008214156138b7576138b66139c3565b5b600182039050919050565b600060028204905060018216806138da57607f821691505b602082108114156138ee576138ed613a21565b5b50919050565b6138fd82613a7f565b810181811067ffffffffffffffff8211171561391c5761391b613a50565b5b80604052505050565b60006139308261384c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613963576139626139c3565b5b600182019050919050565b600061397982613980565b9050919050565b600061398b82613a90565b9050919050565b600061399d8261384c565b91506139a88361384c565b9250826139b8576139b76139f2565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f62617365555249206e6f74207365740000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b7f444543414c3a2055524920717565727920666f72206e6f6e6578697374656e7460008201527f20746f6b656e0000000000000000000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b613fa2816137d8565b8114613fad57600080fd5b50565b613fb9816137ea565b8114613fc457600080fd5b50565b613fd0816137f6565b8114613fdb57600080fd5b50565b613fe781613800565b8114613ff257600080fd5b50565b613ffe8161384c565b811461400957600080fd5b5056fea26469706673582212207086ace3ddc4675ddbe9a6334e4066f720d3223485284d76a1532b9fececc0b964736f6c63430008040033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000003168747470733a2f2f636c69656e742d6170692e646563612e73797374656d732f646563616c2f6d657461646174612f342f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000d523545b49076807094c0718f5eba00c0ae72fd6

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101da5760003560e01c806370a0823111610104578063a217fddf116100a2578063b88d4fde11610071578063b88d4fde1461057b578063c87b56dd14610597578063d547741f146105c7578063e985e9c5146105e3576101da565b8063a217fddf146104f5578063a22cb46514610513578063a70160231461052f578063b77a147b1461054b576101da565b806391d14854116100de57806391d148541461046d57806395d89b411461049d5780639abc8320146104bb578063a0bcfc7f146104d9576101da565b806370a08231146104035780637cb64759146104335780638da5cb5b1461044f576101da565b8063248a9ca31161017c57806336568abe1161014b57806336568abe1461036b57806342842e0e146103875780635de6dc55146103a35780636352211e146103d3576101da565b8063248a9ca3146102e35780632eb4a7ab146103135780632f2ff15d1461033157806332cb6b0c1461034d576101da565b8063095ea7b3116101b8578063095ea7b31461025d57806318160ddd146102795780631e7269c51461029757806323b872dd146102c7576101da565b806301ffc9a7146101df57806306fdde031461020f578063081812fc1461022d575b600080fd5b6101f960048036038101906101f49190612d18565b610613565b604051610206919061330d565b60405180910390f35b610217610625565b6040516102249190613343565b60405180910390f35b61024760048036038101906102429190612dab565b6106b7565b6040516102549190613284565b60405180910390f35b61027760048036038101906102729190612c32565b61073c565b005b610281610854565b60405161028e91906135a5565b60405180910390f35b6102b160048036038101906102ac9190612ac7565b61085a565b6040516102be919061330d565b60405180910390f35b6102e160048036038101906102dc9190612b2c565b61087a565b005b6102fd60048036038101906102f89190612cb3565b6108da565b60405161030a9190613328565b60405180910390f35b61031b6108fa565b6040516103289190613328565b60405180910390f35b61034b60048036038101906103469190612cdc565b610900565b005b610355610921565b60405161036291906135a5565b60405180910390f35b61038560048036038101906103809190612cdc565b610926565b005b6103a1600480360381019061039c9190612b2c565b6109a9565b005b6103bd60048036038101906103b89190612ac7565b6109c9565b6040516103ca91906132eb565b60405180910390f35b6103ed60048036038101906103e89190612dab565b610b16565b6040516103fa9190613284565b60405180910390f35b61041d60048036038101906104189190612ac7565b610bc8565b60405161042a91906135a5565b60405180910390f35b61044d60048036038101906104489190612cb3565b610c80565b005b610457610c98565b6040516104649190613284565b60405180910390f35b61048760048036038101906104829190612cdc565b610cc2565b604051610494919061330d565b60405180910390f35b6104a5610d2d565b6040516104b29190613343565b60405180910390f35b6104c3610dbf565b6040516104d09190613343565b60405180910390f35b6104f360048036038101906104ee9190612d6a565b610e4d565b005b6104fd610e75565b60405161050a9190613328565b60405180910390f35b61052d60048036038101906105289190612bf6565b610e7c565b005b61054960048036038101906105449190612ac7565b610e92565b005b61056560048036038101906105609190612c6e565b610eac565b60405161057291906135a5565b60405180910390f35b61059560048036038101906105909190612b7b565b611155565b005b6105b160048036038101906105ac9190612dab565b6111b7565b6040516105be9190613343565b60405180910390f35b6105e160048036038101906105dc9190612cdc565b611283565b005b6105fd60048036038101906105f89190612af0565b6112a4565b60405161060a919061330d565b60405180910390f35b600061061e82611338565b9050919050565b606060008054610634906138c2565b80601f0160208091040260200160405190810160405280929190818152602001828054610660906138c2565b80156106ad5780601f10610682576101008083540402835291602001916106ad565b820191906000526020600020905b81548152906001019060200180831161069057829003601f168201915b5050505050905090565b60006106c2826113b2565b610701576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106f8906134c5565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061074782610b16565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156107b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107af90613505565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166107d761141e565b73ffffffffffffffffffffffffffffffffffffffff16148061080657506108058161080061141e565b6112a4565b5b610845576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083c90613445565b60405180910390fd5b61084f8383611426565b505050565b606e5481565b606d6020528060005260406000206000915054906101000a900460ff1681565b61088b61088561141e565b826114df565b6108ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108c190613525565b60405180910390fd5b6108d58383836115bd565b505050565b600060076000838152602001908152602001600020600101549050919050565b606f5481565b610909826108da565b61091281611824565b61091c8383611838565b505050565b606481565b61092e61141e565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161461099b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161099290613585565b60405180910390fd5b6109a58282611919565b5050565b6109c483838360405180602001604052806000815250611155565b505050565b606060006109d683610bc8565b905060008167ffffffffffffffff811115610a1a577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015610a485781602001602082028036833780820191505090505b5090506000805b606e54811015610b0a578573ffffffffffffffffffffffffffffffffffffffff16610a7982610b16565b73ffffffffffffffffffffffffffffffffffffffff161415610aea5780838381518110610acf577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250508180610ae690613925565b9250505b83821415610af757610b0a565b8080610b0290613925565b915050610a4f565b50819350505050919050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610bbf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb690613485565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610c39576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c3090613465565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000801b610c8d81611824565b81606f819055505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60006007600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b606060018054610d3c906138c2565b80601f0160208091040260200160405190810160405280929190818152602001828054610d68906138c2565b8015610db55780601f10610d8a57610100808354040283529160200191610db5565b820191906000526020600020905b815481529060010190602001808311610d9857829003601f168201915b5050505050905090565b60708054610dcc906138c2565b80601f0160208091040260200160405190810160405280929190818152602001828054610df8906138c2565b8015610e455780601f10610e1a57610100808354040283529160200191610e45565b820191906000526020600020905b815481529060010190602001808311610e2857829003601f168201915b505050505081565b6000801b610e5a81611824565b8160709080519060200190610e7092919061288c565b505050565b6000801b81565b610e8e610e8761141e565b83836119fb565b5050565b6000801b610e9f81611824565b610ea882611b68565b5050565b600060026006541415610ef4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eeb90613565565b60405180910390fd5b60026006819055506064606e5410610f38576040517fd05cb60900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b606d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610fbc576040517fddefae2800000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610fdb3373ffffffffffffffffffffffffffffffffffffffff16611c2e565b15611012576040517f2dd5679600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600033604051602001611025919061320b565b60405160208183030381529060405280519060200120905061108b848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050606f5483611c51565b6110c1576040517f0ed6f64500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000606e549050606e60008154809291906110db90613925565b91905055506001606d60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506111423382611c68565b8092505050600160068190555092915050565b61116661116061141e565b836114df565b6111a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161119c90613525565b60405180910390fd5b6111b184848484611c86565b50505050565b60606111c2826113b2565b611201576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f890613545565b60405180910390fd5b600061120b611ce2565b90506000815111611251576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611248906134e5565b60405180910390fd5b8061125b84611d74565b60405160200161126c929190613226565b604051602081830303815290604052915050919050565b61128c826108da565b61129581611824565b61129f8383611919565b505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806113ab57506113aa82611f21565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff1661149983610b16565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006114ea826113b2565b611529576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161152090613425565b60405180910390fd5b600061153483610b16565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480611576575061157581856112a4565b5b806115b457508373ffffffffffffffffffffffffffffffffffffffff1661159c846106b7565b73ffffffffffffffffffffffffffffffffffffffff16145b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166115dd82610b16565b73ffffffffffffffffffffffffffffffffffffffff1614611633576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162a906133a5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156116a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169a906133e5565b60405180910390fd5b6116ae838383612003565b6116b9600082611426565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461170991906137a4565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461176091906136c3565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461181f838383612008565b505050565b6118358161183061141e565b61200d565b50565b6118428282610cc2565b6119155760016007600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506118ba61141e565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6119238282610cc2565b156119f75760006007600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061199c61141e565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611a6a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a6190613405565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b5b919061330d565b60405180910390a3505050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167ff6a7092513e1f3f720c1d0ad65eb323494afe10d43e19dc4a40bac61ade7579160405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b600082611c5e85846120aa565b1490509392505050565b611c82828260405180602001604052806000815250612145565b5050565b611c918484846115bd565b611c9d848484846121a0565b611cdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd390613385565b60405180910390fd5b50505050565b606060708054611cf1906138c2565b80601f0160208091040260200160405190810160405280929190818152602001828054611d1d906138c2565b8015611d6a5780601f10611d3f57610100808354040283529160200191611d6a565b820191906000526020600020905b815481529060010190602001808311611d4d57829003601f168201915b5050505050905090565b60606000821415611dbc576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611f1c565b600082905060005b60008214611dee578080611dd790613925565b915050600a82611de79190613719565b9150611dc4565b60008167ffffffffffffffff811115611e30577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015611e625781602001600182028036833780820191505090505b5090505b60008514611f1557600182611e7b91906137a4565b9150600a85611e8a9190613992565b6030611e9691906136c3565b60f81b818381518110611ed2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611f0e9190613719565b9450611e66565b8093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611fec57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611ffc5750611ffb82612337565b5b9050919050565b505050565b505050565b6120178282610cc2565b6120a65761203c8173ffffffffffffffffffffffffffffffffffffffff1660146123a1565b61204a8360001c60206123a1565b60405160200161205b92919061324a565b6040516020818303038152906040526040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209d9190613343565b60405180910390fd5b5050565b60008082905060005b845181101561213a5760008582815181106120f7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151905080831161211957612112838261269b565b9250612126565b612123818461269b565b92505b50808061213290613925565b9150506120b3565b508091505092915050565b61214f83836126b2565b61215c60008484846121a0565b61219b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219290613385565b60405180910390fd5b505050565b60006121c18473ffffffffffffffffffffffffffffffffffffffff16611c2e565b1561232a578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026121ea61141e565b8786866040518563ffffffff1660e01b815260040161220c949392919061329f565b602060405180830381600087803b15801561222657600080fd5b505af192505050801561225757506040513d601f19601f820116820180604052508101906122549190612d41565b60015b6122da573d8060008114612287576040519150601f19603f3d011682016040523d82523d6000602084013e61228c565b606091505b506000815114156122d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122c990613385565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061232f565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6060600060028360026123b4919061374a565b6123be91906136c3565b67ffffffffffffffff8111156123fd577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561242f5781602001600182028036833780820191505090505b5090507f30000000000000000000000000000000000000000000000000000000000000008160008151811061248d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110612517577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a90535060006001846002612557919061374a565b61256191906136c3565b90505b600181111561264d577f3031323334353637383961626364656600000000000000000000000000000000600f8616601081106125c9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b1a60f81b828281518110612606577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c94508061264690613898565b9050612564565b5060008414612691576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161268890613365565b60405180910390fd5b8091505092915050565b600082600052816020526040600020905092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612722576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612719906134a5565b60405180910390fd5b61272b816113b2565b1561276b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612762906133c5565b60405180910390fd5b61277760008383612003565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546127c791906136c3565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a461288860008383612008565b5050565b828054612898906138c2565b90600052602060002090601f0160209004810192826128ba5760008555612901565b82601f106128d357805160ff1916838001178555612901565b82800160010185558215612901579182015b828111156129005782518255916020019190600101906128e5565b5b50905061290e9190612912565b5090565b5b8082111561292b576000816000905550600101612913565b5090565b600061294261293d846135e5565b6135c0565b90508281526020810184848401111561295a57600080fd5b612965848285613856565b509392505050565b600061298061297b84613616565b6135c0565b90508281526020810184848401111561299857600080fd5b6129a3848285613856565b509392505050565b6000813590506129ba81613f99565b92915050565b60008083601f8401126129d257600080fd5b8235905067ffffffffffffffff8111156129eb57600080fd5b602083019150836020820283011115612a0357600080fd5b9250929050565b600081359050612a1981613fb0565b92915050565b600081359050612a2e81613fc7565b92915050565b600081359050612a4381613fde565b92915050565b600081519050612a5881613fde565b92915050565b600082601f830112612a6f57600080fd5b8135612a7f84826020860161292f565b91505092915050565b600082601f830112612a9957600080fd5b8135612aa984826020860161296d565b91505092915050565b600081359050612ac181613ff5565b92915050565b600060208284031215612ad957600080fd5b6000612ae7848285016129ab565b91505092915050565b60008060408385031215612b0357600080fd5b6000612b11858286016129ab565b9250506020612b22858286016129ab565b9150509250929050565b600080600060608486031215612b4157600080fd5b6000612b4f868287016129ab565b9350506020612b60868287016129ab565b9250506040612b7186828701612ab2565b9150509250925092565b60008060008060808587031215612b9157600080fd5b6000612b9f878288016129ab565b9450506020612bb0878288016129ab565b9350506040612bc187828801612ab2565b925050606085013567ffffffffffffffff811115612bde57600080fd5b612bea87828801612a5e565b91505092959194509250565b60008060408385031215612c0957600080fd5b6000612c17858286016129ab565b9250506020612c2885828601612a0a565b9150509250929050565b60008060408385031215612c4557600080fd5b6000612c53858286016129ab565b9250506020612c6485828601612ab2565b9150509250929050565b60008060208385031215612c8157600080fd5b600083013567ffffffffffffffff811115612c9b57600080fd5b612ca7858286016129c0565b92509250509250929050565b600060208284031215612cc557600080fd5b6000612cd384828501612a1f565b91505092915050565b60008060408385031215612cef57600080fd5b6000612cfd85828601612a1f565b9250506020612d0e858286016129ab565b9150509250929050565b600060208284031215612d2a57600080fd5b6000612d3884828501612a34565b91505092915050565b600060208284031215612d5357600080fd5b6000612d6184828501612a49565b91505092915050565b600060208284031215612d7c57600080fd5b600082013567ffffffffffffffff811115612d9657600080fd5b612da284828501612a88565b91505092915050565b600060208284031215612dbd57600080fd5b6000612dcb84828501612ab2565b91505092915050565b6000612de083836131ed565b60208301905092915050565b612df5816137d8565b82525050565b612e0c612e07826137d8565b61396e565b82525050565b6000612e1d82613657565b612e278185613685565b9350612e3283613647565b8060005b83811015612e63578151612e4a8882612dd4565b9750612e5583613678565b925050600181019050612e36565b5085935050505092915050565b612e79816137ea565b82525050565b612e88816137f6565b82525050565b6000612e9982613662565b612ea38185613696565b9350612eb3818560208601613865565b612ebc81613a7f565b840191505092915050565b6000612ed28261366d565b612edc81856136a7565b9350612eec818560208601613865565b612ef581613a7f565b840191505092915050565b6000612f0b8261366d565b612f1581856136b8565b9350612f25818560208601613865565b80840191505092915050565b6000612f3e6020836136a7565b9150612f4982613a9d565b602082019050919050565b6000612f616032836136a7565b9150612f6c82613ac6565b604082019050919050565b6000612f846025836136a7565b9150612f8f82613b15565b604082019050919050565b6000612fa7601c836136a7565b9150612fb282613b64565b602082019050919050565b6000612fca6024836136a7565b9150612fd582613b8d565b604082019050919050565b6000612fed6019836136a7565b9150612ff882613bdc565b602082019050919050565b6000613010602c836136a7565b915061301b82613c05565b604082019050919050565b60006130336038836136a7565b915061303e82613c54565b604082019050919050565b6000613056602a836136a7565b915061306182613ca3565b604082019050919050565b60006130796029836136a7565b915061308482613cf2565b604082019050919050565b600061309c6020836136a7565b91506130a782613d41565b602082019050919050565b60006130bf602c836136a7565b91506130ca82613d6a565b604082019050919050565b60006130e2600f836136a7565b91506130ed82613db9565b602082019050919050565b60006131056021836136a7565b915061311082613de2565b604082019050919050565b60006131286031836136a7565b915061313382613e31565b604082019050919050565b600061314b6017836136b8565b915061315682613e80565b601782019050919050565b600061316e6026836136a7565b915061317982613ea9565b604082019050919050565b6000613191601f836136a7565b915061319c82613ef8565b602082019050919050565b60006131b46011836136b8565b91506131bf82613f21565b601182019050919050565b60006131d7602f836136a7565b91506131e282613f4a565b604082019050919050565b6131f68161384c565b82525050565b6132058161384c565b82525050565b60006132178284612dfb565b60148201915081905092915050565b60006132328285612f00565b915061323e8284612f00565b91508190509392505050565b60006132558261313e565b91506132618285612f00565b915061326c826131a7565b91506132788284612f00565b91508190509392505050565b60006020820190506132996000830184612dec565b92915050565b60006080820190506132b46000830187612dec565b6132c16020830186612dec565b6132ce60408301856131fc565b81810360608301526132e08184612e8e565b905095945050505050565b600060208201905081810360008301526133058184612e12565b905092915050565b60006020820190506133226000830184612e70565b92915050565b600060208201905061333d6000830184612e7f565b92915050565b6000602082019050818103600083015261335d8184612ec7565b905092915050565b6000602082019050818103600083015261337e81612f31565b9050919050565b6000602082019050818103600083015261339e81612f54565b9050919050565b600060208201905081810360008301526133be81612f77565b9050919050565b600060208201905081810360008301526133de81612f9a565b9050919050565b600060208201905081810360008301526133fe81612fbd565b9050919050565b6000602082019050818103600083015261341e81612fe0565b9050919050565b6000602082019050818103600083015261343e81613003565b9050919050565b6000602082019050818103600083015261345e81613026565b9050919050565b6000602082019050818103600083015261347e81613049565b9050919050565b6000602082019050818103600083015261349e8161306c565b9050919050565b600060208201905081810360008301526134be8161308f565b9050919050565b600060208201905081810360008301526134de816130b2565b9050919050565b600060208201905081810360008301526134fe816130d5565b9050919050565b6000602082019050818103600083015261351e816130f8565b9050919050565b6000602082019050818103600083015261353e8161311b565b9050919050565b6000602082019050818103600083015261355e81613161565b9050919050565b6000602082019050818103600083015261357e81613184565b9050919050565b6000602082019050818103600083015261359e816131ca565b9050919050565b60006020820190506135ba60008301846131fc565b92915050565b60006135ca6135db565b90506135d682826138f4565b919050565b6000604051905090565b600067ffffffffffffffff821115613600576135ff613a50565b5b61360982613a7f565b9050602081019050919050565b600067ffffffffffffffff82111561363157613630613a50565b5b61363a82613a7f565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b60006136ce8261384c565b91506136d98361384c565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561370e5761370d6139c3565b5b828201905092915050565b60006137248261384c565b915061372f8361384c565b92508261373f5761373e6139f2565b5b828204905092915050565b60006137558261384c565b91506137608361384c565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613799576137986139c3565b5b828202905092915050565b60006137af8261384c565b91506137ba8361384c565b9250828210156137cd576137cc6139c3565b5b828203905092915050565b60006137e38261382c565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613883578082015181840152602081019050613868565b83811115613892576000848401525b50505050565b60006138a38261384c565b915060008214156138b7576138b66139c3565b5b600182039050919050565b600060028204905060018216806138da57607f821691505b602082108114156138ee576138ed613a21565b5b50919050565b6138fd82613a7f565b810181811067ffffffffffffffff8211171561391c5761391b613a50565b5b80604052505050565b60006139308261384c565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613963576139626139c3565b5b600182019050919050565b600061397982613980565b9050919050565b600061398b82613a90565b9050919050565b600061399d8261384c565b91506139a88361384c565b9250826139b8576139b76139f2565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722066726f6d20696e636f72726563742060008201527f6f776e6572000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f62617365555249206e6f74207365740000000000000000000000000000000000600082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b7f444543414c3a2055524920717565727920666f72206e6f6e6578697374656e7460008201527f20746f6b656e0000000000000000000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b613fa2816137d8565b8114613fad57600080fd5b50565b613fb9816137ea565b8114613fc457600080fd5b50565b613fd0816137f6565b8114613fdb57600080fd5b50565b613fe781613800565b8114613ff257600080fd5b50565b613ffe8161384c565b811461400957600080fd5b5056fea26469706673582212207086ace3ddc4675ddbe9a6334e4066f720d3223485284d76a1532b9fececc0b964736f6c63430008040033

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

000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000003168747470733a2f2f636c69656e742d6170692e646563612e73797374656d732f646563616c2f6d657461646174612f342f0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000001000000000000000000000000d523545b49076807094c0718f5eba00c0ae72fd6

-----Decoded View---------------
Arg [0] : _baseUri (string): https://client-api.deca.systems/decal/metadata/4/
Arg [1] : _admins (address[]): 0xd523545B49076807094C0718F5eBa00C0aE72fD6

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000031
Arg [3] : 68747470733a2f2f636c69656e742d6170692e646563612e73797374656d732f
Arg [4] : 646563616c2f6d657461646174612f342f000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000001
Arg [6] : 000000000000000000000000d523545b49076807094c0718f5eba00c0ae72fd6


Deployed Bytecode Sourcemap

52362:2869:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54922:198;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37539:94;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39063:239;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38628:377;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52543:30;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52498:38;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39841:332;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26342:153;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52627:25;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26735:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52580:40;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27767:229;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40236:165;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54423:435;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37227:253;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36947:226;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53027:132;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51301:92;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24940:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37694:98;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52659:21;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53300:132;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24057:49;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39366:167;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53165:129;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53438:611;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40464:321;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54055:362;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27124:166;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39596:186;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54922:198;55055:4;55078:36;55102:11;55078:23;:36::i;:::-;55071:43;;54922:198;;;:::o;37539:94::-;37593:13;37622:5;37615:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37539:94;:::o;39063:239::-;39164:7;39191:16;39199:7;39191;:16::i;:::-;39183:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;39272:15;:24;39288:7;39272:24;;;;;;;;;;;;;;;;;;;;;39265:31;;39063:239;;;:::o;38628:377::-;38705:13;38721:23;38736:7;38721:14;:23::i;:::-;38705:39;;38765:5;38759:11;;:2;:11;;;;38751:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;38849:5;38833:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;38858:37;38875:5;38882:12;:10;:12::i;:::-;38858:16;:37::i;:::-;38833:62;38817:152;;;;;;;;;;;;:::i;:::-;;;;;;;;;38978:21;38987:2;38991:7;38978:8;:21::i;:::-;38628:377;;;:::o;52543:30::-;;;;:::o;52498:38::-;;;;;;;;;;;;;;;;;;;;;;:::o;39841:332::-;40022:41;40041:12;:10;:12::i;:::-;40055:7;40022:18;:41::i;:::-;40006:124;;;;;;;;;;;;:::i;:::-;;;;;;;;;40139:28;40149:4;40155:2;40159:7;40139:9;:28::i;:::-;39841:332;;;:::o;26342:153::-;26441:7;26467:6;:12;26474:4;26467:12;;;;;;;;;;;:22;;;26460:29;;26342:153;;;:::o;52627:25::-;;;;:::o;26735:164::-;26838:18;26851:4;26838:12;:18::i;:::-;24522:16;24533:4;24522:10;:16::i;:::-;26868:25:::1;26879:4;26885:7;26868:10;:25::i;:::-;26735:164:::0;;;:::o;52580:40::-;52617:3;52580:40;:::o;27767:229::-;27878:12;:10;:12::i;:::-;27867:23;;:7;:23;;;27851:104;;;;;;;;;;;;:::i;:::-;;;;;;;;;27964:26;27976:4;27982:7;27964:11;:26::i;:::-;27767:229;;:::o;40236:165::-;40356:39;40373:4;40379:2;40383:7;40356:39;;;;;;;;;;;;:16;:39::i;:::-;40236:165;;;:::o;54423:435::-;54501:16;54529:18;54550:17;54560:6;54550:9;:17::i;:::-;54529:38;;54574:25;54616:10;54602:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54574:53;;54634:12;54662:9;54657:174;54677:11;;54673:1;:15;54657:174;;;54722:6;54708:20;;:10;54716:1;54708:7;:10::i;:::-;:20;;;54704:82;;;54758:1;54741:8;54750:4;54741:14;;;;;;;;;;;;;;;;;;;;;:18;;;;;54770:6;;;;;:::i;:::-;;;;54704:82;54806:10;54798:4;:18;54794:29;;;54818:5;;54794:29;54690:3;;;;;:::i;:::-;;;;54657:174;;;;54844:8;54837:15;;;;;54423:435;;;:::o;37227:253::-;37324:7;37343:13;37359:7;:16;37367:7;37359:16;;;;;;;;;;;;;;;;;;;;;37343:32;;37407:1;37390:19;;:5;:19;;;;37382:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;37469:5;37462:12;;;37227:253;;;:::o;36947:226::-;37044:7;37088:1;37071:19;;:5;:19;;;;37063:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;37151:9;:16;37161:5;37151:16;;;;;;;;;;;;;;;;37144:23;;36947:226;;;:::o;53027:132::-;24102:4;53099:18;;24522:16;24533:4;24522:10;:16::i;:::-;53142:11:::1;53129:10;:24;;;;53027:132:::0;;:::o;51301:92::-;51347:7;51370:17;;;;;;;;;;;51363:24;;51301:92;:::o;24940:169::-;25051:4;25074:6;:12;25081:4;25074:12;;;;;;;;;;;:20;;:29;25095:7;25074:29;;;;;;;;;;;;;;;;;;;;;;;;;25067:36;;24940:169;;;;:::o;37694:98::-;37750:13;37779:7;37772:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37694:98;:::o;52659:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;53300:132::-;24102:4;53375:18;;24522:16;24533:4;24522:10;:16::i;:::-;53415:11:::1;53405:7;:21;;;;;;;;;;;;:::i;:::-;;53300:132:::0;;:::o;24057:49::-;24102:4;24057:49;;;:::o;39366:167::-;39475:52;39494:12;:10;:12::i;:::-;39508:8;39518;39475:18;:52::i;:::-;39366:167;;:::o;53165:129::-;24102:4;53234:18;;24522:16;24533:4;24522:10;:16::i;:::-;53264:24:::1;53278:9;53264:13;:24::i;:::-;53165:129:::0;;:::o;53438:611::-;53531:7;7306:1;7870:7;;:19;;7862:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;7306:1;7995:7;:18;;;;52617:3:::1;53554:11;;:25;53550:56;;53588:18;;;;;;;;;;;;;;53550:56;53617:6;:18;53624:10;53617:18;;;;;;;;;;;;;;;;;;;;;;;;;53613:46;;;53644:15;;;;;;;;;;;;;;53613:46;53670:23;:10;:21;;;:23::i;:::-;53666:60;;;53702:24;;;;;;;;;;;;;;53666:60;53733:12;53775:10;53758:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;53748:39;;;;;;53733:54;;53799:50;53818:12;;53799:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53832:10;;53844:4;53799:18;:50::i;:::-;53794:101;;53865:30;;;;;;;;;;;;;;53794:101;53904:15;53922:11;;53904:29;;53940:11;;:13;;;;;;;;;:::i;:::-;;;;;;53981:4;53960:6;:18;53967:10;53960:18;;;;;;;;;;;;;;;;:25;;;;;;;;;;;;;;;;;;53992:30;54002:10;54014:7;53992:9;:30::i;:::-;54036:7;54029:14;;;;7264:1:::0;8158:7;:22;;;;53438:611;;;;:::o;40464:321::-;40625:41;40644:12;:10;:12::i;:::-;40658:7;40625:18;:41::i;:::-;40609:124;;;;;;;;;;;;:::i;:::-;;;;;;;;;40740:39;40754:4;40760:2;40764:7;40773:5;40740:13;:39::i;:::-;40464:321;;;;:::o;54055:362::-;54149:13;54182:17;54190:8;54182:7;:17::i;:::-;54174:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54249:21;54273:10;:8;:10::i;:::-;54249:34;;54322:1;54304:7;54298:21;:25;54290:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;54381:7;54390:19;:8;:17;:19::i;:::-;54364:46;;;;;;;;;:::i;:::-;;;;;;;;;;;;;54350:61;;;54055:362;;;:::o;27124:166::-;27228:18;27241:4;27228:12;:18::i;:::-;24522:16;24533:4;24522:10;:16::i;:::-;27258:26:::1;27270:4;27276:7;27258:11;:26::i;:::-;27124:166:::0;;;:::o;39596:186::-;39718:4;39741:18;:25;39760:5;39741:25;;;;;;;;;;;;;;;:35;39767:8;39741:35;;;;;;;;;;;;;;;;;;;;;;;;;39734:42;;39596:186;;;;:::o;24616:240::-;24726:4;24771:32;24756:47;;;:11;:47;;;;:94;;;;24814:36;24838:11;24814:23;:36::i;:::-;24756:94;24742:108;;24616:240;;;:::o;42232:121::-;42297:4;42345:1;42317:30;;:7;:16;42325:7;42317:16;;;;;;;;;;;;;;;;;;;;;:30;;;;42310:37;;42232:121;;;:::o;10806:92::-;10859:7;10882:10;10875:17;;10806:92;:::o;46118:164::-;46216:2;46189:15;:24;46205:7;46189:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;46268:7;46264:2;46230:46;;46239:23;46254:7;46239:14;:23::i;:::-;46230:46;;;;;;;;;;;;46118:164;;:::o;42504:371::-;42617:4;42641:16;42649:7;42641;:16::i;:::-;42633:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;42713:13;42729:23;42744:7;42729:14;:23::i;:::-;42713:39;;42778:5;42767:16;;:7;:16;;;:59;;;;42794:32;42811:5;42818:7;42794:16;:32::i;:::-;42767:59;:101;;;;42861:7;42837:31;;:20;42849:7;42837:11;:20::i;:::-;:31;;;42767:101;42759:110;;;42504:371;;;;:::o;45422:590::-;45571:4;45544:31;;:23;45559:7;45544:14;:23::i;:::-;:31;;;45528:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;45659:1;45645:16;;:2;:16;;;;45637:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;45711:39;45732:4;45738:2;45742:7;45711:20;:39::i;:::-;45807:29;45824:1;45828:7;45807:8;:29::i;:::-;45864:1;45845:9;:15;45855:4;45845:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;45889:1;45872:9;:13;45882:2;45872:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;45916:2;45897:7;:16;45905:7;45897:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;45951:7;45947:2;45932:27;;45941:4;45932:27;;;;;;;;;;;;45968:38;45988:4;45994:2;45998:7;45968:19;:38::i;:::-;45422:590;;;:::o;25395:99::-;25458:30;25469:4;25475:12;:10;:12::i;:::-;25458:10;:30::i;:::-;25395:99;:::o;29197:216::-;29277:22;29285:4;29291:7;29277;:22::i;:::-;29272:136;;29342:4;29310:6;:12;29317:4;29310:12;;;;;;;;;;;:20;;:29;29331:7;29310:29;;;;;;;;;;;;;;;;:36;;;;;;;;;;;;;;;;;;29387:12;:10;:12::i;:::-;29360:40;;29378:7;29360:40;;29372:4;29360:40;;;;;;;;;;29272:136;29197:216;;:::o;29533:217::-;29613:22;29621:4;29627:7;29613;:22::i;:::-;29609:136;;;29678:5;29646:6;:12;29653:4;29646:12;;;;;;;;;;;:20;;:29;29667:7;29646:29;;;;;;;;;;;;;;;;:37;;;;;;;;;;;;;;;;;;29724:12;:10;:12::i;:::-;29697:40;;29715:7;29697:40;;29709:4;29697:40;;;;;;;;;;29609:136;29533:217;;:::o;46412:287::-;46549:8;46540:17;;:5;:17;;;;46532:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;46632:8;46594:18;:25;46613:5;46594:25;;;;;;;;;;;;;;;:35;46620:8;46594:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;46674:8;46652:41;;46667:5;46652:41;;;46684:8;46652:41;;;;;;:::i;:::-;;;;;;;;46412:287;;;:::o;51602:186::-;51667:16;51686:17;;;;;;;;;;;51667:36;;51730:8;51710:17;;:28;;;;;;;;;;;;;;;;;;51773:8;51750:32;;51763:8;51750:32;;;;;;;;;;;;51602:186;;:::o;12183:308::-;12243:4;12484:1;12462:7;:19;;;:23;12455:30;;12183:308;;;:::o;4161:170::-;4272:4;4321;4292:25;4305:5;4312:4;4292:12;:25::i;:::-;:33;4285:40;;4161:170;;;;;:::o;43195:104::-;43267:26;43277:2;43281:7;43267:26;;;;;;;;;;;;:9;:26::i;:::-;43195:104;;:::o;41629:308::-;41764:28;41774:4;41780:2;41784:7;41764:9;:28::i;:::-;41815:48;41838:4;41844:2;41848:7;41857:5;41815:22;:48::i;:::-;41799:132;;;;;;;;;;;;:::i;:::-;;;;;;;;;41629:308;;;;:::o;55126:102::-;55186:13;55215:7;55208:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55126:102;:::o;8546:637::-;8602:13;8820:1;8811:5;:10;8807:43;;;8832:10;;;;;;;;;;;;;;;;;;;;;8807:43;8856:12;8871:5;8856:20;;8883:14;8904:62;8919:1;8911:4;:9;8904:62;;8931:8;;;;;:::i;:::-;;;;8956:2;8948:10;;;;;:::i;:::-;;;8904:62;;;8972:19;9004:6;8994:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8972:39;;9018:132;9034:1;9025:5;:10;9018:132;;9056:1;9046:11;;;;;:::i;:::-;;;9117:2;9109:5;:10;;;;:::i;:::-;9096:2;:24;;;;:::i;:::-;9083:39;;9066:6;9073;9066:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;9140:2;9131:11;;;;;:::i;:::-;;;9018:132;;;9170:6;9156:21;;;;;8546:637;;;;:::o;36582:309::-;36709:4;36754:25;36739:40;;;:11;:40;;;;:99;;;;36805:33;36790:48;;;:11;:48;;;;36739:99;:146;;;;36849:36;36873:11;36849:23;:36::i;:::-;36739:146;36725:160;;36582:309;;;:::o;48469:112::-;;;;:::o;48942:111::-;;;;:::o;25768:399::-;25853:22;25861:4;25867:7;25853;:22::i;:::-;25848:314;;25993:41;26021:7;25993:41;;26031:2;25993:19;:41::i;:::-;26083:38;26111:4;26103:13;;26118:2;26083:19;:38::i;:::-;25922:212;;;;;;;;;:::i;:::-;;;;;;;;;;;;;25886:268;;;;;;;;;;;:::i;:::-;;;;;;;;25848:314;25768:399;;:::o;4674:619::-;4772:7;4791:20;4814:4;4791:27;;4830:9;4825:437;4849:5;:12;4845:1;:16;4825:437;;;4877:20;4900:5;4906:1;4900:8;;;;;;;;;;;;;;;;;;;;;;4877:31;;4937:12;4921;:28;4917:338;;5048:42;5063:12;5077;5048:14;:42::i;:::-;5033:57;;4917:338;;;5203:42;5218:12;5232;5203:14;:42::i;:::-;5188:57;;4917:338;4825:437;4863:3;;;;;:::i;:::-;;;;4825:437;;;;5275:12;5268:19;;;4674:619;;;;:::o;43516:281::-;43628:18;43634:2;43638:7;43628:5;:18::i;:::-;43669:54;43700:1;43704:2;43708:7;43717:5;43669:22;:54::i;:::-;43653:138;;;;;;;;;;;;:::i;:::-;;;;;;;;;43516:281;;;:::o;47242:685::-;47379:4;47396:15;:2;:13;;;:15::i;:::-;47392:530;;;47451:2;47435:36;;;47472:12;:10;:12::i;:::-;47486:4;47492:7;47501:5;47435:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;47422:459;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47679:1;47662:6;:13;:18;47658:214;;;47695:60;;;;;;;;;;:::i;:::-;;;;;;;;47658:214;47840:6;47834:13;47825:6;47821:2;47817:15;47810:38;47422:459;47567:41;;;47557:51;;;:6;:51;;;;47550:58;;;;;47392:530;47910:4;47903:11;;47242:685;;;;;;;:::o;21919:179::-;22029:4;22067:25;22052:40;;;:11;:40;;;;22045:47;;21919:179;;;:::o;9697:427::-;9787:13;9812:19;9857:1;9848:6;9844:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;9834:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9812:47;;9866:15;:6;9873:1;9866:9;;;;;;;;;;;;;;;;;;;:15;;;;;;;;;;;9888;:6;9895:1;9888:9;;;;;;;;;;;;;;;;;;;:15;;;;;;;;;;;9915:9;9940:1;9931:6;9927:1;:10;;;;:::i;:::-;:14;;;;:::i;:::-;9915:26;;9910:119;9947:1;9943;:5;9910:119;;;9976:12;9997:3;9989:5;:11;9976:25;;;;;;;;;;;;;;;;;;9964:6;9971:1;9964:9;;;;;;;;;;;;;;;;;;;:37;;;;;;;;;;;10020:1;10010:11;;;;;9950:3;;;;:::i;:::-;;;9910:119;;;;10052:1;10043:5;:10;10035:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;10111:6;10097:21;;;9697:427;;;;:::o;5299:214::-;5382:13;5438:1;5432:4;5425:15;5461:1;5455:4;5448:15;5496:4;5490;5480:21;5471:30;;5416:92;;;;:::o;44107:409::-;44197:1;44183:16;;:2;:16;;;;44175:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;44252:16;44260:7;44252;:16::i;:::-;44251:17;44243:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;44310:45;44339:1;44343:2;44347:7;44310:20;:45::i;:::-;44381:1;44364:9;:13;44374:2;44364:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;44408:2;44389:7;:16;44397:7;44389:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;44449:7;44445:2;44424:33;;44441:1;44424:33;;;;;;;;;;;;44466:44;44494:1;44498:2;44502:7;44466:19;:44::i;:::-;44107:409;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:343:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:2;;;290:1;287;280:12;249:2;303:41;337:6;332:3;327;303:41;:::i;:::-;90:260;;;;;;:::o;356:345::-;434:5;459:66;475:49;517:6;475:49;:::i;:::-;459:66;:::i;:::-;450:75;;548:6;541:5;534:21;586:4;579:5;575:16;624:3;615:6;610:3;606:16;603:25;600:2;;;641:1;638;631:12;600:2;654:41;688:6;683:3;678;654:41;:::i;:::-;440:261;;;;;;:::o;707:139::-;753:5;791:6;778:20;769:29;;807:33;834:5;807:33;:::i;:::-;759:87;;;;:::o;869:367::-;942:8;952:6;1002:3;995:4;987:6;983:17;979:27;969:2;;1020:1;1017;1010:12;969:2;1056:6;1043:20;1033:30;;1086:18;1078:6;1075:30;1072:2;;;1118:1;1115;1108:12;1072:2;1155:4;1147:6;1143:17;1131:29;;1209:3;1201:4;1193:6;1189:17;1179:8;1175:32;1172:41;1169:2;;;1226:1;1223;1216:12;1169:2;959:277;;;;;:::o;1242:133::-;1285:5;1323:6;1310:20;1301:29;;1339:30;1363:5;1339:30;:::i;:::-;1291:84;;;;:::o;1381:139::-;1427:5;1465:6;1452:20;1443:29;;1481:33;1508:5;1481:33;:::i;:::-;1433:87;;;;:::o;1526:137::-;1571:5;1609:6;1596:20;1587:29;;1625:32;1651:5;1625:32;:::i;:::-;1577:86;;;;:::o;1669:141::-;1725:5;1756:6;1750:13;1741:22;;1772:32;1798:5;1772:32;:::i;:::-;1731:79;;;;:::o;1829:271::-;1884:5;1933:3;1926:4;1918:6;1914:17;1910:27;1900:2;;1951:1;1948;1941:12;1900:2;1991:6;1978:20;2016:78;2090:3;2082:6;2075:4;2067:6;2063:17;2016:78;:::i;:::-;2007:87;;1890:210;;;;;:::o;2120:273::-;2176:5;2225:3;2218:4;2210:6;2206:17;2202:27;2192:2;;2243:1;2240;2233:12;2192:2;2283:6;2270:20;2308:79;2383:3;2375:6;2368:4;2360:6;2356:17;2308:79;:::i;:::-;2299:88;;2182:211;;;;;:::o;2399:139::-;2445:5;2483:6;2470:20;2461:29;;2499:33;2526:5;2499:33;:::i;:::-;2451:87;;;;:::o;2544:262::-;2603:6;2652:2;2640:9;2631:7;2627:23;2623:32;2620:2;;;2668:1;2665;2658:12;2620:2;2711:1;2736:53;2781:7;2772:6;2761:9;2757:22;2736:53;:::i;:::-;2726:63;;2682:117;2610:196;;;;:::o;2812:407::-;2880:6;2888;2937:2;2925:9;2916:7;2912:23;2908:32;2905:2;;;2953:1;2950;2943:12;2905:2;2996:1;3021:53;3066:7;3057:6;3046:9;3042:22;3021:53;:::i;:::-;3011:63;;2967:117;3123:2;3149:53;3194:7;3185:6;3174:9;3170:22;3149:53;:::i;:::-;3139:63;;3094:118;2895:324;;;;;:::o;3225:552::-;3302:6;3310;3318;3367:2;3355:9;3346:7;3342:23;3338:32;3335:2;;;3383:1;3380;3373:12;3335:2;3426:1;3451:53;3496:7;3487:6;3476:9;3472:22;3451:53;:::i;:::-;3441:63;;3397:117;3553:2;3579:53;3624:7;3615:6;3604:9;3600:22;3579:53;:::i;:::-;3569:63;;3524:118;3681:2;3707:53;3752:7;3743:6;3732:9;3728:22;3707:53;:::i;:::-;3697:63;;3652:118;3325:452;;;;;:::o;3783:809::-;3878:6;3886;3894;3902;3951:3;3939:9;3930:7;3926:23;3922:33;3919:2;;;3968:1;3965;3958:12;3919:2;4011:1;4036:53;4081:7;4072:6;4061:9;4057:22;4036:53;:::i;:::-;4026:63;;3982:117;4138:2;4164:53;4209:7;4200:6;4189:9;4185:22;4164:53;:::i;:::-;4154:63;;4109:118;4266:2;4292:53;4337:7;4328:6;4317:9;4313:22;4292:53;:::i;:::-;4282:63;;4237:118;4422:2;4411:9;4407:18;4394:32;4453:18;4445:6;4442:30;4439:2;;;4485:1;4482;4475:12;4439:2;4513:62;4567:7;4558:6;4547:9;4543:22;4513:62;:::i;:::-;4503:72;;4365:220;3909:683;;;;;;;:::o;4598:401::-;4663:6;4671;4720:2;4708:9;4699:7;4695:23;4691:32;4688:2;;;4736:1;4733;4726:12;4688:2;4779:1;4804:53;4849:7;4840:6;4829:9;4825:22;4804:53;:::i;:::-;4794:63;;4750:117;4906:2;4932:50;4974:7;4965:6;4954:9;4950:22;4932:50;:::i;:::-;4922:60;;4877:115;4678:321;;;;;:::o;5005:407::-;5073:6;5081;5130:2;5118:9;5109:7;5105:23;5101:32;5098:2;;;5146:1;5143;5136:12;5098:2;5189:1;5214:53;5259:7;5250:6;5239:9;5235:22;5214:53;:::i;:::-;5204:63;;5160:117;5316:2;5342:53;5387:7;5378:6;5367:9;5363:22;5342:53;:::i;:::-;5332:63;;5287:118;5088:324;;;;;:::o;5418:425::-;5504:6;5512;5561:2;5549:9;5540:7;5536:23;5532:32;5529:2;;;5577:1;5574;5567:12;5529:2;5648:1;5637:9;5633:17;5620:31;5678:18;5670:6;5667:30;5664:2;;;5710:1;5707;5700:12;5664:2;5746:80;5818:7;5809:6;5798:9;5794:22;5746:80;:::i;:::-;5728:98;;;;5591:245;5519:324;;;;;:::o;5849:262::-;5908:6;5957:2;5945:9;5936:7;5932:23;5928:32;5925:2;;;5973:1;5970;5963:12;5925:2;6016:1;6041:53;6086:7;6077:6;6066:9;6062:22;6041:53;:::i;:::-;6031:63;;5987:117;5915:196;;;;:::o;6117:407::-;6185:6;6193;6242:2;6230:9;6221:7;6217:23;6213:32;6210:2;;;6258:1;6255;6248:12;6210:2;6301:1;6326:53;6371:7;6362:6;6351:9;6347:22;6326:53;:::i;:::-;6316:63;;6272:117;6428:2;6454:53;6499:7;6490:6;6479:9;6475:22;6454:53;:::i;:::-;6444:63;;6399:118;6200:324;;;;;:::o;6530:260::-;6588:6;6637:2;6625:9;6616:7;6612:23;6608:32;6605:2;;;6653:1;6650;6643:12;6605:2;6696:1;6721:52;6765:7;6756:6;6745:9;6741:22;6721:52;:::i;:::-;6711:62;;6667:116;6595:195;;;;:::o;6796:282::-;6865:6;6914:2;6902:9;6893:7;6889:23;6885:32;6882:2;;;6930:1;6927;6920:12;6882:2;6973:1;6998:63;7053:7;7044:6;7033:9;7029:22;6998:63;:::i;:::-;6988:73;;6944:127;6872:206;;;;:::o;7084:375::-;7153:6;7202:2;7190:9;7181:7;7177:23;7173:32;7170:2;;;7218:1;7215;7208:12;7170:2;7289:1;7278:9;7274:17;7261:31;7319:18;7311:6;7308:30;7305:2;;;7351:1;7348;7341:12;7305:2;7379:63;7434:7;7425:6;7414:9;7410:22;7379:63;:::i;:::-;7369:73;;7232:220;7160:299;;;;:::o;7465:262::-;7524:6;7573:2;7561:9;7552:7;7548:23;7544:32;7541:2;;;7589:1;7586;7579:12;7541:2;7632:1;7657:53;7702:7;7693:6;7682:9;7678:22;7657:53;:::i;:::-;7647:63;;7603:117;7531:196;;;;:::o;7733:179::-;7802:10;7823:46;7865:3;7857:6;7823:46;:::i;:::-;7901:4;7896:3;7892:14;7878:28;;7813:99;;;;:::o;7918:118::-;8005:24;8023:5;8005:24;:::i;:::-;8000:3;7993:37;7983:53;;:::o;8042:157::-;8147:45;8167:24;8185:5;8167:24;:::i;:::-;8147:45;:::i;:::-;8142:3;8135:58;8125:74;;:::o;8235:732::-;8354:3;8383:54;8431:5;8383:54;:::i;:::-;8453:86;8532:6;8527:3;8453:86;:::i;:::-;8446:93;;8563:56;8613:5;8563:56;:::i;:::-;8642:7;8673:1;8658:284;8683:6;8680:1;8677:13;8658:284;;;8759:6;8753:13;8786:63;8845:3;8830:13;8786:63;:::i;:::-;8779:70;;8872:60;8925:6;8872:60;:::i;:::-;8862:70;;8718:224;8705:1;8702;8698:9;8693:14;;8658:284;;;8662:14;8958:3;8951:10;;8359:608;;;;;;;:::o;8973:109::-;9054:21;9069:5;9054:21;:::i;:::-;9049:3;9042:34;9032:50;;:::o;9088:118::-;9175:24;9193:5;9175:24;:::i;:::-;9170:3;9163:37;9153:53;;:::o;9212:360::-;9298:3;9326:38;9358:5;9326:38;:::i;:::-;9380:70;9443:6;9438:3;9380:70;:::i;:::-;9373:77;;9459:52;9504:6;9499:3;9492:4;9485:5;9481:16;9459:52;:::i;:::-;9536:29;9558:6;9536:29;:::i;:::-;9531:3;9527:39;9520:46;;9302:270;;;;;:::o;9578:364::-;9666:3;9694:39;9727:5;9694:39;:::i;:::-;9749:71;9813:6;9808:3;9749:71;:::i;:::-;9742:78;;9829:52;9874:6;9869:3;9862:4;9855:5;9851:16;9829:52;:::i;:::-;9906:29;9928:6;9906:29;:::i;:::-;9901:3;9897:39;9890:46;;9670:272;;;;;:::o;9948:377::-;10054:3;10082:39;10115:5;10082:39;:::i;:::-;10137:89;10219:6;10214:3;10137:89;:::i;:::-;10130:96;;10235:52;10280:6;10275:3;10268:4;10261:5;10257:16;10235:52;:::i;:::-;10312:6;10307:3;10303:16;10296:23;;10058:267;;;;;:::o;10331:366::-;10473:3;10494:67;10558:2;10553:3;10494:67;:::i;:::-;10487:74;;10570:93;10659:3;10570:93;:::i;:::-;10688:2;10683:3;10679:12;10672:19;;10477:220;;;:::o;10703:366::-;10845:3;10866:67;10930:2;10925:3;10866:67;:::i;:::-;10859:74;;10942:93;11031:3;10942:93;:::i;:::-;11060:2;11055:3;11051:12;11044:19;;10849:220;;;:::o;11075:366::-;11217:3;11238:67;11302:2;11297:3;11238:67;:::i;:::-;11231:74;;11314:93;11403:3;11314:93;:::i;:::-;11432:2;11427:3;11423:12;11416:19;;11221:220;;;:::o;11447:366::-;11589:3;11610:67;11674:2;11669:3;11610:67;:::i;:::-;11603:74;;11686:93;11775:3;11686:93;:::i;:::-;11804:2;11799:3;11795:12;11788:19;;11593:220;;;:::o;11819:366::-;11961:3;11982:67;12046:2;12041:3;11982:67;:::i;:::-;11975:74;;12058:93;12147:3;12058:93;:::i;:::-;12176:2;12171:3;12167:12;12160:19;;11965:220;;;:::o;12191:366::-;12333:3;12354:67;12418:2;12413:3;12354:67;:::i;:::-;12347:74;;12430:93;12519:3;12430:93;:::i;:::-;12548:2;12543:3;12539:12;12532:19;;12337:220;;;:::o;12563:366::-;12705:3;12726:67;12790:2;12785:3;12726:67;:::i;:::-;12719:74;;12802:93;12891:3;12802:93;:::i;:::-;12920:2;12915:3;12911:12;12904:19;;12709:220;;;:::o;12935:366::-;13077:3;13098:67;13162:2;13157:3;13098:67;:::i;:::-;13091:74;;13174:93;13263:3;13174:93;:::i;:::-;13292:2;13287:3;13283:12;13276:19;;13081:220;;;:::o;13307:366::-;13449:3;13470:67;13534:2;13529:3;13470:67;:::i;:::-;13463:74;;13546:93;13635:3;13546:93;:::i;:::-;13664:2;13659:3;13655:12;13648:19;;13453:220;;;:::o;13679:366::-;13821:3;13842:67;13906:2;13901:3;13842:67;:::i;:::-;13835:74;;13918:93;14007:3;13918:93;:::i;:::-;14036:2;14031:3;14027:12;14020:19;;13825:220;;;:::o;14051:366::-;14193:3;14214:67;14278:2;14273:3;14214:67;:::i;:::-;14207:74;;14290:93;14379:3;14290:93;:::i;:::-;14408:2;14403:3;14399:12;14392:19;;14197:220;;;:::o;14423:366::-;14565:3;14586:67;14650:2;14645:3;14586:67;:::i;:::-;14579:74;;14662:93;14751:3;14662:93;:::i;:::-;14780:2;14775:3;14771:12;14764:19;;14569:220;;;:::o;14795:366::-;14937:3;14958:67;15022:2;15017:3;14958:67;:::i;:::-;14951:74;;15034:93;15123:3;15034:93;:::i;:::-;15152:2;15147:3;15143:12;15136:19;;14941:220;;;:::o;15167:366::-;15309:3;15330:67;15394:2;15389:3;15330:67;:::i;:::-;15323:74;;15406:93;15495:3;15406:93;:::i;:::-;15524:2;15519:3;15515:12;15508:19;;15313:220;;;:::o;15539:366::-;15681:3;15702:67;15766:2;15761:3;15702:67;:::i;:::-;15695:74;;15778:93;15867:3;15778:93;:::i;:::-;15896:2;15891:3;15887:12;15880:19;;15685:220;;;:::o;15911:402::-;16071:3;16092:85;16174:2;16169:3;16092:85;:::i;:::-;16085:92;;16186:93;16275:3;16186:93;:::i;:::-;16304:2;16299:3;16295:12;16288:19;;16075:238;;;:::o;16319:366::-;16461:3;16482:67;16546:2;16541:3;16482:67;:::i;:::-;16475:74;;16558:93;16647:3;16558:93;:::i;:::-;16676:2;16671:3;16667:12;16660:19;;16465:220;;;:::o;16691:366::-;16833:3;16854:67;16918:2;16913:3;16854:67;:::i;:::-;16847:74;;16930:93;17019:3;16930:93;:::i;:::-;17048:2;17043:3;17039:12;17032:19;;16837:220;;;:::o;17063:402::-;17223:3;17244:85;17326:2;17321:3;17244:85;:::i;:::-;17237:92;;17338:93;17427:3;17338:93;:::i;:::-;17456:2;17451:3;17447:12;17440:19;;17227:238;;;:::o;17471:366::-;17613:3;17634:67;17698:2;17693:3;17634:67;:::i;:::-;17627:74;;17710:93;17799:3;17710:93;:::i;:::-;17828:2;17823:3;17819:12;17812:19;;17617:220;;;:::o;17843:108::-;17920:24;17938:5;17920:24;:::i;:::-;17915:3;17908:37;17898:53;;:::o;17957:118::-;18044:24;18062:5;18044:24;:::i;:::-;18039:3;18032:37;18022:53;;:::o;18081:256::-;18193:3;18208:75;18279:3;18270:6;18208:75;:::i;:::-;18308:2;18303:3;18299:12;18292:19;;18328:3;18321:10;;18197:140;;;;:::o;18343:435::-;18523:3;18545:95;18636:3;18627:6;18545:95;:::i;:::-;18538:102;;18657:95;18748:3;18739:6;18657:95;:::i;:::-;18650:102;;18769:3;18762:10;;18527:251;;;;;:::o;18784:967::-;19166:3;19188:148;19332:3;19188:148;:::i;:::-;19181:155;;19353:95;19444:3;19435:6;19353:95;:::i;:::-;19346:102;;19465:148;19609:3;19465:148;:::i;:::-;19458:155;;19630:95;19721:3;19712:6;19630:95;:::i;:::-;19623:102;;19742:3;19735:10;;19170:581;;;;;:::o;19757:222::-;19850:4;19888:2;19877:9;19873:18;19865:26;;19901:71;19969:1;19958:9;19954:17;19945:6;19901:71;:::i;:::-;19855:124;;;;:::o;19985:640::-;20180:4;20218:3;20207:9;20203:19;20195:27;;20232:71;20300:1;20289:9;20285:17;20276:6;20232:71;:::i;:::-;20313:72;20381:2;20370:9;20366:18;20357:6;20313:72;:::i;:::-;20395;20463:2;20452:9;20448:18;20439:6;20395:72;:::i;:::-;20514:9;20508:4;20504:20;20499:2;20488:9;20484:18;20477:48;20542:76;20613:4;20604:6;20542:76;:::i;:::-;20534:84;;20185:440;;;;;;;:::o;20631:373::-;20774:4;20812:2;20801:9;20797:18;20789:26;;20861:9;20855:4;20851:20;20847:1;20836:9;20832:17;20825:47;20889:108;20992:4;20983:6;20889:108;:::i;:::-;20881:116;;20779:225;;;;:::o;21010:210::-;21097:4;21135:2;21124:9;21120:18;21112:26;;21148:65;21210:1;21199:9;21195:17;21186:6;21148:65;:::i;:::-;21102:118;;;;:::o;21226:222::-;21319:4;21357:2;21346:9;21342:18;21334:26;;21370:71;21438:1;21427:9;21423:17;21414:6;21370:71;:::i;:::-;21324:124;;;;:::o;21454:313::-;21567:4;21605:2;21594:9;21590:18;21582:26;;21654:9;21648:4;21644:20;21640:1;21629:9;21625:17;21618:47;21682:78;21755:4;21746:6;21682:78;:::i;:::-;21674:86;;21572:195;;;;:::o;21773:419::-;21939:4;21977:2;21966:9;21962:18;21954:26;;22026:9;22020:4;22016:20;22012:1;22001:9;21997:17;21990:47;22054:131;22180:4;22054:131;:::i;:::-;22046:139;;21944:248;;;:::o;22198:419::-;22364:4;22402:2;22391:9;22387:18;22379:26;;22451:9;22445:4;22441:20;22437:1;22426:9;22422:17;22415:47;22479:131;22605:4;22479:131;:::i;:::-;22471:139;;22369:248;;;:::o;22623:419::-;22789:4;22827:2;22816:9;22812:18;22804:26;;22876:9;22870:4;22866:20;22862:1;22851:9;22847:17;22840:47;22904:131;23030:4;22904:131;:::i;:::-;22896:139;;22794:248;;;:::o;23048:419::-;23214:4;23252:2;23241:9;23237:18;23229:26;;23301:9;23295:4;23291:20;23287:1;23276:9;23272:17;23265:47;23329:131;23455:4;23329:131;:::i;:::-;23321:139;;23219:248;;;:::o;23473:419::-;23639:4;23677:2;23666:9;23662:18;23654:26;;23726:9;23720:4;23716:20;23712:1;23701:9;23697:17;23690:47;23754:131;23880:4;23754:131;:::i;:::-;23746:139;;23644:248;;;:::o;23898:419::-;24064:4;24102:2;24091:9;24087:18;24079:26;;24151:9;24145:4;24141:20;24137:1;24126:9;24122:17;24115:47;24179:131;24305:4;24179:131;:::i;:::-;24171:139;;24069:248;;;:::o;24323:419::-;24489:4;24527:2;24516:9;24512:18;24504:26;;24576:9;24570:4;24566:20;24562:1;24551:9;24547:17;24540:47;24604:131;24730:4;24604:131;:::i;:::-;24596:139;;24494:248;;;:::o;24748:419::-;24914:4;24952:2;24941:9;24937:18;24929:26;;25001:9;24995:4;24991:20;24987:1;24976:9;24972:17;24965:47;25029:131;25155:4;25029:131;:::i;:::-;25021:139;;24919:248;;;:::o;25173:419::-;25339:4;25377:2;25366:9;25362:18;25354:26;;25426:9;25420:4;25416:20;25412:1;25401:9;25397:17;25390:47;25454:131;25580:4;25454:131;:::i;:::-;25446:139;;25344:248;;;:::o;25598:419::-;25764:4;25802:2;25791:9;25787:18;25779:26;;25851:9;25845:4;25841:20;25837:1;25826:9;25822:17;25815:47;25879:131;26005:4;25879:131;:::i;:::-;25871:139;;25769:248;;;:::o;26023:419::-;26189:4;26227:2;26216:9;26212:18;26204:26;;26276:9;26270:4;26266:20;26262:1;26251:9;26247:17;26240:47;26304:131;26430:4;26304:131;:::i;:::-;26296:139;;26194:248;;;:::o;26448:419::-;26614:4;26652:2;26641:9;26637:18;26629:26;;26701:9;26695:4;26691:20;26687:1;26676:9;26672:17;26665:47;26729:131;26855:4;26729:131;:::i;:::-;26721:139;;26619:248;;;:::o;26873:419::-;27039:4;27077:2;27066:9;27062:18;27054:26;;27126:9;27120:4;27116:20;27112:1;27101:9;27097:17;27090:47;27154:131;27280:4;27154:131;:::i;:::-;27146:139;;27044:248;;;:::o;27298:419::-;27464:4;27502:2;27491:9;27487:18;27479:26;;27551:9;27545:4;27541:20;27537:1;27526:9;27522:17;27515:47;27579:131;27705:4;27579:131;:::i;:::-;27571:139;;27469:248;;;:::o;27723:419::-;27889:4;27927:2;27916:9;27912:18;27904:26;;27976:9;27970:4;27966:20;27962:1;27951:9;27947:17;27940:47;28004:131;28130:4;28004:131;:::i;:::-;27996:139;;27894:248;;;:::o;28148:419::-;28314:4;28352:2;28341:9;28337:18;28329:26;;28401:9;28395:4;28391:20;28387:1;28376:9;28372:17;28365:47;28429:131;28555:4;28429:131;:::i;:::-;28421:139;;28319:248;;;:::o;28573:419::-;28739:4;28777:2;28766:9;28762:18;28754:26;;28826:9;28820:4;28816:20;28812:1;28801:9;28797:17;28790:47;28854:131;28980:4;28854:131;:::i;:::-;28846:139;;28744:248;;;:::o;28998:419::-;29164:4;29202:2;29191:9;29187:18;29179:26;;29251:9;29245:4;29241:20;29237:1;29226:9;29222:17;29215:47;29279:131;29405:4;29279:131;:::i;:::-;29271:139;;29169:248;;;:::o;29423:222::-;29516:4;29554:2;29543:9;29539:18;29531:26;;29567:71;29635:1;29624:9;29620:17;29611:6;29567:71;:::i;:::-;29521:124;;;;:::o;29651:129::-;29685:6;29712:20;;:::i;:::-;29702:30;;29741:33;29769:4;29761:6;29741:33;:::i;:::-;29692:88;;;:::o;29786:75::-;29819:6;29852:2;29846:9;29836:19;;29826:35;:::o;29867:307::-;29928:4;30018:18;30010:6;30007:30;30004:2;;;30040:18;;:::i;:::-;30004:2;30078:29;30100:6;30078:29;:::i;:::-;30070:37;;30162:4;30156;30152:15;30144:23;;29933:241;;;:::o;30180:308::-;30242:4;30332:18;30324:6;30321:30;30318:2;;;30354:18;;:::i;:::-;30318:2;30392:29;30414:6;30392:29;:::i;:::-;30384:37;;30476:4;30470;30466:15;30458:23;;30247:241;;;:::o;30494:132::-;30561:4;30584:3;30576:11;;30614:4;30609:3;30605:14;30597:22;;30566:60;;;:::o;30632:114::-;30699:6;30733:5;30727:12;30717:22;;30706:40;;;:::o;30752:98::-;30803:6;30837:5;30831:12;30821:22;;30810:40;;;:::o;30856:99::-;30908:6;30942:5;30936:12;30926:22;;30915:40;;;:::o;30961:113::-;31031:4;31063;31058:3;31054:14;31046:22;;31036:38;;;:::o;31080:184::-;31179:11;31213:6;31208:3;31201:19;31253:4;31248:3;31244:14;31229:29;;31191:73;;;;:::o;31270:168::-;31353:11;31387:6;31382:3;31375:19;31427:4;31422:3;31418:14;31403:29;;31365:73;;;;:::o;31444:169::-;31528:11;31562:6;31557:3;31550:19;31602:4;31597:3;31593:14;31578:29;;31540:73;;;;:::o;31619:148::-;31721:11;31758:3;31743:18;;31733:34;;;;:::o;31773:305::-;31813:3;31832:20;31850:1;31832:20;:::i;:::-;31827:25;;31866:20;31884:1;31866:20;:::i;:::-;31861:25;;32020:1;31952:66;31948:74;31945:1;31942:81;31939:2;;;32026:18;;:::i;:::-;31939:2;32070:1;32067;32063:9;32056:16;;31817:261;;;;:::o;32084:185::-;32124:1;32141:20;32159:1;32141:20;:::i;:::-;32136:25;;32175:20;32193:1;32175:20;:::i;:::-;32170:25;;32214:1;32204:2;;32219:18;;:::i;:::-;32204:2;32261:1;32258;32254:9;32249:14;;32126:143;;;;:::o;32275:348::-;32315:7;32338:20;32356:1;32338:20;:::i;:::-;32333:25;;32372:20;32390:1;32372:20;:::i;:::-;32367:25;;32560:1;32492:66;32488:74;32485:1;32482:81;32477:1;32470:9;32463:17;32459:105;32456:2;;;32567:18;;:::i;:::-;32456:2;32615:1;32612;32608:9;32597:20;;32323:300;;;;:::o;32629:191::-;32669:4;32689:20;32707:1;32689:20;:::i;:::-;32684:25;;32723:20;32741:1;32723:20;:::i;:::-;32718:25;;32762:1;32759;32756:8;32753:2;;;32767:18;;:::i;:::-;32753:2;32812:1;32809;32805:9;32797:17;;32674:146;;;;:::o;32826:96::-;32863:7;32892:24;32910:5;32892:24;:::i;:::-;32881:35;;32871:51;;;:::o;32928:90::-;32962:7;33005:5;32998:13;32991:21;32980:32;;32970:48;;;:::o;33024:77::-;33061:7;33090:5;33079:16;;33069:32;;;:::o;33107:149::-;33143:7;33183:66;33176:5;33172:78;33161:89;;33151:105;;;:::o;33262:126::-;33299:7;33339:42;33332:5;33328:54;33317:65;;33307:81;;;:::o;33394:77::-;33431:7;33460:5;33449:16;;33439:32;;;:::o;33477:154::-;33561:6;33556:3;33551;33538:30;33623:1;33614:6;33609:3;33605:16;33598:27;33528:103;;;:::o;33637:307::-;33705:1;33715:113;33729:6;33726:1;33723:13;33715:113;;;33814:1;33809:3;33805:11;33799:18;33795:1;33790:3;33786:11;33779:39;33751:2;33748:1;33744:10;33739:15;;33715:113;;;33846:6;33843:1;33840:13;33837:2;;;33926:1;33917:6;33912:3;33908:16;33901:27;33837:2;33686:258;;;;:::o;33950:171::-;33989:3;34012:24;34030:5;34012:24;:::i;:::-;34003:33;;34058:4;34051:5;34048:15;34045:2;;;34066:18;;:::i;:::-;34045:2;34113:1;34106:5;34102:13;34095:20;;33993:128;;;:::o;34127:320::-;34171:6;34208:1;34202:4;34198:12;34188:22;;34255:1;34249:4;34245:12;34276:18;34266:2;;34332:4;34324:6;34320:17;34310:27;;34266:2;34394;34386:6;34383:14;34363:18;34360:38;34357:2;;;34413:18;;:::i;:::-;34357:2;34178:269;;;;:::o;34453:281::-;34536:27;34558:4;34536:27;:::i;:::-;34528:6;34524:40;34666:6;34654:10;34651:22;34630:18;34618:10;34615:34;34612:62;34609:2;;;34677:18;;:::i;:::-;34609:2;34717:10;34713:2;34706:22;34496:238;;;:::o;34740:233::-;34779:3;34802:24;34820:5;34802:24;:::i;:::-;34793:33;;34848:66;34841:5;34838:77;34835:2;;;34918:18;;:::i;:::-;34835:2;34965:1;34958:5;34954:13;34947:20;;34783:190;;;:::o;34979:100::-;35018:7;35047:26;35067:5;35047:26;:::i;:::-;35036:37;;35026:53;;;:::o;35085:94::-;35124:7;35153:20;35167:5;35153:20;:::i;:::-;35142:31;;35132:47;;;:::o;35185:176::-;35217:1;35234:20;35252:1;35234:20;:::i;:::-;35229:25;;35268:20;35286:1;35268:20;:::i;:::-;35263:25;;35307:1;35297:2;;35312:18;;:::i;:::-;35297:2;35353:1;35350;35346:9;35341:14;;35219:142;;;;:::o;35367:180::-;35415:77;35412:1;35405:88;35512:4;35509:1;35502:15;35536:4;35533:1;35526:15;35553:180;35601:77;35598:1;35591:88;35698:4;35695:1;35688:15;35722:4;35719:1;35712:15;35739:180;35787:77;35784:1;35777:88;35884:4;35881:1;35874:15;35908:4;35905:1;35898:15;35925:180;35973:77;35970:1;35963:88;36070:4;36067:1;36060:15;36094:4;36091:1;36084:15;36111:102;36152:6;36203:2;36199:7;36194:2;36187:5;36183:14;36179:28;36169:38;;36159:54;;;:::o;36219:94::-;36252:8;36300:5;36296:2;36292:14;36271:35;;36261:52;;;:::o;36319:182::-;36459:34;36455:1;36447:6;36443:14;36436:58;36425:76;:::o;36507:237::-;36647:34;36643:1;36635:6;36631:14;36624:58;36716:20;36711:2;36703:6;36699:15;36692:45;36613:131;:::o;36750:224::-;36890:34;36886:1;36878:6;36874:14;36867:58;36959:7;36954:2;36946:6;36942:15;36935:32;36856:118;:::o;36980:178::-;37120:30;37116:1;37108:6;37104:14;37097:54;37086:72;:::o;37164:223::-;37304:34;37300:1;37292:6;37288:14;37281:58;37373:6;37368:2;37360:6;37356:15;37349:31;37270:117;:::o;37393:175::-;37533:27;37529:1;37521:6;37517:14;37510:51;37499:69;:::o;37574:231::-;37714:34;37710:1;37702:6;37698:14;37691:58;37783:14;37778:2;37770:6;37766:15;37759:39;37680:125;:::o;37811:243::-;37951:34;37947:1;37939:6;37935:14;37928:58;38020:26;38015:2;38007:6;38003:15;37996:51;37917:137;:::o;38060:229::-;38200:34;38196:1;38188:6;38184:14;38177:58;38269:12;38264:2;38256:6;38252:15;38245:37;38166:123;:::o;38295:228::-;38435:34;38431:1;38423:6;38419:14;38412:58;38504:11;38499:2;38491:6;38487:15;38480:36;38401:122;:::o;38529:182::-;38669:34;38665:1;38657:6;38653:14;38646:58;38635:76;:::o;38717:231::-;38857:34;38853:1;38845:6;38841:14;38834:58;38926:14;38921:2;38913:6;38909:15;38902:39;38823:125;:::o;38954:165::-;39094:17;39090:1;39082:6;39078:14;39071:41;39060:59;:::o;39125:220::-;39265:34;39261:1;39253:6;39249:14;39242:58;39334:3;39329:2;39321:6;39317:15;39310:28;39231:114;:::o;39351:236::-;39491:34;39487:1;39479:6;39475:14;39468:58;39560:19;39555:2;39547:6;39543:15;39536:44;39457:130;:::o;39593:173::-;39733:25;39729:1;39721:6;39717:14;39710:49;39699:67;:::o;39772:225::-;39912:34;39908:1;39900:6;39896:14;39889:58;39981:8;39976:2;39968:6;39964:15;39957:33;39878:119;:::o;40003:181::-;40143:33;40139:1;40131:6;40127:14;40120:57;40109:75;:::o;40190:167::-;40330:19;40326:1;40318:6;40314:14;40307:43;40296:61;:::o;40363:234::-;40503:34;40499:1;40491:6;40487:14;40480:58;40572:17;40567:2;40559:6;40555:15;40548:42;40469:128;:::o;40603:122::-;40676:24;40694:5;40676:24;:::i;:::-;40669:5;40666:35;40656:2;;40715:1;40712;40705:12;40656:2;40646:79;:::o;40731:116::-;40801:21;40816:5;40801:21;:::i;:::-;40794:5;40791:32;40781:2;;40837:1;40834;40827:12;40781:2;40771:76;:::o;40853:122::-;40926:24;40944:5;40926:24;:::i;:::-;40919:5;40916:35;40906:2;;40965:1;40962;40955:12;40906:2;40896:79;:::o;40981:120::-;41053:23;41070:5;41053:23;:::i;:::-;41046:5;41043:34;41033:2;;41091:1;41088;41081:12;41033:2;41023:78;:::o;41107:122::-;41180:24;41198:5;41180:24;:::i;:::-;41173:5;41170:35;41160:2;;41219:1;41216;41209:12;41160:2;41150:79;:::o

Swarm Source

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