ETH Price: $3,192.01 (-7.48%)
Gas: 4 Gwei

Token

Smile Together Happy Club (STHC)
 

Overview

Max Total Supply

85 STHC

Holders

55

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 STHC
0xC03fe5A6a856adcb1b2A1f3080D44888F47385CD
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
HappyContract

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

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

pragma solidity ^0.8.0;

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


contract HappyContract is  ERC721Enumerable, Ownable { 

    using SafeMath for uint256;

    uint256 public constant MAX_HappyFace = 5555;
    uint public CHARITY_1_FEE = 25;                     // 2.5% to Charity chosen by us (Autism Speaks)
    uint public CHARITY_2_FEE = 25;                     // 2.5% to Charity chosen by us (Autism Radio)
    uint public OTHER_CHARITY_FEE = 50;                 // 5%   to Charity chosen by the community
    uint public HCBW_FEE = 120;                         // 12%  to Happy Club Business Wallet
    uint public CSW_FEE = 80;                           // 8%   to Community Support Wallet      //8+12=20% to Ownership Pool
    //uint public 100PERCENT = 1000;                    // => 100 % 
    

    uint256 private _price = 0.04 ether;                
    uint256 private _reserved = 100;                    // 3 for the team, 97 for giveaways, promotions
 


    string public STHC_PROVENANCE = "";
    uint256 public startingIndex;

    string public baseURI;
    bool private _saleStarted;
    bool private _presaleStarted;
    address[] private _addresses_for_canpresale;


    address public constant CHARITY_1_ADDRESS = 0x0ade51c2b4c417fC6d4Fd9FE2701c60038EBfd42;     // Autism Speaks - Twitter: https://twitter.com/autismspeaks
    address public constant CHARITY_2_ADDRESS = 0x5dC22B9c05a4cD0E369A4C164686d7E293E1170f;     // Autism Radio - Twitter: https://twitter.com/autismradio
    address public constant OTHER_CHARITY_ADDRESS = 0x8d727A0ac890f89218Dc9391a8d3d9B36692a4D5; // The community will choose where we should donate this money
    address OWNER_ADDRESS = 0x5Ffe79DAA7fB7837599DDe96f5FE844Ae57fd008;                         // Owner address
    address HCBW_ADDRESS  = 0x3F4c5C7542D032eecfc07FD650A9c04bb1cD67EA;                         // Happy Club Business Wallet
    address CSW_ADDRESS  = 0x029747a0Ed88796DabDa13E948e0E40Ab56C9f91;                          // Community Support Wallet
    


    constructor() ERC721("Smile Together Happy Club", "STHC") {
        _saleStarted = false;
        _presaleStarted = false;
        baseURI = "https://metadata.smiletogetherhappyclub.com/api/";   
    }


    modifier whenSaleStarted() {
        require(_saleStarted);
        _;
    }

    function mintHappyFace(uint256 numHappyFace) public payable{
        require(_saleStarted == true, "Sale hasn't started yet!");
        require(totalSupply() < MAX_HappyFace, "We already sold out. Thank you!");
        require(numHappyFace > 0 && numHappyFace <= 10, "You can mint minimum 1, maximum 10 Happy Faces.");
        require(totalSupply().add(numHappyFace) <= MAX_HappyFace - _reserved, "Not enough Happy Faces left.");
        require(totalSupply().add(numHappyFace) <= MAX_HappyFace, "Exceeds MAX_HappyFace.");
        require((numHappyFace * _price) <= msg.value, "Ether value sent is not correct.");
      
        for (uint i = 0; i < numHappyFace; i++){
            uint mintIndex = totalSupply();
            _safeMint(msg.sender, mintIndex);
        }
    }

    function premintHappyFace(uint256 numHappyFace) public payable{
        require(_presaleStarted == true, "Pre-sale hasn't started yet!");
        require(totalSupply() < MAX_HappyFace, "We already sold out. Thank you!");
        require(numHappyFace > 0 && numHappyFace <= 10, "You can mint minimum 1, maximum 10 Happy Faces.");
        require(totalSupply().add(numHappyFace) <= MAX_HappyFace - _reserved, "Not enough Happy Faces left.");
        require((numHappyFace * _price) <= msg.value, "Ether value sent is not correct.");
        require (_addresses_for_canpresale.length > 0, "Haven't pre-sale address in contract." );

        bool _inpresale = false;
        uint i = 0;

        for (i=0;i < _addresses_for_canpresale.length;i++ ){
        //while ((i < _addresses_for_canpresale.length) &&  (_inpresale == false)) {
            if (_addresses_for_canpresale[i] == msg.sender){
                _inpresale = true;
                i =_addresses_for_canpresale.length;
            }
        //    i++;
        }
        require(_inpresale, "This address not eligible for pre-sale purchases");

        for (i = 0; i < numHappyFace; i++){
            uint mintIndex = totalSupply();
            _safeMint(msg.sender, mintIndex);
        }
    }

    function flipSaleStarted() external onlyOwner {
        _saleStarted = !_saleStarted;

        if ( _saleStarted && _presaleStarted) {
            _presaleStarted = false;
        }

        if (_saleStarted && startingIndex == 0) {
            setStartingIndex();
        }
    }

    function flipPreSaleStarted() external onlyOwner {
        _presaleStarted = !_presaleStarted;

        if ( _saleStarted && _presaleStarted) {
            _saleStarted = false;
        }

        if (_presaleStarted && startingIndex == 0) {
            setStartingIndex();
        }
    }

    function Add_presaleAddresses(address[] memory _addr) external  onlyOwner {
        for (uint i=0;i < _addr.length;i++ ){
              _addresses_for_canpresale.push(_addr[i]);
        }
    }

    function presaleAddresses() public view returns(address[] memory) {
        return _addresses_for_canpresale;
    }

    function presaleAddrCount() public view returns(uint256) {
        return _addresses_for_canpresale.length;
    }

    function saleStarted() public view returns(bool) {
        return _saleStarted;
    }

    function presaleStarted() public view returns(bool) {
        return _presaleStarted;
    }

    function setBaseURI(string memory _URI) external onlyOwner {
        baseURI = _URI;
    }

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

    // THis makes it possible to change the price // just in case
    function setPrice(uint256 _newPrice) external onlyOwner {
         _price = _newPrice;
    }

    function getPrice() public view returns (uint256){
        return _price;
    }

    function setProvenanceHash(string memory provenanceHash) public onlyOwner {
        STHC_PROVENANCE = provenanceHash;
    }

    // Help to list all the Happy Faces of a connected wallet // it's for the Ownership Pool
    function walletOfOwner(address _owner) public view returns(uint256[] memory) {
        uint256 tokenCount = balanceOf(_owner);

        uint256[] memory tokensId = new uint256[](tokenCount);
        for(uint256 i; i < tokenCount; i++){
            tokensId[i] = tokenOfOwnerByIndex(_owner, i);
        }
        return tokensId;
    }

    function claimReserved(uint256 _number, address _receiver) external onlyOwner {
        require(_number <= _reserved, "That would exceed the max reserved.");

        uint256 _tokenId = totalSupply();
        for (uint256 i; i < _number; i++) {
            _safeMint(_receiver, _tokenId + i);
        }

        _reserved = _reserved - _number;
    }

    function setStartingIndex() public {
        require(startingIndex == 0, "Starting index is already set");

        uint256 _block_shift = uint(keccak256(abi.encodePacked(block.difficulty, block.timestamp)));
        _block_shift =  1 + (_block_shift % 255);

        if (block.number < _block_shift) {
            _block_shift = 1;
        }

        uint256 _block_ref = block.number - _block_shift;
        startingIndex = uint(blockhash(_block_ref)) % MAX_HappyFace;

        if (startingIndex == 0) {
            startingIndex = startingIndex + 1;
        }
    }

    function withdraw() public onlyOwner {
        uint256 _balance = address(this).balance;
        uint256 _toCHARITY1 = (_balance * CHARITY_1_FEE)/1000;                          // CHARITY_1_FEE % to Charity (Autism Speaks)
        uint256 _toCHARITY2 = (_balance * CHARITY_2_FEE)/1000;                          // CHARITY_2_FEE % to Charity (Autism Radio)
        uint256 _toOTHERCHARITY = (_balance * OTHER_CHARITY_FEE)/1000;                  // OTHER_CHARITY_FEE % to Charity
        uint256 _toHCBW = (_balance * HCBW_FEE)/1000;                                   // HCBW_FEE % to Happy Club Business Wallet
        uint256 _toCSW = (_balance * CSW_FEE)/1000;                                     // CSW_FEE % to Community Support Wallet
        uint256 _toOWNER = _balance - _toCHARITY1 - _toCHARITY2 - _toOTHERCHARITY - _toCSW - _toHCBW;   // The rest to owner

        payable(CHARITY_1_ADDRESS).transfer(_toCHARITY1);
        payable(CHARITY_2_ADDRESS).transfer(_toCHARITY2);
        payable(OTHER_CHARITY_ADDRESS).transfer(_toOTHERCHARITY);
        payable(HCBW_ADDRESS).transfer(_toHCBW);
        payable(CSW_ADDRESS).transfer(_toCSW);
        payable(OWNER_ADDRESS).transfer(_toOWNER);
        assert(address(this).balance == 0);
    }
}   

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

    function _verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) private pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

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

