ETH Price: $3,260.32 (-4.55%)
Gas: 9 Gwei

Token

Angry Apes United (AAU)
 

Overview

Max Total Supply

8,888 AAU

Holders

4,568

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
cryptoyolo.eth
Balance
1 AAU
0x4a256beb67f835d49ba1d068adc65f1c27f1ba8e
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Angry Apes United is a high utility NFT collection of 8,888 Angry Apes that allows holders to earn additional crypto assets through blockchain gaming.

# Exchange Pair Price  24H Volume % Volume
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.

Contract Source Code Verified (Exact Match)

Contract Name:
AngryApesUnited

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity Multiple files format)

File 2 of 14: AngryApesUnited.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.9;

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

contract AngryApesUnited is ERC721Enumerable, Ownable {
  using ECDSA for bytes32;

  uint256 public mintPrice = 0.065 ether;

  uint256 private reserveAtATime = 45;
  uint256 private reservedCount = 0;
  uint256 private maxReserveCount = 225;

  address private signerAddress = 0x2187D614e851758e7218c43ACFe2690693A15dE4;

  string _baseTokenURI;

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

  uint256 public maximumMintSupply = 8888;
  uint256 public maximumAllowedTokensPerPurchase = 20;
  uint256 public allowListMaxMint = 5;

  mapping(address => uint256) private _allowListClaimed;

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

  constructor(string memory baseURI) ERC721("Angry Apes United", "AAU") {
    setBaseURI(baseURI);
  }

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

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

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

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

  function setMaxMintSupply(uint256 maxMintSupply) external  onlyAuthorized {
    maximumMintSupply = maxMintSupply;
  }

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

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

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

  function setReserveAtATime(uint256 val) public onlyAuthorized {
    reserveAtATime = val;
  }

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

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

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

  function setSignerAddress(address addr) external onlyAuthorized {
    signerAddress = addr;
  }

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

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

  function getReserveAtATime() external view returns (uint256) {
    return reserveAtATime;
  }

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

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

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

  function reserveNft() public onlyAuthorized {
    require(reservedCount <= maxReserveCount, "Max Reserves taken already!");
    uint256 supply = totalSupply();
    uint256 i;

    for (i = 0; i < reserveAtATime; i++) {
      emit AssetMinted(supply + i, msg.sender);
      _safeMint(msg.sender, supply + i);
      reservedCount++;
    }
  }

  function reserveToCustomWallet(address _walletAddress, uint256 _count) public onlyAuthorized {
    for (uint256 i = 0; i < _count; i++) {
      emit AssetMinted(totalSupply(), _walletAddress);
      _safeMint(_walletAddress, totalSupply());
    }
  }

  function mint(address _to, uint256 _count) public payable saleIsOpen {
    if (msg.sender != owner()) {
      require(isActive, "Sale is not active currently.");
    }

    require(totalSupply() + _count <= maximumMintSupply, "Total supply exceeded.");
    require(totalSupply() <= maximumMintSupply, "Total supply spent.");
    require(
      _count <= maximumAllowedTokensPerPurchase,
      "Exceeds maximum allowed tokens"
    );
    require(msg.value >= mintPrice * _count, "Insuffient ETH amount sent.");

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

  function batchReserveToMultipleAddresses(uint256 _count, address[] calldata addresses) external onlyAuthorized {
      uint256 supply = totalSupply();

      require(supply + _count <= maximumMintSupply, "Total supply exceeded.");
      require(supply <= maximumMintSupply, "Total supply spent.");

      for (uint256 i = 0; i < addresses.length; i++) {
        require(addresses[i] != address(0), "Can't add a null address");
        
        for(uint256 j = 0; j < _count; j++) {
           emit AssetMinted(totalSupply(), addresses[i]);
          _safeMint(addresses[i], totalSupply());
        }
      }
  }

  function isValidAccessMessage(bytes memory _signature) internal view returns (bool) {
    bytes32 hash = keccak256(abi.encodePacked(msg.sender));
    return signerAddress == hash.toEthSignedMessageHash().recover(_signature);
  }

  function preSaleMint(bytes memory _signature, uint256 _count) public payable saleIsOpen {
    require(isAllowListActive, 'Allow List is not active');
    require(isValidAccessMessage(_signature), "Invalid access message");
    require(totalSupply() < maximumMintSupply, 'All tokens have been minted');
    require(_count <= allowListMaxMint, 'Cannot purchase this many tokens');
    require(_allowListClaimed[msg.sender] + _count <= allowListMaxMint, 'Purchase exceeds max allowed');
    require(msg.value >= mintPrice * _count, 'Insuffient ETH amount sent.');

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

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

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

  function withdraw() external onlyAuthorized {
    uint balance = address(this).balance;
    payable(owner()).transfer(balance);
  }
}

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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 3 of 14: Context.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

File 4 of 14: ECDSA.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

        return (signer, RecoverError.NoError);
    }

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

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

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

File 5 of 14: ERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";

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

File 6 of 14: ERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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


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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

File 7 of 14: ERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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


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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 8 of 14: IERC165.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

File 9 of 14: IERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC165.sol";


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

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

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

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

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

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

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

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

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

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

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

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

File 10 of 14: IERC721Enumerable.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "../IERC721.sol";

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

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

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

File 11 of 14: IERC721Metadata.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./IERC721.sol";

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

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

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

File 12 of 14: IERC721Receiver.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

import "./Context.sol";


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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"address","name":"sender","type":"address"}],"name":"AssetMinted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"isActive","type":"bool"}],"name":"SaleActivation","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"allowListClaimedBy","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"allowListMaxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"},{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"batchReserveToMultipleAddresses","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getContractOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getMaximumAllowedTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getReserveAtATime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isAllowListActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maximumAllowedTokensPerPurchase","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maximumMintSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"bytes","name":"_signature","type":"bytes"},{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"preSaleMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reserveNft","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_walletAddress","type":"address"},{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"reserveToCustomWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"val","type":"bool"}],"name":"setActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxMint","type":"uint256"}],"name":"setAllowListMaxMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isAllowListActive","type":"bool"}],"name":"setIsAllowListActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxMintSupply","type":"uint256"}],"name":"setMaxMintSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"val","type":"uint256"}],"name":"setMaxReserve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"setMaximumAllowedTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_price","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"val","type":"uint256"}],"name":"setReserveAtATime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr","type":"address"}],"name":"setSignerAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405266e6ed27d6668000600b55602d600c556000600d5560e1600e55732187d614e851758e7218c43acfe2690693a15de4600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000601160006101000a81548160ff0219169083151502179055506000601160016101000a81548160ff0219169083151502179055506122b860125560146013556005601455348015620000c657600080fd5b50604051620062a2380380620062a28339818101604052810190620000ec91906200056d565b6040518060400160405280601181526020017f416e677279204170657320556e697465640000000000000000000000000000008152506040518060400160405280600381526020017f414155000000000000000000000000000000000000000000000000000000000081525081600090805190602001906200017092919062000320565b5080600190805190602001906200018992919062000320565b505050620001ac620001a0620001c460201b60201c565b620001cc60201b60201c565b620001bd816200029260201b60201c565b5062000623565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b3373ffffffffffffffffffffffffffffffffffffffff16620002b9620002f660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620002da57600080fd5b8060109080519060200190620002f292919062000320565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8280546200032e90620005ed565b90600052602060002090601f0160209004810192826200035257600085556200039e565b82601f106200036d57805160ff19168380011785556200039e565b828001600101855582156200039e579182015b828111156200039d57825182559160200191906001019062000380565b5b509050620003ad9190620003b1565b5090565b5b80821115620003cc576000816000905550600101620003b2565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6200043982620003ee565b810181811067ffffffffffffffff821117156200045b576200045a620003ff565b5b80604052505050565b600062000470620003d0565b90506200047e82826200042e565b919050565b600067ffffffffffffffff821115620004a157620004a0620003ff565b5b620004ac82620003ee565b9050602081019050919050565b60005b83811015620004d9578082015181840152602081019050620004bc565b83811115620004e9576000848401525b50505050565b600062000506620005008462000483565b62000464565b905082815260208101848484011115620005255762000524620003e9565b5b62000532848285620004b9565b509392505050565b600082601f830112620005525762000551620003e4565b5b815162000564848260208601620004ef565b91505092915050565b600060208284031215620005865762000585620003da565b5b600082015167ffffffffffffffff811115620005a757620005a6620003df565b5b620005b5848285016200053a565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200060657607f821691505b602082108114156200061d576200061c620005be565b5b50919050565b615c6f80620006336000396000f3fe6080604052600436106102925760003560e01c8063715018a61161015a578063a22cb465116100c1578063da7b69b61161007a578063da7b69b6146109de578063e7b62d96146109fa578063e82b2a7114610a25578063e985e9c514610a4e578063f2fde38b14610a8b578063f6c9d9e314610ab457610292565b8063a22cb465146108d0578063acec338a146108f9578063ad06d75814610922578063b88d4fde1461094d578063c4e41b2214610976578063c87b56dd146109a157610292565b80637f44ab2f116101135780637f44ab2f146107d05780638da5cb5b146107fb57806391b7f5ed1461082657806395d89b411461084f57806398d5fdca1461087a5780639a3bf728146108a557610292565b8063715018a6146106fe578063718bc4af1461071557806371e3500c1461073e5780637389fbb71461075557806377b501b91461077e5780637a6685f1146107a757610292565b806340c10f19116101fe5780634f6ccce7116101b75780634f6ccce7146105ca57806355f804b31461060757806356a87caa146106305780636352211e146106595780636817c76c1461069657806370a08231146106c157610292565b806340c10f19146104c957806342842e0e146104e5578063438b63001461050e578063442890d51461054b5780634d0550de146105765780634dfea627146105a157610292565b806318160ddd1161025057806318160ddd146103cb57806322f3e2d4146103f657806323b872dd1461042157806329fc6bae1461044a5780632f745c59146104755780633ccfd60b146104b257610292565b806208ffdd1461029757806301ffc9a7146102d4578063046dc1661461031157806306fdde031461033a578063081812fc14610365578063095ea7b3146103a2575b600080fd5b3480156102a357600080fd5b506102be60048036038101906102b99190613c8e565b610add565b6040516102cb9190613cd4565b60405180910390f35b3480156102e057600080fd5b506102fb60048036038101906102f69190613d47565b610b95565b6040516103089190613d8f565b60405180910390f35b34801561031d57600080fd5b5061033860048036038101906103339190613c8e565b610c0f565b005b34801561034657600080fd5b5061034f610c92565b60405161035c9190613e43565b60405180910390f35b34801561037157600080fd5b5061038c60048036038101906103879190613e91565b610d24565b6040516103999190613ecd565b60405180910390f35b3480156103ae57600080fd5b506103c960048036038101906103c49190613ee8565b610da9565b005b3480156103d757600080fd5b506103e0610ec1565b6040516103ed9190613cd4565b60405180910390f35b34801561040257600080fd5b5061040b610ece565b6040516104189190613d8f565b60405180910390f35b34801561042d57600080fd5b5061044860048036038101906104439190613f28565b610ee1565b005b34801561045657600080fd5b5061045f610f41565b60405161046c9190613d8f565b60405180910390f35b34801561048157600080fd5b5061049c60048036038101906104979190613ee8565b610f54565b6040516104a99190613cd4565b60405180910390f35b3480156104be57600080fd5b506104c7610ff9565b005b6104e360048036038101906104de9190613ee8565b61108e565b005b3480156104f157600080fd5b5061050c60048036038101906105079190613f28565b611310565b005b34801561051a57600080fd5b5061053560048036038101906105309190613c8e565b611330565b6040516105429190614039565b60405180910390f35b34801561055757600080fd5b506105606113de565b60405161056d9190613ecd565b60405180910390f35b34801561058257600080fd5b5061058b6113ed565b6040516105989190613cd4565b60405180910390f35b3480156105ad57600080fd5b506105c860048036038101906105c39190613e91565b6113f3565b005b3480156105d657600080fd5b506105f160048036038101906105ec9190613e91565b61143c565b6040516105fe9190613cd4565b60405180910390f35b34801561061357600080fd5b5061062e60048036038101906106299190614190565b6114ad565b005b34801561063c57600080fd5b5061065760048036038101906106529190613e91565b611506565b005b34801561066557600080fd5b50610680600480360381019061067b9190613e91565b61154f565b60405161068d9190613ecd565b60405180910390f35b3480156106a257600080fd5b506106ab611601565b6040516106b89190613cd4565b60405180910390f35b3480156106cd57600080fd5b506106e860048036038101906106e39190613c8e565b611607565b6040516106f59190613cd4565b60405180910390f35b34801561070a57600080fd5b506107136116bf565b005b34801561072157600080fd5b5061073c60048036038101906107379190614205565b611747565b005b34801561074a57600080fd5b506107536117a3565b005b34801561076157600080fd5b5061077c60048036038101906107779190613e91565b6118ca565b005b34801561078a57600080fd5b506107a560048036038101906107a09190613ee8565b611913565b005b3480156107b357600080fd5b506107ce60048036038101906107c99190613e91565b6119c6565b005b3480156107dc57600080fd5b506107e5611a0f565b6040516107f29190613cd4565b60405180910390f35b34801561080757600080fd5b50610810611a15565b60405161081d9190613ecd565b60405180910390f35b34801561083257600080fd5b5061084d60048036038101906108489190613e91565b611a3f565b005b34801561085b57600080fd5b50610864611a88565b6040516108719190613e43565b60405180910390f35b34801561088657600080fd5b5061088f611b1a565b60405161089c9190613cd4565b60405180910390f35b3480156108b157600080fd5b506108ba611b24565b6040516108c79190613cd4565b60405180910390f35b3480156108dc57600080fd5b506108f760048036038101906108f29190614232565b611b2a565b005b34801561090557600080fd5b50610920600480360381019061091b9190614205565b611cab565b005b34801561092e57600080fd5b50610937611d3e565b6040516109449190613cd4565b60405180910390f35b34801561095957600080fd5b50610974600480360381019061096f9190614313565b611d87565b005b34801561098257600080fd5b5061098b611de9565b6040516109989190613cd4565b60405180910390f35b3480156109ad57600080fd5b506109c860048036038101906109c39190613e91565b611df8565b6040516109d59190613e43565b60405180910390f35b6109f860048036038101906109f39190614396565b611e9f565b005b348015610a0657600080fd5b50610a0f6121bc565b604051610a1c9190613cd4565b60405180910390f35b348015610a3157600080fd5b50610a4c6004803603810190610a479190614452565b6121c6565b005b348015610a5a57600080fd5b50610a756004803603810190610a7091906144b2565b612423565b604051610a829190613d8f565b60405180910390f35b348015610a9757600080fd5b50610ab26004803603810190610aad9190613c8e565b6124b7565b005b348015610ac057600080fd5b50610adb6004803603810190610ad69190613e91565b6125af565b005b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b459061453e565b60405180910390fd5b601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610c085750610c07826125f8565b5b9050919050565b3373ffffffffffffffffffffffffffffffffffffffff16610c2e611a15565b73ffffffffffffffffffffffffffffffffffffffff1614610c4e57600080fd5b80600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b606060008054610ca19061458d565b80601f0160208091040260200160405190810160405280929190818152602001828054610ccd9061458d565b8015610d1a5780601f10610cef57610100808354040283529160200191610d1a565b820191906000526020600020905b815481529060010190602001808311610cfd57829003601f168201915b5050505050905090565b6000610d2f826126da565b610d6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6590614631565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610db48261154f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1c906146c3565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610e44612746565b73ffffffffffffffffffffffffffffffffffffffff161480610e735750610e7281610e6d612746565b612423565b5b610eb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea990614755565b60405180910390fd5b610ebc838361274e565b505050565b6000600880549050905090565b601160009054906101000a900460ff1681565b610ef2610eec612746565b82612807565b610f31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f28906147e7565b60405180910390fd5b610f3c8383836128e5565b505050565b601160019054906101000a900460ff1681565b6000610f5f83611607565b8210610fa0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9790614879565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b3373ffffffffffffffffffffffffffffffffffffffff16611018611a15565b73ffffffffffffffffffffffffffffffffffffffff161461103857600080fd5b6000479050611045611a15565b73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505015801561108a573d6000803e3d6000fd5b5050565b601254611099610ec1565b11156110da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d1906148e5565b60405180910390fd5b6110e2611a15565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461116457601160009054906101000a900460ff16611163576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115a90614951565b60405180910390fd5b5b60125481611170610ec1565b61117a91906149a0565b11156111bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b290614a42565b60405180910390fd5b6012546111c6610ec1565b1115611207576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fe90614aae565b60405180910390fd5b60135481111561124c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124390614b1a565b60405180910390fd5b80600b5461125a9190614b3a565b34101561129c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129390614be0565b60405180910390fd5b60005b8181101561130b577f55f284809f4c5b7377fbe62f2feeb9686e3834dcae5f3ca955140fe6547cd3556112d0610ec1565b846040516112df929190614c00565b60405180910390a16112f8836112f3610ec1565b612b41565b808061130390614c29565b91505061129f565b505050565b61132b83838360405180602001604052806000815250611d87565b505050565b6060600061133d83611607565b905060008167ffffffffffffffff81111561135b5761135a614065565b5b6040519080825280602002602001820160405280156113895781602001602082028036833780820191505090505b50905060005b828110156113d3576113a18582610f54565b8282815181106113b4576113b3614c72565b5b60200260200101818152505080806113cb90614c29565b91505061138f565b508092505050919050565b60006113e8611a15565b905090565b60125481565b3373ffffffffffffffffffffffffffffffffffffffff16611412611a15565b73ffffffffffffffffffffffffffffffffffffffff161461143257600080fd5b8060138190555050565b6000611446610ec1565b8210611487576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147e90614d13565b60405180910390fd5b6008828154811061149b5761149a614c72565b5b90600052602060002001549050919050565b3373ffffffffffffffffffffffffffffffffffffffff166114cc611a15565b73ffffffffffffffffffffffffffffffffffffffff16146114ec57600080fd5b8060109080519060200190611502929190613b79565b5050565b3373ffffffffffffffffffffffffffffffffffffffff16611525611a15565b73ffffffffffffffffffffffffffffffffffffffff161461154557600080fd5b80600e8190555050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156115f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ef90614da5565b60405180910390fd5b80915050919050565b600b5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611678576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166f90614e37565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6116c7612746565b73ffffffffffffffffffffffffffffffffffffffff166116e5611a15565b73ffffffffffffffffffffffffffffffffffffffff161461173b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173290614ea3565b60405180910390fd5b6117456000612b5f565b565b3373ffffffffffffffffffffffffffffffffffffffff16611766611a15565b73ffffffffffffffffffffffffffffffffffffffff161461178657600080fd5b80601160016101000a81548160ff02191690831515021790555050565b3373ffffffffffffffffffffffffffffffffffffffff166117c2611a15565b73ffffffffffffffffffffffffffffffffffffffff16146117e257600080fd5b600e54600d541115611829576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182090614f0f565b60405180910390fd5b6000611833610ec1565b905060005b600c548110156118c6577f55f284809f4c5b7377fbe62f2feeb9686e3834dcae5f3ca955140fe6547cd355818361186f91906149a0565b3360405161187e929190614c00565b60405180910390a161189b33828461189691906149a0565b612b41565b600d60008154809291906118ae90614c29565b919050555080806118be90614c29565b915050611838565b5050565b3373ffffffffffffffffffffffffffffffffffffffff166118e9611a15565b73ffffffffffffffffffffffffffffffffffffffff161461190957600080fd5b8060128190555050565b3373ffffffffffffffffffffffffffffffffffffffff16611932611a15565b73ffffffffffffffffffffffffffffffffffffffff161461195257600080fd5b60005b818110156119c1577f55f284809f4c5b7377fbe62f2feeb9686e3834dcae5f3ca955140fe6547cd355611986610ec1565b84604051611995929190614c00565b60405180910390a16119ae836119a9610ec1565b612b41565b80806119b990614c29565b915050611955565b505050565b3373ffffffffffffffffffffffffffffffffffffffff166119e5611a15565b73ffffffffffffffffffffffffffffffffffffffff1614611a0557600080fd5b8060148190555050565b60145481565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b3373ffffffffffffffffffffffffffffffffffffffff16611a5e611a15565b73ffffffffffffffffffffffffffffffffffffffff1614611a7e57600080fd5b80600b8190555050565b606060018054611a979061458d565b80601f0160208091040260200160405190810160405280929190818152602001828054611ac39061458d565b8015611b105780601f10611ae557610100808354040283529160200191611b10565b820191906000526020600020905b815481529060010190602001808311611af357829003601f168201915b5050505050905090565b6000600b54905090565b60135481565b611b32612746565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ba0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9790614f7b565b60405180910390fd5b8060056000611bad612746565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611c5a612746565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611c9f9190613d8f565b60405180910390a35050565b3373ffffffffffffffffffffffffffffffffffffffff16611cca611a15565b73ffffffffffffffffffffffffffffffffffffffff1614611cea57600080fd5b80601160006101000a81548160ff0219169083151502179055507f58655b75d3df612fe99ead00dbf0812d415d35078fe06217a94c0818bb13967f81604051611d339190613d8f565b60405180910390a150565b60003373ffffffffffffffffffffffffffffffffffffffff16611d5f611a15565b73ffffffffffffffffffffffffffffffffffffffff1614611d7f57600080fd5b601354905090565b611d98611d92612746565b83612807565b611dd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dce906147e7565b60405180910390fd5b611de384848484612c25565b50505050565b6000611df3610ec1565b905090565b6060611e03826126da565b611e42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e399061500d565b60405180910390fd5b6000611e4c612c81565b90506000815111611e6c5760405180602001604052806000815250611e97565b80611e7684612d13565b604051602001611e87929190615069565b6040516020818303038152906040525b915050919050565b601254611eaa610ec1565b1115611eeb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee2906148e5565b60405180910390fd5b601160019054906101000a900460ff16611f3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f31906150d9565b60405180910390fd5b611f4382612e74565b611f82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7990615145565b60405180910390fd5b601254611f8d610ec1565b10611fcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc4906151b1565b60405180910390fd5b601454811115612012576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120099061521d565b60405180910390fd5b60145481601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461206091906149a0565b11156120a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209890615289565b60405180910390fd5b80600b546120af9190614b3a565b3410156120f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e890614be0565b60405180910390fd5b60005b818110156121b7576001601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461214c91906149a0565b925050819055507f55f284809f4c5b7377fbe62f2feeb9686e3834dcae5f3ca955140fe6547cd35561217c610ec1565b3360405161218b929190614c00565b60405180910390a16121a43361219f610ec1565b612b41565b80806121af90614c29565b9150506120f4565b505050565b6000600c54905090565b3373ffffffffffffffffffffffffffffffffffffffff166121e5611a15565b73ffffffffffffffffffffffffffffffffffffffff161461220557600080fd5b600061220f610ec1565b9050601254848261222091906149a0565b1115612261576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225890614a42565b60405180910390fd5b6012548111156122a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229d90614aae565b60405180910390fd5b60005b8383905081101561241c57600073ffffffffffffffffffffffffffffffffffffffff168484838181106122df576122de614c72565b5b90506020020160208101906122f49190613c8e565b73ffffffffffffffffffffffffffffffffffffffff16141561234b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612342906152f5565b60405180910390fd5b60005b85811015612408577f55f284809f4c5b7377fbe62f2feeb9686e3834dcae5f3ca955140fe6547cd35561237f610ec1565b86868581811061239257612391614c72565b5b90506020020160208101906123a79190613c8e565b6040516123b5929190614c00565b60405180910390a16123f58585848181106123d3576123d2614c72565b5b90506020020160208101906123e89190613c8e565b6123f0610ec1565b612b41565b808061240090614c29565b91505061234e565b50808061241490614c29565b9150506122a9565b5050505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6124bf612746565b73ffffffffffffffffffffffffffffffffffffffff166124dd611a15565b73ffffffffffffffffffffffffffffffffffffffff1614612533576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161252a90614ea3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156125a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161259a90615387565b60405180910390fd5b6125ac81612b5f565b50565b3373ffffffffffffffffffffffffffffffffffffffff166125ce611a15565b73ffffffffffffffffffffffffffffffffffffffff16146125ee57600080fd5b80600c8190555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806126c357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806126d357506126d282612f13565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166127c18361154f565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612812826126da565b612851576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161284890615419565b60405180910390fd5b600061285c8361154f565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806128cb57508373ffffffffffffffffffffffffffffffffffffffff166128b384610d24565b73ffffffffffffffffffffffffffffffffffffffff16145b806128dc57506128db8185612423565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166129058261154f565b73ffffffffffffffffffffffffffffffffffffffff161461295b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612952906154ab565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129c29061553d565b60405180910390fd5b6129d6838383612f7d565b6129e160008261274e565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a31919061555d565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a8891906149a0565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b612b5b828260405180602001604052806000815250613091565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612c308484846128e5565b612c3c848484846130ec565b612c7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c7290615603565b60405180910390fd5b50505050565b606060108054612c909061458d565b80601f0160208091040260200160405190810160405280929190818152602001828054612cbc9061458d565b8015612d095780601f10612cde57610100808354040283529160200191612d09565b820191906000526020600020905b815481529060010190602001808311612cec57829003601f168201915b5050505050905090565b60606000821415612d5b576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612e6f565b600082905060005b60008214612d8d578080612d7690614c29565b915050600a82612d869190615652565b9150612d63565b60008167ffffffffffffffff811115612da957612da8614065565b5b6040519080825280601f01601f191660200182016040528015612ddb5781602001600182028036833780820191505090505b5090505b60008514612e6857600182612df4919061555d565b9150600a85612e039190615683565b6030612e0f91906149a0565b60f81b818381518110612e2557612e24614c72565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612e619190615652565b9450612ddf565b8093505050505b919050565b60008033604051602001612e8891906156fc565b604051602081830303815290604052805190602001209050612ebb83612ead83613283565b6132b390919063ffffffff16565b73ffffffffffffffffffffffffffffffffffffffff16600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612f888383836132da565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612fcb57612fc6816132df565b61300a565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614613009576130088382613328565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561304d5761304881613495565b61308c565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461308b5761308a8282613566565b5b5b505050565b61309b83836135e5565b6130a860008484846130ec565b6130e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130de90615603565b60405180910390fd5b505050565b600061310d8473ffffffffffffffffffffffffffffffffffffffff166137b3565b15613276578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613136612746565b8786866040518563ffffffff1660e01b8152600401613158949392919061576c565b602060405180830381600087803b15801561317257600080fd5b505af19250505080156131a357506040513d601f19601f820116820180604052508101906131a091906157cd565b60015b613226573d80600081146131d3576040519150601f19603f3d011682016040523d82523d6000602084013e6131d8565b606091505b5060008151141561321e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161321590615603565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061327b565b600190505b949350505050565b6000816040516020016132969190615871565b604051602081830303815290604052805190602001209050919050565b60008060006132c285856137c6565b915091506132cf81613849565b819250505092915050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161333584611607565b61333f919061555d565b9050600060076000848152602001908152602001600020549050818114613424576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506134a9919061555d565b90506000600960008481526020019081526020016000205490506000600883815481106134d9576134d8614c72565b5b9060005260206000200154905080600883815481106134fb576134fa614c72565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061354a57613549615897565b5b6001900381819060005260206000200160009055905550505050565b600061357183611607565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613655576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161364c90615912565b60405180910390fd5b61365e816126da565b1561369e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136959061597e565b60405180910390fd5b6136aa60008383612f7d565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546136fa91906149a0565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b6000806041835114156138085760008060006020860151925060408601519150606086015160001a90506137fc87828585613a1e565b94509450505050613842565b60408351141561383957600080602085015191506040850151905061382e868383613b2b565b935093505050613842565b60006002915091505b9250929050565b6000600481111561385d5761385c61599e565b5b8160048111156138705761386f61599e565b5b141561387b57613a1b565b6001600481111561388f5761388e61599e565b5b8160048111156138a2576138a161599e565b5b14156138e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138da90615a19565b60405180910390fd5b600260048111156138f7576138f661599e565b5b81600481111561390a5761390961599e565b5b141561394b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161394290615a85565b60405180910390fd5b6003600481111561395f5761395e61599e565b5b8160048111156139725761397161599e565b5b14156139b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139aa90615b17565b60405180910390fd5b6004808111156139c6576139c561599e565b5b8160048111156139d9576139d861599e565b5b1415613a1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a1190615ba9565b60405180910390fd5b5b50565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c1115613a59576000600391509150613b22565b601b8560ff1614158015613a715750601c8560ff1614155b15613a83576000600491509150613b22565b600060018787878760405160008152602001604052604051613aa89493929190615bf4565b6020604051602081039080840390855afa158015613aca573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415613b1957600060019250925050613b22565b80600092509250505b94509492505050565b6000806000807f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff85169150601b8560ff1c019050613b6b87828885613a1e565b935093505050935093915050565b828054613b859061458d565b90600052602060002090601f016020900481019282613ba75760008555613bee565b82601f10613bc057805160ff1916838001178555613bee565b82800160010185558215613bee579182015b82811115613bed578251825591602001919060010190613bd2565b5b509050613bfb9190613bff565b5090565b5b80821115613c18576000816000905550600101613c00565b5090565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613c5b82613c30565b9050919050565b613c6b81613c50565b8114613c7657600080fd5b50565b600081359050613c8881613c62565b92915050565b600060208284031215613ca457613ca3613c26565b5b6000613cb284828501613c79565b91505092915050565b6000819050919050565b613cce81613cbb565b82525050565b6000602082019050613ce96000830184613cc5565b92915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613d2481613cef565b8114613d2f57600080fd5b50565b600081359050613d4181613d1b565b92915050565b600060208284031215613d5d57613d5c613c26565b5b6000613d6b84828501613d32565b91505092915050565b60008115159050919050565b613d8981613d74565b82525050565b6000602082019050613da46000830184613d80565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613de4578082015181840152602081019050613dc9565b83811115613df3576000848401525b50505050565b6000601f19601f8301169050919050565b6000613e1582613daa565b613e1f8185613db5565b9350613e2f818560208601613dc6565b613e3881613df9565b840191505092915050565b60006020820190508181036000830152613e5d8184613e0a565b905092915050565b613e6e81613cbb565b8114613e7957600080fd5b50565b600081359050613e8b81613e65565b92915050565b600060208284031215613ea757613ea6613c26565b5b6000613eb584828501613e7c565b91505092915050565b613ec781613c50565b82525050565b6000602082019050613ee26000830184613ebe565b92915050565b60008060408385031215613eff57613efe613c26565b5b6000613f0d85828601613c79565b9250506020613f1e85828601613e7c565b9150509250929050565b600080600060608486031215613f4157613f40613c26565b5b6000613f4f86828701613c79565b9350506020613f6086828701613c79565b9250506040613f7186828701613e7c565b9150509250925092565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613fb081613cbb565b82525050565b6000613fc28383613fa7565b60208301905092915050565b6000602082019050919050565b6000613fe682613f7b565b613ff08185613f86565b9350613ffb83613f97565b8060005b8381101561402c5781516140138882613fb6565b975061401e83613fce565b925050600181019050613fff565b5085935050505092915050565b600060208201905081810360008301526140538184613fdb565b905092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61409d82613df9565b810181811067ffffffffffffffff821117156140bc576140bb614065565b5b80604052505050565b60006140cf613c1c565b90506140db8282614094565b919050565b600067ffffffffffffffff8211156140fb576140fa614065565b5b61410482613df9565b9050602081019050919050565b82818337600083830152505050565b600061413361412e846140e0565b6140c5565b90508281526020810184848401111561414f5761414e614060565b5b61415a848285614111565b509392505050565b600082601f8301126141775761417661405b565b5b8135614187848260208601614120565b91505092915050565b6000602082840312156141a6576141a5613c26565b5b600082013567ffffffffffffffff8111156141c4576141c3613c2b565b5b6141d084828501614162565b91505092915050565b6141e281613d74565b81146141ed57600080fd5b50565b6000813590506141ff816141d9565b92915050565b60006020828403121561421b5761421a613c26565b5b6000614229848285016141f0565b91505092915050565b6000806040838503121561424957614248613c26565b5b600061425785828601613c79565b9250506020614268858286016141f0565b9150509250929050565b600067ffffffffffffffff82111561428d5761428c614065565b5b61429682613df9565b9050602081019050919050565b60006142b66142b184614272565b6140c5565b9050828152602081018484840111156142d2576142d1614060565b5b6142dd848285614111565b509392505050565b600082601f8301126142fa576142f961405b565b5b813561430a8482602086016142a3565b91505092915050565b6000806000806080858703121561432d5761432c613c26565b5b600061433b87828801613c79565b945050602061434c87828801613c79565b935050604061435d87828801613e7c565b925050606085013567ffffffffffffffff81111561437e5761437d613c2b565b5b61438a878288016142e5565b91505092959194509250565b600080604083850312156143ad576143ac613c26565b5b600083013567ffffffffffffffff8111156143cb576143ca613c2b565b5b6143d7858286016142e5565b92505060206143e885828601613e7c565b9150509250929050565b600080fd5b600080fd5b60008083601f8401126144125761441161405b565b5b8235905067ffffffffffffffff81111561442f5761442e6143f2565b5b60208301915083602082028301111561444b5761444a6143f7565b5b9250929050565b60008060006040848603121561446b5761446a613c26565b5b600061447986828701613e7c565b935050602084013567ffffffffffffffff81111561449a57614499613c2b565b5b6144a6868287016143fc565b92509250509250925092565b600080604083850312156144c9576144c8613c26565b5b60006144d785828601613c79565b92505060206144e885828601613c79565b9150509250929050565b7f5a65726f2061646472657373206e6f74206f6e20416c6c6f77204c6973740000600082015250565b6000614528601e83613db5565b9150614533826144f2565b602082019050919050565b600060208201905081810360008301526145578161451b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806145a557607f821691505b602082108114156145b9576145b861455e565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b600061461b602c83613db5565b9150614626826145bf565b604082019050919050565b6000602082019050818103600083015261464a8161460e565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b60006146ad602183613db5565b91506146b882614651565b604082019050919050565b600060208201905081810360008301526146dc816146a0565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b600061473f603883613db5565b915061474a826146e3565b604082019050919050565b6000602082019050818103600083015261476e81614732565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b60006147d1603183613db5565b91506147dc82614775565b604082019050919050565b60006020820190508181036000830152614800816147c4565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b6000614863602b83613db5565b915061486e82614807565b604082019050919050565b6000602082019050818103600083015261489281614856565b9050919050565b7f53616c652068617320656e6465642e0000000000000000000000000000000000600082015250565b60006148cf600f83613db5565b91506148da82614899565b602082019050919050565b600060208201905081810360008301526148fe816148c2565b9050919050565b7f53616c65206973206e6f74206163746976652063757272656e746c792e000000600082015250565b600061493b601d83613db5565b915061494682614905565b602082019050919050565b6000602082019050818103600083015261496a8161492e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006149ab82613cbb565b91506149b683613cbb565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156149eb576149ea614971565b5b828201905092915050565b7f546f74616c20737570706c792065786365656465642e00000000000000000000600082015250565b6000614a2c601683613db5565b9150614a37826149f6565b602082019050919050565b60006020820190508181036000830152614a5b81614a1f565b9050919050565b7f546f74616c20737570706c79207370656e742e00000000000000000000000000600082015250565b6000614a98601383613db5565b9150614aa382614a62565b602082019050919050565b60006020820190508181036000830152614ac781614a8b565b9050919050565b7f45786365656473206d6178696d756d20616c6c6f77656420746f6b656e730000600082015250565b6000614b04601e83613db5565b9150614b0f82614ace565b602082019050919050565b60006020820190508181036000830152614b3381614af7565b9050919050565b6000614b4582613cbb565b9150614b5083613cbb565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614b8957614b88614971565b5b828202905092915050565b7f496e7375666669656e742045544820616d6f756e742073656e742e0000000000600082015250565b6000614bca601b83613db5565b9150614bd582614b94565b602082019050919050565b60006020820190508181036000830152614bf981614bbd565b9050919050565b6000604082019050614c156000830185613cc5565b614c226020830184613ebe565b9392505050565b6000614c3482613cbb565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614c6757614c66614971565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6000614cfd602c83613db5565b9150614d0882614ca1565b604082019050919050565b60006020820190508181036000830152614d2c81614cf0565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000614d8f602983613db5565b9150614d9a82614d33565b604082019050919050565b60006020820190508181036000830152614dbe81614d82565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000614e21602a83613db5565b9150614e2c82614dc5565b604082019050919050565b60006020820190508181036000830152614e5081614e14565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614e8d602083613db5565b9150614e9882614e57565b602082019050919050565b60006020820190508181036000830152614ebc81614e80565b9050919050565b7f4d61782052657365727665732074616b656e20616c7265616479210000000000600082015250565b6000614ef9601b83613db5565b9150614f0482614ec3565b602082019050919050565b60006020820190508181036000830152614f2881614eec565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000614f65601983613db5565b9150614f7082614f2f565b602082019050919050565b60006020820190508181036000830152614f9481614f58565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000614ff7602f83613db5565b915061500282614f9b565b604082019050919050565b6000602082019050818103600083015261502681614fea565b9050919050565b600081905092915050565b600061504382613daa565b61504d818561502d565b935061505d818560208601613dc6565b80840191505092915050565b60006150758285615038565b91506150818284615038565b91508190509392505050565b7f416c6c6f77204c697374206973206e6f74206163746976650000000000000000600082015250565b60006150c3601883613db5565b91506150ce8261508d565b602082019050919050565b600060208201905081810360008301526150f2816150b6565b9050919050565b7f496e76616c696420616363657373206d65737361676500000000000000000000600082015250565b600061512f601683613db5565b915061513a826150f9565b602082019050919050565b6000602082019050818103600083015261515e81615122565b9050919050565b7f416c6c20746f6b656e732068617665206265656e206d696e7465640000000000600082015250565b600061519b601b83613db5565b91506151a682615165565b602082019050919050565b600060208201905081810360008301526151ca8161518e565b9050919050565b7f43616e6e6f742070757263686173652074686973206d616e7920746f6b656e73600082015250565b6000615207602083613db5565b9150615212826151d1565b602082019050919050565b60006020820190508181036000830152615236816151fa565b9050919050565b7f50757263686173652065786365656473206d617820616c6c6f77656400000000600082015250565b6000615273601c83613db5565b915061527e8261523d565b602082019050919050565b600060208201905081810360008301526152a281615266565b9050919050565b7f43616e2774206164642061206e756c6c20616464726573730000000000000000600082015250565b60006152df601883613db5565b91506152ea826152a9565b602082019050919050565b6000602082019050818103600083015261530e816152d2565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000615371602683613db5565b915061537c82615315565b604082019050919050565b600060208201905081810360008301526153a081615364565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000615403602c83613db5565b915061540e826153a7565b604082019050919050565b60006020820190508181036000830152615432816153f6565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b6000615495602983613db5565b91506154a082615439565b604082019050919050565b600060208201905081810360008301526154c481615488565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000615527602483613db5565b9150615532826154cb565b604082019050919050565b600060208201905081810360008301526155568161551a565b9050919050565b600061556882613cbb565b915061557383613cbb565b92508282101561558657615585614971565b5b828203905092915050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b60006155ed603283613db5565b91506155f882615591565b604082019050919050565b6000602082019050818103600083015261561c816155e0565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061565d82613cbb565b915061566883613cbb565b92508261567857615677615623565b5b828204905092915050565b600061568e82613cbb565b915061569983613cbb565b9250826156a9576156a8615623565b5b828206905092915050565b60008160601b9050919050565b60006156cc826156b4565b9050919050565b60006156de826156c1565b9050919050565b6156f66156f182613c50565b6156d3565b82525050565b600061570882846156e5565b60148201915081905092915050565b600081519050919050565b600082825260208201905092915050565b600061573e82615717565b6157488185615722565b9350615758818560208601613dc6565b61576181613df9565b840191505092915050565b60006080820190506157816000830187613ebe565b61578e6020830186613ebe565b61579b6040830185613cc5565b81810360608301526157ad8184615733565b905095945050505050565b6000815190506157c781613d1b565b92915050565b6000602082840312156157e3576157e2613c26565b5b60006157f1848285016157b8565b91505092915050565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b6000615830601c8361502d565b915061583b826157fa565b601c82019050919050565b6000819050919050565b6000819050919050565b61586b61586682615846565b615850565b82525050565b600061587c82615823565b9150615888828461585a565b60208201915081905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006158fc602083613db5565b9150615907826158c6565b602082019050919050565b6000602082019050818103600083015261592b816158ef565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000615968601c83613db5565b915061597382615932565b602082019050919050565b600060208201905081810360008301526159978161595b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b6000615a03601883613db5565b9150615a0e826159cd565b602082019050919050565b60006020820190508181036000830152615a32816159f6565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b6000615a6f601f83613db5565b9150615a7a82615a39565b602082019050919050565b60006020820190508181036000830152615a9e81615a62565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b6000615b01602283613db5565b9150615b0c82615aa5565b604082019050919050565b60006020820190508181036000830152615b3081615af4565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b6000615b93602283613db5565b9150615b9e82615b37565b604082019050919050565b60006020820190508181036000830152615bc281615b86565b9050919050565b615bd281615846565b82525050565b600060ff82169050919050565b615bee81615bd8565b82525050565b6000608082019050615c096000830187615bc9565b615c166020830186615be5565b615c236040830185615bc9565b615c306060830184615bc9565b9594505050505056fea264697066735822122077997dba2d33ab355426fd1edd87007863f1ebe8c2b505608f1a6c2087f4bae964736f6c634300080900330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002168747470733a2f2f6f646472657075626c69632e696f2f746f6b656e2f3f69643d00000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102925760003560e01c8063715018a61161015a578063a22cb465116100c1578063da7b69b61161007a578063da7b69b6146109de578063e7b62d96146109fa578063e82b2a7114610a25578063e985e9c514610a4e578063f2fde38b14610a8b578063f6c9d9e314610ab457610292565b8063a22cb465146108d0578063acec338a146108f9578063ad06d75814610922578063b88d4fde1461094d578063c4e41b2214610976578063c87b56dd146109a157610292565b80637f44ab2f116101135780637f44ab2f146107d05780638da5cb5b146107fb57806391b7f5ed1461082657806395d89b411461084f57806398d5fdca1461087a5780639a3bf728146108a557610292565b8063715018a6146106fe578063718bc4af1461071557806371e3500c1461073e5780637389fbb71461075557806377b501b91461077e5780637a6685f1146107a757610292565b806340c10f19116101fe5780634f6ccce7116101b75780634f6ccce7146105ca57806355f804b31461060757806356a87caa146106305780636352211e146106595780636817c76c1461069657806370a08231146106c157610292565b806340c10f19146104c957806342842e0e146104e5578063438b63001461050e578063442890d51461054b5780634d0550de146105765780634dfea627146105a157610292565b806318160ddd1161025057806318160ddd146103cb57806322f3e2d4146103f657806323b872dd1461042157806329fc6bae1461044a5780632f745c59146104755780633ccfd60b146104b257610292565b806208ffdd1461029757806301ffc9a7146102d4578063046dc1661461031157806306fdde031461033a578063081812fc14610365578063095ea7b3146103a2575b600080fd5b3480156102a357600080fd5b506102be60048036038101906102b99190613c8e565b610add565b6040516102cb9190613cd4565b60405180910390f35b3480156102e057600080fd5b506102fb60048036038101906102f69190613d47565b610b95565b6040516103089190613d8f565b60405180910390f35b34801561031d57600080fd5b5061033860048036038101906103339190613c8e565b610c0f565b005b34801561034657600080fd5b5061034f610c92565b60405161035c9190613e43565b60405180910390f35b34801561037157600080fd5b5061038c60048036038101906103879190613e91565b610d24565b6040516103999190613ecd565b60405180910390f35b3480156103ae57600080fd5b506103c960048036038101906103c49190613ee8565b610da9565b005b3480156103d757600080fd5b506103e0610ec1565b6040516103ed9190613cd4565b60405180910390f35b34801561040257600080fd5b5061040b610ece565b6040516104189190613d8f565b60405180910390f35b34801561042d57600080fd5b5061044860048036038101906104439190613f28565b610ee1565b005b34801561045657600080fd5b5061045f610f41565b60405161046c9190613d8f565b60405180910390f35b34801561048157600080fd5b5061049c60048036038101906104979190613ee8565b610f54565b6040516104a99190613cd4565b60405180910390f35b3480156104be57600080fd5b506104c7610ff9565b005b6104e360048036038101906104de9190613ee8565b61108e565b005b3480156104f157600080fd5b5061050c60048036038101906105079190613f28565b611310565b005b34801561051a57600080fd5b5061053560048036038101906105309190613c8e565b611330565b6040516105429190614039565b60405180910390f35b34801561055757600080fd5b506105606113de565b60405161056d9190613ecd565b60405180910390f35b34801561058257600080fd5b5061058b6113ed565b6040516105989190613cd4565b60405180910390f35b3480156105ad57600080fd5b506105c860048036038101906105c39190613e91565b6113f3565b005b3480156105d657600080fd5b506105f160048036038101906105ec9190613e91565b61143c565b6040516105fe9190613cd4565b60405180910390f35b34801561061357600080fd5b5061062e60048036038101906106299190614190565b6114ad565b005b34801561063c57600080fd5b5061065760048036038101906106529190613e91565b611506565b005b34801561066557600080fd5b50610680600480360381019061067b9190613e91565b61154f565b60405161068d9190613ecd565b60405180910390f35b3480156106a257600080fd5b506106ab611601565b6040516106b89190613cd4565b60405180910390f35b3480156106cd57600080fd5b506106e860048036038101906106e39190613c8e565b611607565b6040516106f59190613cd4565b60405180910390f35b34801561070a57600080fd5b506107136116bf565b005b34801561072157600080fd5b5061073c60048036038101906107379190614205565b611747565b005b34801561074a57600080fd5b506107536117a3565b005b34801561076157600080fd5b5061077c60048036038101906107779190613e91565b6118ca565b005b34801561078a57600080fd5b506107a560048036038101906107a09190613ee8565b611913565b005b3480156107b357600080fd5b506107ce60048036038101906107c99190613e91565b6119c6565b005b3480156107dc57600080fd5b506107e5611a0f565b6040516107f29190613cd4565b60405180910390f35b34801561080757600080fd5b50610810611a15565b60405161081d9190613ecd565b60405180910390f35b34801561083257600080fd5b5061084d60048036038101906108489190613e91565b611a3f565b005b34801561085b57600080fd5b50610864611a88565b6040516108719190613e43565b60405180910390f35b34801561088657600080fd5b5061088f611b1a565b60405161089c9190613cd4565b60405180910390f35b3480156108b157600080fd5b506108ba611b24565b6040516108c79190613cd4565b60405180910390f35b3480156108dc57600080fd5b506108f760048036038101906108f29190614232565b611b2a565b005b34801561090557600080fd5b50610920600480360381019061091b9190614205565b611cab565b005b34801561092e57600080fd5b50610937611d3e565b6040516109449190613cd4565b60405180910390f35b34801561095957600080fd5b50610974600480360381019061096f9190614313565b611d87565b005b34801561098257600080fd5b5061098b611de9565b6040516109989190613cd4565b60405180910390f35b3480156109ad57600080fd5b506109c860048036038101906109c39190613e91565b611df8565b6040516109d59190613e43565b60405180910390f35b6109f860048036038101906109f39190614396565b611e9f565b005b348015610a0657600080fd5b50610a0f6121bc565b604051610a1c9190613cd4565b60405180910390f35b348015610a3157600080fd5b50610a4c6004803603810190610a479190614452565b6121c6565b005b348015610a5a57600080fd5b50610a756004803603810190610a7091906144b2565b612423565b604051610a829190613d8f565b60405180910390f35b348015610a9757600080fd5b50610ab26004803603810190610aad9190613c8e565b6124b7565b005b348015610ac057600080fd5b50610adb6004803603810190610ad69190613e91565b6125af565b005b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610b4e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b459061453e565b60405180910390fd5b601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610c085750610c07826125f8565b5b9050919050565b3373ffffffffffffffffffffffffffffffffffffffff16610c2e611a15565b73ffffffffffffffffffffffffffffffffffffffff1614610c4e57600080fd5b80600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b606060008054610ca19061458d565b80601f0160208091040260200160405190810160405280929190818152602001828054610ccd9061458d565b8015610d1a5780601f10610cef57610100808354040283529160200191610d1a565b820191906000526020600020905b815481529060010190602001808311610cfd57829003601f168201915b5050505050905090565b6000610d2f826126da565b610d6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6590614631565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610db48261154f565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1c906146c3565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610e44612746565b73ffffffffffffffffffffffffffffffffffffffff161480610e735750610e7281610e6d612746565b612423565b5b610eb2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea990614755565b60405180910390fd5b610ebc838361274e565b505050565b6000600880549050905090565b601160009054906101000a900460ff1681565b610ef2610eec612746565b82612807565b610f31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f28906147e7565b60405180910390fd5b610f3c8383836128e5565b505050565b601160019054906101000a900460ff1681565b6000610f5f83611607565b8210610fa0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9790614879565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b3373ffffffffffffffffffffffffffffffffffffffff16611018611a15565b73ffffffffffffffffffffffffffffffffffffffff161461103857600080fd5b6000479050611045611a15565b73ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505015801561108a573d6000803e3d6000fd5b5050565b601254611099610ec1565b11156110da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d1906148e5565b60405180910390fd5b6110e2611a15565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461116457601160009054906101000a900460ff16611163576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115a90614951565b60405180910390fd5b5b60125481611170610ec1565b61117a91906149a0565b11156111bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111b290614a42565b60405180910390fd5b6012546111c6610ec1565b1115611207576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111fe90614aae565b60405180910390fd5b60135481111561124c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124390614b1a565b60405180910390fd5b80600b5461125a9190614b3a565b34101561129c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161129390614be0565b60405180910390fd5b60005b8181101561130b577f55f284809f4c5b7377fbe62f2feeb9686e3834dcae5f3ca955140fe6547cd3556112d0610ec1565b846040516112df929190614c00565b60405180910390a16112f8836112f3610ec1565b612b41565b808061130390614c29565b91505061129f565b505050565b61132b83838360405180602001604052806000815250611d87565b505050565b6060600061133d83611607565b905060008167ffffffffffffffff81111561135b5761135a614065565b5b6040519080825280602002602001820160405280156113895781602001602082028036833780820191505090505b50905060005b828110156113d3576113a18582610f54565b8282815181106113b4576113b3614c72565b5b60200260200101818152505080806113cb90614c29565b91505061138f565b508092505050919050565b60006113e8611a15565b905090565b60125481565b3373ffffffffffffffffffffffffffffffffffffffff16611412611a15565b73ffffffffffffffffffffffffffffffffffffffff161461143257600080fd5b8060138190555050565b6000611446610ec1565b8210611487576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147e90614d13565b60405180910390fd5b6008828154811061149b5761149a614c72565b5b90600052602060002001549050919050565b3373ffffffffffffffffffffffffffffffffffffffff166114cc611a15565b73ffffffffffffffffffffffffffffffffffffffff16146114ec57600080fd5b8060109080519060200190611502929190613b79565b5050565b3373ffffffffffffffffffffffffffffffffffffffff16611525611a15565b73ffffffffffffffffffffffffffffffffffffffff161461154557600080fd5b80600e8190555050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156115f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ef90614da5565b60405180910390fd5b80915050919050565b600b5481565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611678576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161166f90614e37565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6116c7612746565b73ffffffffffffffffffffffffffffffffffffffff166116e5611a15565b73ffffffffffffffffffffffffffffffffffffffff161461173b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173290614ea3565b60405180910390fd5b6117456000612b5f565b565b3373ffffffffffffffffffffffffffffffffffffffff16611766611a15565b73ffffffffffffffffffffffffffffffffffffffff161461178657600080fd5b80601160016101000a81548160ff02191690831515021790555050565b3373ffffffffffffffffffffffffffffffffffffffff166117c2611a15565b73ffffffffffffffffffffffffffffffffffffffff16146117e257600080fd5b600e54600d541115611829576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161182090614f0f565b60405180910390fd5b6000611833610ec1565b905060005b600c548110156118c6577f55f284809f4c5b7377fbe62f2feeb9686e3834dcae5f3ca955140fe6547cd355818361186f91906149a0565b3360405161187e929190614c00565b60405180910390a161189b33828461189691906149a0565b612b41565b600d60008154809291906118ae90614c29565b919050555080806118be90614c29565b915050611838565b5050565b3373ffffffffffffffffffffffffffffffffffffffff166118e9611a15565b73ffffffffffffffffffffffffffffffffffffffff161461190957600080fd5b8060128190555050565b3373ffffffffffffffffffffffffffffffffffffffff16611932611a15565b73ffffffffffffffffffffffffffffffffffffffff161461195257600080fd5b60005b818110156119c1577f55f284809f4c5b7377fbe62f2feeb9686e3834dcae5f3ca955140fe6547cd355611986610ec1565b84604051611995929190614c00565b60405180910390a16119ae836119a9610ec1565b612b41565b80806119b990614c29565b915050611955565b505050565b3373ffffffffffffffffffffffffffffffffffffffff166119e5611a15565b73ffffffffffffffffffffffffffffffffffffffff1614611a0557600080fd5b8060148190555050565b60145481565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b3373ffffffffffffffffffffffffffffffffffffffff16611a5e611a15565b73ffffffffffffffffffffffffffffffffffffffff1614611a7e57600080fd5b80600b8190555050565b606060018054611a979061458d565b80601f0160208091040260200160405190810160405280929190818152602001828054611ac39061458d565b8015611b105780601f10611ae557610100808354040283529160200191611b10565b820191906000526020600020905b815481529060010190602001808311611af357829003601f168201915b5050505050905090565b6000600b54905090565b60135481565b611b32612746565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611ba0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9790614f7b565b60405180910390fd5b8060056000611bad612746565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611c5a612746565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611c9f9190613d8f565b60405180910390a35050565b3373ffffffffffffffffffffffffffffffffffffffff16611cca611a15565b73ffffffffffffffffffffffffffffffffffffffff1614611cea57600080fd5b80601160006101000a81548160ff0219169083151502179055507f58655b75d3df612fe99ead00dbf0812d415d35078fe06217a94c0818bb13967f81604051611d339190613d8f565b60405180910390a150565b60003373ffffffffffffffffffffffffffffffffffffffff16611d5f611a15565b73ffffffffffffffffffffffffffffffffffffffff1614611d7f57600080fd5b601354905090565b611d98611d92612746565b83612807565b611dd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dce906147e7565b60405180910390fd5b611de384848484612c25565b50505050565b6000611df3610ec1565b905090565b6060611e03826126da565b611e42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e399061500d565b60405180910390fd5b6000611e4c612c81565b90506000815111611e6c5760405180602001604052806000815250611e97565b80611e7684612d13565b604051602001611e87929190615069565b6040516020818303038152906040525b915050919050565b601254611eaa610ec1565b1115611eeb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee2906148e5565b60405180910390fd5b601160019054906101000a900460ff16611f3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f31906150d9565b60405180910390fd5b611f4382612e74565b611f82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7990615145565b60405180910390fd5b601254611f8d610ec1565b10611fcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc4906151b1565b60405180910390fd5b601454811115612012576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120099061521d565b60405180910390fd5b60145481601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461206091906149a0565b11156120a1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161209890615289565b60405180910390fd5b80600b546120af9190614b3a565b3410156120f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120e890614be0565b60405180910390fd5b60005b818110156121b7576001601560003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461214c91906149a0565b925050819055507f55f284809f4c5b7377fbe62f2feeb9686e3834dcae5f3ca955140fe6547cd35561217c610ec1565b3360405161218b929190614c00565b60405180910390a16121a43361219f610ec1565b612b41565b80806121af90614c29565b9150506120f4565b505050565b6000600c54905090565b3373ffffffffffffffffffffffffffffffffffffffff166121e5611a15565b73ffffffffffffffffffffffffffffffffffffffff161461220557600080fd5b600061220f610ec1565b9050601254848261222091906149a0565b1115612261576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225890614a42565b60405180910390fd5b6012548111156122a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161229d90614aae565b60405180910390fd5b60005b8383905081101561241c57600073ffffffffffffffffffffffffffffffffffffffff168484838181106122df576122de614c72565b5b90506020020160208101906122f49190613c8e565b73ffffffffffffffffffffffffffffffffffffffff16141561234b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612342906152f5565b60405180910390fd5b60005b85811015612408577f55f284809f4c5b7377fbe62f2feeb9686e3834dcae5f3ca955140fe6547cd35561237f610ec1565b86868581811061239257612391614c72565b5b90506020020160208101906123a79190613c8e565b6040516123b5929190614c00565b60405180910390a16123f58585848181106123d3576123d2614c72565b5b90506020020160208101906123e89190613c8e565b6123f0610ec1565b612b41565b808061240090614c29565b91505061234e565b50808061241490614c29565b9150506122a9565b5050505050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6124bf612746565b73ffffffffffffffffffffffffffffffffffffffff166124dd611a15565b73ffffffffffffffffffffffffffffffffffffffff1614612533576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161252a90614ea3565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156125a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161259a90615387565b60405180910390fd5b6125ac81612b5f565b50565b3373ffffffffffffffffffffffffffffffffffffffff166125ce611a15565b73ffffffffffffffffffffffffffffffffffffffff16146125ee57600080fd5b80600c8190555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806126c357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806126d357506126d282612f13565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166127c18361154f565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612812826126da565b612851576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161284890615419565b60405180910390fd5b600061285c8361154f565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806128cb57508373ffffffffffffffffffffffffffffffffffffffff166128b384610d24565b73ffffffffffffffffffffffffffffffffffffffff16145b806128dc57506128db8185612423565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166129058261154f565b73ffffffffffffffffffffffffffffffffffffffff161461295b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612952906154ab565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129c29061553d565b60405180910390fd5b6129d6838383612f7d565b6129e160008261274e565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a31919061555d565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a8891906149a0565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b612b5b828260405180602001604052806000815250613091565b5050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b612c308484846128e5565b612c3c848484846130ec565b612c7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c7290615603565b60405180910390fd5b50505050565b606060108054612c909061458d565b80601f0160208091040260200160405190810160405280929190818152602001828054612cbc9061458d565b8015612d095780601f10612cde57610100808354040283529160200191612d09565b820191906000526020600020905b815481529060010190602001808311612cec57829003601f168201915b5050505050905090565b60606000821415612d5b576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612e6f565b600082905060005b60008214612d8d578080612d7690614c29565b915050600a82612d869190615652565b9150612d63565b60008167ffffffffffffffff811115612da957612da8614065565b5b6040519080825280601f01601f191660200182016040528015612ddb5781602001600182028036833780820191505090505b5090505b60008514612e6857600182612df4919061555d565b9150600a85612e039190615683565b6030612e0f91906149a0565b60f81b818381518110612e2557612e24614c72565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612e619190615652565b9450612ddf565b8093505050505b919050565b60008033604051602001612e8891906156fc565b604051602081830303815290604052805190602001209050612ebb83612ead83613283565b6132b390919063ffffffff16565b73ffffffffffffffffffffffffffffffffffffffff16600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b612f888383836132da565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612fcb57612fc6816132df565b61300a565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614613009576130088382613328565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561304d5761304881613495565b61308c565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461308b5761308a8282613566565b5b5b505050565b61309b83836135e5565b6130a860008484846130ec565b6130e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016130de90615603565b60405180910390fd5b505050565b600061310d8473ffffffffffffffffffffffffffffffffffffffff166137b3565b15613276578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613136612746565b8786866040518563ffffffff1660e01b8152600401613158949392919061576c565b602060405180830381600087803b15801561317257600080fd5b505af19250505080156131a357506040513d601f19601f820116820180604052508101906131a091906157cd565b60015b613226573d80600081146131d3576040519150601f19603f3d011682016040523d82523d6000602084013e6131d8565b606091505b5060008151141561321e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161321590615603565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505061327b565b600190505b949350505050565b6000816040516020016132969190615871565b604051602081830303815290604052805190602001209050919050565b60008060006132c285856137c6565b915091506132cf81613849565b819250505092915050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161333584611607565b61333f919061555d565b9050600060076000848152602001908152602001600020549050818114613424576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506134a9919061555d565b90506000600960008481526020019081526020016000205490506000600883815481106134d9576134d8614c72565b5b9060005260206000200154905080600883815481106134fb576134fa614c72565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061354a57613549615897565b5b6001900381819060005260206000200160009055905550505050565b600061357183611607565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613655576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161364c90615912565b60405180910390fd5b61365e816126da565b1561369e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016136959061597e565b60405180910390fd5b6136aa60008383612f7d565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546136fa91906149a0565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b6000806041835114156138085760008060006020860151925060408601519150606086015160001a90506137fc87828585613a1e565b94509450505050613842565b60408351141561383957600080602085015191506040850151905061382e868383613b2b565b935093505050613842565b60006002915091505b9250929050565b6000600481111561385d5761385c61599e565b5b8160048111156138705761386f61599e565b5b141561387b57613a1b565b6001600481111561388f5761388e61599e565b5b8160048111156138a2576138a161599e565b5b14156138e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138da90615a19565b60405180910390fd5b600260048111156138f7576138f661599e565b5b81600481111561390a5761390961599e565b5b141561394b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161394290615a85565b60405180910390fd5b6003600481111561395f5761395e61599e565b5b8160048111156139725761397161599e565b5b14156139b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139aa90615b17565b60405180910390fd5b6004808111156139c6576139c561599e565b5b8160048111156139d9576139d861599e565b5b1415613a1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a1190615ba9565b60405180910390fd5b5b50565b6000807f7fffffffffffffffffffffffffffffff5d576e7357a4501ddfe92f46681b20a08360001c1115613a59576000600391509150613b22565b601b8560ff1614158015613a715750601c8560ff1614155b15613a83576000600491509150613b22565b600060018787878760405160008152602001604052604051613aa89493929190615bf4565b6020604051602081039080840390855afa158015613aca573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415613b1957600060019250925050613b22565b80600092509250505b94509492505050565b6000806000807f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff85169150601b8560ff1c019050613b6b87828885613a1e565b935093505050935093915050565b828054613b859061458d565b90600052602060002090601f016020900481019282613ba75760008555613bee565b82601f10613bc057805160ff1916838001178555613bee565b82800160010185558215613bee579182015b82811115613bed578251825591602001919060010190613bd2565b5b509050613bfb9190613bff565b5090565b5b80821115613c18576000816000905550600101613c00565b5090565b6000604051905090565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000613c5b82613c30565b9050919050565b613c6b81613c50565b8114613c7657600080fd5b50565b600081359050613c8881613c62565b92915050565b600060208284031215613ca457613ca3613c26565b5b6000613cb284828501613c79565b91505092915050565b6000819050919050565b613cce81613cbb565b82525050565b6000602082019050613ce96000830184613cc5565b92915050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613d2481613cef565b8114613d2f57600080fd5b50565b600081359050613d4181613d1b565b92915050565b600060208284031215613d5d57613d5c613c26565b5b6000613d6b84828501613d32565b91505092915050565b60008115159050919050565b613d8981613d74565b82525050565b6000602082019050613da46000830184613d80565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015613de4578082015181840152602081019050613dc9565b83811115613df3576000848401525b50505050565b6000601f19601f8301169050919050565b6000613e1582613daa565b613e1f8185613db5565b9350613e2f818560208601613dc6565b613e3881613df9565b840191505092915050565b60006020820190508181036000830152613e5d8184613e0a565b905092915050565b613e6e81613cbb565b8114613e7957600080fd5b50565b600081359050613e8b81613e65565b92915050565b600060208284031215613ea757613ea6613c26565b5b6000613eb584828501613e7c565b91505092915050565b613ec781613c50565b82525050565b6000602082019050613ee26000830184613ebe565b92915050565b60008060408385031215613eff57613efe613c26565b5b6000613f0d85828601613c79565b9250506020613f1e85828601613e7c565b9150509250929050565b600080600060608486031215613f4157613f40613c26565b5b6000613f4f86828701613c79565b9350506020613f6086828701613c79565b9250506040613f7186828701613e7c565b9150509250925092565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613fb081613cbb565b82525050565b6000613fc28383613fa7565b60208301905092915050565b6000602082019050919050565b6000613fe682613f7b565b613ff08185613f86565b9350613ffb83613f97565b8060005b8381101561402c5781516140138882613fb6565b975061401e83613fce565b925050600181019050613fff565b5085935050505092915050565b600060208201905081810360008301526140538184613fdb565b905092915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61409d82613df9565b810181811067ffffffffffffffff821117156140bc576140bb614065565b5b80604052505050565b60006140cf613c1c565b90506140db8282614094565b919050565b600067ffffffffffffffff8211156140fb576140fa614065565b5b61410482613df9565b9050602081019050919050565b82818337600083830152505050565b600061413361412e846140e0565b6140c5565b90508281526020810184848401111561414f5761414e614060565b5b61415a848285614111565b509392505050565b600082601f8301126141775761417661405b565b5b8135614187848260208601614120565b91505092915050565b6000602082840312156141a6576141a5613c26565b5b600082013567ffffffffffffffff8111156141c4576141c3613c2b565b5b6141d084828501614162565b91505092915050565b6141e281613d74565b81146141ed57600080fd5b50565b6000813590506141ff816141d9565b92915050565b60006020828403121561421b5761421a613c26565b5b6000614229848285016141f0565b91505092915050565b6000806040838503121561424957614248613c26565b5b600061425785828601613c79565b9250506020614268858286016141f0565b9150509250929050565b600067ffffffffffffffff82111561428d5761428c614065565b5b61429682613df9565b9050602081019050919050565b60006142b66142b184614272565b6140c5565b9050828152602081018484840111156142d2576142d1614060565b5b6142dd848285614111565b509392505050565b600082601f8301126142fa576142f961405b565b5b813561430a8482602086016142a3565b91505092915050565b6000806000806080858703121561432d5761432c613c26565b5b600061433b87828801613c79565b945050602061434c87828801613c79565b935050604061435d87828801613e7c565b925050606085013567ffffffffffffffff81111561437e5761437d613c2b565b5b61438a878288016142e5565b91505092959194509250565b600080604083850312156143ad576143ac613c26565b5b600083013567ffffffffffffffff8111156143cb576143ca613c2b565b5b6143d7858286016142e5565b92505060206143e885828601613e7c565b9150509250929050565b600080fd5b600080fd5b60008083601f8401126144125761441161405b565b5b8235905067ffffffffffffffff81111561442f5761442e6143f2565b5b60208301915083602082028301111561444b5761444a6143f7565b5b9250929050565b60008060006040848603121561446b5761446a613c26565b5b600061447986828701613e7c565b935050602084013567ffffffffffffffff81111561449a57614499613c2b565b5b6144a6868287016143fc565b92509250509250925092565b600080604083850312156144c9576144c8613c26565b5b60006144d785828601613c79565b92505060206144e885828601613c79565b9150509250929050565b7f5a65726f2061646472657373206e6f74206f6e20416c6c6f77204c6973740000600082015250565b6000614528601e83613db5565b9150614533826144f2565b602082019050919050565b600060208201905081810360008301526145578161451b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806145a557607f821691505b602082108114156145b9576145b861455e565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b600061461b602c83613db5565b9150614626826145bf565b604082019050919050565b6000602082019050818103600083015261464a8161460e565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b60006146ad602183613db5565b91506146b882614651565b604082019050919050565b600060208201905081810360008301526146dc816146a0565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b600061473f603883613db5565b915061474a826146e3565b604082019050919050565b6000602082019050818103600083015261476e81614732565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b60006147d1603183613db5565b91506147dc82614775565b604082019050919050565b60006020820190508181036000830152614800816147c4565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b6000614863602b83613db5565b915061486e82614807565b604082019050919050565b6000602082019050818103600083015261489281614856565b9050919050565b7f53616c652068617320656e6465642e0000000000000000000000000000000000600082015250565b60006148cf600f83613db5565b91506148da82614899565b602082019050919050565b600060208201905081810360008301526148fe816148c2565b9050919050565b7f53616c65206973206e6f74206163746976652063757272656e746c792e000000600082015250565b600061493b601d83613db5565b915061494682614905565b602082019050919050565b6000602082019050818103600083015261496a8161492e565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006149ab82613cbb565b91506149b683613cbb565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156149eb576149ea614971565b5b828201905092915050565b7f546f74616c20737570706c792065786365656465642e00000000000000000000600082015250565b6000614a2c601683613db5565b9150614a37826149f6565b602082019050919050565b60006020820190508181036000830152614a5b81614a1f565b9050919050565b7f546f74616c20737570706c79207370656e742e00000000000000000000000000600082015250565b6000614a98601383613db5565b9150614aa382614a62565b602082019050919050565b60006020820190508181036000830152614ac781614a8b565b9050919050565b7f45786365656473206d6178696d756d20616c6c6f77656420746f6b656e730000600082015250565b6000614b04601e83613db5565b9150614b0f82614ace565b602082019050919050565b60006020820190508181036000830152614b3381614af7565b9050919050565b6000614b4582613cbb565b9150614b5083613cbb565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614b8957614b88614971565b5b828202905092915050565b7f496e7375666669656e742045544820616d6f756e742073656e742e0000000000600082015250565b6000614bca601b83613db5565b9150614bd582614b94565b602082019050919050565b60006020820190508181036000830152614bf981614bbd565b9050919050565b6000604082019050614c156000830185613cc5565b614c226020830184613ebe565b9392505050565b6000614c3482613cbb565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614c6757614c66614971565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6000614cfd602c83613db5565b9150614d0882614ca1565b604082019050919050565b60006020820190508181036000830152614d2c81614cf0565b9050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b6000614d8f602983613db5565b9150614d9a82614d33565b604082019050919050565b60006020820190508181036000830152614dbe81614d82565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b6000614e21602a83613db5565b9150614e2c82614dc5565b604082019050919050565b60006020820190508181036000830152614e5081614e14565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000614e8d602083613db5565b9150614e9882614e57565b602082019050919050565b60006020820190508181036000830152614ebc81614e80565b9050919050565b7f4d61782052657365727665732074616b656e20616c7265616479210000000000600082015250565b6000614ef9601b83613db5565b9150614f0482614ec3565b602082019050919050565b60006020820190508181036000830152614f2881614eec565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b6000614f65601983613db5565b9150614f7082614f2f565b602082019050919050565b60006020820190508181036000830152614f9481614f58565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000614ff7602f83613db5565b915061500282614f9b565b604082019050919050565b6000602082019050818103600083015261502681614fea565b9050919050565b600081905092915050565b600061504382613daa565b61504d818561502d565b935061505d818560208601613dc6565b80840191505092915050565b60006150758285615038565b91506150818284615038565b91508190509392505050565b7f416c6c6f77204c697374206973206e6f74206163746976650000000000000000600082015250565b60006150c3601883613db5565b91506150ce8261508d565b602082019050919050565b600060208201905081810360008301526150f2816150b6565b9050919050565b7f496e76616c696420616363657373206d65737361676500000000000000000000600082015250565b600061512f601683613db5565b915061513a826150f9565b602082019050919050565b6000602082019050818103600083015261515e81615122565b9050919050565b7f416c6c20746f6b656e732068617665206265656e206d696e7465640000000000600082015250565b600061519b601b83613db5565b91506151a682615165565b602082019050919050565b600060208201905081810360008301526151ca8161518e565b9050919050565b7f43616e6e6f742070757263686173652074686973206d616e7920746f6b656e73600082015250565b6000615207602083613db5565b9150615212826151d1565b602082019050919050565b60006020820190508181036000830152615236816151fa565b9050919050565b7f50757263686173652065786365656473206d617820616c6c6f77656400000000600082015250565b6000615273601c83613db5565b915061527e8261523d565b602082019050919050565b600060208201905081810360008301526152a281615266565b9050919050565b7f43616e2774206164642061206e756c6c20616464726573730000000000000000600082015250565b60006152df601883613db5565b91506152ea826152a9565b602082019050919050565b6000602082019050818103600083015261530e816152d2565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000615371602683613db5565b915061537c82615315565b604082019050919050565b600060208201905081810360008301526153a081615364565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000615403602c83613db5565b915061540e826153a7565b604082019050919050565b60006020820190508181036000830152615432816153f6565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b6000615495602983613db5565b91506154a082615439565b604082019050919050565b600060208201905081810360008301526154c481615488565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000615527602483613db5565b9150615532826154cb565b604082019050919050565b600060208201905081810360008301526155568161551a565b9050919050565b600061556882613cbb565b915061557383613cbb565b92508282101561558657615585614971565b5b828203905092915050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b60006155ed603283613db5565b91506155f882615591565b604082019050919050565b6000602082019050818103600083015261561c816155e0565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061565d82613cbb565b915061566883613cbb565b92508261567857615677615623565b5b828204905092915050565b600061568e82613cbb565b915061569983613cbb565b9250826156a9576156a8615623565b5b828206905092915050565b60008160601b9050919050565b60006156cc826156b4565b9050919050565b60006156de826156c1565b9050919050565b6156f66156f182613c50565b6156d3565b82525050565b600061570882846156e5565b60148201915081905092915050565b600081519050919050565b600082825260208201905092915050565b600061573e82615717565b6157488185615722565b9350615758818560208601613dc6565b61576181613df9565b840191505092915050565b60006080820190506157816000830187613ebe565b61578e6020830186613ebe565b61579b6040830185613cc5565b81810360608301526157ad8184615733565b905095945050505050565b6000815190506157c781613d1b565b92915050565b6000602082840312156157e3576157e2613c26565b5b60006157f1848285016157b8565b91505092915050565b7f19457468657265756d205369676e6564204d6573736167653a0a333200000000600082015250565b6000615830601c8361502d565b915061583b826157fa565b601c82019050919050565b6000819050919050565b6000819050919050565b61586b61586682615846565b615850565b82525050565b600061587c82615823565b9150615888828461585a565b60208201915081905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006158fc602083613db5565b9150615907826158c6565b602082019050919050565b6000602082019050818103600083015261592b816158ef565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000615968601c83613db5565b915061597382615932565b602082019050919050565b600060208201905081810360008301526159978161595b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602160045260246000fd5b7f45434453413a20696e76616c6964207369676e61747572650000000000000000600082015250565b6000615a03601883613db5565b9150615a0e826159cd565b602082019050919050565b60006020820190508181036000830152615a32816159f6565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265206c656e67746800600082015250565b6000615a6f601f83613db5565b9150615a7a82615a39565b602082019050919050565b60006020820190508181036000830152615a9e81615a62565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202773272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b6000615b01602283613db5565b9150615b0c82615aa5565b604082019050919050565b60006020820190508181036000830152615b3081615af4565b9050919050565b7f45434453413a20696e76616c6964207369676e6174757265202776272076616c60008201527f7565000000000000000000000000000000000000000000000000000000000000602082015250565b6000615b93602283613db5565b9150615b9e82615b37565b604082019050919050565b60006020820190508181036000830152615bc281615b86565b9050919050565b615bd281615846565b82525050565b600060ff82169050919050565b615bee81615bd8565b82525050565b6000608082019050615c096000830187615bc9565b615c166020830186615be5565b615c236040830185615bc9565b615c306060830184615bc9565b9594505050505056fea264697066735822122077997dba2d33ab355426fd1edd87007863f1ebe8c2b505608f1a6c2087f4bae964736f6c63430008090033

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

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000002168747470733a2f2f6f646472657075626c69632e696f2f746f6b656e2f3f69643d00000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : baseURI (string): https://oddrepublic.io/token/?id=

-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000021
Arg [2] : 68747470733a2f2f6f646472657075626c69632e696f2f746f6b656e2f3f6964
Arg [3] : 3d00000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

138:6167:1:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1741:184;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;910:222:6;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2312:95:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2350:98:5;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3861:217;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3399:401;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1535:111:6;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;489:28:1;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4725:330:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;521:37:1;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1211:253:6;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6172:131:1;;;;;;;;;;;;;:::i;:::-;;3612:644;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5121:179:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5862:306:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2817:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;563:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1139:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1718:230:6;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2209:99:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2026:90;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2053:235:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;224:38:1;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1791:205:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1599:92:12;;;;;;;;;;;;;:::i;:::-;;1497:128:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3014:340;;;;;;;;;;;;;:::i;:::-;;1375:118;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3358:250;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1629:108;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;661:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;967:85:12;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2120::1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2512:102:5;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2544:79:1;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;606:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4145:290:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1265:106:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2411:129;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5366:320:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2724:89:1;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2680:329:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5107:751:1;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2627:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4260:611;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4501:162:5;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1840:189:12;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1929:93:1;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1741:184;1807:7;1846:1;1829:19;;:5;:19;;;;1821:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;1896:17;:24;1914:5;1896:24;;;;;;;;;;;;;;;;1889:31;;1741:184;;;:::o;910:222:6:-;1012:4;1050:35;1035:50;;;:11;:50;;;;:90;;;;1089:36;1113:11;1089:23;:36::i;:::-;1035:90;1028:97;;910:222;;;:::o;2312:95:1:-;1112:10;1101:21;;:7;:5;:7::i;:::-;:21;;;1093:30;;;;;;2398:4:::1;2382:13;;:20;;;;;;;;;;;;;;;;;;2312:95:::0;:::o;2350:98:5:-;2404:13;2436:5;2429:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2350:98;:::o;3861:217::-;3937:7;3964:16;3972:7;3964;:16::i;:::-;3956:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;4047:15;:24;4063:7;4047:24;;;;;;;;;;;;;;;;;;;;;4040:31;;3861:217;;;:::o;3399:401::-;3479:13;3495:23;3510:7;3495:14;:23::i;:::-;3479:39;;3542:5;3536:11;;:2;:11;;;;3528:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;3633:5;3617:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;3642:37;3659:5;3666:12;:10;:12::i;:::-;3642:16;:37::i;:::-;3617:62;3596:165;;;;;;;;;;;;:::i;:::-;;;;;;;;;3772:21;3781:2;3785:7;3772:8;:21::i;:::-;3469:331;3399:401;;:::o;1535:111:6:-;1596:7;1622:10;:17;;;;1615:24;;1535:111;:::o;489:28:1:-;;;;;;;;;;;;;:::o;4725:330:5:-;4914:41;4933:12;:10;:12::i;:::-;4947:7;4914:18;:41::i;:::-;4906:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;5020:28;5030:4;5036:2;5040:7;5020:9;:28::i;:::-;4725:330;;;:::o;521:37:1:-;;;;;;;;;;;;;:::o;1211:253:6:-;1308:7;1343:23;1360:5;1343:16;:23::i;:::-;1335:5;:31;1327:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;1431:12;:19;1444:5;1431:19;;;;;;;;;;;;;;;:26;1451:5;1431:26;;;;;;;;;;;;1424:33;;1211:253;;;;:::o;6172:131:1:-;1112:10;1101:21;;:7;:5;:7::i;:::-;:21;;;1093:30;;;;;;6222:12:::1;6237:21;6222:36;;6272:7;:5;:7::i;:::-;6264:25;;:34;6290:7;6264:34;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;6216:87;6172:131::o:0;3612:644::-;1008:17;;991:13;:11;:13::i;:::-;:34;;983:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;3705:7:::1;:5;:7::i;:::-;3691:21;;:10;:21;;;3687:92;;3730:8;;;;;;;;;;;3722:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;3687:92;3819:17;;3809:6;3793:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:43;;3785:78;;;;;;;;;;;;:::i;:::-;;;;;;;;;3894:17;;3877:13;:11;:13::i;:::-;:34;;3869:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;3966:31;;3956:6;:41;;3941:102;;;;;;;;;;;;:::i;:::-;;;;;;;;;4082:6;4070:9;;:18;;;;:::i;:::-;4057:9;:31;;4049:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;4132:9;4127:125;4151:6;4147:1;:10;4127:125;;;4177:31;4189:13;:11;:13::i;:::-;4204:3;4177:31;;;;;;;:::i;:::-;;;;;;;;4216:29;4226:3;4231:13;:11;:13::i;:::-;4216:9;:29::i;:::-;4159:3;;;;;:::i;:::-;;;;4127:125;;;;3612:644:::0;;:::o;5121:179:5:-;5254:39;5271:4;5277:2;5281:7;5254:39;;;;;;;;;;;;:16;:39::i;:::-;5121:179;;;:::o;5862:306:1:-;5923:16;5947:15;5965:17;5975:6;5965:9;:17::i;:::-;5947:35;;5988:25;6030:10;6016:25;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5988:53;;6052:6;6048:95;6068:10;6064:1;:14;6048:95;;;6106:30;6126:6;6134:1;6106:19;:30::i;:::-;6092:8;6101:1;6092:11;;;;;;;;:::i;:::-;;;;;;;:44;;;;;6080:3;;;;;:::i;:::-;;;;6048:95;;;;6155:8;6148:15;;;;5862:306;;;:::o;2817:83::-;2866:7;2888;:5;:7::i;:::-;2881:14;;2817:83;:::o;563:39::-;;;;:::o;1139:122::-;1112:10;1101:21;;:7;:5;:7::i;:::-;:21;;;1093:30;;;;;;1250:6:::1;1216:31;:40;;;;1139:122:::0;:::o;1718:230:6:-;1793:7;1828:30;:28;:30::i;:::-;1820:5;:38;1812:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;1924:10;1935:5;1924:17;;;;;;;;:::i;:::-;;;;;;;;;;1917:24;;1718:230;;;:::o;2209:99:1:-;1112:10;1101:21;;:7;:5;:7::i;:::-;:21;;;1093:30;;;;;;2296:7:::1;2280:13;:23;;;;;;;;;;;;:::i;:::-;;2209:99:::0;:::o;2026:90::-;1112:10;1101:21;;:7;:5;:7::i;:::-;:21;;;1093:30;;;;;;2108:3:::1;2090:15;:21;;;;2026:90:::0;:::o;2053:235:5:-;2125:7;2144:13;2160:7;:16;2168:7;2160:16;;;;;;;;;;;;;;;;;;;;;2144:32;;2211:1;2194:19;;:5;:19;;;;2186:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2276:5;2269:12;;;2053:235;;;:::o;224:38:1:-;;;;:::o;1791:205:5:-;1863:7;1907:1;1890:19;;:5;:19;;;;1882:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;1973:9;:16;1983:5;1973:16;;;;;;;;;;;;;;;;1966:23;;1791:205;;;:::o;1599:92:12:-;1190:12;:10;:12::i;:::-;1179:23;;:7;:5;:7::i;:::-;:23;;;1171:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1663:21:::1;1681:1;1663:9;:21::i;:::-;1599:92::o:0;1497:128:1:-;1112:10;1101:21;;:7;:5;:7::i;:::-;:21;;;1093:30;;;;;;1602:18:::1;1582:17;;:38;;;;;;;;;;;;;;;;;;1497:128:::0;:::o;3014:340::-;1112:10;1101:21;;:7;:5;:7::i;:::-;:21;;;1093:30;;;;;;3089:15:::1;;3072:13;;:32;;3064:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;3142:14;3159:13;:11;:13::i;:::-;3142:30;;3178:9;3194:156;3210:14;;3206:1;:18;3194:156;;;3244:35;3265:1;3256:6;:10;;;;:::i;:::-;3268;3244:35;;;;;;;:::i;:::-;;;;;;;;3287:33;3297:10;3318:1;3309:6;:10;;;;:::i;:::-;3287:9;:33::i;:::-;3328:13;;:15;;;;;;;;;:::i;:::-;;;;;;3226:3;;;;;:::i;:::-;;;;3194:156;;;3058:296;;3014:340::o:0;1375:118::-;1112:10;1101:21;;:7;:5;:7::i;:::-;:21;;;1093:30;;;;;;1475:13:::1;1455:17;:33;;;;1375:118:::0;:::o;3358:250::-;1112:10;1101:21;;:7;:5;:7::i;:::-;:21;;;1093:30;;;;;;3462:9:::1;3457:147;3481:6;3477:1;:10;3457:147;;;3507:42;3519:13;:11;:13::i;:::-;3534:14;3507:42;;;;;;;:::i;:::-;;;;;;;;3557:40;3567:14;3583:13;:11;:13::i;:::-;3557:9;:40::i;:::-;3489:3;;;;;:::i;:::-;;;;3457:147;;;;3358:250:::0;;:::o;1629:108::-;1112:10;1101:21;;:7;:5;:7::i;:::-;:21;;;1093:30;;;;;;1725:7:::1;1706:16;:26;;;;1629:108:::0;:::o;661:35::-;;;;:::o;967:85:12:-;1013:7;1039:6;;;;;;;;;;;1032:13;;967:85;:::o;2120::1:-;1112:10;1101:21;;:7;:5;:7::i;:::-;:21;;;1093:30;;;;;;2194:6:::1;2182:9;:18;;;;2120:85:::0;:::o;2512:102:5:-;2568:13;2600:7;2593:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2512:102;:::o;2544:79:1:-;2587:7;2609:9;;2602:16;;2544:79;:::o;606:51::-;;;;:::o;4145:290:5:-;4259:12;:10;:12::i;:::-;4247:24;;:8;:24;;;;4239:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;4357:8;4312:18;:32;4331:12;:10;:12::i;:::-;4312:32;;;;;;;;;;;;;;;:42;4345:8;4312:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;4409:8;4380:48;;4395:12;:10;:12::i;:::-;4380:48;;;4419:8;4380:48;;;;;;:::i;:::-;;;;;;;;4145:290;;:::o;1265:106:1:-;1112:10;1101:21;;:7;:5;:7::i;:::-;:21;;;1093:30;;;;;;1333:3:::1;1322:8;;:14;;;;;;;;;;;;;;;;;;1347:19;1362:3;1347:19;;;;;;:::i;:::-;;;;;;;;1265:106:::0;:::o;2411:129::-;2482:7;1112:10;1101:21;;:7;:5;:7::i;:::-;:21;;;1093:30;;;;;;2504:31:::1;;2497:38;;2411:129:::0;:::o;5366:320:5:-;5535:41;5554:12;:10;:12::i;:::-;5568:7;5535:18;:41::i;:::-;5527:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;5640:39;5654:4;5660:2;5664:7;5673:5;5640:13;:39::i;:::-;5366:320;;;;:::o;2724:89:1:-;2773:7;2795:13;:11;:13::i;:::-;2788:20;;2724:89;:::o;2680:329:5:-;2753:13;2786:16;2794:7;2786;:16::i;:::-;2778:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;2865:21;2889:10;:8;:10::i;:::-;2865:34;;2940:1;2922:7;2916:21;:25;:86;;;;;;;;;;;;;;;;;2968:7;2977:18;:7;:16;:18::i;:::-;2951:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2916:86;2909:93;;;2680:329;;;:::o;5107:751:1:-;1008:17;;991:13;:11;:13::i;:::-;:34;;983:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;5209:17:::1;;;;;;;;;;;5201:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;5269:32;5290:10;5269:20;:32::i;:::-;5261:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;5358:17;;5342:13;:11;:13::i;:::-;:33;5334:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;5431:16;;5421:6;:26;;5413:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;5540:16;;5530:6;5498:17;:29;5516:10;5498:29;;;;;;;;;;;;;;;;:38;;;;:::i;:::-;:58;;5490:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;5628:6;5616:9;;:18;;;;:::i;:::-;5603:9;:31;;5595:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;5678:9;5673:181;5697:6;5693:1;:10;5673:181;;;5751:1;5718:17;:29;5736:10;5718:29;;;;;;;;;;;;;;;;:34;;;;;;;:::i;:::-;;;;;;;;5765:38;5777:13;:11;:13::i;:::-;5792:10;5765:38;;;;;;;:::i;:::-;;;;;;;;5811:36;5821:10;5833:13;:11;:13::i;:::-;5811:9;:36::i;:::-;5705:3;;;;;:::i;:::-;;;;5673:181;;;;5107:751:::0;;:::o;2627:93::-;2679:7;2701:14;;2694:21;;2627:93;:::o;4260:611::-;1112:10;1101:21;;:7;:5;:7::i;:::-;:21;;;1093:30;;;;;;4379:14:::1;4396:13;:11;:13::i;:::-;4379:30;;4445:17;;4435:6;4426;:15;;;;:::i;:::-;:36;;4418:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;4515:17;;4505:6;:27;;4497:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;4570:9;4565:302;4589:9;;:16;;4585:1;:20;4565:302;;;4654:1;4630:26;;:9;;4640:1;4630:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;:26;;;;4622:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;4708:9;4704:155;4727:6;4723:1;:10;4704:155;;;4758:40;4770:13;:11;:13::i;:::-;4785:9;;4795:1;4785:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;4758:40;;;;;;;:::i;:::-;;;;;;;;4810:38;4820:9;;4830:1;4820:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;4834:13;:11;:13::i;:::-;4810:9;:38::i;:::-;4735:3;;;;;:::i;:::-;;;;4704:155;;;;4607:3;;;;;:::i;:::-;;;;4565:302;;;;4371:500;4260:611:::0;;;:::o;4501:162:5:-;4598:4;4621:18;:25;4640:5;4621:25;;;;;;;;;;;;;;;:35;4647:8;4621:35;;;;;;;;;;;;;;;;;;;;;;;;;4614:42;;4501:162;;;;:::o;1840:189:12:-;1190:12;:10;:12::i;:::-;1179:23;;:7;:5;:7::i;:::-;:23;;;1171:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1948:1:::1;1928:22;;:8;:22;;;;1920:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2003:19;2013:8;2003:9;:19::i;:::-;1840:189:::0;:::o;1929:93:1:-;1112:10;1101:21;;:7;:5;:7::i;:::-;:21;;;1093:30;;;;;;2014:3:::1;1997:14;:20;;;;1929:93:::0;:::o;1432:300:5:-;1534:4;1584:25;1569:40;;;:11;:40;;;;:104;;;;1640:33;1625:48;;;:11;:48;;;;1569:104;:156;;;;1689:36;1713:11;1689:23;:36::i;:::-;1569:156;1550:175;;1432:300;;;:::o;7158:125::-;7223:4;7274:1;7246:30;;:7;:16;7254:7;7246:16;;;;;;;;;;;;;;;;;;;;;:30;;;;7239:37;;7158:125;;;:::o;587:96:2:-;640:7;666:10;659:17;;587:96;:::o;11009:171:5:-;11110:2;11083:15;:24;11099:7;11083:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;11165:7;11161:2;11127:46;;11136:23;11151:7;11136:14;:23::i;:::-;11127:46;;;;;;;;;;;;11009:171;;:::o;7441:344::-;7534:4;7558:16;7566:7;7558;:16::i;:::-;7550:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;7633:13;7649:23;7664:7;7649:14;:23::i;:::-;7633:39;;7701:5;7690:16;;:7;:16;;;:51;;;;7734:7;7710:31;;:20;7722:7;7710:11;:20::i;:::-;:31;;;7690:51;:87;;;;7745:32;7762:5;7769:7;7745:16;:32::i;:::-;7690:87;7682:96;;;7441:344;;;;:::o;10338:560::-;10492:4;10465:31;;:23;10480:7;10465:14;:23::i;:::-;:31;;;10457:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;10574:1;10560:16;;:2;:16;;;;10552:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;10628:39;10649:4;10655:2;10659:7;10628:20;:39::i;:::-;10729:29;10746:1;10750:7;10729:8;:29::i;:::-;10788:1;10769:9;:15;10779:4;10769:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;10816:1;10799:9;:13;10809:2;10799:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;10846:2;10827:7;:16;10835:7;10827:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;10883:7;10879:2;10864:27;;10873:4;10864:27;;;;;;;;;;;;10338:560;;;:::o;8115:108::-;8190:26;8200:2;8204:7;8190:26;;;;;;;;;;;;:9;:26::i;:::-;8115:108;;:::o;2035:169:12:-;2090:16;2109:6;;;;;;;;;;;2090:25;;2134:8;2125:6;;:17;;;;;;;;;;;;;;;;;;2188:8;2157:40;;2178:8;2157:40;;;;;;;;;;;;2080:124;2035:169;:::o;6548:307:5:-;6699:28;6709:4;6715:2;6719:7;6699:9;:28::i;:::-;6745:48;6768:4;6774:2;6778:7;6787:5;6745:22;:48::i;:::-;6737:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;6548:307;;;;:::o;2904:106:1:-;2964:13;2992;2985:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2904:106;:::o;275:703:13:-;331:13;557:1;548:5;:10;544:51;;;574:10;;;;;;;;;;;;;;;;;;;;;544:51;604:12;619:5;604:20;;634:14;658:75;673:1;665:4;:9;658:75;;690:8;;;;;:::i;:::-;;;;720:2;712:10;;;;;:::i;:::-;;;658:75;;;742:19;774:6;764:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;742:39;;791:150;807:1;798:5;:10;791:150;;834:1;824:11;;;;;:::i;:::-;;;900:2;892:5;:10;;;;:::i;:::-;879:2;:24;;;;:::i;:::-;866:39;;849:6;856;849:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;928:2;919:11;;;;;:::i;:::-;;;791:150;;;964:6;950:21;;;;;275:703;;;;:::o;4875:228:1:-;4953:4;4965:12;5007:10;4990:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;4980:39;;;;;;4965:54;;5049:49;5087:10;5049:29;:4;:27;:29::i;:::-;:37;;:49;;;;:::i;:::-;5032:66;;:13;;;;;;;;;;;:66;;;5025:73;;;4875:228;;;:::o;763:155:4:-;848:4;886:25;871:40;;;:11;:40;;;;864:47;;763:155;;;:::o;2544:572:6:-;2683:45;2710:4;2716:2;2720:7;2683:26;:45::i;:::-;2759:1;2743:18;;:4;:18;;;2739:183;;;2777:40;2809:7;2777:31;:40::i;:::-;2739:183;;;2846:2;2838:10;;:4;:10;;;2834:88;;2864:47;2897:4;2903:7;2864:32;:47::i;:::-;2834:88;2739:183;2949:1;2935:16;;:2;:16;;;2931:179;;;2967:45;3004:7;2967:36;:45::i;:::-;2931:179;;;3039:4;3033:10;;:2;:10;;;3029:81;;3059:40;3087:2;3091:7;3059:27;:40::i;:::-;3029:81;2931:179;2544:572;;;:::o;8444:311:5:-;8569:18;8575:2;8579:7;8569:5;:18::i;:::-;8618:54;8649:1;8653:2;8657:7;8666:5;8618:22;:54::i;:::-;8597:151;;;;;;;;;;;;:::i;:::-;;;;;;;;;8444:311;;;:::o;11733:778::-;11883:4;11903:15;:2;:13;;;:15::i;:::-;11899:606;;;11954:2;11938:36;;;11975:12;:10;:12::i;:::-;11989:4;11995:7;12004:5;11938:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;11934:519;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12194:1;12177:6;:13;:18;12173:266;;;12219:60;;;;;;;;;;:::i;:::-;;;;;;;;12173:266;12391:6;12385:13;12376:6;12372:2;12368:15;12361:38;11934:519;12070:41;;;12060:51;;;:6;:51;;;;12053:58;;;;;11899:606;12490:4;12483:11;;11733:778;;;;;;;:::o;7950:265:3:-;8019:7;8202:4;8149:58;;;;;;;;:::i;:::-;;;;;;;;;;;;;8139:69;;;;;;8132:76;;7950:265;;;:::o;4203:227::-;4281:7;4301:17;4320:18;4342:27;4353:4;4359:9;4342:10;:27::i;:::-;4300:69;;;;4379:18;4391:5;4379:11;:18::i;:::-;4414:9;4407:16;;;;4203:227;;;;:::o;13067:122:5:-;;;;:::o;3822:161:6:-;3925:10;:17;;;;3898:15;:24;3914:7;3898:24;;;;;;;;;;;:44;;;;3952:10;3968:7;3952:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3822:161;:::o;4600:970::-;4862:22;4912:1;4887:22;4904:4;4887:16;:22::i;:::-;:26;;;;:::i;:::-;4862:51;;4923:18;4944:17;:26;4962:7;4944:26;;;;;;;;;;;;4923:47;;5088:14;5074:10;:28;5070:323;;5118:19;5140:12;:18;5153:4;5140:18;;;;;;;;;;;;;;;:34;5159:14;5140:34;;;;;;;;;;;;5118:56;;5222:11;5189:12;:18;5202:4;5189:18;;;;;;;;;;;;;;;:30;5208:10;5189:30;;;;;;;;;;;:44;;;;5338:10;5305:17;:30;5323:11;5305:30;;;;;;;;;;;:43;;;;5104:289;5070:323;5486:17;:26;5504:7;5486:26;;;;;;;;;;;5479:33;;;5529:12;:18;5542:4;5529:18;;;;;;;;;;;;;;;:34;5548:14;5529:34;;;;;;;;;;;5522:41;;;4681:889;;4600:970;;:::o;5858:1061::-;6107:22;6152:1;6132:10;:17;;;;:21;;;;:::i;:::-;6107:46;;6163:18;6184:15;:24;6200:7;6184:24;;;;;;;;;;;;6163:45;;6530:19;6552:10;6563:14;6552:26;;;;;;;;:::i;:::-;;;;;;;;;;6530:48;;6614:11;6589:10;6600;6589:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;6724:10;6693:15;:28;6709:11;6693:28;;;;;;;;;;;:41;;;;6862:15;:24;6878:7;6862:24;;;;;;;;;;;6855:31;;;6896:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;5929:990;;;5858:1061;:::o;3410:217::-;3494:14;3511:20;3528:2;3511:16;:20::i;:::-;3494:37;;3568:7;3541:12;:16;3554:2;3541:16;;;;;;;;;;;;;;;:24;3558:6;3541:24;;;;;;;;;;;:34;;;;3614:6;3585:17;:26;3603:7;3585:26;;;;;;;;;;;:35;;;;3484:143;3410:217;;:::o;9077:372:5:-;9170:1;9156:16;;:2;:16;;;;9148:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;9228:16;9236:7;9228;:16::i;:::-;9227:17;9219:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;9288:45;9317:1;9321:2;9325:7;9288:20;:45::i;:::-;9361:1;9344:9;:13;9354:2;9344:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;9391:2;9372:7;:16;9380:7;9372:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;9434:7;9430:2;9409:33;;9426:1;9409:33;;;;;;;;;;;;9077:372;;:::o;719:377:0:-;779:4;982:12;1047:7;1035:20;1027:28;;1088:1;1081:4;:8;1074:15;;;719:377;;;:::o;2138:1279:3:-;2219:7;2228:12;2469:2;2449:9;:16;:22;2445:966;;;2487:9;2510;2533:7;2738:4;2727:9;2723:20;2717:27;2712:32;;2787:4;2776:9;2772:20;2766:27;2761:32;;2844:4;2833:9;2829:20;2823:27;2820:1;2815:36;2810:41;;2885:25;2896:4;2902:1;2905;2908;2885:10;:25::i;:::-;2878:32;;;;;;;;;2445:966;2951:2;2931:9;:16;:22;2927:484;;;2969:9;2992:10;3200:4;3189:9;3185:20;3179:27;3174:32;;3250:4;3239:9;3235:20;3229:27;3223:33;;3290:23;3301:4;3307:1;3310:2;3290:10;:23::i;:::-;3283:30;;;;;;;;2927:484;3360:1;3364:35;3344:56;;;;2138:1279;;;;;;:::o;443:631::-;520:20;511:29;;;;;;;;:::i;:::-;;:5;:29;;;;;;;;:::i;:::-;;;507:561;;;556:7;;507:561;616:29;607:38;;;;;;;;:::i;:::-;;:5;:38;;;;;;;;:::i;:::-;;;603:465;;;661:34;;;;;;;;;;:::i;:::-;;;;;;;;603:465;725:35;716:44;;;;;;;;:::i;:::-;;:5;:44;;;;;;;;:::i;:::-;;;712:356;;;776:41;;;;;;;;;;:::i;:::-;;;;;;;;712:356;847:30;838:39;;;;;;;;:::i;:::-;;:5;:39;;;;;;;;:::i;:::-;;;834:234;;;893:44;;;;;;;;;;:::i;:::-;;;;;;;;834:234;967:30;958:39;;;;;;;;:::i;:::-;;:5;:39;;;;;;;;:::i;:::-;;;954:114;;;1013:44;;;;;;;;;;:::i;:::-;;;;;;;;954:114;443:631;;:::o;5654:1603::-;5780:7;5789:12;6704:66;6699:1;6691:10;;:79;6687:161;;;6802:1;6806:30;6786:51;;;;;;6687:161;6866:2;6861:1;:7;;;;:18;;;;;6877:2;6872:1;:7;;;;6861:18;6857:100;;;6911:1;6915:30;6895:51;;;;;;6857:100;7051:14;7068:24;7078:4;7084:1;7087;7090;7068:24;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7051:41;;7124:1;7106:20;;:6;:20;;;7102:101;;;7158:1;7162:29;7142:50;;;;;;;7102:101;7221:6;7229:20;7213:37;;;;;5654:1603;;;;;;;;:::o;4684:379::-;4794:7;4803:12;4827:9;4846:7;4899:66;4895:2;4891:75;4886:80;;5002:2;4997;4992:3;4988:12;4984:21;4979:26;;5031:25;5042:4;5048:1;5051;5054;5031:10;:25::i;:::-;5024:32;;;;;;4684:379;;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:14:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:126;371:7;411:42;404:5;400:54;389:65;;334:126;;;:::o;466:96::-;503:7;532:24;550:5;532:24;:::i;:::-;521:35;;466:96;;;:::o;568:122::-;641:24;659:5;641:24;:::i;:::-;634:5;631:35;621:63;;680:1;677;670:12;621:63;568:122;:::o;696:139::-;742:5;780:6;767:20;758:29;;796:33;823:5;796:33;:::i;:::-;696:139;;;;:::o;841:329::-;900:6;949:2;937:9;928:7;924:23;920:32;917:119;;;955:79;;:::i;:::-;917:119;1075:1;1100:53;1145:7;1136:6;1125:9;1121:22;1100:53;:::i;:::-;1090:63;;1046:117;841:329;;;;:::o;1176:77::-;1213:7;1242:5;1231:16;;1176:77;;;:::o;1259:118::-;1346:24;1364:5;1346:24;:::i;:::-;1341:3;1334:37;1259:118;;:::o;1383:222::-;1476:4;1514:2;1503:9;1499:18;1491:26;;1527:71;1595:1;1584:9;1580:17;1571:6;1527:71;:::i;:::-;1383:222;;;;:::o;1611:149::-;1647:7;1687:66;1680:5;1676:78;1665:89;;1611:149;;;:::o;1766:120::-;1838:23;1855:5;1838:23;:::i;:::-;1831:5;1828:34;1818:62;;1876:1;1873;1866:12;1818:62;1766:120;:::o;1892:137::-;1937:5;1975:6;1962:20;1953:29;;1991:32;2017:5;1991:32;:::i;:::-;1892:137;;;;:::o;2035:327::-;2093:6;2142:2;2130:9;2121:7;2117:23;2113:32;2110:119;;;2148:79;;:::i;:::-;2110:119;2268:1;2293:52;2337:7;2328:6;2317:9;2313:22;2293:52;:::i;:::-;2283:62;;2239:116;2035:327;;;;:::o;2368:90::-;2402:7;2445:5;2438:13;2431:21;2420:32;;2368:90;;;:::o;2464:109::-;2545:21;2560:5;2545:21;:::i;:::-;2540:3;2533:34;2464:109;;:::o;2579:210::-;2666:4;2704:2;2693:9;2689:18;2681:26;;2717:65;2779:1;2768:9;2764:17;2755:6;2717:65;:::i;:::-;2579:210;;;;:::o;2795:99::-;2847:6;2881:5;2875:12;2865:22;;2795:99;;;:::o;2900:169::-;2984:11;3018:6;3013:3;3006:19;3058:4;3053:3;3049:14;3034:29;;2900:169;;;;:::o;3075:307::-;3143:1;3153:113;3167:6;3164:1;3161:13;3153:113;;;3252:1;3247:3;3243:11;3237:18;3233:1;3228:3;3224:11;3217:39;3189:2;3186:1;3182:10;3177:15;;3153:113;;;3284:6;3281:1;3278:13;3275:101;;;3364:1;3355:6;3350:3;3346:16;3339:27;3275:101;3124:258;3075:307;;;:::o;3388:102::-;3429:6;3480:2;3476:7;3471:2;3464:5;3460:14;3456:28;3446:38;;3388:102;;;:::o;3496:364::-;3584:3;3612:39;3645:5;3612:39;:::i;:::-;3667:71;3731:6;3726:3;3667:71;:::i;:::-;3660:78;;3747:52;3792:6;3787:3;3780:4;3773:5;3769:16;3747:52;:::i;:::-;3824:29;3846:6;3824:29;:::i;:::-;3819:3;3815:39;3808:46;;3588:272;3496:364;;;;:::o;3866:313::-;3979:4;4017:2;4006:9;4002:18;3994:26;;4066:9;4060:4;4056:20;4052:1;4041:9;4037:17;4030:47;4094:78;4167:4;4158:6;4094:78;:::i;:::-;4086:86;;3866:313;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:329::-;4517:6;4566:2;4554:9;4545:7;4541:23;4537:32;4534:119;;;4572:79;;:::i;:::-;4534:119;4692:1;4717:53;4762:7;4753:6;4742:9;4738:22;4717:53;:::i;:::-;4707:63;;4663:117;4458:329;;;;:::o;4793:118::-;4880:24;4898:5;4880:24;:::i;:::-;4875:3;4868:37;4793:118;;:::o;4917:222::-;5010:4;5048:2;5037:9;5033:18;5025:26;;5061:71;5129:1;5118:9;5114:17;5105:6;5061:71;:::i;:::-;4917:222;;;;:::o;5145:474::-;5213:6;5221;5270:2;5258:9;5249:7;5245:23;5241:32;5238:119;;;5276:79;;:::i;:::-;5238:119;5396:1;5421:53;5466:7;5457:6;5446:9;5442:22;5421:53;:::i;:::-;5411:63;;5367:117;5523:2;5549:53;5594:7;5585:6;5574:9;5570:22;5549:53;:::i;:::-;5539:63;;5494:118;5145:474;;;;;:::o;5625:619::-;5702:6;5710;5718;5767:2;5755:9;5746:7;5742:23;5738:32;5735:119;;;5773:79;;:::i;:::-;5735:119;5893:1;5918:53;5963:7;5954:6;5943:9;5939:22;5918:53;:::i;:::-;5908:63;;5864:117;6020:2;6046:53;6091:7;6082:6;6071:9;6067:22;6046:53;:::i;:::-;6036:63;;5991:118;6148:2;6174:53;6219:7;6210:6;6199:9;6195:22;6174:53;:::i;:::-;6164:63;;6119:118;5625:619;;;;;:::o;6250:114::-;6317:6;6351:5;6345:12;6335:22;;6250:114;;;:::o;6370:184::-;6469:11;6503:6;6498:3;6491:19;6543:4;6538:3;6534:14;6519:29;;6370:184;;;;:::o;6560:132::-;6627:4;6650:3;6642:11;;6680:4;6675:3;6671:14;6663:22;;6560:132;;;:::o;6698:108::-;6775:24;6793:5;6775:24;:::i;:::-;6770:3;6763:37;6698:108;;:::o;6812:179::-;6881:10;6902:46;6944:3;6936:6;6902:46;:::i;:::-;6980:4;6975:3;6971:14;6957:28;;6812:179;;;;:::o;6997:113::-;7067:4;7099;7094:3;7090:14;7082:22;;6997:113;;;:::o;7146:732::-;7265:3;7294:54;7342:5;7294:54;:::i;:::-;7364:86;7443:6;7438:3;7364:86;:::i;:::-;7357:93;;7474:56;7524:5;7474:56;:::i;:::-;7553:7;7584:1;7569:284;7594:6;7591:1;7588:13;7569:284;;;7670:6;7664:13;7697:63;7756:3;7741:13;7697:63;:::i;:::-;7690:70;;7783:60;7836:6;7783:60;:::i;:::-;7773:70;;7629:224;7616:1;7613;7609:9;7604:14;;7569:284;;;7573:14;7869:3;7862:10;;7270:608;;;7146:732;;;;:::o;7884:373::-;8027:4;8065:2;8054:9;8050:18;8042:26;;8114:9;8108:4;8104:20;8100:1;8089:9;8085:17;8078:47;8142:108;8245:4;8236:6;8142:108;:::i;:::-;8134:116;;7884:373;;;;:::o;8263:117::-;8372:1;8369;8362:12;8386:117;8495:1;8492;8485:12;8509:180;8557:77;8554:1;8547:88;8654:4;8651:1;8644:15;8678:4;8675:1;8668:15;8695:281;8778:27;8800:4;8778:27;:::i;:::-;8770:6;8766:40;8908:6;8896:10;8893:22;8872:18;8860:10;8857:34;8854:62;8851:88;;;8919:18;;:::i;:::-;8851:88;8959:10;8955:2;8948:22;8738:238;8695:281;;:::o;8982:129::-;9016:6;9043:20;;:::i;:::-;9033:30;;9072:33;9100:4;9092:6;9072:33;:::i;:::-;8982:129;;;:::o;9117:308::-;9179:4;9269:18;9261:6;9258:30;9255:56;;;9291:18;;:::i;:::-;9255:56;9329:29;9351:6;9329:29;:::i;:::-;9321:37;;9413:4;9407;9403:15;9395:23;;9117:308;;;:::o;9431:154::-;9515:6;9510:3;9505;9492:30;9577:1;9568:6;9563:3;9559:16;9552:27;9431:154;;;:::o;9591:412::-;9669:5;9694:66;9710:49;9752:6;9710:49;:::i;:::-;9694:66;:::i;:::-;9685:75;;9783:6;9776:5;9769:21;9821:4;9814:5;9810:16;9859:3;9850:6;9845:3;9841:16;9838:25;9835:112;;;9866:79;;:::i;:::-;9835:112;9956:41;9990:6;9985:3;9980;9956:41;:::i;:::-;9675:328;9591:412;;;;;:::o;10023:340::-;10079:5;10128:3;10121:4;10113:6;10109:17;10105:27;10095:122;;10136:79;;:::i;:::-;10095:122;10253:6;10240:20;10278:79;10353:3;10345:6;10338:4;10330:6;10326:17;10278:79;:::i;:::-;10269:88;;10085:278;10023:340;;;;:::o;10369:509::-;10438:6;10487:2;10475:9;10466:7;10462:23;10458:32;10455:119;;;10493:79;;:::i;:::-;10455:119;10641:1;10630:9;10626:17;10613:31;10671:18;10663:6;10660:30;10657:117;;;10693:79;;:::i;:::-;10657:117;10798:63;10853:7;10844:6;10833:9;10829:22;10798:63;:::i;:::-;10788:73;;10584:287;10369:509;;;;:::o;10884:116::-;10954:21;10969:5;10954:21;:::i;:::-;10947:5;10944:32;10934:60;;10990:1;10987;10980:12;10934:60;10884:116;:::o;11006:133::-;11049:5;11087:6;11074:20;11065:29;;11103:30;11127:5;11103:30;:::i;:::-;11006:133;;;;:::o;11145:323::-;11201:6;11250:2;11238:9;11229:7;11225:23;11221:32;11218:119;;;11256:79;;:::i;:::-;11218:119;11376:1;11401:50;11443:7;11434:6;11423:9;11419:22;11401:50;:::i;:::-;11391:60;;11347:114;11145:323;;;;:::o;11474:468::-;11539:6;11547;11596:2;11584:9;11575:7;11571:23;11567:32;11564:119;;;11602:79;;:::i;:::-;11564:119;11722:1;11747:53;11792:7;11783:6;11772:9;11768:22;11747:53;:::i;:::-;11737:63;;11693:117;11849:2;11875:50;11917:7;11908:6;11897:9;11893:22;11875:50;:::i;:::-;11865:60;;11820:115;11474:468;;;;;:::o;11948:307::-;12009:4;12099:18;12091:6;12088:30;12085:56;;;12121:18;;:::i;:::-;12085:56;12159:29;12181:6;12159:29;:::i;:::-;12151:37;;12243:4;12237;12233:15;12225:23;;11948:307;;;:::o;12261:410::-;12338:5;12363:65;12379:48;12420:6;12379:48;:::i;:::-;12363:65;:::i;:::-;12354:74;;12451:6;12444:5;12437:21;12489:4;12482:5;12478:16;12527:3;12518:6;12513:3;12509:16;12506:25;12503:112;;;12534:79;;:::i;:::-;12503:112;12624:41;12658:6;12653:3;12648;12624:41;:::i;:::-;12344:327;12261:410;;;;;:::o;12690:338::-;12745:5;12794:3;12787:4;12779:6;12775:17;12771:27;12761:122;;12802:79;;:::i;:::-;12761:122;12919:6;12906:20;12944:78;13018:3;13010:6;13003:4;12995:6;12991:17;12944:78;:::i;:::-;12935:87;;12751:277;12690:338;;;;:::o;13034:943::-;13129:6;13137;13145;13153;13202:3;13190:9;13181:7;13177:23;13173:33;13170:120;;;13209:79;;:::i;:::-;13170:120;13329:1;13354:53;13399:7;13390:6;13379:9;13375:22;13354:53;:::i;:::-;13344:63;;13300:117;13456:2;13482:53;13527:7;13518:6;13507:9;13503:22;13482:53;:::i;:::-;13472:63;;13427:118;13584:2;13610:53;13655:7;13646:6;13635:9;13631:22;13610:53;:::i;:::-;13600:63;;13555:118;13740:2;13729:9;13725:18;13712:32;13771:18;13763:6;13760:30;13757:117;;;13793:79;;:::i;:::-;13757:117;13898:62;13952:7;13943:6;13932:9;13928:22;13898:62;:::i;:::-;13888:72;;13683:287;13034:943;;;;;;;:::o;13983:652::-;14060:6;14068;14117:2;14105:9;14096:7;14092:23;14088:32;14085:119;;;14123:79;;:::i;:::-;14085:119;14271:1;14260:9;14256:17;14243:31;14301:18;14293:6;14290:30;14287:117;;;14323:79;;:::i;:::-;14287:117;14428:62;14482:7;14473:6;14462:9;14458:22;14428:62;:::i;:::-;14418:72;;14214:286;14539:2;14565:53;14610:7;14601:6;14590:9;14586:22;14565:53;:::i;:::-;14555:63;;14510:118;13983:652;;;;;:::o;14641:117::-;14750:1;14747;14740:12;14764:117;14873:1;14870;14863:12;14904:568;14977:8;14987:6;15037:3;15030:4;15022:6;15018:17;15014:27;15004:122;;15045:79;;:::i;:::-;15004:122;15158:6;15145:20;15135:30;;15188:18;15180:6;15177:30;15174:117;;;15210:79;;:::i;:::-;15174:117;15324:4;15316:6;15312:17;15300:29;;15378:3;15370:4;15362:6;15358:17;15348:8;15344:32;15341:41;15338:128;;;15385:79;;:::i;:::-;15338:128;14904:568;;;;;:::o;15478:704::-;15573:6;15581;15589;15638:2;15626:9;15617:7;15613:23;15609:32;15606:119;;;15644:79;;:::i;:::-;15606:119;15764:1;15789:53;15834:7;15825:6;15814:9;15810:22;15789:53;:::i;:::-;15779:63;;15735:117;15919:2;15908:9;15904:18;15891:32;15950:18;15942:6;15939:30;15936:117;;;15972:79;;:::i;:::-;15936:117;16085:80;16157:7;16148:6;16137:9;16133:22;16085:80;:::i;:::-;16067:98;;;;15862:313;15478:704;;;;;:::o;16188:474::-;16256:6;16264;16313:2;16301:9;16292:7;16288:23;16284:32;16281:119;;;16319:79;;:::i;:::-;16281:119;16439:1;16464:53;16509:7;16500:6;16489:9;16485:22;16464:53;:::i;:::-;16454:63;;16410:117;16566:2;16592:53;16637:7;16628:6;16617:9;16613:22;16592:53;:::i;:::-;16582:63;;16537:118;16188:474;;;;;:::o;16668:180::-;16808:32;16804:1;16796:6;16792:14;16785:56;16668:180;:::o;16854:366::-;16996:3;17017:67;17081:2;17076:3;17017:67;:::i;:::-;17010:74;;17093:93;17182:3;17093:93;:::i;:::-;17211:2;17206:3;17202:12;17195:19;;16854:366;;;:::o;17226:419::-;17392:4;17430:2;17419:9;17415:18;17407:26;;17479:9;17473:4;17469:20;17465:1;17454:9;17450:17;17443:47;17507:131;17633:4;17507:131;:::i;:::-;17499:139;;17226:419;;;:::o;17651:180::-;17699:77;17696:1;17689:88;17796:4;17793:1;17786:15;17820:4;17817:1;17810:15;17837:320;17881:6;17918:1;17912:4;17908:12;17898:22;;17965:1;17959:4;17955:12;17986:18;17976:81;;18042:4;18034:6;18030:17;18020:27;;17976:81;18104:2;18096:6;18093:14;18073:18;18070:38;18067:84;;;18123:18;;:::i;:::-;18067:84;17888:269;17837:320;;;:::o;18163:231::-;18303:34;18299:1;18291:6;18287:14;18280:58;18372:14;18367:2;18359:6;18355:15;18348:39;18163:231;:::o;18400:366::-;18542:3;18563:67;18627:2;18622:3;18563:67;:::i;:::-;18556:74;;18639:93;18728:3;18639:93;:::i;:::-;18757:2;18752:3;18748:12;18741:19;;18400:366;;;:::o;18772:419::-;18938:4;18976:2;18965:9;18961:18;18953:26;;19025:9;19019:4;19015:20;19011:1;19000:9;18996:17;18989:47;19053:131;19179:4;19053:131;:::i;:::-;19045:139;;18772:419;;;:::o;19197:220::-;19337:34;19333:1;19325:6;19321:14;19314:58;19406:3;19401:2;19393:6;19389:15;19382:28;19197:220;:::o;19423:366::-;19565:3;19586:67;19650:2;19645:3;19586:67;:::i;:::-;19579:74;;19662:93;19751:3;19662:93;:::i;:::-;19780:2;19775:3;19771:12;19764:19;;19423:366;;;:::o;19795:419::-;19961:4;19999:2;19988:9;19984:18;19976:26;;20048:9;20042:4;20038:20;20034:1;20023:9;20019:17;20012:47;20076:131;20202:4;20076:131;:::i;:::-;20068:139;;19795:419;;;:::o;20220:243::-;20360:34;20356:1;20348:6;20344:14;20337:58;20429:26;20424:2;20416:6;20412:15;20405:51;20220:243;:::o;20469:366::-;20611:3;20632:67;20696:2;20691:3;20632:67;:::i;:::-;20625:74;;20708:93;20797:3;20708:93;:::i;:::-;20826:2;20821:3;20817:12;20810:19;;20469:366;;;:::o;20841:419::-;21007:4;21045:2;21034:9;21030:18;21022:26;;21094:9;21088:4;21084:20;21080:1;21069:9;21065:17;21058:47;21122:131;21248:4;21122:131;:::i;:::-;21114:139;;20841:419;;;:::o;21266:236::-;21406:34;21402:1;21394:6;21390:14;21383:58;21475:19;21470:2;21462:6;21458:15;21451:44;21266:236;:::o;21508:366::-;21650:3;21671:67;21735:2;21730:3;21671:67;:::i;:::-;21664:74;;21747:93;21836:3;21747:93;:::i;:::-;21865:2;21860:3;21856:12;21849:19;;21508:366;;;:::o;21880:419::-;22046:4;22084:2;22073:9;22069:18;22061:26;;22133:9;22127:4;22123:20;22119:1;22108:9;22104:17;22097:47;22161:131;22287:4;22161:131;:::i;:::-;22153:139;;21880:419;;;:::o;22305:230::-;22445:34;22441:1;22433:6;22429:14;22422:58;22514:13;22509:2;22501:6;22497:15;22490:38;22305:230;:::o;22541:366::-;22683:3;22704:67;22768:2;22763:3;22704:67;:::i;:::-;22697:74;;22780:93;22869:3;22780:93;:::i;:::-;22898:2;22893:3;22889:12;22882:19;;22541:366;;;:::o;22913:419::-;23079:4;23117:2;23106:9;23102:18;23094:26;;23166:9;23160:4;23156:20;23152:1;23141:9;23137:17;23130:47;23194:131;23320:4;23194:131;:::i;:::-;23186:139;;22913:419;;;:::o;23338:165::-;23478:17;23474:1;23466:6;23462:14;23455:41;23338:165;:::o;23509:366::-;23651:3;23672:67;23736:2;23731:3;23672:67;:::i;:::-;23665:74;;23748:93;23837:3;23748:93;:::i;:::-;23866:2;23861:3;23857:12;23850:19;;23509:366;;;:::o;23881:419::-;24047:4;24085:2;24074:9;24070:18;24062:26;;24134:9;24128:4;24124:20;24120:1;24109:9;24105:17;24098:47;24162:131;24288:4;24162:131;:::i;:::-;24154:139;;23881:419;;;:::o;24306:179::-;24446:31;24442:1;24434:6;24430:14;24423:55;24306:179;:::o;24491:366::-;24633:3;24654:67;24718:2;24713:3;24654:67;:::i;:::-;24647:74;;24730:93;24819:3;24730:93;:::i;:::-;24848:2;24843:3;24839:12;24832:19;;24491:366;;;:::o;24863:419::-;25029:4;25067:2;25056:9;25052:18;25044:26;;25116:9;25110:4;25106:20;25102:1;25091:9;25087:17;25080:47;25144:131;25270:4;25144:131;:::i;:::-;25136:139;;24863:419;;;:::o;25288:180::-;25336:77;25333:1;25326:88;25433:4;25430:1;25423:15;25457:4;25454:1;25447:15;25474:305;25514:3;25533:20;25551:1;25533:20;:::i;:::-;25528:25;;25567:20;25585:1;25567:20;:::i;:::-;25562:25;;25721:1;25653:66;25649:74;25646:1;25643:81;25640:107;;;25727:18;;:::i;:::-;25640:107;25771:1;25768;25764:9;25757:16;;25474:305;;;;:::o;25785:172::-;25925:24;25921:1;25913:6;25909:14;25902:48;25785:172;:::o;25963:366::-;26105:3;26126:67;26190:2;26185:3;26126:67;:::i;:::-;26119:74;;26202:93;26291:3;26202:93;:::i;:::-;26320:2;26315:3;26311:12;26304:19;;25963:366;;;:::o;26335:419::-;26501:4;26539:2;26528:9;26524:18;26516:26;;26588:9;26582:4;26578:20;26574:1;26563:9;26559:17;26552:47;26616:131;26742:4;26616:131;:::i;:::-;26608:139;;26335:419;;;:::o;26760:169::-;26900:21;26896:1;26888:6;26884:14;26877:45;26760:169;:::o;26935:366::-;27077:3;27098:67;27162:2;27157:3;27098:67;:::i;:::-;27091:74;;27174:93;27263:3;27174:93;:::i;:::-;27292:2;27287:3;27283:12;27276:19;;26935:366;;;:::o;27307:419::-;27473:4;27511:2;27500:9;27496:18;27488:26;;27560:9;27554:4;27550:20;27546:1;27535:9;27531:17;27524:47;27588:131;27714:4;27588:131;:::i;:::-;27580:139;;27307:419;;;:::o;27732:180::-;27872:32;27868:1;27860:6;27856:14;27849:56;27732:180;:::o;27918:366::-;28060:3;28081:67;28145:2;28140:3;28081:67;:::i;:::-;28074:74;;28157:93;28246:3;28157:93;:::i;:::-;28275:2;28270:3;28266:12;28259:19;;27918:366;;;:::o;28290:419::-;28456:4;28494:2;28483:9;28479:18;28471:26;;28543:9;28537:4;28533:20;28529:1;28518:9;28514:17;28507:47;28571:131;28697:4;28571:131;:::i;:::-;28563:139;;28290:419;;;:::o;28715:348::-;28755:7;28778:20;28796:1;28778:20;:::i;:::-;28773:25;;28812:20;28830:1;28812:20;:::i;:::-;28807:25;;29000:1;28932:66;28928:74;28925:1;28922:81;28917:1;28910:9;28903:17;28899:105;28896:131;;;29007:18;;:::i;:::-;28896:131;29055:1;29052;29048:9;29037:20;;28715:348;;;;:::o;29069:177::-;29209:29;29205:1;29197:6;29193:14;29186:53;29069:177;:::o;29252:366::-;29394:3;29415:67;29479:2;29474:3;29415:67;:::i;:::-;29408:74;;29491:93;29580:3;29491:93;:::i;:::-;29609:2;29604:3;29600:12;29593:19;;29252:366;;;:::o;29624:419::-;29790:4;29828:2;29817:9;29813:18;29805:26;;29877:9;29871:4;29867:20;29863:1;29852:9;29848:17;29841:47;29905:131;30031:4;29905:131;:::i;:::-;29897:139;;29624:419;;;:::o;30049:332::-;30170:4;30208:2;30197:9;30193:18;30185:26;;30221:71;30289:1;30278:9;30274:17;30265:6;30221:71;:::i;:::-;30302:72;30370:2;30359:9;30355:18;30346:6;30302:72;:::i;:::-;30049:332;;;;;:::o;30387:233::-;30426:3;30449:24;30467:5;30449:24;:::i;:::-;30440:33;;30495:66;30488:5;30485:77;30482:103;;;30565:18;;:::i;:::-;30482:103;30612:1;30605:5;30601:13;30594:20;;30387:233;;;:::o;30626:180::-;30674:77;30671:1;30664:88;30771:4;30768:1;30761:15;30795:4;30792:1;30785:15;30812:231;30952:34;30948:1;30940:6;30936:14;30929:58;31021:14;31016:2;31008:6;31004:15;30997:39;30812:231;:::o;31049:366::-;31191:3;31212:67;31276:2;31271:3;31212:67;:::i;:::-;31205:74;;31288:93;31377:3;31288:93;:::i;:::-;31406:2;31401:3;31397:12;31390:19;;31049:366;;;:::o;31421:419::-;31587:4;31625:2;31614:9;31610:18;31602:26;;31674:9;31668:4;31664:20;31660:1;31649:9;31645:17;31638:47;31702:131;31828:4;31702:131;:::i;:::-;31694:139;;31421:419;;;:::o;31846:228::-;31986:34;31982:1;31974:6;31970:14;31963:58;32055:11;32050:2;32042:6;32038:15;32031:36;31846:228;:::o;32080:366::-;32222:3;32243:67;32307:2;32302:3;32243:67;:::i;:::-;32236:74;;32319:93;32408:3;32319:93;:::i;:::-;32437:2;32432:3;32428:12;32421:19;;32080:366;;;:::o;32452:419::-;32618:4;32656:2;32645:9;32641:18;32633:26;;32705:9;32699:4;32695:20;32691:1;32680:9;32676:17;32669:47;32733:131;32859:4;32733:131;:::i;:::-;32725:139;;32452:419;;;:::o;32877:229::-;33017:34;33013:1;33005:6;33001:14;32994:58;33086:12;33081:2;33073:6;33069:15;33062:37;32877:229;:::o;33112:366::-;33254:3;33275:67;33339:2;33334:3;33275:67;:::i;:::-;33268:74;;33351:93;33440:3;33351:93;:::i;:::-;33469:2;33464:3;33460:12;33453:19;;33112:366;;;:::o;33484:419::-;33650:4;33688:2;33677:9;33673:18;33665:26;;33737:9;33731:4;33727:20;33723:1;33712:9;33708:17;33701:47;33765:131;33891:4;33765:131;:::i;:::-;33757:139;;33484:419;;;:::o;33909:182::-;34049:34;34045:1;34037:6;34033:14;34026:58;33909:182;:::o;34097:366::-;34239:3;34260:67;34324:2;34319:3;34260:67;:::i;:::-;34253:74;;34336:93;34425:3;34336:93;:::i;:::-;34454:2;34449:3;34445:12;34438:19;;34097:366;;;:::o;34469:419::-;34635:4;34673:2;34662:9;34658:18;34650:26;;34722:9;34716:4;34712:20;34708:1;34697:9;34693:17;34686:47;34750:131;34876:4;34750:131;:::i;:::-;34742:139;;34469:419;;;:::o;34894:177::-;35034:29;35030:1;35022:6;35018:14;35011:53;34894:177;:::o;35077:366::-;35219:3;35240:67;35304:2;35299:3;35240:67;:::i;:::-;35233:74;;35316:93;35405:3;35316:93;:::i;:::-;35434:2;35429:3;35425:12;35418:19;;35077:366;;;:::o;35449:419::-;35615:4;35653:2;35642:9;35638:18;35630:26;;35702:9;35696:4;35692:20;35688:1;35677:9;35673:17;35666:47;35730:131;35856:4;35730:131;:::i;:::-;35722:139;;35449:419;;;:::o;35874:175::-;36014:27;36010:1;36002:6;35998:14;35991:51;35874:175;:::o;36055:366::-;36197:3;36218:67;36282:2;36277:3;36218:67;:::i;:::-;36211:74;;36294:93;36383:3;36294:93;:::i;:::-;36412:2;36407:3;36403:12;36396:19;;36055:366;;;:::o;36427:419::-;36593:4;36631:2;36620:9;36616:18;36608:26;;36680:9;36674:4;36670:20;36666:1;36655:9;36651:17;36644:47;36708:131;36834:4;36708:131;:::i;:::-;36700:139;;36427:419;;;:::o;36852:234::-;36992:34;36988:1;36980:6;36976:14;36969:58;37061:17;37056:2;37048:6;37044:15;37037:42;36852:234;:::o;37092:366::-;37234:3;37255:67;37319:2;37314:3;37255:67;:::i;:::-;37248:74;;37331:93;37420:3;37331:93;:::i;:::-;37449:2;37444:3;37440:12;37433:19;;37092:366;;;:::o;37464:419::-;37630:4;37668:2;37657:9;37653:18;37645:26;;37717:9;37711:4;37707:20;37703:1;37692:9;37688:17;37681:47;37745:131;37871:4;37745:131;:::i;:::-;37737:139;;37464:419;;;:::o;37889:148::-;37991:11;38028:3;38013:18;;37889:148;;;;:::o;38043:377::-;38149:3;38177:39;38210:5;38177:39;:::i;:::-;38232:89;38314:6;38309:3;38232:89;:::i;:::-;38225:96;;38330:52;38375:6;38370:3;38363:4;38356:5;38352:16;38330:52;:::i;:::-;38407:6;38402:3;38398:16;38391:23;;38153:267;38043:377;;;;:::o;38426:435::-;38606:3;38628:95;38719:3;38710:6;38628:95;:::i;:::-;38621:102;;38740:95;38831:3;38822:6;38740:95;:::i;:::-;38733:102;;38852:3;38845:10;;38426:435;;;;;:::o;38867:174::-;39007:26;39003:1;38995:6;38991:14;38984:50;38867:174;:::o;39047:366::-;39189:3;39210:67;39274:2;39269:3;39210:67;:::i;:::-;39203:74;;39286:93;39375:3;39286:93;:::i;:::-;39404:2;39399:3;39395:12;39388:19;;39047:366;;;:::o;39419:419::-;39585:4;39623:2;39612:9;39608:18;39600:26;;39672:9;39666:4;39662:20;39658:1;39647:9;39643:17;39636:47;39700:131;39826:4;39700:131;:::i;:::-;39692:139;;39419:419;;;:::o;39844:172::-;39984:24;39980:1;39972:6;39968:14;39961:48;39844:172;:::o;40022:366::-;40164:3;40185:67;40249:2;40244:3;40185:67;:::i;:::-;40178:74;;40261:93;40350:3;40261:93;:::i;:::-;40379:2;40374:3;40370:12;40363:19;;40022:366;;;:::o;40394:419::-;40560:4;40598:2;40587:9;40583:18;40575:26;;40647:9;40641:4;40637:20;40633:1;40622:9;40618:17;40611:47;40675:131;40801:4;40675:131;:::i;:::-;40667:139;;40394:419;;;:::o;40819:177::-;40959:29;40955:1;40947:6;40943:14;40936:53;40819:177;:::o;41002:366::-;41144:3;41165:67;41229:2;41224:3;41165:67;:::i;:::-;41158:74;;41241:93;41330:3;41241:93;:::i;:::-;41359:2;41354:3;41350:12;41343:19;;41002:366;;;:::o;41374:419::-;41540:4;41578:2;41567:9;41563:18;41555:26;;41627:9;41621:4;41617:20;41613:1;41602:9;41598:17;41591:47;41655:131;41781:4;41655:131;:::i;:::-;41647:139;;41374:419;;;:::o;41799:182::-;41939:34;41935:1;41927:6;41923:14;41916:58;41799:182;:::o;41987:366::-;42129:3;42150:67;42214:2;42209:3;42150:67;:::i;:::-;42143:74;;42226:93;42315:3;42226:93;:::i;:::-;42344:2;42339:3;42335:12;42328:19;;41987:366;;;:::o;42359:419::-;42525:4;42563:2;42552:9;42548:18;42540:26;;42612:9;42606:4;42602:20;42598:1;42587:9;42583:17;42576:47;42640:131;42766:4;42640:131;:::i;:::-;42632:139;;42359:419;;;:::o;42784:178::-;42924:30;42920:1;42912:6;42908:14;42901:54;42784:178;:::o;42968:366::-;43110:3;43131:67;43195:2;43190:3;43131:67;:::i;:::-;43124:74;;43207:93;43296:3;43207:93;:::i;:::-;43325:2;43320:3;43316:12;43309:19;;42968:366;;;:::o;43340:419::-;43506:4;43544:2;43533:9;43529:18;43521:26;;43593:9;43587:4;43583:20;43579:1;43568:9;43564:17;43557:47;43621:131;43747:4;43621:131;:::i;:::-;43613:139;;43340:419;;;:::o;43765:174::-;43905:26;43901:1;43893:6;43889:14;43882:50;43765:174;:::o;43945:366::-;44087:3;44108:67;44172:2;44167:3;44108:67;:::i;:::-;44101:74;;44184:93;44273:3;44184:93;:::i;:::-;44302:2;44297:3;44293:12;44286:19;;43945:366;;;:::o;44317:419::-;44483:4;44521:2;44510:9;44506:18;44498:26;;44570:9;44564:4;44560:20;44556:1;44545:9;44541:17;44534:47;44598:131;44724:4;44598:131;:::i;:::-;44590:139;;44317:419;;;:::o;44742:225::-;44882:34;44878:1;44870:6;44866:14;44859:58;44951:8;44946:2;44938:6;44934:15;44927:33;44742:225;:::o;44973:366::-;45115:3;45136:67;45200:2;45195:3;45136:67;:::i;:::-;45129:74;;45212:93;45301:3;45212:93;:::i;:::-;45330:2;45325:3;45321:12;45314:19;;44973:366;;;:::o;45345:419::-;45511:4;45549:2;45538:9;45534:18;45526:26;;45598:9;45592:4;45588:20;45584:1;45573:9;45569:17;45562:47;45626:131;45752:4;45626:131;:::i;:::-;45618:139;;45345:419;;;:::o;45770:231::-;45910:34;45906:1;45898:6;45894:14;45887:58;45979:14;45974:2;45966:6;45962:15;45955:39;45770:231;:::o;46007:366::-;46149:3;46170:67;46234:2;46229:3;46170:67;:::i;:::-;46163:74;;46246:93;46335:3;46246:93;:::i;:::-;46364:2;46359:3;46355:12;46348:19;;46007:366;;;:::o;46379:419::-;46545:4;46583:2;46572:9;46568:18;46560:26;;46632:9;46626:4;46622:20;46618:1;46607:9;46603:17;46596:47;46660:131;46786:4;46660:131;:::i;:::-;46652:139;;46379:419;;;:::o;46804:228::-;46944:34;46940:1;46932:6;46928:14;46921:58;47013:11;47008:2;47000:6;46996:15;46989:36;46804:228;:::o;47038:366::-;47180:3;47201:67;47265:2;47260:3;47201:67;:::i;:::-;47194:74;;47277:93;47366:3;47277:93;:::i;:::-;47395:2;47390:3;47386:12;47379:19;;47038:366;;;:::o;47410:419::-;47576:4;47614:2;47603:9;47599:18;47591:26;;47663:9;47657:4;47653:20;47649:1;47638:9;47634:17;47627:47;47691:131;47817:4;47691:131;:::i;:::-;47683:139;;47410:419;;;:::o;47835:223::-;47975:34;47971:1;47963:6;47959:14;47952:58;48044:6;48039:2;48031:6;48027:15;48020:31;47835:223;:::o;48064:366::-;48206:3;48227:67;48291:2;48286:3;48227:67;:::i;:::-;48220:74;;48303:93;48392:3;48303:93;:::i;:::-;48421:2;48416:3;48412:12;48405:19;;48064:366;;;:::o;48436:419::-;48602:4;48640:2;48629:9;48625:18;48617:26;;48689:9;48683:4;48679:20;48675:1;48664:9;48660:17;48653:47;48717:131;48843:4;48717:131;:::i;:::-;48709:139;;48436:419;;;:::o;48861:191::-;48901:4;48921:20;48939:1;48921:20;:::i;:::-;48916:25;;48955:20;48973:1;48955:20;:::i;:::-;48950:25;;48994:1;48991;48988:8;48985:34;;;48999:18;;:::i;:::-;48985:34;49044:1;49041;49037:9;49029:17;;48861:191;;;;:::o;49058:237::-;49198:34;49194:1;49186:6;49182:14;49175:58;49267:20;49262:2;49254:6;49250:15;49243:45;49058:237;:::o;49301:366::-;49443:3;49464:67;49528:2;49523:3;49464:67;:::i;:::-;49457:74;;49540:93;49629:3;49540:93;:::i;:::-;49658:2;49653:3;49649:12;49642:19;;49301:366;;;:::o;49673:419::-;49839:4;49877:2;49866:9;49862:18;49854:26;;49926:9;49920:4;49916:20;49912:1;49901:9;49897:17;49890:47;49954:131;50080:4;49954:131;:::i;:::-;49946:139;;49673:419;;;:::o;50098:180::-;50146:77;50143:1;50136:88;50243:4;50240:1;50233:15;50267:4;50264:1;50257:15;50284:185;50324:1;50341:20;50359:1;50341:20;:::i;:::-;50336:25;;50375:20;50393:1;50375:20;:::i;:::-;50370:25;;50414:1;50404:35;;50419:18;;:::i;:::-;50404:35;50461:1;50458;50454:9;50449:14;;50284:185;;;;:::o;50475:176::-;50507:1;50524:20;50542:1;50524:20;:::i;:::-;50519:25;;50558:20;50576:1;50558:20;:::i;:::-;50553:25;;50597:1;50587:35;;50602:18;;:::i;:::-;50587:35;50643:1;50640;50636:9;50631:14;;50475:176;;;;:::o;50657:94::-;50690:8;50738:5;50734:2;50730:14;50709:35;;50657:94;;;:::o;50757:::-;50796:7;50825:20;50839:5;50825:20;:::i;:::-;50814:31;;50757:94;;;:::o;50857:100::-;50896:7;50925:26;50945:5;50925:26;:::i;:::-;50914:37;;50857:100;;;:::o;50963:157::-;51068:45;51088:24;51106:5;51088:24;:::i;:::-;51068:45;:::i;:::-;51063:3;51056:58;50963:157;;:::o;51126:256::-;51238:3;51253:75;51324:3;51315:6;51253:75;:::i;:::-;51353:2;51348:3;51344:12;51337:19;;51373:3;51366:10;;51126:256;;;;:::o;51388:98::-;51439:6;51473:5;51467:12;51457:22;;51388:98;;;:::o;51492:168::-;51575:11;51609:6;51604:3;51597:19;51649:4;51644:3;51640:14;51625:29;;51492:168;;;;:::o;51666:360::-;51752:3;51780:38;51812:5;51780:38;:::i;:::-;51834:70;51897:6;51892:3;51834:70;:::i;:::-;51827:77;;51913:52;51958:6;51953:3;51946:4;51939:5;51935:16;51913:52;:::i;:::-;51990:29;52012:6;51990:29;:::i;:::-;51985:3;51981:39;51974:46;;51756:270;51666:360;;;;:::o;52032:640::-;52227:4;52265:3;52254:9;52250:19;52242:27;;52279:71;52347:1;52336:9;52332:17;52323:6;52279:71;:::i;:::-;52360:72;52428:2;52417:9;52413:18;52404:6;52360:72;:::i;:::-;52442;52510:2;52499:9;52495:18;52486:6;52442:72;:::i;:::-;52561:9;52555:4;52551:20;52546:2;52535:9;52531:18;52524:48;52589:76;52660:4;52651:6;52589:76;:::i;:::-;52581:84;;52032:640;;;;;;;:::o;52678:141::-;52734:5;52765:6;52759:13;52750:22;;52781:32;52807:5;52781:32;:::i;:::-;52678:141;;;;:::o;52825:349::-;52894:6;52943:2;52931:9;52922:7;52918:23;52914:32;52911:119;;;52949:79;;:::i;:::-;52911:119;53069:1;53094:63;53149:7;53140:6;53129:9;53125:22;53094:63;:::i;:::-;53084:73;;53040:127;52825:349;;;;:::o;53180:214::-;53320:66;53316:1;53308:6;53304:14;53297:90;53180:214;:::o;53400:402::-;53560:3;53581:85;53663:2;53658:3;53581:85;:::i;:::-;53574:92;;53675:93;53764:3;53675:93;:::i;:::-;53793:2;53788:3;53784:12;53777:19;;53400:402;;;:::o;53808:77::-;53845:7;53874:5;53863:16;;53808:77;;;:::o;53891:79::-;53930:7;53959:5;53948:16;;53891:79;;;:::o;53976:157::-;54081:45;54101:24;54119:5;54101:24;:::i;:::-;54081:45;:::i;:::-;54076:3;54069:58;53976:157;;:::o;54139:522::-;54352:3;54374:148;54518:3;54374:148;:::i;:::-;54367:155;;54532:75;54603:3;54594:6;54532:75;:::i;:::-;54632:2;54627:3;54623:12;54616:19;;54652:3;54645:10;;54139:522;;;;:::o;54667:180::-;54715:77;54712:1;54705:88;54812:4;54809:1;54802:15;54836:4;54833:1;54826:15;54853:182;54993:34;54989:1;54981:6;54977:14;54970:58;54853:182;:::o;55041:366::-;55183:3;55204:67;55268:2;55263:3;55204:67;:::i;:::-;55197:74;;55280:93;55369:3;55280:93;:::i;:::-;55398:2;55393:3;55389:12;55382:19;;55041:366;;;:::o;55413:419::-;55579:4;55617:2;55606:9;55602:18;55594:26;;55666:9;55660:4;55656:20;55652:1;55641:9;55637:17;55630:47;55694:131;55820:4;55694:131;:::i;:::-;55686:139;;55413:419;;;:::o;55838:178::-;55978:30;55974:1;55966:6;55962:14;55955:54;55838:178;:::o;56022:366::-;56164:3;56185:67;56249:2;56244:3;56185:67;:::i;:::-;56178:74;;56261:93;56350:3;56261:93;:::i;:::-;56379:2;56374:3;56370:12;56363:19;;56022:366;;;:::o;56394:419::-;56560:4;56598:2;56587:9;56583:18;56575:26;;56647:9;56641:4;56637:20;56633:1;56622:9;56618:17;56611:47;56675:131;56801:4;56675:131;:::i;:::-;56667:139;;56394:419;;;:::o;56819:180::-;56867:77;56864:1;56857:88;56964:4;56961:1;56954:15;56988:4;56985:1;56978:15;57005:174;57145:26;57141:1;57133:6;57129:14;57122:50;57005:174;:::o;57185:366::-;57327:3;57348:67;57412:2;57407:3;57348:67;:::i;:::-;57341:74;;57424:93;57513:3;57424:93;:::i;:::-;57542:2;57537:3;57533:12;57526:19;;57185:366;;;:::o;57557:419::-;57723:4;57761:2;57750:9;57746:18;57738:26;;57810:9;57804:4;57800:20;57796:1;57785:9;57781:17;57774:47;57838:131;57964:4;57838:131;:::i;:::-;57830:139;;57557:419;;;:::o;57982:181::-;58122:33;58118:1;58110:6;58106:14;58099:57;57982:181;:::o;58169:366::-;58311:3;58332:67;58396:2;58391:3;58332:67;:::i;:::-;58325:74;;58408:93;58497:3;58408:93;:::i;:::-;58526:2;58521:3;58517:12;58510:19;;58169:366;;;:::o;58541:419::-;58707:4;58745:2;58734:9;58730:18;58722:26;;58794:9;58788:4;58784:20;58780:1;58769:9;58765:17;58758:47;58822:131;58948:4;58822:131;:::i;:::-;58814:139;;58541:419;;;:::o;58966:221::-;59106:34;59102:1;59094:6;59090:14;59083:58;59175:4;59170:2;59162:6;59158:15;59151:29;58966:221;:::o;59193:366::-;59335:3;59356:67;59420:2;59415:3;59356:67;:::i;:::-;59349:74;;59432:93;59521:3;59432:93;:::i;:::-;59550:2;59545:3;59541:12;59534:19;;59193:366;;;:::o;59565:419::-;59731:4;59769:2;59758:9;59754:18;59746:26;;59818:9;59812:4;59808:20;59804:1;59793:9;59789:17;59782:47;59846:131;59972:4;59846:131;:::i;:::-;59838:139;;59565:419;;;:::o;59990:221::-;60130:34;60126:1;60118:6;60114:14;60107:58;60199:4;60194:2;60186:6;60182:15;60175:29;59990:221;:::o;60217:366::-;60359:3;60380:67;60444:2;60439:3;60380:67;:::i;:::-;60373:74;;60456:93;60545:3;60456:93;:::i;:::-;60574:2;60569:3;60565:12;60558:19;;60217:366;;;:::o;60589:419::-;60755:4;60793:2;60782:9;60778:18;60770:26;;60842:9;60836:4;60832:20;60828:1;60817:9;60813:17;60806:47;60870:131;60996:4;60870:131;:::i;:::-;60862:139;;60589:419;;;:::o;61014:118::-;61101:24;61119:5;61101:24;:::i;:::-;61096:3;61089:37;61014:118;;:::o;61138:86::-;61173:7;61213:4;61206:5;61202:16;61191:27;;61138:86;;;:::o;61230:112::-;61313:22;61329:5;61313:22;:::i;:::-;61308:3;61301:35;61230:112;;:::o;61348:545::-;61521:4;61559:3;61548:9;61544:19;61536:27;;61573:71;61641:1;61630:9;61626:17;61617:6;61573:71;:::i;:::-;61654:68;61718:2;61707:9;61703:18;61694:6;61654:68;:::i;:::-;61732:72;61800:2;61789:9;61785:18;61776:6;61732:72;:::i;:::-;61814;61882:2;61871:9;61867:18;61858:6;61814:72;:::i;:::-;61348:545;;;;;;;:::o

Swarm Source

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