File 2 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 3 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 4 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(to).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 5 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 6 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 7 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 8 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 9 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 10 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 11 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() private 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 12 of 14: SafeMath.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

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":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":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":"_addr","type":"address[]"}],"name":"Add_presaleAddresses","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"CHARITY_1_ADDRESS","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"CHARITY_1_FEE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"CHARITY_2_ADDRESS","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"CHARITY_2_FEE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"CSW_FEE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"HCBW_FEE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_HappyFace","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"OTHER_CHARITY_ADDRESS","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"OTHER_CHARITY_FEE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"STHC_PROVENANCE","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_number","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"claimReserved","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipPreSaleStarted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSaleStarted","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":"getPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"internalType":"uint256","name":"numHappyFace","type":"uint256"}],"name":"mintHappyFace","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numHappyFace","type":"uint256"}],"name":"premintHappyFace","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"presaleAddrCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleAddresses","outputs":[{"internalType":"address[]","name":"","type":"address[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":[],"name":"saleStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"_URI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"provenanceHash","type":"string"}],"name":"setProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setStartingIndex","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startingIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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"}]

60806040526019600b556019600c556032600d556078600e556050600f55668e1bc9bf04000060105560646011556040518060200160405280600081525060129080519060200190620000549291906200035e565b50735ffe79daa7fb7837599dde96f5fe844ae57fd008601760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550733f4c5c7542d032eecfc07fd650a9c04bb1cd67ea601860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073029747a0ed88796dabda13e948e0e40ab56c9f91601960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200016157600080fd5b506040518060400160405280601981526020017f536d696c6520546f67657468657220486170707920436c7562000000000000008152506040518060400160405280600481526020017f53544843000000000000000000000000000000000000000000000000000000008152508160009080519060200190620001e69291906200035e565b508060019080519060200190620001ff9291906200035e565b50505062000222620002166200029060201b60201c565b6200029860201b60201c565b6000601560006101000a81548160ff0219169083151502179055506000601560016101000a81548160ff02191690831515021790555060405180606001604052806030815260200162005ad26030913960149080519060200190620002899291906200035e565b5062000473565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200036c906200040e565b90600052602060002090601f016020900481019282620003905760008555620003dc565b82601f10620003ab57805160ff1916838001178555620003dc565b82800160010185558215620003dc579182015b82811115620003db578251825591602001919060010190620003be565b5b509050620003eb9190620003ef565b5090565b5b808211156200040a576000816000905550600101620003f0565b5090565b600060028204905060018216806200042757607f821691505b602082108114156200043e576200043d62000444565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61564f80620004836000396000f3fe6080604052600436106102885760003560e01c806370a082311161015a578063b0e1d7f3116100c1578063cb774d471161007a578063cb774d4714610992578063cd4feafd146109bd578063e985e9c5146109e8578063e986655014610a25578063ee937c2b14610a3c578063f2fde38b14610a6757610288565b8063b0e1d7f3146108a0578063b479cffd146108c9578063b88d4fde146108e5578063be3723931461090e578063c5a8e6cd1461092a578063c87b56dd1461095557610288565b806391b7f5ed1161011357806391b7f5ed146107a457806395d89b41146107cd57806398d5fdca146107f8578063a22cb46514610823578063a778eb401461084c578063a89664911461087757610288565b806370a08231146106b8578063762328cb146106f55780638008540214610720578063899d7b381461074b5780638da5cb5b146107625780638fef8ecc1461078d57610288565b80633ccfd60b116101fe57806355f804b3116101b757806355f804b3146105a65780635c474f9e146105cf5780635cdf5c41146105fa5780636352211e1461062557806366f1ec9d146106625780636c0360eb1461068d57610288565b80633ccfd60b1461049657806342842e0e146104ad578063438b6300146104d65780634583d6f8146105135780634dcc80191461053e5780634f6ccce71461056957610288565b80630f1d0e21116102505780630f1d0e211461038657806310969523146103b157806318160ddd146103da5780631f610db91461040557806323b872dd146104305780632f745c591461045957610288565b806301ffc9a71461028d57806304549d6f146102ca57806306fdde03146102f5578063081812fc14610320578063095ea7b31461035d575b600080fd5b34801561029957600080fd5b506102b460048036038101906102af9190613f35565b610a90565b6040516102c19190614d05565b60405180910390f35b3480156102d657600080fd5b506102df610b0a565b6040516102ec9190614d05565b60405180910390f35b34801561030157600080fd5b5061030a610b21565b6040516103179190614d20565b60405180910390f35b34801561032c57600080fd5b5061034760048036038101906103429190613fc8565b610bb3565b6040516103549190614c5a565b60405180910390f35b34801561036957600080fd5b50610384600480360381019061037f9190613eb8565b610c38565b005b34801561039257600080fd5b5061039b610d50565b6040516103a89190614c5a565b60405180910390f35b3480156103bd57600080fd5b506103d860048036038101906103d39190613f87565b610d68565b005b3480156103e657600080fd5b506103ef610dfe565b6040516103fc91906150e2565b60405180910390f35b34801561041157600080fd5b5061041a610e0b565b60405161042791906150e2565b60405180910390f35b34801561043c57600080fd5b5061045760048036038101906104529190613db2565b610e11565b005b34801561046557600080fd5b50610480600480360381019061047b9190613eb8565b610e71565b60405161048d91906150e2565b60405180910390f35b3480156104a257600080fd5b506104ab610f16565b005b3480156104b957600080fd5b506104d460048036038101906104cf9190613db2565b6112fa565b005b3480156104e257600080fd5b506104fd60048036038101906104f89190613d4d565b61131a565b60405161050a9190614ce3565b60405180910390f35b34801561051f57600080fd5b50610528611414565b6040516105359190614c5a565b60405180910390f35b34801561054a57600080fd5b5061055361142c565b60405161056091906150e2565b60405180910390f35b34801561057557600080fd5b50610590600480360381019061058b9190613fc8565b611432565b60405161059d91906150e2565b60405180910390f35b3480156105b257600080fd5b506105cd60048036038101906105c89190613f87565b6114c9565b005b3480156105db57600080fd5b506105e461155f565b6040516105f19190614d05565b60405180910390f35b34801561060657600080fd5b5061060f611576565b60405161061c91906150e2565b60405180910390f35b34801561063157600080fd5b5061064c60048036038101906106479190613fc8565b61157c565b6040516106599190614c5a565b60405180910390f35b34801561066e57600080fd5b5061067761162e565b6040516106849190614c5a565b60405180910390f35b34801561069957600080fd5b506106a2611646565b6040516106af9190614d20565b60405180910390f35b3480156106c457600080fd5b506106df60048036038101906106da9190613d4d565b6116d4565b6040516106ec91906150e2565b60405180910390f35b34801561070157600080fd5b5061070a61178c565b6040516107179190614cc1565b60405180910390f35b34801561072c57600080fd5b5061073561181a565b60405161074291906150e2565b60405180910390f35b34801561075757600080fd5b50610760611820565b005b34801561076e57600080fd5b5061077761193d565b6040516107849190614c5a565b60405180910390f35b34801561079957600080fd5b506107a2611967565b005b3480156107b057600080fd5b506107cb60048036038101906107c69190613fc8565b611a84565b005b3480156107d957600080fd5b506107e2611b0a565b6040516107ef9190614d20565b60405180910390f35b34801561080457600080fd5b5061080d611b9c565b60405161081a91906150e2565b60405180910390f35b34801561082f57600080fd5b5061084a60048036038101906108459190613e7c565b611ba6565b005b34801561085857600080fd5b50610861611d27565b60405161086e91906150e2565b60405180910390f35b34801561088357600080fd5b5061089e60048036038101906108999190613ef4565b611d2d565b005b3480156108ac57600080fd5b506108c760048036038101906108c29190613ff1565b611e6f565b005b6108e360048036038101906108de9190613fc8565b611f89565b005b3480156108f157600080fd5b5061090c60048036038101906109079190613e01565b6121cc565b005b61092860048036038101906109239190613fc8565b61222e565b005b34801561093657600080fd5b5061093f61256b565b60405161094c91906150e2565b60405180910390f35b34801561096157600080fd5b5061097c60048036038101906109779190613fc8565b612578565b6040516109899190614d20565b60405180910390f35b34801561099e57600080fd5b506109a761261f565b6040516109b491906150e2565b60405180910390f35b3480156109c957600080fd5b506109d2612625565b6040516109df91906150e2565b60405180910390f35b3480156109f457600080fd5b50610a0f6004803603810190610a0a9190613d76565b61262b565b604051610a1c9190614d05565b60405180910390f35b348015610a3157600080fd5b50610a3a6126bf565b005b348015610a4857600080fd5b50610a516127a9565b604051610a5e9190614d20565b60405180910390f35b348015610a7357600080fd5b50610a8e6004803603810190610a899190613d4d565b612837565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b035750610b028261292f565b5b9050919050565b6000601560019054906101000a900460ff16905090565b606060008054610b309061543a565b80601f0160208091040260200160405190810160405280929190818152602001828054610b5c9061543a565b8015610ba95780601f10610b7e57610100808354040283529160200191610ba9565b820191906000526020600020905b815481529060010190602001808311610b8c57829003601f168201915b5050505050905090565b6000610bbe82612a11565b610bfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf490614f82565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c438261157c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cab90615042565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610cd3612a7d565b73ffffffffffffffffffffffffffffffffffffffff161480610d025750610d0181610cfc612a7d565b61262b565b5b610d41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3890614f02565b60405180910390fd5b610d4b8383612a85565b505050565b730ade51c2b4c417fc6d4fd9fe2701c60038ebfd4281565b610d70612a7d565b73ffffffffffffffffffffffffffffffffffffffff16610d8e61193d565b73ffffffffffffffffffffffffffffffffffffffff1614610de4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ddb90614fc2565b60405180910390fd5b8060129080519060200190610dfa929190613adb565b5050565b6000600880549050905090565b600c5481565b610e22610e1c612a7d565b82612b3e565b610e61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e58906150a2565b60405180910390fd5b610e6c838383612c1c565b505050565b6000610e7c836116d4565b8210610ebd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb490614d62565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610f1e612a7d565b73ffffffffffffffffffffffffffffffffffffffff16610f3c61193d565b73ffffffffffffffffffffffffffffffffffffffff1614610f92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8990614fc2565b60405180910390fd5b600047905060006103e8600b5483610faa91906152f6565b610fb491906152c5565b905060006103e8600c5484610fc991906152f6565b610fd391906152c5565b905060006103e8600d5485610fe891906152f6565b610ff291906152c5565b905060006103e8600e548661100791906152f6565b61101191906152c5565b905060006103e8600f548761102691906152f6565b61103091906152c5565b9050600082828587898b6110449190615350565b61104e9190615350565b6110589190615350565b6110629190615350565b61106c9190615350565b9050730ade51c2b4c417fc6d4fd9fe2701c60038ebfd4273ffffffffffffffffffffffffffffffffffffffff166108fc879081150290604051600060405180830381858888f193505050501580156110c8573d6000803e3d6000fd5b50735dc22b9c05a4cd0e369a4c164686d7e293e1170f73ffffffffffffffffffffffffffffffffffffffff166108fc869081150290604051600060405180830381858888f19350505050158015611123573d6000803e3d6000fd5b50738d727a0ac890f89218dc9391a8d3d9b36692a4d573ffffffffffffffffffffffffffffffffffffffff166108fc859081150290604051600060405180830381858888f1935050505015801561117e573d6000803e3d6000fd5b50601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc849081150290604051600060405180830381858888f193505050501580156111e7573d6000803e3d6000fd5b50601960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f19350505050158015611250573d6000803e3d6000fd5b50601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156112b9573d6000803e3d6000fd5b50600047146112f1577f4e487b7100000000000000000000000000000000000000000000000000000000600052600160045260246000fd5b50505050505050565b611315838383604051806020016040528060008152506121cc565b505050565b60606000611327836116d4565b905060008167ffffffffffffffff81111561136b577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156113995781602001602082028036833780820191505090505b50905060005b82811015611409576113b18582610e71565b8282815181106113ea577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080806114019061546c565b91505061139f565b508092505050919050565b738d727a0ac890f89218dc9391a8d3d9b36692a4d581565b6115b381565b600061143c610dfe565b821061147d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611474906150c2565b60405180910390fd5b600882815481106114b7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b6114d1612a7d565b73ffffffffffffffffffffffffffffffffffffffff166114ef61193d565b73ffffffffffffffffffffffffffffffffffffffff1614611545576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153c90614fc2565b60405180910390fd5b806014908051906020019061155b929190613adb565b5050565b6000601560009054906101000a900460ff16905090565b600f5481565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611625576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161c90614f42565b60405180910390fd5b80915050919050565b735dc22b9c05a4cd0e369a4c164686d7e293e1170f81565b601480546116539061543a565b80601f016020809104026020016040519081016040528092919081815260200182805461167f9061543a565b80156116cc5780601f106116a1576101008083540402835291602001916116cc565b820191906000526020600020905b8154815290600101906020018083116116af57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611745576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173c90614f22565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6060601680548060200260200160405190810160405280929190818152602001828054801561181057602002820191906000526020600020905b8160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190600101908083116117c6575b5050505050905090565b600e5481565b611828612a7d565b73ffffffffffffffffffffffffffffffffffffffff1661184661193d565b73ffffffffffffffffffffffffffffffffffffffff161461189c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189390614fc2565b60405180910390fd5b601560009054906101000a900460ff1615601560006101000a81548160ff021916908315150217905550601560009054906101000a900460ff1680156118ee5750601560019054906101000a900460ff165b1561190f576000601560016101000a81548160ff0219169083151502179055505b601560009054906101000a900460ff16801561192d57506000601354145b1561193b5761193a6126bf565b5b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61196f612a7d565b73ffffffffffffffffffffffffffffffffffffffff1661198d61193d565b73ffffffffffffffffffffffffffffffffffffffff16146119e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119da90614fc2565b60405180910390fd5b601560019054906101000a900460ff1615601560016101000a81548160ff021916908315150217905550601560009054906101000a900460ff168015611a355750601560019054906101000a900460ff165b15611a56576000601560006101000a81548160ff0219169083151502179055505b601560019054906101000a900460ff168015611a7457506000601354145b15611a8257611a816126bf565b5b565b611a8c612a7d565b73ffffffffffffffffffffffffffffffffffffffff16611aaa61193d565b73ffffffffffffffffffffffffffffffffffffffff1614611b00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af790614fc2565b60405180910390fd5b8060108190555050565b606060018054611b199061543a565b80601f0160208091040260200160405190810160405280929190818152602001828054611b459061543a565b8015611b925780601f10611b6757610100808354040283529160200191611b92565b820191906000526020600020905b815481529060010190602001808311611b7557829003601f168201915b5050505050905090565b6000601054905090565b611bae612a7d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1390614e42565b60405180910390fd5b8060056000611c29612a7d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611cd6612a7d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611d1b9190614d05565b60405180910390a35050565b600b5481565b611d35612a7d565b73ffffffffffffffffffffffffffffffffffffffff16611d5361193d565b73ffffffffffffffffffffffffffffffffffffffff1614611da9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da090614fc2565b60405180910390fd5b60005b8151811015611e6b576016828281518110611df0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508080611e639061546c565b915050611dac565b5050565b611e77612a7d565b73ffffffffffffffffffffffffffffffffffffffff16611e9561193d565b73ffffffffffffffffffffffffffffffffffffffff1614611eeb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee290614fc2565b60405180910390fd5b601154821115611f30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2790615062565b60405180910390fd5b6000611f3a610dfe565b905060005b83811015611f6f57611f5c838284611f57919061526f565b612e78565b8080611f679061546c565b915050611f3f565b5082601154611f7e9190615350565b601181905550505050565b60011515601560009054906101000a900460ff16151514611fdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd690614e62565b60405180910390fd5b6115b3611fea610dfe565b1061202a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202190614e02565b60405180910390fd5b60008111801561203b5750600a8111155b61207a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207190614fa2565b60405180910390fd5b6011546115b361208a9190615350565b6120a482612096610dfe565b612e9690919063ffffffff16565b11156120e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120dc90614ec2565b60405180910390fd5b6115b3612102826120f4610dfe565b612e9690919063ffffffff16565b1115612143576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213a90615002565b60405180910390fd5b346010548261215291906152f6565b1115612193576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218a90614d42565b60405180910390fd5b60005b818110156121c85760006121a8610dfe565b90506121b43382612e78565b5080806121c09061546c565b915050612196565b5050565b6121dd6121d7612a7d565b83612b3e565b61221c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612213906150a2565b60405180910390fd5b61222884848484612eac565b50505050565b60011515601560019054906101000a900460ff16151514612284576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161227b90614da2565b60405180910390fd5b6115b361228f610dfe565b106122cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122c690614e02565b60405180910390fd5b6000811180156122e05750600a8111155b61231f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231690614fa2565b60405180910390fd5b6011546115b361232f9190615350565b6123498261233b610dfe565b612e9690919063ffffffff16565b111561238a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238190614ec2565b60405180910390fd5b346010548261239991906152f6565b11156123da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123d190614d42565b60405180910390fd5b600060168054905011612422576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241990615082565b60405180910390fd5b600080600090505b6016805490508110156124ef573373ffffffffffffffffffffffffffffffffffffffff1660168281548110612488577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156124dc576001915060168054905090505b80806124e79061546c565b91505061242a565b8161252f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161252690614e82565b60405180910390fd5b600090505b82811015612566576000612546610dfe565b90506125523382612e78565b50808061255e9061546c565b915050612534565b505050565b6000601680549050905090565b606061258382612a11565b6125c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125b990615022565b60405180910390fd5b60006125cc612f08565b905060008151116125ec5760405180602001604052806000815250612617565b806125f684612f9a565b604051602001612607929190614c0a565b6040516020818303038152906040525b915050919050565b60135481565b600d5481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600060135414612704576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126fb90614ee2565b60405180910390fd5b60004442604051602001612719929190614c2e565b6040516020818303038152906040528051906020012060001c905060ff8161274191906154bf565b600161274d919061526f565b90508043101561275c57600190505b6000814361276a9190615350565b90506115b3814060001c61277e91906154bf565b601381905550600060135414156127a557600160135461279e919061526f565b6013819055505b5050565b601280546127b69061543a565b80601f01602080910402602001604051908101604052809291908181526020018280546127e29061543a565b801561282f5780601f106128045761010080835404028352916020019161282f565b820191906000526020600020905b81548152906001019060200180831161281257829003601f168201915b505050505081565b61283f612a7d565b73ffffffffffffffffffffffffffffffffffffffff1661285d61193d565b73ffffffffffffffffffffffffffffffffffffffff16146128b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128aa90614fc2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612923576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161291a90614dc2565b60405180910390fd5b61292c81613147565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806129fa57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612a0a5750612a098261320d565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612af88361157c565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612b4982612a11565b612b88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b7f90614ea2565b60405180910390fd5b6000612b938361157c565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612c0257508373ffffffffffffffffffffffffffffffffffffffff16612bea84610bb3565b73ffffffffffffffffffffffffffffffffffffffff16145b80612c135750612c12818561262b565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612c3c8261157c565b73ffffffffffffffffffffffffffffffffffffffff1614612c92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c8990614fe2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612d02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cf990614e22565b60405180910390fd5b612d0d838383613277565b612d18600082612a85565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612d689190615350565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612dbf919061526f565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b612e9282826040518060200160405280600081525061338b565b5050565b60008183612ea4919061526f565b905092915050565b612eb7848484612c1c565b612ec3848484846133e6565b612f02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ef990614d82565b60405180910390fd5b50505050565b606060148054612f179061543a565b80601f0160208091040260200160405190810160405280929190818152602001828054612f439061543a565b8015612f905780601f10612f6557610100808354040283529160200191612f90565b820191906000526020600020905b815481529060010190602001808311612f7357829003601f168201915b5050505050905090565b60606000821415612fe2576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613142565b600082905060005b60008214613014578080612ffd9061546c565b915050600a8261300d91906152c5565b9150612fea565b60008167ffffffffffffffff811115613056577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156130885781602001600182028036833780820191505090505b5090505b6000851461313b576001826130a19190615350565b9150600a856130b091906154bf565b60306130bc919061526f565b60f81b8183815181106130f8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561313491906152c5565b945061308c565b8093505050505b919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61328283838361357d565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156132c5576132c081613582565b613304565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146133035761330283826135cb565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156133475761334281613738565b613386565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461338557613384828261387b565b5b5b505050565b61339583836138fa565b6133a260008484846133e6565b6133e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133d890614d82565b60405180910390fd5b505050565b60006134078473ffffffffffffffffffffffffffffffffffffffff16613ac8565b15613570578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613430612a7d565b8786866040518563ffffffff1660e01b81526004016134529493929190614c75565b602060405180830381600087803b15801561346c57600080fd5b505af192505050801561349d57506040513d601f19601f8201168201806040525081019061349a9190613f5e565b60015b613520573d80600081146134cd576040519150601f19603f3d011682016040523d82523d6000602084013e6134d2565b606091505b50600081511415613518576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161350f90614d82565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613575565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016135d8846116d4565b6135e29190615350565b90506000600760008481526020019081526020016000205490508181146136c7576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061374c9190615350565b90506000600960008481526020019081526020016000205490506000600883815481106137a2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905080600883815481106137ea577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061385f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000613886836116d4565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561396a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161396190614f62565b60405180910390fd5b61397381612a11565b156139b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139aa90614de2565b60405180910390fd5b6139bf60008383613277565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613a0f919061526f565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054613ae79061543a565b90600052602060002090601f016020900481019282613b095760008555613b50565b82601f10613b2257805160ff1916838001178555613b50565b82800160010185558215613b50579182015b82811115613b4f578251825591602001919060010190613b34565b5b509050613b5d9190613b61565b5090565b5b80821115613b7a576000816000905550600101613b62565b5090565b6000613b91613b8c8461512e565b6150fd565b90508083825260208201905082856020860282011115613bb057600080fd5b60005b85811015613be05781613bc68882613c66565b845260208401935060208301925050600181019050613bb3565b5050509392505050565b6000613bfd613bf88461515a565b6150fd565b905082815260208101848484011115613c1557600080fd5b613c208482856153f8565b509392505050565b6000613c3b613c368461518a565b6150fd565b905082815260208101848484011115613c5357600080fd5b613c5e8482856153f8565b509392505050565b600081359050613c75816155bd565b92915050565b600082601f830112613c8c57600080fd5b8135613c9c848260208601613b7e565b91505092915050565b600081359050613cb4816155d4565b92915050565b600081359050613cc9816155eb565b92915050565b600081519050613cde816155eb565b92915050565b600082601f830112613cf557600080fd5b8135613d05848260208601613bea565b91505092915050565b600082601f830112613d1f57600080fd5b8135613d2f848260208601613c28565b91505092915050565b600081359050613d4781615602565b92915050565b600060208284031215613d5f57600080fd5b6000613d6d84828501613c66565b91505092915050565b60008060408385031215613d8957600080fd5b6000613d9785828601613c66565b9250506020613da885828601613c66565b9150509250929050565b600080600060608486031215613dc757600080fd5b6000613dd586828701613c66565b9350506020613de686828701613c66565b9250506040613df786828701613d38565b9150509250925092565b60008060008060808587031215613e1757600080fd5b6000613e2587828801613c66565b9450506020613e3687828801613c66565b9350506040613e4787828801613d38565b925050606085013567ffffffffffffffff811115613e6457600080fd5b613e7087828801613ce4565b91505092959194509250565b60008060408385031215613e8f57600080fd5b6000613e9d85828601613c66565b9250506020613eae85828601613ca5565b9150509250929050565b60008060408385031215613ecb57600080fd5b6000613ed985828601613c66565b9250506020613eea85828601613d38565b9150509250929050565b600060208284031215613f0657600080fd5b600082013567ffffffffffffffff811115613f2057600080fd5b613f2c84828501613c7b565b91505092915050565b600060208284031215613f4757600080fd5b6000613f5584828501613cba565b91505092915050565b600060208284031215613f7057600080fd5b6000613f7e84828501613ccf565b91505092915050565b600060208284031215613f9957600080fd5b600082013567ffffffffffffffff811115613fb357600080fd5b613fbf84828501613d0e565b91505092915050565b600060208284031215613fda57600080fd5b6000613fe884828501613d38565b91505092915050565b6000806040838503121561400457600080fd5b600061401285828601613d38565b925050602061402385828601613c66565b9150509250929050565b6000614039838361405d565b60208301905092915050565b60006140518383614bd5565b60208301905092915050565b61406681615384565b82525050565b61407581615384565b82525050565b6000614086826151da565b6140908185615220565b935061409b836151ba565b8060005b838110156140cc5781516140b3888261402d565b97506140be83615206565b92505060018101905061409f565b5085935050505092915050565b60006140e4826151e5565b6140ee8185615231565b93506140f9836151ca565b8060005b8381101561412a5781516141118882614045565b975061411c83615213565b9250506001810190506140fd565b5085935050505092915050565b61414081615396565b82525050565b6000614151826151f0565b61415b8185615242565b935061416b818560208601615407565b614174816155ac565b840191505092915050565b600061418a826151fb565b6141948185615253565b93506141a4818560208601615407565b6141ad816155ac565b840191505092915050565b60006141c3826151fb565b6141cd8185615264565b93506141dd818560208601615407565b80840191505092915050565b60006141f6602083615253565b91507f45746865722076616c75652073656e74206973206e6f7420636f72726563742e6000830152602082019050919050565b6000614236602b83615253565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b600061429c603283615253565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b6000614302601c83615253565b91507f5072652d73616c65206861736e277420737461727465642079657421000000006000830152602082019050919050565b6000614342602683615253565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006143a8601c83615253565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b60006143e8601f83615253565b91507f576520616c726561647920736f6c64206f75742e205468616e6b20796f7521006000830152602082019050919050565b6000614428602483615253565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061448e601983615253565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b60006144ce601883615253565b91507f53616c65206861736e27742073746172746564207965742100000000000000006000830152602082019050919050565b600061450e603083615253565b91507f546869732061646472657373206e6f7420656c696769626c6520666f7220707260008301527f652d73616c6520707572636861736573000000000000000000000000000000006020830152604082019050919050565b6000614574602c83615253565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006145da601c83615253565b91507f4e6f7420656e6f756768204861707079204661636573206c6566742e000000006000830152602082019050919050565b600061461a601d83615253565b91507f5374617274696e6720696e64657820697320616c7265616479207365740000006000830152602082019050919050565b600061465a603883615253565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b60006146c0602a83615253565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000614726602983615253565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b600061478c602083615253565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b60006147cc602c83615253565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000614832602f83615253565b91507f596f752063616e206d696e74206d696e696d756d20312c206d6178696d756d2060008301527f31302048617070792046616365732e00000000000000000000000000000000006020830152604082019050919050565b6000614898602083615253565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006148d8602983615253565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b600061493e601683615253565b91507f45786365656473204d41585f4861707079466163652e000000000000000000006000830152602082019050919050565b600061497e602f83615253565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b60006149e4602183615253565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614a4a602383615253565b91507f5468617420776f756c642065786365656420746865206d61782072657365727660008301527f65642e00000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614ab0602583615253565b91507f486176656e2774207072652d73616c65206164647265737320696e20636f6e7460008301527f726163742e0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614b16603183615253565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000614b7c602c83615253565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b614bde816153ee565b82525050565b614bed816153ee565b82525050565b614c04614bff826153ee565b6154b5565b82525050565b6000614c1682856141b8565b9150614c2282846141b8565b91508190509392505050565b6000614c3a8285614bf3565b602082019150614c4a8284614bf3565b6020820191508190509392505050565b6000602082019050614c6f600083018461406c565b92915050565b6000608082019050614c8a600083018761406c565b614c97602083018661406c565b614ca46040830185614be4565b8181036060830152614cb68184614146565b905095945050505050565b60006020820190508181036000830152614cdb818461407b565b905092915050565b60006020820190508181036000830152614cfd81846140d9565b905092915050565b6000602082019050614d1a6000830184614137565b92915050565b60006020820190508181036000830152614d3a818461417f565b905092915050565b60006020820190508181036000830152614d5b816141e9565b9050919050565b60006020820190508181036000830152614d7b81614229565b9050919050565b60006020820190508181036000830152614d9b8161428f565b9050919050565b60006020820190508181036000830152614dbb816142f5565b9050919050565b60006020820190508181036000830152614ddb81614335565b9050919050565b60006020820190508181036000830152614dfb8161439b565b9050919050565b60006020820190508181036000830152614e1b816143db565b9050919050565b60006020820190508181036000830152614e3b8161441b565b9050919050565b60006020820190508181036000830152614e5b81614481565b9050919050565b60006020820190508181036000830152614e7b816144c1565b9050919050565b60006020820190508181036000830152614e9b81614501565b9050919050565b60006020820190508181036000830152614ebb81614567565b9050919050565b60006020820190508181036000830152614edb816145cd565b9050919050565b60006020820190508181036000830152614efb8161460d565b9050919050565b60006020820190508181036000830152614f1b8161464d565b9050919050565b60006020820190508181036000830152614f3b816146b3565b9050919050565b60006020820190508181036000830152614f5b81614719565b9050919050565b60006020820190508181036000830152614f7b8161477f565b9050919050565b60006020820190508181036000830152614f9b816147bf565b9050919050565b60006020820190508181036000830152614fbb81614825565b9050919050565b60006020820190508181036000830152614fdb8161488b565b9050919050565b60006020820190508181036000830152614ffb816148cb565b9050919050565b6000602082019050818103600083015261501b81614931565b9050919050565b6000602082019050818103600083015261503b81614971565b9050919050565b6000602082019050818103600083015261505b816149d7565b9050919050565b6000602082019050818103600083015261507b81614a3d565b9050919050565b6000602082019050818103600083015261509b81614aa3565b9050919050565b600060208201905081810360008301526150bb81614b09565b9050919050565b600060208201905081810360008301526150db81614b6f565b9050919050565b60006020820190506150f76000830184614be4565b92915050565b6000604051905081810181811067ffffffffffffffff821117156151245761512361557d565b5b8060405250919050565b600067ffffffffffffffff8211156151495761514861557d565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156151755761517461557d565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff8211156151a5576151a461557d565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061527a826153ee565b9150615285836153ee565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156152ba576152b96154f0565b5b828201905092915050565b60006152d0826153ee565b91506152db836153ee565b9250826152eb576152ea61551f565b5b828204905092915050565b6000615301826153ee565b915061530c836153ee565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615615345576153446154f0565b5b828202905092915050565b600061535b826153ee565b9150615366836153ee565b925082821015615379576153786154f0565b5b828203905092915050565b600061538f826153ce565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561542557808201518184015260208101905061540a565b83811115615434576000848401525b50505050565b6000600282049050600182168061545257607f821691505b602082108114156154665761546561554e565b5b50919050565b6000615477826153ee565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156154aa576154a96154f0565b5b600182019050919050565b6000819050919050565b60006154ca826153ee565b91506154d5836153ee565b9250826154e5576154e461551f565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b6155c681615384565b81146155d157600080fd5b50565b6155dd81615396565b81146155e857600080fd5b50565b6155f4816153a2565b81146155ff57600080fd5b50565b61560b816153ee565b811461561657600080fd5b5056fea264697066735822122077cc0b0441a6c82daade257b50b3aeee900d13ccbb3593564fb2797a5b98458364736f6c6343000800003368747470733a2f2f6d657461646174612e736d696c65746f6765746865726861707079636c75622e636f6d2f6170692f

Deployed Bytecode

0x6080604052600436106102885760003560e01c806370a082311161015a578063b0e1d7f3116100c1578063cb774d471161007a578063cb774d4714610992578063cd4feafd146109bd578063e985e9c5146109e8578063e986655014610a25578063ee937c2b14610a3c578063f2fde38b14610a6757610288565b8063b0e1d7f3146108a0578063b479cffd146108c9578063b88d4fde146108e5578063be3723931461090e578063c5a8e6cd1461092a578063c87b56dd1461095557610288565b806391b7f5ed1161011357806391b7f5ed146107a457806395d89b41146107cd57806398d5fdca146107f8578063a22cb46514610823578063a778eb401461084c578063a89664911461087757610288565b806370a08231146106b8578063762328cb146106f55780638008540214610720578063899d7b381461074b5780638da5cb5b146107625780638fef8ecc1461078d57610288565b80633ccfd60b116101fe57806355f804b3116101b757806355f804b3146105a65780635c474f9e146105cf5780635cdf5c41146105fa5780636352211e1461062557806366f1ec9d146106625780636c0360eb1461068d57610288565b80633ccfd60b1461049657806342842e0e146104ad578063438b6300146104d65780634583d6f8146105135780634dcc80191461053e5780634f6ccce71461056957610288565b80630f1d0e21116102505780630f1d0e211461038657806310969523146103b157806318160ddd146103da5780631f610db91461040557806323b872dd146104305780632f745c591461045957610288565b806301ffc9a71461028d57806304549d6f146102ca57806306fdde03146102f5578063081812fc14610320578063095ea7b31461035d575b600080fd5b34801561029957600080fd5b506102b460048036038101906102af9190613f35565b610a90565b6040516102c19190614d05565b60405180910390f35b3480156102d657600080fd5b506102df610b0a565b6040516102ec9190614d05565b60405180910390f35b34801561030157600080fd5b5061030a610b21565b6040516103179190614d20565b60405180910390f35b34801561032c57600080fd5b5061034760048036038101906103429190613fc8565b610bb3565b6040516103549190614c5a565b60405180910390f35b34801561036957600080fd5b50610384600480360381019061037f9190613eb8565b610c38565b005b34801561039257600080fd5b5061039b610d50565b6040516103a89190614c5a565b60405180910390f35b3480156103bd57600080fd5b506103d860048036038101906103d39190613f87565b610d68565b005b3480156103e657600080fd5b506103ef610dfe565b6040516103fc91906150e2565b60405180910390f35b34801561041157600080fd5b5061041a610e0b565b60405161042791906150e2565b60405180910390f35b34801561043c57600080fd5b5061045760048036038101906104529190613db2565b610e11565b005b34801561046557600080fd5b50610480600480360381019061047b9190613eb8565b610e71565b60405161048d91906150e2565b60405180910390f35b3480156104a257600080fd5b506104ab610f16565b005b3480156104b957600080fd5b506104d460048036038101906104cf9190613db2565b6112fa565b005b3480156104e257600080fd5b506104fd60048036038101906104f89190613d4d565b61131a565b60405161050a9190614ce3565b60405180910390f35b34801561051f57600080fd5b50610528611414565b6040516105359190614c5a565b60405180910390f35b34801561054a57600080fd5b5061055361142c565b60405161056091906150e2565b60405180910390f35b34801561057557600080fd5b50610590600480360381019061058b9190613fc8565b611432565b60405161059d91906150e2565b60405180910390f35b3480156105b257600080fd5b506105cd60048036038101906105c89190613f87565b6114c9565b005b3480156105db57600080fd5b506105e461155f565b6040516105f19190614d05565b60405180910390f35b34801561060657600080fd5b5061060f611576565b60405161061c91906150e2565b60405180910390f35b34801561063157600080fd5b5061064c60048036038101906106479190613fc8565b61157c565b6040516106599190614c5a565b60405180910390f35b34801561066e57600080fd5b5061067761162e565b6040516106849190614c5a565b60405180910390f35b34801561069957600080fd5b506106a2611646565b6040516106af9190614d20565b60405180910390f35b3480156106c457600080fd5b506106df60048036038101906106da9190613d4d565b6116d4565b6040516106ec91906150e2565b60405180910390f35b34801561070157600080fd5b5061070a61178c565b6040516107179190614cc1565b60405180910390f35b34801561072c57600080fd5b5061073561181a565b60405161074291906150e2565b60405180910390f35b34801561075757600080fd5b50610760611820565b005b34801561076e57600080fd5b5061077761193d565b6040516107849190614c5a565b60405180910390f35b34801561079957600080fd5b506107a2611967565b005b3480156107b057600080fd5b506107cb60048036038101906107c69190613fc8565b611a84565b005b3480156107d957600080fd5b506107e2611b0a565b6040516107ef9190614d20565b60405180910390f35b34801561080457600080fd5b5061080d611b9c565b60405161081a91906150e2565b60405180910390f35b34801561082f57600080fd5b5061084a60048036038101906108459190613e7c565b611ba6565b005b34801561085857600080fd5b50610861611d27565b60405161086e91906150e2565b60405180910390f35b34801561088357600080fd5b5061089e60048036038101906108999190613ef4565b611d2d565b005b3480156108ac57600080fd5b506108c760048036038101906108c29190613ff1565b611e6f565b005b6108e360048036038101906108de9190613fc8565b611f89565b005b3480156108f157600080fd5b5061090c60048036038101906109079190613e01565b6121cc565b005b61092860048036038101906109239190613fc8565b61222e565b005b34801561093657600080fd5b5061093f61256b565b60405161094c91906150e2565b60405180910390f35b34801561096157600080fd5b5061097c60048036038101906109779190613fc8565b612578565b6040516109899190614d20565b60405180910390f35b34801561099e57600080fd5b506109a761261f565b6040516109b491906150e2565b60405180910390f35b3480156109c957600080fd5b506109d2612625565b6040516109df91906150e2565b60405180910390f35b3480156109f457600080fd5b50610a0f6004803603810190610a0a9190613d76565b61262b565b604051610a1c9190614d05565b60405180910390f35b348015610a3157600080fd5b50610a3a6126bf565b005b348015610a4857600080fd5b50610a516127a9565b604051610a5e9190614d20565b60405180910390f35b348015610a7357600080fd5b50610a8e6004803603810190610a899190613d4d565b612837565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b035750610b028261292f565b5b9050919050565b6000601560019054906101000a900460ff16905090565b606060008054610b309061543a565b80601f0160208091040260200160405190810160405280929190818152602001828054610b5c9061543a565b8015610ba95780601f10610b7e57610100808354040283529160200191610ba9565b820191906000526020600020905b815481529060010190602001808311610b8c57829003601f168201915b5050505050905090565b6000610bbe82612a11565b610bfd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf490614f82565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610c438261157c565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cb4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cab90615042565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610cd3612a7d565b73ffffffffffffffffffffffffffffffffffffffff161480610d025750610d0181610cfc612a7d565b61262b565b5b610d41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3890614f02565b60405180910390fd5b610d4b8383612a85565b505050565b730ade51c2b4c417fc6d4fd9fe2701c60038ebfd4281565b610d70612a7d565b73ffffffffffffffffffffffffffffffffffffffff16610d8e61193d565b73ffffffffffffffffffffffffffffffffffffffff1614610de4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ddb90614fc2565b60405180910390fd5b8060129080519060200190610dfa929190613adb565b5050565b6000600880549050905090565b600c5481565b610e22610e1c612a7d565b82612b3e565b610e61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e58906150a2565b60405180910390fd5b610e6c838383612c1c565b505050565b6000610e7c836116d4565b8210610ebd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb490614d62565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610f1e612a7d565b73ffffffffffffffffffffffffffffffffffffffff16610f3c61193d565b73ffffffffffffffffffffffffffffffffffffffff1614610f92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8990614fc2565b60405180910390fd5b600047905060006103e8600b5483610faa91906152f6565b610fb491906152c5565b905060006103e8600c5484610fc991906152f6565b610fd391906152c5565b905060006103e8600d5485610fe891906152f6565b610ff291906152c5565b905060006103e8600e548661100791906152f6565b61101191906152c5565b905060006103e8600f548761102691906152f6565b61103091906152c5565b9050600082828587898b6110449190615350565b61104e9190615350565b6110589190615350565b6110629190615350565b61106c9190615350565b9050730ade51c2b4c417fc6d4fd9fe2701c60038ebfd4273ffffffffffffffffffffffffffffffffffffffff166108fc879081150290604051600060405180830381858888f193505050501580156110c8573d6000803e3d6000fd5b50735dc22b9c05a4cd0e369a4c164686d7e293e1170f73ffffffffffffffffffffffffffffffffffffffff166108fc869081150290604051600060405180830381858888f19350505050158015611123573d6000803e3d6000fd5b50738d727a0ac890f89218dc9391a8d3d9b36692a4d573ffffffffffffffffffffffffffffffffffffffff166108fc859081150290604051600060405180830381858888f1935050505015801561117e573d6000803e3d6000fd5b50601860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc849081150290604051600060405180830381858888f193505050501580156111e7573d6000803e3d6000fd5b50601960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f19350505050158015611250573d6000803e3d6000fd5b50601760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f193505050501580156112b9573d6000803e3d6000fd5b50600047146112f1577f4e487b7100000000000000000000000000000000000000000000000000000000600052600160045260246000fd5b50505050505050565b611315838383604051806020016040528060008152506121cc565b505050565b60606000611327836116d4565b905060008167ffffffffffffffff81111561136b577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156113995781602001602082028036833780820191505090505b50905060005b82811015611409576113b18582610e71565b8282815181106113ea577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080806114019061546c565b91505061139f565b508092505050919050565b738d727a0ac890f89218dc9391a8d3d9b36692a4d581565b6115b381565b600061143c610dfe565b821061147d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611474906150c2565b60405180910390fd5b600882815481106114b7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b6114d1612a7d565b73ffffffffffffffffffffffffffffffffffffffff166114ef61193d565b73ffffffffffffffffffffffffffffffffffffffff1614611545576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153c90614fc2565b60405180910390fd5b806014908051906020019061155b929190613adb565b5050565b6000601560009054906101000a900460ff16905090565b600f5481565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611625576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161c90614f42565b60405180910390fd5b80915050919050565b735dc22b9c05a4cd0e369a4c164686d7e293e1170f81565b601480546116539061543a565b80601f016020809104026020016040519081016040528092919081815260200182805461167f9061543a565b80156116cc5780601f106116a1576101008083540402835291602001916116cc565b820191906000526020600020905b8154815290600101906020018083116116af57829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611745576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173c90614f22565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6060601680548060200260200160405190810160405280929190818152602001828054801561181057602002820191906000526020600020905b8160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190600101908083116117c6575b5050505050905090565b600e5481565b611828612a7d565b73ffffffffffffffffffffffffffffffffffffffff1661184661193d565b73ffffffffffffffffffffffffffffffffffffffff161461189c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189390614fc2565b60405180910390fd5b601560009054906101000a900460ff1615601560006101000a81548160ff021916908315150217905550601560009054906101000a900460ff1680156118ee5750601560019054906101000a900460ff165b1561190f576000601560016101000a81548160ff0219169083151502179055505b601560009054906101000a900460ff16801561192d57506000601354145b1561193b5761193a6126bf565b5b565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61196f612a7d565b73ffffffffffffffffffffffffffffffffffffffff1661198d61193d565b73ffffffffffffffffffffffffffffffffffffffff16146119e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119da90614fc2565b60405180910390fd5b601560019054906101000a900460ff1615601560016101000a81548160ff021916908315150217905550601560009054906101000a900460ff168015611a355750601560019054906101000a900460ff165b15611a56576000601560006101000a81548160ff0219169083151502179055505b601560019054906101000a900460ff168015611a7457506000601354145b15611a8257611a816126bf565b5b565b611a8c612a7d565b73ffffffffffffffffffffffffffffffffffffffff16611aaa61193d565b73ffffffffffffffffffffffffffffffffffffffff1614611b00576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af790614fc2565b60405180910390fd5b8060108190555050565b606060018054611b199061543a565b80601f0160208091040260200160405190810160405280929190818152602001828054611b459061543a565b8015611b925780601f10611b6757610100808354040283529160200191611b92565b820191906000526020600020905b815481529060010190602001808311611b7557829003601f168201915b5050505050905090565b6000601054905090565b611bae612a7d565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1390614e42565b60405180910390fd5b8060056000611c29612a7d565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611cd6612a7d565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611d1b9190614d05565b60405180910390a35050565b600b5481565b611d35612a7d565b73ffffffffffffffffffffffffffffffffffffffff16611d5361193d565b73ffffffffffffffffffffffffffffffffffffffff1614611da9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611da090614fc2565b60405180910390fd5b60005b8151811015611e6b576016828281518110611df0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508080611e639061546c565b915050611dac565b5050565b611e77612a7d565b73ffffffffffffffffffffffffffffffffffffffff16611e9561193d565b73ffffffffffffffffffffffffffffffffffffffff1614611eeb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ee290614fc2565b60405180910390fd5b601154821115611f30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2790615062565b60405180910390fd5b6000611f3a610dfe565b905060005b83811015611f6f57611f5c838284611f57919061526f565b612e78565b8080611f679061546c565b915050611f3f565b5082601154611f7e9190615350565b601181905550505050565b60011515601560009054906101000a900460ff16151514611fdf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fd690614e62565b60405180910390fd5b6115b3611fea610dfe565b1061202a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202190614e02565b60405180910390fd5b60008111801561203b5750600a8111155b61207a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161207190614fa2565b60405180910390fd5b6011546115b361208a9190615350565b6120a482612096610dfe565b612e9690919063ffffffff16565b11156120e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120dc90614ec2565b60405180910390fd5b6115b3612102826120f4610dfe565b612e9690919063ffffffff16565b1115612143576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161213a90615002565b60405180910390fd5b346010548261215291906152f6565b1115612193576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161218a90614d42565b60405180910390fd5b60005b818110156121c85760006121a8610dfe565b90506121b43382612e78565b5080806121c09061546c565b915050612196565b5050565b6121dd6121d7612a7d565b83612b3e565b61221c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612213906150a2565b60405180910390fd5b61222884848484612eac565b50505050565b60011515601560019054906101000a900460ff16151514612284576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161227b90614da2565b60405180910390fd5b6115b361228f610dfe565b106122cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122c690614e02565b60405180910390fd5b6000811180156122e05750600a8111155b61231f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161231690614fa2565b60405180910390fd5b6011546115b361232f9190615350565b6123498261233b610dfe565b612e9690919063ffffffff16565b111561238a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161238190614ec2565b60405180910390fd5b346010548261239991906152f6565b11156123da576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123d190614d42565b60405180910390fd5b600060168054905011612422576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161241990615082565b60405180910390fd5b600080600090505b6016805490508110156124ef573373ffffffffffffffffffffffffffffffffffffffff1660168281548110612488577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156124dc576001915060168054905090505b80806124e79061546c565b91505061242a565b8161252f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161252690614e82565b60405180910390fd5b600090505b82811015612566576000612546610dfe565b90506125523382612e78565b50808061255e9061546c565b915050612534565b505050565b6000601680549050905090565b606061258382612a11565b6125c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125b990615022565b60405180910390fd5b60006125cc612f08565b905060008151116125ec5760405180602001604052806000815250612617565b806125f684612f9a565b604051602001612607929190614c0a565b6040516020818303038152906040525b915050919050565b60135481565b600d5481565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600060135414612704576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126fb90614ee2565b60405180910390fd5b60004442604051602001612719929190614c2e565b6040516020818303038152906040528051906020012060001c905060ff8161274191906154bf565b600161274d919061526f565b90508043101561275c57600190505b6000814361276a9190615350565b90506115b3814060001c61277e91906154bf565b601381905550600060135414156127a557600160135461279e919061526f565b6013819055505b5050565b601280546127b69061543a565b80601f01602080910402602001604051908101604052809291908181526020018280546127e29061543a565b801561282f5780601f106128045761010080835404028352916020019161282f565b820191906000526020600020905b81548152906001019060200180831161281257829003601f168201915b505050505081565b61283f612a7d565b73ffffffffffffffffffffffffffffffffffffffff1661285d61193d565b73ffffffffffffffffffffffffffffffffffffffff16146128b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128aa90614fc2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612923576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161291a90614dc2565b60405180910390fd5b61292c81613147565b50565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806129fa57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612a0a5750612a098261320d565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16612af88361157c565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612b4982612a11565b612b88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b7f90614ea2565b60405180910390fd5b6000612b938361157c565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161480612c0257508373ffffffffffffffffffffffffffffffffffffffff16612bea84610bb3565b73ffffffffffffffffffffffffffffffffffffffff16145b80612c135750612c12818561262b565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff16612c3c8261157c565b73ffffffffffffffffffffffffffffffffffffffff1614612c92576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c8990614fe2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612d02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cf990614e22565b60405180910390fd5b612d0d838383613277565b612d18600082612a85565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612d689190615350565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612dbf919061526f565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b612e9282826040518060200160405280600081525061338b565b5050565b60008183612ea4919061526f565b905092915050565b612eb7848484612c1c565b612ec3848484846133e6565b612f02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ef990614d82565b60405180910390fd5b50505050565b606060148054612f179061543a565b80601f0160208091040260200160405190810160405280929190818152602001828054612f439061543a565b8015612f905780601f10612f6557610100808354040283529160200191612f90565b820191906000526020600020905b815481529060010190602001808311612f7357829003601f168201915b5050505050905090565b60606000821415612fe2576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613142565b600082905060005b60008214613014578080612ffd9061546c565b915050600a8261300d91906152c5565b9150612fea565b60008167ffffffffffffffff811115613056577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156130885781602001600182028036833780820191505090505b5090505b6000851461313b576001826130a19190615350565b9150600a856130b091906154bf565b60306130bc919061526f565b60f81b8183815181106130f8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561313491906152c5565b945061308c565b8093505050505b919050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61328283838361357d565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156132c5576132c081613582565b613304565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146133035761330283826135cb565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156133475761334281613738565b613386565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461338557613384828261387b565b5b5b505050565b61339583836138fa565b6133a260008484846133e6565b6133e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133d890614d82565b60405180910390fd5b505050565b60006134078473ffffffffffffffffffffffffffffffffffffffff16613ac8565b15613570578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02613430612a7d565b8786866040518563ffffffff1660e01b81526004016134529493929190614c75565b602060405180830381600087803b15801561346c57600080fd5b505af192505050801561349d57506040513d601f19601f8201168201806040525081019061349a9190613f5e565b60015b613520573d80600081146134cd576040519150601f19603f3d011682016040523d82523d6000602084013e6134d2565b606091505b50600081511415613518576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161350f90614d82565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613575565b600190505b949350505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016135d8846116d4565b6135e29190615350565b90506000600760008481526020019081526020016000205490508181146136c7576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061374c9190615350565b90506000600960008481526020019081526020016000205490506000600883815481106137a2577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200154905080600883815481106137ea577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061385f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000613886836116d4565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561396a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161396190614f62565b60405180910390fd5b61397381612a11565b156139b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139aa90614de2565b60405180910390fd5b6139bf60008383613277565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613a0f919061526f565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b828054613ae79061543a565b90600052602060002090601f016020900481019282613b095760008555613b50565b82601f10613b2257805160ff1916838001178555613b50565b82800160010185558215613b50579182015b82811115613b4f578251825591602001919060010190613b34565b5b509050613b5d9190613b61565b5090565b5b80821115613b7a576000816000905550600101613b62565b5090565b6000613b91613b8c8461512e565b6150fd565b90508083825260208201905082856020860282011115613bb057600080fd5b60005b85811015613be05781613bc68882613c66565b845260208401935060208301925050600181019050613bb3565b5050509392505050565b6000613bfd613bf88461515a565b6150fd565b905082815260208101848484011115613c1557600080fd5b613c208482856153f8565b509392505050565b6000613c3b613c368461518a565b6150fd565b905082815260208101848484011115613c5357600080fd5b613c5e8482856153f8565b509392505050565b600081359050613c75816155bd565b92915050565b600082601f830112613c8c57600080fd5b8135613c9c848260208601613b7e565b91505092915050565b600081359050613cb4816155d4565b92915050565b600081359050613cc9816155eb565b92915050565b600081519050613cde816155eb565b92915050565b600082601f830112613cf557600080fd5b8135613d05848260208601613bea565b91505092915050565b600082601f830112613d1f57600080fd5b8135613d2f848260208601613c28565b91505092915050565b600081359050613d4781615602565b92915050565b600060208284031215613d5f57600080fd5b6000613d6d84828501613c66565b91505092915050565b60008060408385031215613d8957600080fd5b6000613d9785828601613c66565b9250506020613da885828601613c66565b9150509250929050565b600080600060608486031215613dc757600080fd5b6000613dd586828701613c66565b9350506020613de686828701613c66565b9250506040613df786828701613d38565b9150509250925092565b60008060008060808587031215613e1757600080fd5b6000613e2587828801613c66565b9450506020613e3687828801613c66565b9350506040613e4787828801613d38565b925050606085013567ffffffffffffffff811115613e6457600080fd5b613e7087828801613ce4565b91505092959194509250565b60008060408385031215613e8f57600080fd5b6000613e9d85828601613c66565b9250506020613eae85828601613ca5565b9150509250929050565b60008060408385031215613ecb57600080fd5b6000613ed985828601613c66565b9250506020613eea85828601613d38565b9150509250929050565b600060208284031215613f0657600080fd5b600082013567ffffffffffffffff811115613f2057600080fd5b613f2c84828501613c7b565b91505092915050565b600060208284031215613f4757600080fd5b6000613f5584828501613cba565b91505092915050565b600060208284031215613f7057600080fd5b6000613f7e84828501613ccf565b91505092915050565b600060208284031215613f9957600080fd5b600082013567ffffffffffffffff811115613fb357600080fd5b613fbf84828501613d0e565b91505092915050565b600060208284031215613fda57600080fd5b6000613fe884828501613d38565b91505092915050565b6000806040838503121561400457600080fd5b600061401285828601613d38565b925050602061402385828601613c66565b9150509250929050565b6000614039838361405d565b60208301905092915050565b60006140518383614bd5565b60208301905092915050565b61406681615384565b82525050565b61407581615384565b82525050565b6000614086826151da565b6140908185615220565b935061409b836151ba565b8060005b838110156140cc5781516140b3888261402d565b97506140be83615206565b92505060018101905061409f565b5085935050505092915050565b60006140e4826151e5565b6140ee8185615231565b93506140f9836151ca565b8060005b8381101561412a5781516141118882614045565b975061411c83615213565b9250506001810190506140fd565b5085935050505092915050565b61414081615396565b82525050565b6000614151826151f0565b61415b8185615242565b935061416b818560208601615407565b614174816155ac565b840191505092915050565b600061418a826151fb565b6141948185615253565b93506141a4818560208601615407565b6141ad816155ac565b840191505092915050565b60006141c3826151fb565b6141cd8185615264565b93506141dd818560208601615407565b80840191505092915050565b60006141f6602083615253565b91507f45746865722076616c75652073656e74206973206e6f7420636f72726563742e6000830152602082019050919050565b6000614236602b83615253565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b600061429c603283615253565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b6000614302601c83615253565b91507f5072652d73616c65206861736e277420737461727465642079657421000000006000830152602082019050919050565b6000614342602683615253565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006143a8601c83615253565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b60006143e8601f83615253565b91507f576520616c726561647920736f6c64206f75742e205468616e6b20796f7521006000830152602082019050919050565b6000614428602483615253565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061448e601983615253565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b60006144ce601883615253565b91507f53616c65206861736e27742073746172746564207965742100000000000000006000830152602082019050919050565b600061450e603083615253565b91507f546869732061646472657373206e6f7420656c696769626c6520666f7220707260008301527f652d73616c6520707572636861736573000000000000000000000000000000006020830152604082019050919050565b6000614574602c83615253565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006145da601c83615253565b91507f4e6f7420656e6f756768204861707079204661636573206c6566742e000000006000830152602082019050919050565b600061461a601d83615253565b91507f5374617274696e6720696e64657820697320616c7265616479207365740000006000830152602082019050919050565b600061465a603883615253565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b60006146c0602a83615253565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000614726602983615253565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b600061478c602083615253565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b60006147cc602c83615253565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b6000614832602f83615253565b91507f596f752063616e206d696e74206d696e696d756d20312c206d6178696d756d2060008301527f31302048617070792046616365732e00000000000000000000000000000000006020830152604082019050919050565b6000614898602083615253565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006148d8602983615253565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b600061493e601683615253565b91507f45786365656473204d41585f4861707079466163652e000000000000000000006000830152602082019050919050565b600061497e602f83615253565b91507f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008301527f6e6578697374656e7420746f6b656e00000000000000000000000000000000006020830152604082019050919050565b60006149e4602183615253565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614a4a602383615253565b91507f5468617420776f756c642065786365656420746865206d61782072657365727660008301527f65642e00000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614ab0602583615253565b91507f486176656e2774207072652d73616c65206164647265737320696e20636f6e7460008301527f726163742e0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614b16603183615253565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000614b7c602c83615253565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b614bde816153ee565b82525050565b614bed816153ee565b82525050565b614c04614bff826153ee565b6154b5565b82525050565b6000614c1682856141b8565b9150614c2282846141b8565b91508190509392505050565b6000614c3a8285614bf3565b602082019150614c4a8284614bf3565b6020820191508190509392505050565b6000602082019050614c6f600083018461406c565b92915050565b6000608082019050614c8a600083018761406c565b614c97602083018661406c565b614ca46040830185614be4565b8181036060830152614cb68184614146565b905095945050505050565b60006020820190508181036000830152614cdb818461407b565b905092915050565b60006020820190508181036000830152614cfd81846140d9565b905092915050565b6000602082019050614d1a6000830184614137565b92915050565b60006020820190508181036000830152614d3a818461417f565b905092915050565b60006020820190508181036000830152614d5b816141e9565b9050919050565b60006020820190508181036000830152614d7b81614229565b9050919050565b60006020820190508181036000830152614d9b8161428f565b9050919050565b60006020820190508181036000830152614dbb816142f5565b9050919050565b60006020820190508181036000830152614ddb81614335565b9050919050565b60006020820190508181036000830152614dfb8161439b565b9050919050565b60006020820190508181036000830152614e1b816143db565b9050919050565b60006020820190508181036000830152614e3b8161441b565b9050919050565b60006020820190508181036000830152614e5b81614481565b9050919050565b60006020820190508181036000830152614e7b816144c1565b9050919050565b60006020820190508181036000830152614e9b81614501565b9050919050565b60006020820190508181036000830152614ebb81614567565b9050919050565b60006020820190508181036000830152614edb816145cd565b9050919050565b60006020820190508181036000830152614efb8161460d565b9050919050565b60006020820190508181036000830152614f1b8161464d565b9050919050565b60006020820190508181036000830152614f3b816146b3565b9050919050565b60006020820190508181036000830152614f5b81614719565b9050919050565b60006020820190508181036000830152614f7b8161477f565b9050919050565b60006020820190508181036000830152614f9b816147bf565b9050919050565b60006020820190508181036000830152614fbb81614825565b9050919050565b60006020820190508181036000830152614fdb8161488b565b9050919050565b60006020820190508181036000830152614ffb816148cb565b9050919050565b6000602082019050818103600083015261501b81614931565b9050919050565b6000602082019050818103600083015261503b81614971565b9050919050565b6000602082019050818103600083015261505b816149d7565b9050919050565b6000602082019050818103600083015261507b81614a3d565b9050919050565b6000602082019050818103600083015261509b81614aa3565b9050919050565b600060208201905081810360008301526150bb81614b09565b9050919050565b600060208201905081810360008301526150db81614b6f565b9050919050565b60006020820190506150f76000830184614be4565b92915050565b6000604051905081810181811067ffffffffffffffff821117156151245761512361557d565b5b8060405250919050565b600067ffffffffffffffff8211156151495761514861557d565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156151755761517461557d565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff8211156151a5576151a461557d565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061527a826153ee565b9150615285836153ee565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156152ba576152b96154f0565b5b828201905092915050565b60006152d0826153ee565b91506152db836153ee565b9250826152eb576152ea61551f565b5b828204905092915050565b6000615301826153ee565b915061530c836153ee565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615615345576153446154f0565b5b828202905092915050565b600061535b826153ee565b9150615366836153ee565b925082821015615379576153786154f0565b5b828203905092915050565b600061538f826153ce565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561542557808201518184015260208101905061540a565b83811115615434576000848401525b50505050565b6000600282049050600182168061545257607f821691505b602082108114156154665761546561554e565b5b50919050565b6000615477826153ee565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156154aa576154a96154f0565b5b600182019050919050565b6000819050919050565b60006154ca826153ee565b91506154d5836153ee565b9250826154e5576154e461551f565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b6155c681615384565b81146155d157600080fd5b50565b6155dd81615396565b81146155e857600080fd5b50565b6155f4816153a2565b81146155ff57600080fd5b50565b61560b816153ee565b811461561657600080fd5b5056fea264697066735822122077cc0b0441a6c82daade257b50b3aeee900d13ccbb3593564fb2797a5b98458364736f6c63430008000033

Deployed Bytecode Sourcemap

175:8913:11:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;909:222:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5716:93:11;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2349:98:3;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3860:217;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3398:401;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1330:86:11;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6290:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1534:111:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;429:30:11;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4724:330:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1210:253:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7826:1259:11;;;;;;;;;;;;;:::i;:::-;;5120:179:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6517:342:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1644:90;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;273:44;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1717:230:4;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5817:92:11;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5621:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;728:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2052:235:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1488:86:11;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1181:21;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1790:205:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5373:117:11;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;633:26;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4563:290;;;;;;;;;;;;;:::i;:::-;;966:85:10;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4861:299:11;;;;;;;;;;;;;:::i;:::-;;6099:94;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2511:102:3;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6201:81:11;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4144:290:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;324:30:11;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5168:197;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6867:359;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2482:787;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5365:320:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3277:1278:11;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5498:115;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2679:329:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1144:28:11;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;533:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4500:162:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7234:584:11;;;;;;;;;;;;;:::i;:::-;;1103:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1849:189:10;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;909:222:4;1011:4;1049:35;1034:50;;;:11;:50;;;;:90;;;;1088:36;1112:11;1088:23;:36::i;:::-;1034:90;1027:97;;909:222;;;:::o;5716:93:11:-;5762:4;5786:15;;;;;;;;;;;5779:22;;5716:93;:::o;2349:98:3:-;2403:13;2435:5;2428:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2349:98;:::o;3860:217::-;3936:7;3963:16;3971:7;3963;:16::i;:::-;3955:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;4046:15;:24;4062:7;4046:24;;;;;;;;;;;;;;;;;;;;;4039:31;;3860:217;;;:::o;3398:401::-;3478:13;3494:23;3509:7;3494:14;:23::i;:::-;3478:39;;3541:5;3535:11;;:2;:11;;;;3527:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;3632:5;3616:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;3641:37;3658:5;3665:12;:10;:12::i;:::-;3641:16;:37::i;:::-;3616:62;3595:165;;;;;;;;;;;;:::i;:::-;;;;;;;;;3771:21;3780:2;3784:7;3771:8;:21::i;:::-;3398:401;;;:::o;1330:86:11:-;1374:42;1330:86;:::o;6290:125::-;1189:12:10;:10;:12::i;:::-;1178:23;;:7;:5;:7::i;:::-;:23;;;1170:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;6393:14:11::1;6375:15;:32;;;;;;;;;;;;:::i;:::-;;6290:125:::0;:::o;1534:111:4:-;1595:7;1621:10;:17;;;;1614:24;;1534:111;:::o;429:30:11:-;;;;:::o;4724:330:3:-;4913:41;4932:12;:10;:12::i;:::-;4946:7;4913:18;:41::i;:::-;4905:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;5019:28;5029:4;5035:2;5039:7;5019:9;:28::i;:::-;4724:330;;;:::o;1210:253:4:-;1307:7;1342:23;1359:5;1342:16;:23::i;:::-;1334:5;:31;1326:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;1430:12;:19;1443:5;1430:19;;;;;;;;;;;;;;;:26;1450:5;1430:26;;;;;;;;;;;;1423:33;;1210:253;;;;:::o;7826:1259:11:-;1189:12:10;:10;:12::i;:::-;1178:23;;:7;:5;:7::i;:::-;:23;;;1170:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7874:16:11::1;7893:21;7874:40;;7925:19;7974:4;7959:13;;7948:8;:24;;;;:::i;:::-;7947:31;;;;:::i;:::-;7925:53;;8060:19;8109:4;8094:13;;8083:8;:24;;;;:::i;:::-;8082:31;;;;:::i;:::-;8060:53;;8194:23;8251:4;8232:17;;8221:8;:28;;;;:::i;:::-;8220:35;;;;:::i;:::-;8194:61;;8317:15;8357:4;8347:8;;8336;:19;;;;:::i;:::-;8335:26;;;;:::i;:::-;8317:44;;8450:14;8488:4;8479:7;;8468:8;:18;;;;:::i;:::-;8467:25;;;;:::i;:::-;8450:42;;8580:16;8665:7;8656:6;8638:15;8624:11;8610;8599:8;:22;;;;:::i;:::-;:36;;;;:::i;:::-;:54;;;;:::i;:::-;:63;;;;:::i;:::-;:73;;;;:::i;:::-;8580:92;;1374:42;8708:35;;:48;8744:11;8708:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;1532:42;8767:35;;:48;8803:11;8767:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;1692:42;8826:39;;:56;8866:15;8826:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;8901:12;;;;;;;;;;;8893:30;;:39;8924:7;8893:39;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;8951:11;;;;;;;;;;;8943:29;;:37;8973:6;8943:37;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;8999:13;;;;;;;;;;;8991:31;;:41;9023:8;8991:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;9075:1;9050:21;:26;9043:34;;;;;;;;;;;;1248:1:10;;;;;;;7826:1259:11:o:0;5120:179:3:-;5253:39;5270:4;5276:2;5280:7;5253:39;;;;;;;;;;;;:16;:39::i;:::-;5120:179;;;:::o;6517:342:11:-;6576:16;6605:18;6626:17;6636:6;6626:9;:17::i;:::-;6605:38;;6656:25;6698:10;6684:25;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6656:53;;6724:9;6720:106;6739:10;6735:1;:14;6720:106;;;6784:30;6804:6;6812:1;6784:19;:30::i;:::-;6770:8;6779:1;6770:11;;;;;;;;;;;;;;;;;;;;;:44;;;;;6751:3;;;;;:::i;:::-;;;;6720:106;;;;6843:8;6836:15;;;;6517:342;;;:::o;1644:90::-;1692:42;1644:90;:::o;273:44::-;313:4;273:44;:::o;1717:230:4:-;1792:7;1827:30;:28;:30::i;:::-;1819:5;:38;1811:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;1923:10;1934:5;1923:17;;;;;;;;;;;;;;;;;;;;;;;;1916:24;;1717:230;;;:::o;5817:92:11:-;1189:12:10;:10;:12::i;:::-;1178:23;;:7;:5;:7::i;:::-;:23;;;1170:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5897:4:11::1;5887:7;:14;;;;;;;;;;;;:::i;:::-;;5817:92:::0;:::o;5621:87::-;5664:4;5688:12;;;;;;;;;;;5681:19;;5621:87;:::o;728:24::-;;;;:::o;2052:235:3:-;2124:7;2143:13;2159:7;:16;2167:7;2159:16;;;;;;;;;;;;;;;;;;;;;2143:32;;2210:1;2193:19;;:5;:19;;;;2185:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2275:5;2268:12;;;2052:235;;;:::o;1488:86:11:-;1532:42;1488:86;:::o;1181:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;1790:205:3:-;1862:7;1906:1;1889:19;;:5;:19;;;;1881:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;1972:9;:16;1982:5;1972:16;;;;;;;;;;;;;;;;1965:23;;1790:205;;;:::o;5373:117:11:-;5421:16;5457:25;5450:32;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5373:117;:::o;633:26::-;;;;:::o;4563:290::-;1189:12:10;:10;:12::i;:::-;1178:23;;:7;:5;:7::i;:::-;:23;;;1170:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4636:12:11::1;;;;;;;;;;;4635:13;4620:12;;:28;;;;;;;;;;;;;;;;;;4666:12;;;;;;;;;;;:31;;;;;4682:15;;;;;;;;;;;4666:31;4661:88;;;4732:5;4714:15;;:23;;;;;;;;;;;;;;;;;;4661:88;4765:12;;;;;;;;;;;:34;;;;;4798:1;4781:13;;:18;4765:34;4761:85;;;4816:18;:16;:18::i;:::-;4761:85;4563:290::o:0;966:85:10:-;1012:7;1038:6;;;;;;;;;;;1031:13;;966:85;:::o;4861:299:11:-;1189:12:10;:10;:12::i;:::-;1178:23;;:7;:5;:7::i;:::-;:23;;;1170:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4940:15:11::1;;;;;;;;;;;4939:16;4921:15;;:34;;;;;;;;;;;;;;;;;;4973:12;;;;;;;;;;;:31;;;;;4989:15;;;;;;;;;;;4973:31;4968:85;;;5036:5;5021:12;;:20;;;;;;;;;;;;;;;;;;4968:85;5069:15;;;;;;;;;;;:37;;;;;5105:1;5088:13;;:18;5069:37;5065:88;;;5123:18;:16;:18::i;:::-;5065:88;4861:299::o:0;6099:94::-;1189:12:10;:10;:12::i;:::-;1178:23;;:7;:5;:7::i;:::-;:23;;;1170:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;6176:9:11::1;6167:6;:18;;;;6099:94:::0;:::o;2511:102:3:-;2567:13;2599:7;2592:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2511:102;:::o;6201:81:11:-;6242:7;6268:6;;6261:13;;6201:81;:::o;4144:290:3:-;4258:12;:10;:12::i;:::-;4246:24;;:8;:24;;;;4238:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;4356:8;4311:18;:32;4330:12;:10;:12::i;:::-;4311:32;;;;;;;;;;;;;;;:42;4344:8;4311:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;4408:8;4379:48;;4394:12;:10;:12::i;:::-;4379:48;;;4418:8;4379:48;;;;;;:::i;:::-;;;;;;;;4144:290;;:::o;324:30:11:-;;;;:::o;5168:197::-;1189:12:10;:10;:12::i;:::-;1178:23;;:7;:5;:7::i;:::-;:23;;;1170:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5258:6:11::1;5253:105;5271:5;:12;5267:1;:16;5253:105;;;5306:25;5337:5;5343:1;5337:8;;;;;;;;;;;;;;;;;;;;;;5306:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5284:3;;;;;:::i;:::-;;;;5253:105;;;;5168:197:::0;:::o;6867:359::-;1189:12:10;:10;:12::i;:::-;1178:23;;:7;:5;:7::i;:::-;:23;;;1170:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;6975:9:11::1;;6964:7;:20;;6956:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7037:16;7056:13;:11;:13::i;:::-;7037:32;;7085:9;7080:95;7100:7;7096:1;:11;7080:95;;;7129:34;7139:9;7161:1;7150:8;:12;;;;:::i;:::-;7129:9;:34::i;:::-;7109:3;;;;;:::i;:::-;;;;7080:95;;;;7211:7;7199:9;;:19;;;;:::i;:::-;7187:9;:31;;;;1248:1:10;6867:359:11::0;;:::o;2482:787::-;2576:4;2560:20;;:12;;;;;;;;;;;:20;;;2552:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;313:4;2628:13;:11;:13::i;:::-;:29;2620:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2727:1;2712:12;:16;:38;;;;;2748:2;2732:12;:18;;2712:38;2704:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;2872:9;;313:4;2856:25;;;;:::i;:::-;2821:31;2839:12;2821:13;:11;:13::i;:::-;:17;;:31;;;;:::i;:::-;:60;;2813:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;313:4;2933:31;2951:12;2933:13;:11;:13::i;:::-;:17;;:31;;;;:::i;:::-;:48;;2925:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;3054:9;3043:6;;3028:12;:21;;;;:::i;:::-;3027:36;;3019:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;3124:6;3119:143;3140:12;3136:1;:16;3119:143;;;3173:14;3190:13;:11;:13::i;:::-;3173:30;;3218:32;3228:10;3240:9;3218;:32::i;:::-;3119:143;3154:3;;;;;:::i;:::-;;;;3119:143;;;;2482:787;:::o;5365:320:3:-;5534:41;5553:12;:10;:12::i;:::-;5567:7;5534:18;:41::i;:::-;5526:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;5639:39;5653:4;5659:2;5663:7;5672:5;5639:13;:39::i;:::-;5365:320;;;;:::o;3277:1278:11:-;3377:4;3358:23;;:15;;;;;;;;;;;:23;;;3350:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;313:4;3433:13;:11;:13::i;:::-;:29;3425:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3532:1;3517:12;:16;:38;;;;;3553:2;3537:12;:18;;3517:38;3509:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;3677:9;;313:4;3661:25;;;;:::i;:::-;3626:31;3644:12;3626:13;:11;:13::i;:::-;:17;;:31;;;;:::i;:::-;:60;;3618:101;;;;;;;;;;;;:::i;:::-;;;;;;;;;3765:9;3754:6;;3739:12;:21;;;;:::i;:::-;3738:36;;3730:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;3866:1;3831:25;:32;;;;:36;3822:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;3923:15;3957:6;3987:1;3985:3;;3980:336;3993:25;:32;;;;3989:1;:36;3980:336;;;4168:10;4136:42;;:25;4162:1;4136:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:42;;;4132:153;;;4211:4;4198:17;;4237:25;:32;;;;4234:35;;4132:153;4026:3;;;;;:::i;:::-;;;;3980:336;;;4334:10;4326:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;4419:1;4415:5;;4410:138;4426:12;4422:1;:16;4410:138;;;4459:14;4476:13;:11;:13::i;:::-;4459:30;;4504:32;4514:10;4526:9;4504;:32::i;:::-;4410:138;4440:3;;;;;:::i;:::-;;;;4410:138;;;3277:1278;;;:::o;5498:115::-;5546:7;5573:25;:32;;;;5566:39;;5498:115;:::o;2679:329:3:-;2752:13;2785:16;2793:7;2785;:16::i;:::-;2777:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;2864:21;2888:10;:8;:10::i;:::-;2864:34;;2939:1;2921:7;2915:21;:25;:86;;;;;;;;;;;;;;;;;2967:7;2976:18;:7;:16;:18::i;:::-;2950:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2915:86;2908:93;;;2679:329;;;:::o;1144:28:11:-;;;;:::o;533:34::-;;;;:::o;4500:162:3:-;4597:4;4620:18;:25;4639:5;4620:25;;;;;;;;;;;;;;;:35;4646:8;4620:35;;;;;;;;;;;;;;;;;;;;;;;;;4613:42;;4500:162;;;;:::o;7234:584:11:-;7305:1;7288:13;;:18;7280:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;7353:20;7408:16;7426:15;7391:51;;;;;;;;;:::i;:::-;;;;;;;;;;;;;7381:62;;;;;;7376:68;;7353:91;;7491:3;7476:12;:18;;;;:::i;:::-;7471:1;:24;;;;:::i;:::-;7455:40;;7527:12;7512;:27;7508:76;;;7571:1;7556:16;;7508:76;7596:18;7632:12;7617;:27;;;;:::i;:::-;7596:48;;313:4;7686:10;7676:21;7671:27;;:43;;;;:::i;:::-;7655:13;:59;;;;7748:1;7731:13;;:18;7727:84;;;7798:1;7782:13;;:17;;;;:::i;:::-;7766:13;:33;;;;7727:84;7234:584;;:::o;1103:34::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;1849:189:10:-;1189:12;:10;:12::i;:::-;1178:23;;:7;:5;:7::i;:::-;:23;;;1170:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1957:1:::1;1937:22;;:8;:22;;;;1929:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2012:19;2022:8;2012:9;:19::i;:::-;1849:189:::0;:::o;1431:300:3:-;1533:4;1583:25;1568:40;;;:11;:40;;;;:104;;;;1639:33;1624:48;;;:11;:48;;;;1568:104;:156;;;;1688:36;1712:11;1688:23;:36::i;:::-;1568:156;1549:175;;1431:300;;;:::o;7157:125::-;7222:4;7273:1;7245:30;;:7;:16;7253:7;7245:16;;;;;;;;;;;;;;;;;;;;;:30;;;;7238:37;;7157:125;;;:::o;586:96:1:-;639:7;665:10;658:17;;586:96;:::o;11008:171:3:-;11109:2;11082:15;:24;11098:7;11082:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;11164:7;11160:2;11126:46;;11135:23;11150:7;11135:14;:23::i;:::-;11126:46;;;;;;;;;;;;11008:171;;:::o;7440:344::-;7533:4;7557:16;7565:7;7557;:16::i;:::-;7549:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;7632:13;7648:23;7663:7;7648:14;:23::i;:::-;7632:39;;7700:5;7689:16;;:7;:16;;;:51;;;;7733:7;7709:31;;:20;7721:7;7709:11;:20::i;:::-;:31;;;7689:51;:87;;;;7744:32;7761:5;7768:7;7744:16;:32::i;:::-;7689:87;7681:96;;;7440:344;;;;:::o;10337:560::-;10491:4;10464:31;;:23;10479:7;10464:14;:23::i;:::-;:31;;;10456:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;10573:1;10559:16;;:2;:16;;;;10551:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;10627:39;10648:4;10654:2;10658:7;10627:20;:39::i;:::-;10728:29;10745:1;10749:7;10728:8;:29::i;:::-;10787:1;10768:9;:15;10778:4;10768:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;10815:1;10798:9;:13;10808:2;10798:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;10845:2;10826:7;:16;10834:7;10826:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;10882:7;10878:2;10863:27;;10872:4;10863:27;;;;;;;;;;;;10337:560;;;:::o;8114:108::-;8189:26;8199:2;8203:7;8189:26;;;;;;;;;;;;:9;:26::i;:::-;8114:108;;:::o;2672:96:12:-;2730:7;2760:1;2756;:5;;;;:::i;:::-;2749:12;;2672:96;;;;:::o;6547:307:3:-;6698:28;6708:4;6714:2;6718:7;6698:9;:28::i;:::-;6744:48;6767:4;6773:2;6777:7;6786:5;6744:22;:48::i;:::-;6736:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;6547:307;;;;:::o;5917:107:11:-;5976:13;6009:7;6002:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5917:107;:::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;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;742:39;;791:150;807:1;798:5;:10;791:150;;834:1;824:11;;;;;:::i;:::-;;;900:2;892:5;:10;;;;:::i;:::-;879:2;:24;;;;:::i;:::-;866:39;;849:6;856;849:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;928:2;919:11;;;;;:::i;:::-;;;791:150;;;964:6;950:21;;;;;275:703;;;;:::o;2044:169:10:-;2099:16;2118:6;;;;;;;;;;;2099:25;;2143:8;2134:6;;:17;;;;;;;;;;;;;;;;;;2197:8;2166:40;;2187:8;2166:40;;;;;;;;;;;;2044:169;;:::o;763:155:2:-;848:4;886:25;871:40;;;:11;:40;;;;864:47;;763:155;;;:::o;2543:572:4:-;2682:45;2709:4;2715:2;2719:7;2682:26;:45::i;:::-;2758:1;2742:18;;:4;:18;;;2738:183;;;2776:40;2808:7;2776:31;:40::i;:::-;2738:183;;;2845:2;2837:10;;:4;:10;;;2833:88;;2863:47;2896:4;2902:7;2863:32;:47::i;:::-;2833:88;2738:183;2948:1;2934:16;;:2;:16;;;2930:179;;;2966:45;3003:7;2966:36;:45::i;:::-;2930:179;;;3038:4;3032:10;;:2;:10;;;3028:81;;3058:40;3086:2;3090:7;3058:27;:40::i;:::-;3028:81;2930:179;2543:572;;;:::o;8443:311:3:-;8568:18;8574:2;8578:7;8568:5;:18::i;:::-;8617:54;8648:1;8652:2;8656:7;8665:5;8617:22;:54::i;:::-;8596:151;;;;;;;;;;;;:::i;:::-;;;;;;;;;8443:311;;;:::o;11732:782::-;11882:4;11902:15;:2;:13;;;:15::i;:::-;11898:610;;;11953:2;11937:36;;;11974:12;:10;:12::i;:::-;11988:4;11994:7;12003:5;11937:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;11933:523;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12197:1;12180:6;:13;:18;12176:266;;;12222:60;;;;;;;;;;:::i;:::-;;;;;;;;12176:266;12394:6;12388:13;12379:6;12375:2;12371:15;12364:38;11933:523;12069:45;;;12059:55;;;:6;:55;;;;12052:62;;;;;11898:610;12493:4;12486:11;;11732:782;;;;;;;:::o;13070:122::-;;;;:::o;3821:161:4:-;3924:10;:17;;;;3897:15;:24;3913:7;3897:24;;;;;;;;;;;:44;;;;3951:10;3967:7;3951:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3821:161;:::o;4599:970::-;4861:22;4911:1;4886:22;4903:4;4886:16;:22::i;:::-;:26;;;;:::i;:::-;4861:51;;4922:18;4943:17;:26;4961:7;4943:26;;;;;;;;;;;;4922:47;;5087:14;5073:10;:28;5069:323;;5117:19;5139:12;:18;5152:4;5139:18;;;;;;;;;;;;;;;:34;5158:14;5139:34;;;;;;;;;;;;5117:56;;5221:11;5188:12;:18;5201:4;5188:18;;;;;;;;;;;;;;;:30;5207:10;5188:30;;;;;;;;;;;:44;;;;5337:10;5304:17;:30;5322:11;5304:30;;;;;;;;;;;:43;;;;5069:323;;5485:17;:26;5503:7;5485:26;;;;;;;;;;;5478:33;;;5528:12;:18;5541:4;5528:18;;;;;;;;;;;;;;;:34;5547:14;5528:34;;;;;;;;;;;5521:41;;;4599:970;;;;:::o;5857:1061::-;6106:22;6151:1;6131:10;:17;;;;:21;;;;:::i;:::-;6106:46;;6162:18;6183:15;:24;6199:7;6183:24;;;;;;;;;;;;6162:45;;6529:19;6551:10;6562:14;6551:26;;;;;;;;;;;;;;;;;;;;;;;;6529:48;;6613:11;6588:10;6599;6588:22;;;;;;;;;;;;;;;;;;;;;;;:36;;;;6723:10;6692:15;:28;6708:11;6692:28;;;;;;;;;;;:41;;;;6861:15;:24;6877:7;6861:24;;;;;;;;;;;6854:31;;;6895:10;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5857:1061;;;;:::o;3409:217::-;3493:14;3510:20;3527:2;3510:16;:20::i;:::-;3493:37;;3567:7;3540:12;:16;3553:2;3540:16;;;;;;;;;;;;;;;:24;3557:6;3540:24;;;;;;;;;;;:34;;;;3613:6;3584:17;:26;3602:7;3584:26;;;;;;;;;;;:35;;;;3409:217;;;:::o;9076:372:3:-;9169:1;9155:16;;:2;:16;;;;9147:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;9227:16;9235:7;9227;:16::i;:::-;9226:17;9218:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;9287:45;9316:1;9320:2;9324:7;9287:20;:45::i;:::-;9360:1;9343:9;:13;9353:2;9343:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;9390:2;9371:7;:16;9379:7;9371:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;9433:7;9429:2;9408:33;;9425:1;9408:33;;;;;;;;;;;;9076:372;;:::o;718:377:0:-;778:4;981:12;1046:7;1034:20;1026:28;;1087:1;1080:4;:8;1073:15;;;718:377;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;24:622:14:-;;145:80;160:64;217:6;160:64;:::i;:::-;145:80;:::i;:::-;136:89;;245:5;273:6;266:5;259:21;299:4;292:5;288:16;281:23;;324:6;374:3;366:4;358:6;354:17;349:3;345:27;342:36;339:2;;;391:1;388;381:12;339:2;419:1;404:236;429:6;426:1;423:13;404:236;;;496:3;524:37;557:3;545:10;524:37;:::i;:::-;519:3;512:50;591:4;586:3;582:14;575:21;;625:4;620:3;616:14;609:21;;464:176;451:1;448;444:9;439:14;;404:236;;;408:14;126:520;;;;;;;:::o;652:342::-;;754:64;769:48;810:6;769:48;:::i;:::-;754:64;:::i;:::-;745:73;;841:6;834:5;827:21;879:4;872:5;868:16;917:3;908:6;903:3;899:16;896:25;893:2;;;934:1;931;924:12;893:2;947:41;981:6;976:3;971;947:41;:::i;:::-;735:259;;;;;;:::o;1000:344::-;;1103:65;1118:49;1160:6;1118:49;:::i;:::-;1103:65;:::i;:::-;1094:74;;1191:6;1184:5;1177:21;1229:4;1222:5;1218:16;1267:3;1258:6;1253:3;1249:16;1246:25;1243:2;;;1284:1;1281;1274:12;1243:2;1297:41;1331:6;1326:3;1321;1297:41;:::i;:::-;1084:260;;;;;;:::o;1350:139::-;;1434:6;1421:20;1412:29;;1450:33;1477:5;1450:33;:::i;:::-;1402:87;;;;:::o;1512:303::-;;1632:3;1625:4;1617:6;1613:17;1609:27;1599:2;;1650:1;1647;1640:12;1599:2;1690:6;1677:20;1715:94;1805:3;1797:6;1790:4;1782:6;1778:17;1715:94;:::i;:::-;1706:103;;1589:226;;;;;:::o;1821:133::-;;1902:6;1889:20;1880:29;;1918:30;1942:5;1918:30;:::i;:::-;1870:84;;;;:::o;1960:137::-;;2043:6;2030:20;2021:29;;2059:32;2085:5;2059:32;:::i;:::-;2011:86;;;;:::o;2103:141::-;;2190:6;2184:13;2175:22;;2206:32;2232:5;2206:32;:::i;:::-;2165:79;;;;:::o;2263:271::-;;2367:3;2360:4;2352:6;2348:17;2344:27;2334:2;;2385:1;2382;2375:12;2334:2;2425:6;2412:20;2450:78;2524:3;2516:6;2509:4;2501:6;2497:17;2450:78;:::i;:::-;2441:87;;2324:210;;;;;:::o;2554:273::-;;2659:3;2652:4;2644:6;2640:17;2636:27;2626:2;;2677:1;2674;2667:12;2626:2;2717:6;2704:20;2742:79;2817:3;2809:6;2802:4;2794:6;2790:17;2742:79;:::i;:::-;2733:88;;2616:211;;;;;:::o;2833:139::-;;2917:6;2904:20;2895:29;;2933:33;2960:5;2933:33;:::i;:::-;2885:87;;;;:::o;2978:262::-;;3086:2;3074:9;3065:7;3061:23;3057:32;3054:2;;;3102:1;3099;3092:12;3054:2;3145:1;3170:53;3215:7;3206:6;3195:9;3191:22;3170:53;:::i;:::-;3160:63;;3116:117;3044:196;;;;:::o;3246:407::-;;;3371:2;3359:9;3350:7;3346:23;3342:32;3339:2;;;3387:1;3384;3377:12;3339:2;3430:1;3455:53;3500:7;3491:6;3480:9;3476:22;3455:53;:::i;:::-;3445:63;;3401:117;3557:2;3583:53;3628:7;3619:6;3608:9;3604:22;3583:53;:::i;:::-;3573:63;;3528:118;3329:324;;;;;:::o;3659:552::-;;;;3801:2;3789:9;3780:7;3776:23;3772:32;3769:2;;;3817:1;3814;3807:12;3769:2;3860:1;3885:53;3930:7;3921:6;3910:9;3906:22;3885:53;:::i;:::-;3875:63;;3831:117;3987:2;4013:53;4058:7;4049:6;4038:9;4034:22;4013:53;:::i;:::-;4003:63;;3958:118;4115:2;4141:53;4186:7;4177:6;4166:9;4162:22;4141:53;:::i;:::-;4131:63;;4086:118;3759:452;;;;;:::o;4217:809::-;;;;;4385:3;4373:9;4364:7;4360:23;4356:33;4353:2;;;4402:1;4399;4392:12;4353:2;4445:1;4470:53;4515:7;4506:6;4495:9;4491:22;4470:53;:::i;:::-;4460:63;;4416:117;4572:2;4598:53;4643:7;4634:6;4623:9;4619:22;4598:53;:::i;:::-;4588:63;;4543:118;4700:2;4726:53;4771:7;4762:6;4751:9;4747:22;4726:53;:::i;:::-;4716:63;;4671:118;4856:2;4845:9;4841:18;4828:32;4887:18;4879:6;4876:30;4873:2;;;4919:1;4916;4909:12;4873:2;4947:62;5001:7;4992:6;4981:9;4977:22;4947:62;:::i;:::-;4937:72;;4799:220;4343:683;;;;;;;:::o;5032:401::-;;;5154:2;5142:9;5133:7;5129:23;5125:32;5122:2;;;5170:1;5167;5160:12;5122:2;5213:1;5238:53;5283:7;5274:6;5263:9;5259:22;5238:53;:::i;:::-;5228:63;;5184:117;5340:2;5366:50;5408:7;5399:6;5388:9;5384:22;5366:50;:::i;:::-;5356:60;;5311:115;5112:321;;;;;:::o;5439:407::-;;;5564:2;5552:9;5543:7;5539:23;5535:32;5532:2;;;5580:1;5577;5570:12;5532:2;5623:1;5648:53;5693:7;5684:6;5673:9;5669:22;5648:53;:::i;:::-;5638:63;;5594:117;5750:2;5776:53;5821:7;5812:6;5801:9;5797:22;5776:53;:::i;:::-;5766:63;;5721:118;5522:324;;;;;:::o;5852:405::-;;5985:2;5973:9;5964:7;5960:23;5956:32;5953:2;;;6001:1;5998;5991:12;5953:2;6072:1;6061:9;6057:17;6044:31;6102:18;6094:6;6091:30;6088:2;;;6134:1;6131;6124:12;6088:2;6162:78;6232:7;6223:6;6212:9;6208:22;6162:78;:::i;:::-;6152:88;;6015:235;5943:314;;;;:::o;6263:260::-;;6370:2;6358:9;6349:7;6345:23;6341:32;6338:2;;;6386:1;6383;6376:12;6338:2;6429:1;6454:52;6498:7;6489:6;6478:9;6474:22;6454:52;:::i;:::-;6444:62;;6400:116;6328:195;;;;:::o;6529:282::-;;6647:2;6635:9;6626:7;6622:23;6618:32;6615:2;;;6663:1;6660;6653:12;6615:2;6706:1;6731:63;6786:7;6777:6;6766:9;6762:22;6731:63;:::i;:::-;6721:73;;6677:127;6605:206;;;;:::o;6817:375::-;;6935:2;6923:9;6914:7;6910:23;6906:32;6903:2;;;6951:1;6948;6941:12;6903:2;7022:1;7011:9;7007:17;6994:31;7052:18;7044:6;7041:30;7038:2;;;7084:1;7081;7074:12;7038:2;7112:63;7167:7;7158:6;7147:9;7143:22;7112:63;:::i;:::-;7102:73;;6965:220;6893:299;;;;:::o;7198:262::-;;7306:2;7294:9;7285:7;7281:23;7277:32;7274:2;;;7322:1;7319;7312:12;7274:2;7365:1;7390:53;7435:7;7426:6;7415:9;7411:22;7390:53;:::i;:::-;7380:63;;7336:117;7264:196;;;;:::o;7466:407::-;;;7591:2;7579:9;7570:7;7566:23;7562:32;7559:2;;;7607:1;7604;7597:12;7559:2;7650:1;7675:53;7720:7;7711:6;7700:9;7696:22;7675:53;:::i;:::-;7665:63;;7621:117;7777:2;7803:53;7848:7;7839:6;7828:9;7824:22;7803:53;:::i;:::-;7793:63;;7748:118;7549:324;;;;;:::o;7879:179::-;;7969:46;8011:3;8003:6;7969:46;:::i;:::-;8047:4;8042:3;8038:14;8024:28;;7959:99;;;;:::o;8064:179::-;;8154:46;8196:3;8188:6;8154:46;:::i;:::-;8232:4;8227:3;8223:14;8209:28;;8144:99;;;;:::o;8249:108::-;8326:24;8344:5;8326:24;:::i;:::-;8321:3;8314:37;8304:53;;:::o;8363:118::-;8450:24;8468:5;8450:24;:::i;:::-;8445:3;8438:37;8428:53;;:::o;8517:732::-;;8665:54;8713:5;8665:54;:::i;:::-;8735:86;8814:6;8809:3;8735:86;:::i;:::-;8728:93;;8845:56;8895:5;8845:56;:::i;:::-;8924:7;8955:1;8940:284;8965:6;8962:1;8959:13;8940:284;;;9041:6;9035:13;9068:63;9127:3;9112:13;9068:63;:::i;:::-;9061:70;;9154:60;9207:6;9154:60;:::i;:::-;9144:70;;9000:224;8987:1;8984;8980:9;8975:14;;8940:284;;;8944:14;9240:3;9233:10;;8641:608;;;;;;;:::o;9285:732::-;;9433:54;9481:5;9433:54;:::i;:::-;9503:86;9582:6;9577:3;9503:86;:::i;:::-;9496:93;;9613:56;9663:5;9613:56;:::i;:::-;9692:7;9723:1;9708:284;9733:6;9730:1;9727:13;9708:284;;;9809:6;9803:13;9836:63;9895:3;9880:13;9836:63;:::i;:::-;9829:70;;9922:60;9975:6;9922:60;:::i;:::-;9912:70;;9768:224;9755:1;9752;9748:9;9743:14;;9708:284;;;9712:14;10008:3;10001:10;;9409:608;;;;;;;:::o;10023:109::-;10104:21;10119:5;10104:21;:::i;:::-;10099:3;10092:34;10082:50;;:::o;10138:360::-;;10252:38;10284:5;10252:38;:::i;:::-;10306:70;10369:6;10364:3;10306:70;:::i;:::-;10299:77;;10385:52;10430:6;10425:3;10418:4;10411:5;10407:16;10385:52;:::i;:::-;10462:29;10484:6;10462:29;:::i;:::-;10457:3;10453:39;10446:46;;10228:270;;;;;:::o;10504:364::-;;10620:39;10653:5;10620:39;:::i;:::-;10675:71;10739:6;10734:3;10675:71;:::i;:::-;10668:78;;10755:52;10800:6;10795:3;10788:4;10781:5;10777:16;10755:52;:::i;:::-;10832:29;10854:6;10832:29;:::i;:::-;10827:3;10823:39;10816:46;;10596:272;;;;;:::o;10874:377::-;;11008:39;11041:5;11008:39;:::i;:::-;11063:89;11145:6;11140:3;11063:89;:::i;:::-;11056:96;;11161:52;11206:6;11201:3;11194:4;11187:5;11183:16;11161:52;:::i;:::-;11238:6;11233:3;11229:16;11222:23;;10984:267;;;;;:::o;11257:330::-;;11420:67;11484:2;11479:3;11420:67;:::i;:::-;11413:74;;11517:34;11513:1;11508:3;11504:11;11497:55;11578:2;11573:3;11569:12;11562:19;;11403:184;;;:::o;11593:375::-;;11756:67;11820:2;11815:3;11756:67;:::i;:::-;11749:74;;11853:34;11849:1;11844:3;11840:11;11833:55;11919:13;11914:2;11909:3;11905:12;11898:35;11959:2;11954:3;11950:12;11943:19;;11739:229;;;:::o;11974:382::-;;12137:67;12201:2;12196:3;12137:67;:::i;:::-;12130:74;;12234:34;12230:1;12225:3;12221:11;12214:55;12300:20;12295:2;12290:3;12286:12;12279:42;12347:2;12342:3;12338:12;12331:19;;12120:236;;;:::o;12362:326::-;;12525:67;12589:2;12584:3;12525:67;:::i;:::-;12518:74;;12622:30;12618:1;12613:3;12609:11;12602:51;12679:2;12674:3;12670:12;12663:19;;12508:180;;;:::o;12694:370::-;;12857:67;12921:2;12916:3;12857:67;:::i;:::-;12850:74;;12954:34;12950:1;12945:3;12941:11;12934:55;13020:8;13015:2;13010:3;13006:12;12999:30;13055:2;13050:3;13046:12;13039:19;;12840:224;;;:::o;13070:326::-;;13233:67;13297:2;13292:3;13233:67;:::i;:::-;13226:74;;13330:30;13326:1;13321:3;13317:11;13310:51;13387:2;13382:3;13378:12;13371:19;;13216:180;;;:::o;13402:329::-;;13565:67;13629:2;13624:3;13565:67;:::i;:::-;13558:74;;13662:33;13658:1;13653:3;13649:11;13642:54;13722:2;13717:3;13713:12;13706:19;;13548:183;;;:::o;13737:368::-;;13900:67;13964:2;13959:3;13900:67;:::i;:::-;13893:74;;13997:34;13993:1;13988:3;13984:11;13977:55;14063:6;14058:2;14053:3;14049:12;14042:28;14096:2;14091:3;14087:12;14080:19;;13883:222;;;:::o;14111:323::-;;14274:67;14338:2;14333:3;14274:67;:::i;:::-;14267:74;;14371:27;14367:1;14362:3;14358:11;14351:48;14425:2;14420:3;14416:12;14409:19;;14257:177;;;:::o;14440:322::-;;14603:67;14667:2;14662:3;14603:67;:::i;:::-;14596:74;;14700:26;14696:1;14691:3;14687:11;14680:47;14753:2;14748:3;14744:12;14737:19;;14586:176;;;:::o;14768:380::-;;14931:67;14995:2;14990:3;14931:67;:::i;:::-;14924:74;;15028:34;15024:1;15019:3;15015:11;15008:55;15094:18;15089:2;15084:3;15080:12;15073:40;15139:2;15134:3;15130:12;15123:19;;14914:234;;;:::o;15154:376::-;;15317:67;15381:2;15376:3;15317:67;:::i;:::-;15310:74;;15414:34;15410:1;15405:3;15401:11;15394:55;15480:14;15475:2;15470:3;15466:12;15459:36;15521:2;15516:3;15512:12;15505:19;;15300:230;;;:::o;15536:326::-;;15699:67;15763:2;15758:3;15699:67;:::i;:::-;15692:74;;15796:30;15792:1;15787:3;15783:11;15776:51;15853:2;15848:3;15844:12;15837:19;;15682:180;;;:::o;15868:327::-;;16031:67;16095:2;16090:3;16031:67;:::i;:::-;16024:74;;16128:31;16124:1;16119:3;16115:11;16108:52;16186:2;16181:3;16177:12;16170:19;;16014:181;;;:::o;16201:388::-;;16364:67;16428:2;16423:3;16364:67;:::i;:::-;16357:74;;16461:34;16457:1;16452:3;16448:11;16441:55;16527:26;16522:2;16517:3;16513:12;16506:48;16580:2;16575:3;16571:12;16564:19;;16347:242;;;:::o;16595:374::-;;16758:67;16822:2;16817:3;16758:67;:::i;:::-;16751:74;;16855:34;16851:1;16846:3;16842:11;16835:55;16921:12;16916:2;16911:3;16907:12;16900:34;16960:2;16955:3;16951:12;16944:19;;16741:228;;;:::o;16975:373::-;;17138:67;17202:2;17197:3;17138:67;:::i;:::-;17131:74;;17235:34;17231:1;17226:3;17222:11;17215:55;17301:11;17296:2;17291:3;17287:12;17280:33;17339:2;17334:3;17330:12;17323:19;;17121:227;;;:::o;17354:330::-;;17517:67;17581:2;17576:3;17517:67;:::i;:::-;17510:74;;17614:34;17610:1;17605:3;17601:11;17594:55;17675:2;17670:3;17666:12;17659:19;;17500:184;;;:::o;17690:376::-;;17853:67;17917:2;17912:3;17853:67;:::i;:::-;17846:74;;17950:34;17946:1;17941:3;17937:11;17930:55;18016:14;18011:2;18006:3;18002:12;17995:36;18057:2;18052:3;18048:12;18041:19;;17836:230;;;:::o;18072:379::-;;18235:67;18299:2;18294:3;18235:67;:::i;:::-;18228:74;;18332:34;18328:1;18323:3;18319:11;18312:55;18398:17;18393:2;18388:3;18384:12;18377:39;18442:2;18437:3;18433:12;18426:19;;18218:233;;;:::o;18457:330::-;;18620:67;18684:2;18679:3;18620:67;:::i;:::-;18613:74;;18717:34;18713:1;18708:3;18704:11;18697:55;18778:2;18773:3;18769:12;18762:19;;18603:184;;;:::o;18793:373::-;;18956:67;19020:2;19015:3;18956:67;:::i;:::-;18949:74;;19053:34;19049:1;19044:3;19040:11;19033:55;19119:11;19114:2;19109:3;19105:12;19098:33;19157:2;19152:3;19148:12;19141:19;;18939:227;;;:::o;19172:320::-;;19335:67;19399:2;19394:3;19335:67;:::i;:::-;19328:74;;19432:24;19428:1;19423:3;19419:11;19412:45;19483:2;19478:3;19474:12;19467:19;;19318:174;;;:::o;19498:379::-;;19661:67;19725:2;19720:3;19661:67;:::i;:::-;19654:74;;19758:34;19754:1;19749:3;19745:11;19738:55;19824:17;19819:2;19814:3;19810:12;19803:39;19868:2;19863:3;19859:12;19852:19;;19644:233;;;:::o;19883:365::-;;20046:67;20110:2;20105:3;20046:67;:::i;:::-;20039:74;;20143:34;20139:1;20134:3;20130:11;20123:55;20209:3;20204:2;20199:3;20195:12;20188:25;20239:2;20234:3;20230:12;20223:19;;20029:219;;;:::o;20254:367::-;;20417:67;20481:2;20476:3;20417:67;:::i;:::-;20410:74;;20514:34;20510:1;20505:3;20501:11;20494:55;20580:5;20575:2;20570:3;20566:12;20559:27;20612:2;20607:3;20603:12;20596:19;;20400:221;;;:::o;20627:369::-;;20790:67;20854:2;20849:3;20790:67;:::i;:::-;20783:74;;20887:34;20883:1;20878:3;20874:11;20867:55;20953:7;20948:2;20943:3;20939:12;20932:29;20987:2;20982:3;20978:12;20971:19;;20773:223;;;:::o;21002:381::-;;21165:67;21229:2;21224:3;21165:67;:::i;:::-;21158:74;;21262:34;21258:1;21253:3;21249:11;21242:55;21328:19;21323:2;21318:3;21314:12;21307:41;21374:2;21369:3;21365:12;21358:19;;21148:235;;;:::o;21389:376::-;;21552:67;21616:2;21611:3;21552:67;:::i;:::-;21545:74;;21649:34;21645:1;21640:3;21636:11;21629:55;21715:14;21710:2;21705:3;21701:12;21694:36;21756:2;21751:3;21747:12;21740:19;;21535:230;;;:::o;21771:108::-;21848:24;21866:5;21848:24;:::i;:::-;21843:3;21836:37;21826:53;;:::o;21885:118::-;21972:24;21990:5;21972:24;:::i;:::-;21967:3;21960:37;21950:53;;:::o;22009:157::-;22114:45;22134:24;22152:5;22134:24;:::i;:::-;22114:45;:::i;:::-;22109:3;22102:58;22092:74;;:::o;22172:435::-;;22374:95;22465:3;22456:6;22374:95;:::i;:::-;22367:102;;22486:95;22577:3;22568:6;22486:95;:::i;:::-;22479:102;;22598:3;22591:10;;22356:251;;;;;:::o;22613:397::-;;22768:75;22839:3;22830:6;22768:75;:::i;:::-;22868:2;22863:3;22859:12;22852:19;;22881:75;22952:3;22943:6;22881:75;:::i;:::-;22981:2;22976:3;22972:12;22965:19;;23001:3;22994:10;;22757:253;;;;;:::o;23016:222::-;;23147:2;23136:9;23132:18;23124:26;;23160:71;23228:1;23217:9;23213:17;23204:6;23160:71;:::i;:::-;23114:124;;;;:::o;23244:640::-;;23477:3;23466:9;23462:19;23454:27;;23491:71;23559:1;23548:9;23544:17;23535:6;23491:71;:::i;:::-;23572:72;23640:2;23629:9;23625:18;23616:6;23572:72;:::i;:::-;23654;23722:2;23711:9;23707:18;23698:6;23654:72;:::i;:::-;23773:9;23767:4;23763:20;23758:2;23747:9;23743:18;23736:48;23801:76;23872:4;23863:6;23801:76;:::i;:::-;23793:84;;23444:440;;;;;;;:::o;23890:373::-;;24071:2;24060:9;24056:18;24048:26;;24120:9;24114:4;24110:20;24106:1;24095:9;24091:17;24084:47;24148:108;24251:4;24242:6;24148:108;:::i;:::-;24140:116;;24038:225;;;;:::o;24269:373::-;;24450:2;24439:9;24435:18;24427:26;;24499:9;24493:4;24489:20;24485:1;24474:9;24470:17;24463:47;24527:108;24630:4;24621:6;24527:108;:::i;:::-;24519:116;;24417:225;;;;:::o;24648:210::-;;24773:2;24762:9;24758:18;24750:26;;24786:65;24848:1;24837:9;24833:17;24824:6;24786:65;:::i;:::-;24740:118;;;;:::o;24864:313::-;;25015:2;25004:9;25000:18;24992:26;;25064:9;25058:4;25054:20;25050:1;25039:9;25035:17;25028:47;25092:78;25165:4;25156:6;25092:78;:::i;:::-;25084:86;;24982:195;;;;:::o;25183:419::-;;25387:2;25376:9;25372:18;25364:26;;25436:9;25430:4;25426:20;25422:1;25411:9;25407:17;25400:47;25464:131;25590:4;25464:131;:::i;:::-;25456:139;;25354:248;;;:::o;25608:419::-;;25812:2;25801:9;25797:18;25789:26;;25861:9;25855:4;25851:20;25847:1;25836:9;25832:17;25825:47;25889:131;26015:4;25889:131;:::i;:::-;25881:139;;25779:248;;;:::o;26033:419::-;;26237:2;26226:9;26222:18;26214:26;;26286:9;26280:4;26276:20;26272:1;26261:9;26257:17;26250:47;26314:131;26440:4;26314:131;:::i;:::-;26306:139;;26204:248;;;:::o;26458:419::-;;26662:2;26651:9;26647:18;26639:26;;26711:9;26705:4;26701:20;26697:1;26686:9;26682:17;26675:47;26739:131;26865:4;26739:131;:::i;:::-;26731:139;;26629:248;;;:::o;26883:419::-;;27087:2;27076:9;27072:18;27064:26;;27136:9;27130:4;27126:20;27122:1;27111:9;27107:17;27100:47;27164:131;27290:4;27164:131;:::i;:::-;27156:139;;27054:248;;;:::o;27308:419::-;;27512:2;27501:9;27497:18;27489:26;;27561:9;27555:4;27551:20;27547:1;27536:9;27532:17;27525:47;27589:131;27715:4;27589:131;:::i;:::-;27581:139;;27479:248;;;:::o;27733:419::-;;27937:2;27926:9;27922:18;27914:26;;27986:9;27980:4;27976:20;27972:1;27961:9;27957:17;27950:47;28014:131;28140:4;28014:131;:::i;:::-;28006:139;;27904:248;;;:::o;28158:419::-;;28362:2;28351:9;28347:18;28339:26;;28411:9;28405:4;28401:20;28397:1;28386:9;28382:17;28375:47;28439:131;28565:4;28439:131;:::i;:::-;28431:139;;28329:248;;;:::o;28583:419::-;;28787:2;28776:9;28772:18;28764:26;;28836:9;28830:4;28826:20;28822:1;28811:9;28807:17;28800:47;28864:131;28990:4;28864:131;:::i;:::-;28856:139;;28754:248;;;:::o;29008:419::-;;29212:2;29201:9;29197:18;29189:26;;29261:9;29255:4;29251:20;29247:1;29236:9;29232:17;29225:47;29289:131;29415:4;29289:131;:::i;:::-;29281:139;;29179:248;;;:::o;29433:419::-;;29637:2;29626:9;29622:18;29614:26;;29686:9;29680:4;29676:20;29672:1;29661:9;29657:17;29650:47;29714:131;29840:4;29714:131;:::i;:::-;29706:139;;29604:248;;;:::o;29858:419::-;;30062:2;30051:9;30047:18;30039:26;;30111:9;30105:4;30101:20;30097:1;30086:9;30082:17;30075:47;30139:131;30265:4;30139:131;:::i;:::-;30131:139;;30029:248;;;:::o;30283:419::-;;30487:2;30476:9;30472:18;30464:26;;30536:9;30530:4;30526:20;30522:1;30511:9;30507:17;30500:47;30564:131;30690:4;30564:131;:::i;:::-;30556:139;;30454:248;;;:::o;30708:419::-;;30912:2;30901:9;30897:18;30889:26;;30961:9;30955:4;30951:20;30947:1;30936:9;30932:17;30925:47;30989:131;31115:4;30989:131;:::i;:::-;30981:139;;30879:248;;;:::o;31133:419::-;;31337:2;31326:9;31322:18;31314:26;;31386:9;31380:4;31376:20;31372:1;31361:9;31357:17;31350:47;31414:131;31540:4;31414:131;:::i;:::-;31406:139;;31304:248;;;:::o;31558:419::-;;31762:2;31751:9;31747:18;31739:26;;31811:9;31805:4;31801:20;31797:1;31786:9;31782:17;31775:47;31839:131;31965:4;31839:131;:::i;:::-;31831:139;;31729:248;;;:::o;31983:419::-;;32187:2;32176:9;32172:18;32164:26;;32236:9;32230:4;32226:20;32222:1;32211:9;32207:17;32200:47;32264:131;32390:4;32264:131;:::i;:::-;32256:139;;32154:248;;;:::o;32408:419::-;;32612:2;32601:9;32597:18;32589:26;;32661:9;32655:4;32651:20;32647:1;32636:9;32632:17;32625:47;32689:131;32815:4;32689:131;:::i;:::-;32681:139;;32579:248;;;:::o;32833:419::-;;33037:2;33026:9;33022:18;33014:26;;33086:9;33080:4;33076:20;33072:1;33061:9;33057:17;33050:47;33114:131;33240:4;33114:131;:::i;:::-;33106:139;;33004:248;;;:::o;33258:419::-;;33462:2;33451:9;33447:18;33439:26;;33511:9;33505:4;33501:20;33497:1;33486:9;33482:17;33475:47;33539:131;33665:4;33539:131;:::i;:::-;33531:139;;33429:248;;;:::o;33683:419::-;;33887:2;33876:9;33872:18;33864:26;;33936:9;33930:4;33926:20;33922:1;33911:9;33907:17;33900:47;33964:131;34090:4;33964:131;:::i;:::-;33956:139;;33854:248;;;:::o;34108:419::-;;34312:2;34301:9;34297:18;34289:26;;34361:9;34355:4;34351:20;34347:1;34336:9;34332:17;34325:47;34389:131;34515:4;34389:131;:::i;:::-;34381:139;;34279:248;;;:::o;34533:419::-;;34737:2;34726:9;34722:18;34714:26;;34786:9;34780:4;34776:20;34772:1;34761:9;34757:17;34750:47;34814:131;34940:4;34814:131;:::i;:::-;34806:139;;34704:248;;;:::o;34958:419::-;;35162:2;35151:9;35147:18;35139:26;;35211:9;35205:4;35201:20;35197:1;35186:9;35182:17;35175:47;35239:131;35365:4;35239:131;:::i;:::-;35231:139;;35129:248;;;:::o;35383:419::-;;35587:2;35576:9;35572:18;35564:26;;35636:9;35630:4;35626:20;35622:1;35611:9;35607:17;35600:47;35664:131;35790:4;35664:131;:::i;:::-;35656:139;;35554:248;;;:::o;35808:419::-;;36012:2;36001:9;35997:18;35989:26;;36061:9;36055:4;36051:20;36047:1;36036:9;36032:17;36025:47;36089:131;36215:4;36089:131;:::i;:::-;36081:139;;35979:248;;;:::o;36233:419::-;;36437:2;36426:9;36422:18;36414:26;;36486:9;36480:4;36476:20;36472:1;36461:9;36457:17;36450:47;36514:131;36640:4;36514:131;:::i;:::-;36506:139;;36404:248;;;:::o;36658:419::-;;36862:2;36851:9;36847:18;36839:26;;36911:9;36905:4;36901:20;36897:1;36886:9;36882:17;36875:47;36939:131;37065:4;36939:131;:::i;:::-;36931:139;;36829:248;;;:::o;37083:419::-;;37287:2;37276:9;37272:18;37264:26;;37336:9;37330:4;37326:20;37322:1;37311:9;37307:17;37300:47;37364:131;37490:4;37364:131;:::i;:::-;37356:139;;37254:248;;;:::o;37508:222::-;;37639:2;37628:9;37624:18;37616:26;;37652:71;37720:1;37709:9;37705:17;37696:6;37652:71;:::i;:::-;37606:124;;;;:::o;37736:283::-;;37802:2;37796:9;37786:19;;37844:4;37836:6;37832:17;37951:6;37939:10;37936:22;37915:18;37903:10;37900:34;37897:62;37894:2;;;37962:18;;:::i;:::-;37894:2;38002:10;37998:2;37991:22;37776:243;;;;:::o;38025:311::-;;38192:18;38184:6;38181:30;38178:2;;;38214:18;;:::i;:::-;38178:2;38264:4;38256:6;38252:17;38244:25;;38324:4;38318;38314:15;38306:23;;38107:229;;;:::o;38342:331::-;;38493:18;38485:6;38482:30;38479:2;;;38515:18;;:::i;:::-;38479:2;38600:4;38596:9;38589:4;38581:6;38577:17;38573:33;38565:41;;38661:4;38655;38651:15;38643:23;;38408:265;;;:::o;38679:332::-;;38831:18;38823:6;38820:30;38817:2;;;38853:18;;:::i;:::-;38817:2;38938:4;38934:9;38927:4;38919:6;38915:17;38911:33;38903:41;;38999:4;38993;38989:15;38981:23;;38746:265;;;:::o;39017:132::-;;39107:3;39099:11;;39137:4;39132:3;39128:14;39120:22;;39089:60;;;:::o;39155:132::-;;39245:3;39237:11;;39275:4;39270:3;39266:14;39258:22;;39227:60;;;:::o;39293:114::-;;39394:5;39388:12;39378:22;;39367:40;;;:::o;39413:114::-;;39514:5;39508:12;39498:22;;39487:40;;;:::o;39533:98::-;;39618:5;39612:12;39602:22;;39591:40;;;:::o;39637:99::-;;39723:5;39717:12;39707:22;;39696:40;;;:::o;39742:113::-;;39844:4;39839:3;39835:14;39827:22;;39817:38;;;:::o;39861:113::-;;39963:4;39958:3;39954:14;39946:22;;39936:38;;;:::o;39980:184::-;;40113:6;40108:3;40101:19;40153:4;40148:3;40144:14;40129:29;;40091:73;;;;:::o;40170:184::-;;40303:6;40298:3;40291:19;40343:4;40338:3;40334:14;40319:29;;40281:73;;;;:::o;40360:168::-;;40477:6;40472:3;40465:19;40517:4;40512:3;40508:14;40493:29;;40455:73;;;;:::o;40534:169::-;;40652:6;40647:3;40640:19;40692:4;40687:3;40683:14;40668:29;;40630:73;;;;:::o;40709:148::-;;40848:3;40833:18;;40823:34;;;;:::o;40863:305::-;;40922:20;40940:1;40922:20;:::i;:::-;40917:25;;40956:20;40974:1;40956:20;:::i;:::-;40951:25;;41110:1;41042:66;41038:74;41035:1;41032:81;41029:2;;;41116:18;;:::i;:::-;41029:2;41160:1;41157;41153:9;41146:16;;40907:261;;;;:::o;41174:185::-;;41231:20;41249:1;41231:20;:::i;:::-;41226:25;;41265:20;41283:1;41265:20;:::i;:::-;41260:25;;41304:1;41294:2;;41309:18;;:::i;:::-;41294:2;41351:1;41348;41344:9;41339:14;;41216:143;;;;:::o;41365:348::-;;41428:20;41446:1;41428:20;:::i;:::-;41423:25;;41462:20;41480:1;41462:20;:::i;:::-;41457:25;;41650:1;41582:66;41578:74;41575:1;41572:81;41567:1;41560:9;41553:17;41549:105;41546:2;;;41657:18;;:::i;:::-;41546:2;41705:1;41702;41698:9;41687:20;;41413:300;;;;:::o;41719:191::-;;41779:20;41797:1;41779:20;:::i;:::-;41774:25;;41813:20;41831:1;41813:20;:::i;:::-;41808:25;;41852:1;41849;41846:8;41843:2;;;41857:18;;:::i;:::-;41843:2;41902:1;41899;41895:9;41887:17;;41764:146;;;;:::o;41916:96::-;;41982:24;42000:5;41982:24;:::i;:::-;41971:35;;41961:51;;;:::o;42018:90::-;;42095:5;42088:13;42081:21;42070:32;;42060:48;;;:::o;42114:149::-;;42190:66;42183:5;42179:78;42168:89;;42158:105;;;:::o;42269:126::-;;42346:42;42339:5;42335:54;42324:65;;42314:81;;;:::o;42401:77::-;;42467:5;42456:16;;42446:32;;;:::o;42484:154::-;42568:6;42563:3;42558;42545:30;42630:1;42621:6;42616:3;42612:16;42605:27;42535:103;;;:::o;42644:307::-;42712:1;42722:113;42736:6;42733:1;42730:13;42722:113;;;42821:1;42816:3;42812:11;42806:18;42802:1;42797:3;42793:11;42786:39;42758:2;42755:1;42751:10;42746:15;;42722:113;;;42853:6;42850:1;42847:13;42844:2;;;42933:1;42924:6;42919:3;42915:16;42908:27;42844:2;42693:258;;;;:::o;42957:320::-;;43038:1;43032:4;43028:12;43018:22;;43085:1;43079:4;43075:12;43106:18;43096:2;;43162:4;43154:6;43150:17;43140:27;;43096:2;43224;43216:6;43213:14;43193:18;43190:38;43187:2;;;43243:18;;:::i;:::-;43187:2;43008:269;;;;:::o;43283:233::-;;43345:24;43363:5;43345:24;:::i;:::-;43336:33;;43391:66;43384:5;43381:77;43378:2;;;43461:18;;:::i;:::-;43378:2;43508:1;43501:5;43497:13;43490:20;;43326:190;;;:::o;43522:79::-;;43590:5;43579:16;;43569:32;;;:::o;43607:176::-;;43656:20;43674:1;43656:20;:::i;:::-;43651:25;;43690:20;43708:1;43690:20;:::i;:::-;43685:25;;43729:1;43719:2;;43734:18;;:::i;:::-;43719:2;43775:1;43772;43768:9;43763:14;;43641:142;;;;:::o;43789:180::-;43837:77;43834:1;43827:88;43934:4;43931:1;43924:15;43958:4;43955:1;43948:15;43975:180;44023:77;44020:1;44013:88;44120:4;44117:1;44110:15;44144:4;44141:1;44134:15;44161:180;44209:77;44206:1;44199:88;44306:4;44303:1;44296:15;44330:4;44327:1;44320:15;44347:180;44395:77;44392:1;44385:88;44492:4;44489:1;44482:15;44516:4;44513:1;44506:15;44533:102;;44625:2;44621:7;44616:2;44609:5;44605:14;44601:28;44591:38;;44581:54;;;:::o;44641:122::-;44714:24;44732:5;44714:24;:::i;:::-;44707:5;44704:35;44694:2;;44753:1;44750;44743:12;44694:2;44684:79;:::o;44769:116::-;44839:21;44854:5;44839:21;:::i;:::-;44832:5;44829:32;44819:2;;44875:1;44872;44865:12;44819:2;44809:76;:::o;44891:120::-;44963:23;44980:5;44963:23;:::i;:::-;44956:5;44953:34;44943:2;;45001:1;44998;44991:12;44943:2;44933:78;:::o;45017:122::-;45090:24;45108:5;45090:24;:::i;:::-;45083:5;45080:35;45070:2;;45129:1;45126;45119:12;45070:2;45060:79;:::o

Swarm Source

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