ETH Price: $3,454.28 (-0.73%)
Gas: 4 Gwei

Token

Immortal Ape (IA)
 

Overview

Max Total Supply

2,079 IA

Holders

930

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
eeeris.eth
Balance
1 IA
0xda98d4fadfc023432124b8f96a871f983023cdaa
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
ImmortalApe

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity Multiple files format)

File 12 of 17: ImmortalApe.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;
import "./ERC721Enumerable.sol";
import "./Ownable.sol";
import "./Counters.sol";
import "./PaymentSplitter.sol";
import "./Pausable.sol";

contract ImmortalApe is ERC721Enumerable, Pausable, PaymentSplitter {
    using Counters for Counters.Counter;

    uint256 public maxTotalSupply = 3300;
    uint256 public maxGiftSupply = 33;
    uint256 public maxCount = 2;
    uint256 public giftCount;
    uint256 public presaleCount;
    uint256 public totalNFT;
    bool public isBurnEnabled;
    bool public PublicSaleStarted;
    bool public PreSaleStarted = false;
    uint256 public MintPrice = 100000000000000000;
    string public baseURI;
    Counters.Counter private _tokenIds;
    uint256[] private _teamShares = [100];
    address[] private _team = [0x8B01020029458C47Df58F6D8CAAF87E2348a8295];
    mapping(address => bool) private _presaleList;
    mapping(address => uint256) public _presaleClaimed;
    mapping(address => uint256) public _giftClaimed;
    mapping(address => uint256) public _saleClaimed;
    mapping(address => uint256) public _totalClaimed;

    enum WorkflowStatus {
        CheckOnPresale,
        Presale,
        Sale,
        SoldOut
    }
    WorkflowStatus public workflow;
    event ChangeIsBurnEnabled(bool _isBurnEnabled);
    event ChangePublicSaleStarted(bool _PublicSaleStarted);
    event ChangePreSaleStarted(bool _PreSaleStarted);
    event ChangeBaseURI(string _baseURI);
    event ChangeMintPrice(uint256 _MintPrice);
    event GiftMint(address indexed _recipient, uint256 _amount);
    event PresaleMint(address indexed _minter, uint256 _amount, uint256 _price);
    event SaleMint(address indexed _minter, uint256 _amount, uint256 _price);
    event WorkflowStatusChange(
        WorkflowStatus previousStatus,
        WorkflowStatus newStatus
    );

    constructor()
        ERC721("Immortal Ape", "IA")
        PaymentSplitter(_team, _teamShares)
    {}

    function setBaseURI(string calldata _tokenBaseURI) external onlyOwner {
        baseURI = _tokenBaseURI;
        emit ChangeBaseURI(_tokenBaseURI);
    }

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

    function addToPresaleList(address[] calldata _addresses)
        external
        onlyOwner
    {
        for (uint256 ind = 0; ind < _addresses.length; ind++) {
            require(
                _addresses[ind] != address(0),
                "Message: Can't add a zero address"
            );
            if (_presaleList[_addresses[ind]] == false) {
                _presaleList[_addresses[ind]] = true;
            }
        }
    }

    function isOnPresaleList(address _address) external view returns (bool) {
        return _presaleList[_address];
    }

    function removeFromPresaleList(address[] calldata _addresses)
        external
        onlyOwner
    {
        for (uint256 ind = 0; ind < _addresses.length; ind++) {
            require(
                _addresses[ind] != address(0),
                "Message: Can't remove a zero address"
            );
            if (_presaleList[_addresses[ind]] == true) {
                _presaleList[_addresses[ind]] = false;
            }
        }
    }

    function setUpSale(bool _PublicSaleStarted) external onlyOwner {
               PublicSaleStarted = _PublicSaleStarted;
        emit ChangePublicSaleStarted(_PublicSaleStarted);
        PublicSaleStarted = true;
        emit ChangePublicSaleStarted(true);
        maxCount = 10;
        workflow = WorkflowStatus.Sale;
        emit WorkflowStatusChange(WorkflowStatus.Presale, WorkflowStatus.Sale);
    }

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

function setPreSaleStarted(bool _PreSaleStarted) external onlyOwner {
        PreSaleStarted = _PreSaleStarted;
        emit ChangePreSaleStarted(_PreSaleStarted);
    }

function setPublicSaleStarted(bool _PublicSaleStarted) external onlyOwner {
        PublicSaleStarted = _PublicSaleStarted;
        emit ChangePublicSaleStarted(_PublicSaleStarted);
    }

    function setIsBurnEnabled(bool _isBurnEnabled) external onlyOwner {
        isBurnEnabled = _isBurnEnabled;
        emit ChangeIsBurnEnabled(_isBurnEnabled);
    }

      function setPrice(uint256 _amount) external onlyOwner {
        MintPrice = _amount * 10000000000000000;
        emit ChangeMintPrice(_amount * 10000000000000000);
    }

    function giftMint(address[] calldata _addresses)
        external
        onlyOwner
        whenNotPaused
    {
        require(
            totalNFT + _addresses.length <= maxTotalSupply,
            "Message: max total supply exceeded"
        );

        require(
            giftCount + _addresses.length <= maxGiftSupply,
            "Message: max gift supply exceeded"
        );

        uint256 _newItemId;
        for (uint256 ind = 0; ind < _addresses.length; ind++) {
            require(
                _addresses[ind] != address(0),
                "Message: recepient is the null address"
            );
            _tokenIds.increment();
            _newItemId = _tokenIds.current();
            _safeMint(_addresses[ind], _newItemId);
            _giftClaimed[_addresses[ind]] = _giftClaimed[_addresses[ind]] + 1;
            _totalClaimed[_addresses[ind]] = _totalClaimed[_addresses[ind]] + 1;
            totalNFT = totalNFT + 1;
            giftCount = giftCount + 1;
        }
    }

    function presaleMint(uint256 _amount) internal {
        require(
           PreSaleStarted == true,
            "You are not on the whitelist"
        );
        require(
            _presaleList[msg.sender] == true,
            "You are not on the whitelist"
        );
        require(
            _presaleClaimed[msg.sender] + _amount <= maxCount,
            "You can only mint 2 tokens"
        );
        require(
            totalNFT + _amount <= maxTotalSupply,
            "Message: max supply exceeded"
        );
        uint256 _price = getPrice();
        require(
            _price * _amount <= msg.value,
            "Message: Ether value sent is not correct"
        );
        uint256 _newItemId;
        for (uint256 ind = 0; ind < _amount; ind++) {
            _tokenIds.increment();
            _newItemId = _tokenIds.current();
            _safeMint(msg.sender, _newItemId);
            _presaleClaimed[msg.sender] = _presaleClaimed[msg.sender] + _amount;
            _totalClaimed[msg.sender] = _totalClaimed[msg.sender] + _amount;
            totalNFT = totalNFT + 1;
            presaleCount = presaleCount + 1;
        }
        emit PresaleMint(msg.sender, _amount, _price);
    }

    function saleMint(uint256 _amount) internal {
        require(
           PublicSaleStarted == true,
            "Sale isn't started."
        );
        require(_amount > 0, "Message: zero amount");
        require(
            _amount <= maxCount,
            "Can only mint 10 tokens at a time"
        );
        require(
            totalNFT + _amount <= maxTotalSupply,
            "Message: max supply exceeded"
        );
        uint256 _price = getPrice();
        require(
            _price * _amount <= msg.value,
            "Message: Ether value sent is not correct"
        );
        uint256 _newItemId;
        for (uint256 ind = 0; ind < _amount; ind++) {
            _tokenIds.increment();
            _newItemId = _tokenIds.current();
            _safeMint(msg.sender, _newItemId);
            _saleClaimed[msg.sender] = _saleClaimed[msg.sender] + _amount;
            _totalClaimed[msg.sender] = _totalClaimed[msg.sender] + _amount;
            totalNFT = totalNFT + 1;
        }
        emit SaleMint(msg.sender, _amount, _price);
    }

    function mainMint(uint256 _amount) external payable whenNotPaused {
        if (PublicSaleStarted == false) {
            presaleMint(_amount);
        } else {
            saleMint(_amount);
        }
        if (totalNFT + _amount == maxTotalSupply) {
            workflow = WorkflowStatus.SoldOut;
            emit WorkflowStatusChange(
                WorkflowStatus.Sale,
                WorkflowStatus.SoldOut
            );
        }
    }

    function burn(uint256 tokenId) external {
        require(isBurnEnabled, "Message: burning disabled");
        require(
            _isApprovedOrOwner(msg.sender, tokenId),
            "Message: burn caller is not owner"
        );
        _burn(tokenId);
        totalNFT = totalNFT - 1;
    }

    function getWorkflowStatus() public view returns (uint256) {
        uint256 _status;
        if (workflow == WorkflowStatus.CheckOnPresale) {
            _status = 1;
        }
        if (workflow == WorkflowStatus.Presale) {
            _status = 2;
        }
        if (workflow == WorkflowStatus.Sale) {
            _status = 3;
        }
        if (workflow == WorkflowStatus.SoldOut) {
            _status = 4;
        }
        return _status;
    }
}

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 2 of 17: 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 17: Counters.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

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

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

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

File 4 of 17: 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 5 of 17: ERC721.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

File 6 of 17: 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 7 of 17: 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 8 of 17: 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 9 of 17: 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 10 of 17: 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 11 of 17: IERC721Receiver.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

import "./Context.sol";

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

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

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

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

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

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

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

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

File 14 of 17: Pausable.sol
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.4;

import "./Ownable.sol";

/**
 * @title Pausable
 * @dev Base contract which allows children to implement an emergency stop mechanism.
 */
contract Pausable is Ownable {
    event Pause();
    event Unpause();

    bool public paused = false;

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     */
    modifier whenNotPaused() {
        require(!paused, "Transaction is not available");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     */
    modifier whenPaused() {
        require(paused, "Transaction is available");
        _;
    }

    /**
     * @dev called by the owner to pause, triggers stopped state
     */
    function pause() public onlyOwner whenNotPaused {
        paused = true;
        emit Pause();
    }

    /**
     * @dev called by the owner to unpause, returns to normal state
     */
    function unpause() public onlyOwner whenPaused {
        paused = false;
        emit Unpause();
    }
}

File 15 of 17: PaymentSplitter.sol
// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

import "./Address.sol";
import "./Context.sol";
import "./SafeMath.sol";

/**
 * @title PaymentSplitter
 * @dev This contract allows to split Ether payments among a group of accounts. The sender does not need to be aware
 * that the Ether will be split in this way, since it is handled transparently by the contract.
 *
 * The split can be in equal parts or in any other arbitrary proportion. The way this is specified is by assigning each
 * account to a number of shares. Of all the Ether that this contract receives, each account will then be able to claim
 * an amount proportional to the percentage of total shares they were assigned.
 *
 * `PaymentSplitter` follows a _pull payment_ model. This means that payments are not automatically forwarded to the
 * accounts but kept in this contract, and the actual transfer is triggered as a separate step by calling the {release}
 * function.
 */
contract PaymentSplitter is Context {
    event PayeeAdded(address account, uint256 shares);
    event PaymentReleased(address to, uint256 amount);
    event PaymentReceived(address from, uint256 amount);

    uint256 private _totalShares;
    uint256 private _totalReleased;

    mapping(address => uint256) private _shares;
    mapping(address => uint256) private _released;
    address[] private _payees;

    /**
     * @dev Creates an instance of `PaymentSplitter` where each account in `payees` is assigned the number of shares at
     * the matching position in the `shares` array.
     *
     * All addresses in `payees` must be non-zero. Both arrays must have the same non-zero length, and there must be no
     * duplicates in `payees`.
     */
    constructor(address[] memory payees, uint256[] memory shares_) payable {
        require(payees.length == shares_.length, "PaymentSplitter: payees and shares length mismatch");
        require(payees.length > 0, "PaymentSplitter: no payees");

        for (uint256 i = 0; i < payees.length; i++) {
            _addPayee(payees[i], shares_[i]);
        }
    }

    /**
     * @dev The Ether received will be logged with {PaymentReceived} events. Note that these events are not fully
     * reliable: it's possible for a contract to receive Ether without triggering this function. This only affects the
     * reliability of the events, and not the actual splitting of Ether.
     *
     * To learn more about this see the Solidity documentation for
     * https://solidity.readthedocs.io/en/latest/contracts.html#fallback-function[fallback
     * functions].
     */
    receive() external payable virtual {
        emit PaymentReceived(_msgSender(), msg.value);
    }

    /**
     * @dev Getter for the total shares held by payees.
     */
    function totalShares() public view returns (uint256) {
        return _totalShares;
    }

    /**
     * @dev Getter for the total amount of Ether already released.
     */
    function totalReleased() public view returns (uint256) {
        return _totalReleased;
    }

    /**
     * @dev Getter for the amount of shares held by an account.
     */
    function shares(address account) public view returns (uint256) {
        return _shares[account];
    }

    /**
     * @dev Getter for the amount of Ether already released to a payee.
     */
    function released(address account) public view returns (uint256) {
        return _released[account];
    }

    /**
     * @dev Getter for the address of the payee number `index`.
     */
    function payee(uint256 index) public view returns (address) {
        return _payees[index];
    }

    /**
     * @dev Triggers a transfer to `account` of the amount of Ether they are owed, according to their percentage of the
     * total shares and their previous withdrawals.
     */
    function release(address payable account) public virtual {
        require(_shares[account] > 0, "PaymentSplitter: account has no shares");

        uint256 totalReceived = address(this).balance + _totalReleased;
        uint256 payment = (totalReceived * _shares[account]) / _totalShares - _released[account];

        require(payment != 0, "PaymentSplitter: account is not due payment");

        _released[account] = _released[account] + payment;
        _totalReleased = _totalReleased + payment;

        Address.sendValue(account, payment);
        emit PaymentReleased(account, payment);
    }

    /**
     * @dev Add a new payee to the contract.
     * @param account The address of the payee to add.
     * @param shares_ The number of shares owned by the payee.
     */
    function _addPayee(address account, uint256 shares_) private {
        require(account != address(0), "PaymentSplitter: account is the zero address");
        require(shares_ > 0, "PaymentSplitter: shares are 0");
        require(_shares[account] == 0, "PaymentSplitter: account already has shares");

        _payees.push(account);
        _shares[account] = shares_;
        _totalShares = _totalShares + shares_;
        emit PayeeAdded(account, shares_);
    }
}

File 16 of 17: 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 17 of 17: 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":false,"internalType":"string","name":"_baseURI","type":"string"}],"name":"ChangeBaseURI","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"_isBurnEnabled","type":"bool"}],"name":"ChangeIsBurnEnabled","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_MintPrice","type":"uint256"}],"name":"ChangeMintPrice","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"_PreSaleStarted","type":"bool"}],"name":"ChangePreSaleStarted","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"_PublicSaleStarted","type":"bool"}],"name":"ChangePublicSaleStarted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_recipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"GiftMint","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":[],"name":"Pause","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"shares","type":"uint256"}],"name":"PayeeAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReceived","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"PaymentReleased","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_minter","type":"address"},{"indexed":false,"internalType":"uint256","name":"_amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_price","type":"uint256"}],"name":"PresaleMint","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_minter","type":"address"},{"indexed":false,"internalType":"uint256","name":"_amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"_price","type":"uint256"}],"name":"SaleMint","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[],"name":"Unpause","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"enum ImmortalApe.WorkflowStatus","name":"previousStatus","type":"uint8"},{"indexed":false,"internalType":"enum ImmortalApe.WorkflowStatus","name":"newStatus","type":"uint8"}],"name":"WorkflowStatusChange","type":"event"},{"inputs":[],"name":"MintPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PreSaleStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PublicSaleStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_giftClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_presaleClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_saleClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_totalClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"}],"name":"addToPresaleList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","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":[],"name":"getWorkflowStatus","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"giftCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"}],"name":"giftMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isBurnEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"isOnPresaleList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mainMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"maxCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxGiftSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"payee","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"account","type":"address"}],"name":"release","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"released","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"_addresses","type":"address[]"}],"name":"removeFromPresaleList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_tokenBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isBurnEnabled","type":"bool"}],"name":"setIsBurnEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_PreSaleStarted","type":"bool"}],"name":"setPreSaleStarted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_PublicSaleStarted","type":"bool"}],"name":"setPublicSaleStarted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_PublicSaleStarted","type":"bool"}],"name":"setUpSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"shares","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":"totalNFT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalReleased","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalShares","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"workflow","outputs":[{"internalType":"enum ImmortalApe.WorkflowStatus","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

600a805460ff60a01b19169055610ce4601055602160115560026012556016805462ff00001916905567016345785d8a000060175560a0604052606460809081526200005090601a90600162000543565b506040805160208101909152738b01020029458c47df58f6d8caaf87e2348a829581526200008390601b90600162000598565b503480156200009157600080fd5b50601b805480602002602001604051908101604052809291908181526020018280548015620000ea57602002820191906000526020600020905b81546001600160a01b03168152600190910190602001808311620000cb575b5050505050601a8054806020026020016040519081016040528092919081815260200182805480156200013d57602002820191906000526020600020905b81548152602001906001019080831162000128575b5050604080518082018252600c81526b496d6d6f7274616c2041706560a01b602080830191825283518085019094526002845261494160f01b90840152815191955091935062000192925060009190620005f0565b508051620001a8906001906020840190620005f0565b505050620001c5620001bf620002ff60201b60201c565b62000303565b8051825114620002375760405162461bcd60e51b815260206004820152603260248201527f5061796d656e7453706c69747465723a2070617965657320616e6420736861726044820152710cae640d8cadccee8d040dad2e6dac2e8c6d60731b60648201526084015b60405180910390fd5b60008251116200028a5760405162461bcd60e51b815260206004820152601a60248201527f5061796d656e7453706c69747465723a206e6f2070617965657300000000000060448201526064016200022e565b60005b8251811015620002f657620002e1838281518110620002b057620002b062000710565b6020026020010151838381518110620002cd57620002cd62000710565b60200260200101516200035560201b60201c565b80620002ed81620006dc565b9150506200028d565b50505062000726565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b038216620003c25760405162461bcd60e51b815260206004820152602c60248201527f5061796d656e7453706c69747465723a206163636f756e74206973207468652060448201526b7a65726f206164647265737360a01b60648201526084016200022e565b60008111620004145760405162461bcd60e51b815260206004820152601d60248201527f5061796d656e7453706c69747465723a2073686172657320617265203000000060448201526064016200022e565b6001600160a01b0382166000908152600d602052604090205415620004905760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e7420616c726561647960448201526a206861732073686172657360a81b60648201526084016200022e565b600f8054600181019091557f8d1108e10bcb7c27dddfc02ed9d693a074039d026cf4ea4240b40f7d581ac8020180546001600160a01b0319166001600160a01b0384169081179091556000908152600d60205260409020819055600b54620004fa90829062000684565b600b55604080516001600160a01b0384168152602081018390527f40c340f65e17194d14ddddb073d3c9f888e3cb52b5aae0c6c7706b4fbc905fac910160405180910390a15050565b82805482825590600052602060002090810192821562000586579160200282015b8281111562000586578251829060ff1690559160200191906001019062000564565b50620005949291506200066d565b5090565b82805482825590600052602060002090810192821562000586579160200282015b828111156200058657825182546001600160a01b0319166001600160a01b03909116178255602090920191600190910190620005b9565b828054620005fe906200069f565b90600052602060002090601f01602090048101928262000622576000855562000586565b82601f106200063d57805160ff191683800117855562000586565b8280016001018555821562000586579182015b828111156200058657825182559160200191906001019062000650565b5b808211156200059457600081556001016200066e565b600082198211156200069a576200069a620006fa565b500190565b600181811c90821680620006b457607f821691505b60208210811415620006d657634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415620006f357620006f3620006fa565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b613b3280620007366000396000f3fe6080604052600436106103845760003560e01c80637f61feaf116101d1578063a5fd7bec11610102578063e33b7de3116100a0578063f2fde38b1161006f578063f2fde38b14610ad2578063f578d9df14610af2578063f75d64a614610b05578063fdbf9ef214610b1a57600080fd5b8063e33b7de314610a3e578063e59ee01414610a53578063e985e9c514610a73578063ed70037414610abc57600080fd5b8063c87b56dd116100dc578063c87b56dd14610999578063cde27a35146109b9578063ce7c2ac2146109cf578063de00a68b14610a0557600080fd5b8063a5fd7bec14610939578063b179e06014610959578063b88d4fde1461097957600080fd5b806391b7f5ed1161016f57806398d5fdca1161014957806398d5fdca146108c75780639ef2d87a146108dc578063a22cb465146108f2578063a33441251461091257600080fd5b806391b7f5ed1461085c57806395d89b411461087c5780639852595c1461089157600080fd5b80638b83209b116101ab5780638b83209b146107d15780638cc4de19146107f15780638da5cb5b1461081e5780638dff4c1d1461083c57600080fd5b80637f61feaf146107715780637f674f48146107905780638456cb59146107bc57600080fd5b80633f4ba83a116102b65780635c975abb116102545780636e0e5b19116102235780636e0e5b19146106fc57806370a082311461071c578063715018a61461073c5780637204a3c91461075157600080fd5b80635c975abb146106905780635edbc28c146106b15780636352211e146106c75780636c0360eb146106e757600080fd5b80634f6ccce7116102905780634f6ccce71461060357806352d728d91461062357806355f804b3146106505780635af46b4b1461067057600080fd5b80633f4ba83a146105ae57806342842e0e146105c357806342966c68146105e357600080fd5b806318160ddd116103235780632412f8d7116102fd5780632412f8d7146105435780632ab4d052146105635780632f745c59146105795780633a98ef391461059957600080fd5b806318160ddd146104ee578063191655871461050357806323b872dd1461052357600080fd5b806307ebec271161035f57806307ebec271461044d578063081812fc14610467578063095ea7b31461049f57806309c3fbb7146104c157600080fd5b8062456379146103d257806301ffc9a7146103fb57806306fdde031461042b57600080fd5b366103cd577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be77033604080516001600160a01b0390921682523460208301520160405180910390a1005b600080fd5b3480156103de57600080fd5b506103e860155481565b6040519081526020015b60405180910390f35b34801561040757600080fd5b5061041b610416366004613626565b610b30565b60405190151581526020016103f2565b34801561043757600080fd5b50610440610b5b565b6040516103f291906137eb565b34801561045957600080fd5b5060165461041b9060ff1681565b34801561047357600080fd5b506104876104823660046136c0565b610bed565b6040516001600160a01b0390911681526020016103f2565b3480156104ab57600080fd5b506104bf6104ba36600461356a565b610c87565b005b3480156104cd57600080fd5b506103e86104dc3660046133be565b601f6020526000908152604090205481565b3480156104fa57600080fd5b506008546103e8565b34801561050f57600080fd5b506104bf61051e3660046133be565b610d9d565b34801561052f57600080fd5b506104bf61053e366004613414565b610f6e565b34801561054f57600080fd5b506104bf61055e36600461360b565b610f9f565b34801561056f57600080fd5b506103e860105481565b34801561058557600080fd5b506103e861059436600461356a565b6110af565b3480156105a557600080fd5b50600b546103e8565b3480156105ba57600080fd5b506104bf611145565b3480156105cf57600080fd5b506104bf6105de366004613414565b611200565b3480156105ef57600080fd5b506104bf6105fe3660046136c0565b61121b565b34801561060f57600080fd5b506103e861061e3660046136c0565b6112eb565b34801561062f57600080fd5b506103e861063e3660046133be565b601e6020526000908152604090205481565b34801561065c57600080fd5b506104bf61066b366004613660565b61137e565b34801561067c57600080fd5b506104bf61068b36600461360b565b6113f2565b34801561069c57600080fd5b50600a5461041b90600160a01b900460ff1681565b3480156106bd57600080fd5b506103e860115481565b3480156106d357600080fd5b506104876106e23660046136c0565b611465565b3480156106f357600080fd5b506104406114dc565b34801561070857600080fd5b506104bf61071736600461360b565b61156a565b34801561072857600080fd5b506103e86107373660046133be565b6115d5565b34801561074857600080fd5b506104bf61165c565b34801561075d57600080fd5b506104bf61076c366004613596565b611692565b34801561077d57600080fd5b5060165461041b90610100900460ff1681565b34801561079c57600080fd5b506103e86107ab3660046133be565b602080526000908152604090205481565b3480156107c857600080fd5b506104bf611805565b3480156107dd57600080fd5b506104876107ec3660046136c0565b611897565b3480156107fd57600080fd5b506103e861080c3660046133be565b601d6020526000908152604090205481565b34801561082a57600080fd5b50600a546001600160a01b0316610487565b34801561084857600080fd5b5060165461041b9062010000900460ff1681565b34801561086857600080fd5b506104bf6108773660046136c0565b6118c7565b34801561088857600080fd5b50610440611945565b34801561089d57600080fd5b506103e86108ac3660046133be565b6001600160a01b03166000908152600e602052604090205490565b3480156108d357600080fd5b506017546103e8565b3480156108e857600080fd5b506103e860125481565b3480156108fe57600080fd5b506104bf61090d366004613535565b611954565b34801561091e57600080fd5b5060215461092c9060ff1681565b6040516103f29190613793565b34801561094557600080fd5b506104bf610954366004613596565b611a19565b34801561096557600080fd5b506104bf610974366004613596565b611d8c565b34801561098557600080fd5b506104bf610994366004613455565b611f07565b3480156109a557600080fd5b506104406109b43660046136c0565b611f39565b3480156109c557600080fd5b506103e860145481565b3480156109db57600080fd5b506103e86109ea3660046133be565b6001600160a01b03166000908152600d602052604090205490565b348015610a1157600080fd5b5061041b610a203660046133be565b6001600160a01b03166000908152601c602052604090205460ff1690565b348015610a4a57600080fd5b50600c546103e8565b348015610a5f57600080fd5b506104bf610a6e36600461360b565b612014565b348015610a7f57600080fd5b5061041b610a8e3660046133db565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b348015610ac857600080fd5b506103e860135481565b348015610ade57600080fd5b506104bf610aed3660046133be565b612089565b6104bf610b003660046136c0565b612124565b348015610b1157600080fd5b506103e86121cd565b348015610b2657600080fd5b506103e860175481565b60006001600160e01b0319821663780e9d6360e01b1480610b555750610b5582612260565b92915050565b606060008054610b6a906139e3565b80601f0160208091040260200160405190810160405280929190818152602001828054610b96906139e3565b8015610be35780601f10610bb857610100808354040283529160200191610be3565b820191906000526020600020905b815481529060010190602001808311610bc657829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610c6b5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610c9282611465565b9050806001600160a01b0316836001600160a01b03161415610d005760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610c62565b336001600160a01b0382161480610d1c5750610d1c8133610a8e565b610d8e5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610c62565b610d9883836122b0565b505050565b6001600160a01b0381166000908152600d6020526040902054610e115760405162461bcd60e51b815260206004820152602660248201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060448201526573686172657360d01b6064820152608401610c62565b6000600c5447610e219190613955565b6001600160a01b0383166000908152600e6020908152604080832054600b54600d909352908320549394509192610e589085613981565b610e62919061396d565b610e6c91906139a0565b905080610ecf5760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060448201526a191d59481c185e5b595b9d60aa1b6064820152608401610c62565b6001600160a01b0383166000908152600e6020526040902054610ef3908290613955565b6001600160a01b0384166000908152600e6020526040902055600c54610f1a908290613955565b600c55610f27838261231e565b604080516001600160a01b0385168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a1505050565b610f783382612437565b610f945760405162461bcd60e51b8152600401610c6290613885565b610d9883838361252e565b600a546001600160a01b03163314610fc95760405162461bcd60e51b8152600401610c6290613850565b601680548215156101000261ff00199091161790556040517f1620b9276997949f5a656ba304c3eedb6af786cbce9d549751719d88b84b233d9061101290831515815260200190565b60405180910390a16016805461ff001916610100179055604051600181527f1620b9276997949f5a656ba304c3eedb6af786cbce9d549751719d88b84b233d9060200160405180910390a1600a6012556021805460ff191660029081179091556040517f0a97a4ee45751e2abf3e4fc8946939630b11b371ea8ae39ccdc3056e98f5cc3f916110a491600191906137a1565b60405180910390a150565b60006110ba836115d5565b821061111c5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610c62565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b0316331461116f5760405162461bcd60e51b8152600401610c6290613850565b600a54600160a01b900460ff166111c85760405162461bcd60e51b815260206004820152601860248201527f5472616e73616374696f6e20697320617661696c61626c6500000000000000006044820152606401610c62565b600a805460ff60a01b191690556040517f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3390600090a1565b610d9883838360405180602001604052806000815250611f07565b60165460ff1661126d5760405162461bcd60e51b815260206004820152601960248201527f4d6573736167653a206275726e696e672064697361626c6564000000000000006044820152606401610c62565b6112773382612437565b6112cd5760405162461bcd60e51b815260206004820152602160248201527f4d6573736167653a206275726e2063616c6c6572206973206e6f74206f776e656044820152603960f91b6064820152608401610c62565b6112d6816126d9565b60016015546112e591906139a0565b60155550565b60006112f660085490565b82106113595760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610c62565b6008828154811061136c5761136c613aa5565b90600052602060002001549050919050565b600a546001600160a01b031633146113a85760405162461bcd60e51b8152600401610c6290613850565b6113b460188383613315565b507f8a274cdd629b9aae599b13d8bfee3ee4a15350b0386a9b64087a393db009376782826040516113e69291906137bc565b60405180910390a15050565b600a546001600160a01b0316331461141c5760405162461bcd60e51b8152600401610c6290613850565b601680548215156101000261ff00199091161790556040517f1620b9276997949f5a656ba304c3eedb6af786cbce9d549751719d88b84b233d906110a490831515815260200190565b6000818152600260205260408120546001600160a01b031680610b555760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610c62565b601880546114e9906139e3565b80601f0160208091040260200160405190810160405280929190818152602001828054611515906139e3565b80156115625780601f1061153757610100808354040283529160200191611562565b820191906000526020600020905b81548152906001019060200180831161154557829003601f168201915b505050505081565b600a546001600160a01b031633146115945760405162461bcd60e51b8152600401610c6290613850565b6016805460ff19168215159081179091556040519081527f0343da01ca2a51743bc3a245ccf8007e27e6b919fb27b0f83cb5d60c2e8634f3906020016110a4565b60006001600160a01b0382166116405760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610c62565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146116865760405162461bcd60e51b8152600401610c6290613850565b6116906000612780565b565b600a546001600160a01b031633146116bc5760405162461bcd60e51b8152600401610c6290613850565b60005b81811015610d985760008383838181106116db576116db613aa5565b90506020020160208101906116f091906133be565b6001600160a01b031614156117515760405162461bcd60e51b815260206004820152602160248201527f4d6573736167653a2043616e2774206164642061207a65726f206164647265736044820152607360f81b6064820152608401610c62565b601c600084848481811061176757611767613aa5565b905060200201602081019061177c91906133be565b6001600160a01b0316815260208101919091526040016000205460ff166117f3576001601c60008585858181106117b5576117b5613aa5565b90506020020160208101906117ca91906133be565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790555b806117fd81613a1e565b9150506116bf565b600a546001600160a01b0316331461182f5760405162461bcd60e51b8152600401610c6290613850565b600a54600160a01b900460ff16156118595760405162461bcd60e51b8152600401610c629061391e565b600a805460ff60a01b1916600160a01b1790556040517f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62590600090a1565b6000600f82815481106118ac576118ac613aa5565b6000918252602090912001546001600160a01b031692915050565b600a546001600160a01b031633146118f15760405162461bcd60e51b8152600401610c6290613850565b61190281662386f26fc10000613981565b6017557fd6800b65b866c2769be54531e82b793515adb30a5c12080699dcd3c07784caa661193782662386f26fc10000613981565b6040519081526020016110a4565b606060018054610b6a906139e3565b6001600160a01b0382163314156119ad5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610c62565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b03163314611a435760405162461bcd60e51b8152600401610c6290613850565b600a54600160a01b900460ff1615611a6d5760405162461bcd60e51b8152600401610c629061391e565b601054601554611a7e908390613955565b1115611ad75760405162461bcd60e51b815260206004820152602260248201527f4d6573736167653a206d617820746f74616c20737570706c7920657863656564604482015261195960f21b6064820152608401610c62565b601154601354611ae8908390613955565b1115611b405760405162461bcd60e51b815260206004820152602160248201527f4d6573736167653a206d6178206769667420737570706c7920657863656564656044820152601960fa1b6064820152608401610c62565b6000805b82811015611d86576000848483818110611b6057611b60613aa5565b9050602002016020810190611b7591906133be565b6001600160a01b03161415611bdb5760405162461bcd60e51b815260206004820152602660248201527f4d6573736167653a20726563657069656e7420697320746865206e756c6c206160448201526564647265737360d01b6064820152608401610c62565b611be9601980546001019055565b6019549150611c1e848483818110611c0357611c03613aa5565b9050602002016020810190611c1891906133be565b836127d2565b601e6000858584818110611c3457611c34613aa5565b9050602002016020810190611c4991906133be565b6001600160a01b03168152602081019190915260400160002054611c6e906001613955565b601e6000868685818110611c8457611c84613aa5565b9050602002016020810190611c9991906133be565b6001600160a01b03166001600160a01b031681526020019081526020016000208190555060206000858584818110611cd357611cd3613aa5565b9050602002016020810190611ce891906133be565b6001600160a01b03168152602081019190915260400160002054611d0d906001613955565b60206000868685818110611d2357611d23613aa5565b9050602002016020810190611d3891906133be565b6001600160a01b03168152602081019190915260400160002055601554611d60906001613955565b601555601354611d71906001613955565b60135580611d7e81613a1e565b915050611b44565b50505050565b600a546001600160a01b03163314611db65760405162461bcd60e51b8152600401610c6290613850565b60005b81811015610d98576000838383818110611dd557611dd5613aa5565b9050602002016020810190611dea91906133be565b6001600160a01b03161415611e4d5760405162461bcd60e51b8152602060048201526024808201527f4d6573736167653a2043616e27742072656d6f76652061207a65726f206164646044820152637265737360e01b6064820152608401610c62565b601c6000848484818110611e6357611e63613aa5565b9050602002016020810190611e7891906133be565b6001600160a01b0316815260208101919091526040016000205460ff16151560011415611ef5576000601c6000858585818110611eb757611eb7613aa5565b9050602002016020810190611ecc91906133be565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790555b80611eff81613a1e565b915050611db9565b611f113383612437565b611f2d5760405162461bcd60e51b8152600401610c6290613885565b611d86848484846127f0565b6000818152600260205260409020546060906001600160a01b0316611fb85760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610c62565b6000611fc2612823565b90506000815111611fe2576040518060200160405280600081525061200d565b80611fec84612832565b604051602001611ffd929190613727565b6040516020818303038152906040525b9392505050565b600a546001600160a01b0316331461203e5760405162461bcd60e51b8152600401610c6290613850565b60168054821515620100000262ff0000199091161790556040517ff9639a949592ffb0c1afab06e7e6805171c8f5a77f018dea799ac9b452b62b5e906110a490831515815260200190565b600a546001600160a01b031633146120b35760405162461bcd60e51b8152600401610c6290613850565b6001600160a01b0381166121185760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610c62565b61212181612780565b50565b600a54600160a01b900460ff161561214e5760405162461bcd60e51b8152600401610c629061391e565b601654610100900460ff1661216b5761216681612930565b612174565b61217481612be0565b601054816015546121859190613955565b1415612121576021805460ff191660039081179091556040517f0a97a4ee45751e2abf3e4fc8946939630b11b371ea8ae39ccdc3056e98f5cc3f916110a491600291906137a1565b6000808060215460ff1660038111156121e8576121e8613a79565b14156121f2575060015b600160215460ff16600381111561220b5761220b613a79565b1415612215575060025b600260215460ff16600381111561222e5761222e613a79565b1415612238575060035b600360215460ff16600381111561225157612251613a79565b141561225b575060045b919050565b60006001600160e01b031982166380ac58cd60e01b148061229157506001600160e01b03198216635b5e139f60e01b145b80610b5557506301ffc9a760e01b6001600160e01b0319831614610b55565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906122e582611465565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b8047101561236e5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610c62565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146123bb576040519150601f19603f3d011682016040523d82523d6000602084013e6123c0565b606091505b5050905080610d985760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610c62565b6000818152600260205260408120546001600160a01b03166124b05760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610c62565b60006124bb83611465565b9050806001600160a01b0316846001600160a01b031614806124f65750836001600160a01b03166124eb84610bed565b6001600160a01b0316145b8061252657506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661254182611465565b6001600160a01b0316146125a95760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610c62565b6001600160a01b03821661260b5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610c62565b612616838383612e3f565b6126216000826122b0565b6001600160a01b038316600090815260036020526040812080546001929061264a9084906139a0565b90915550506001600160a01b0382166000908152600360205260408120805460019290612678908490613955565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60006126e482611465565b90506126f281600084612e3f565b6126fd6000836122b0565b6001600160a01b03811660009081526003602052604081208054600192906127269084906139a0565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6127ec828260405180602001604052806000815250612ef7565b5050565b6127fb84848461252e565b61280784848484612f2a565b611d865760405162461bcd60e51b8152600401610c62906137fe565b606060188054610b6a906139e3565b6060816128565750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612880578061286a81613a1e565b91506128799050600a8361396d565b915061285a565b60008167ffffffffffffffff81111561289b5761289b613abb565b6040519080825280601f01601f1916602001820160405280156128c5576020820181803683370190505b5090505b8415612526576128da6001836139a0565b91506128e7600a86613a39565b6128f2906030613955565b60f81b81838151811061290757612907613aa5565b60200101906001600160f81b031916908160001a905350612929600a8661396d565b94506128c9565b60165462010000900460ff16151560011461298d5760405162461bcd60e51b815260206004820152601c60248201527f596f7520617265206e6f74206f6e207468652077686974656c697374000000006044820152606401610c62565b336000908152601c602052604090205460ff1615156001146129f15760405162461bcd60e51b815260206004820152601c60248201527f596f7520617265206e6f74206f6e207468652077686974656c697374000000006044820152606401610c62565b601254336000908152601d6020526040902054612a0f908390613955565b1115612a5d5760405162461bcd60e51b815260206004820152601a60248201527f596f752063616e206f6e6c79206d696e74203220746f6b656e730000000000006044820152606401610c62565b60105481601554612a6e9190613955565b1115612abc5760405162461bcd60e51b815260206004820152601c60248201527f4d6573736167653a206d617820737570706c79206578636565646564000000006044820152606401610c62565b6000612ac760175490565b905034612ad48383613981565b1115612af25760405162461bcd60e51b8152600401610c62906138d6565b6000805b83811015612b9e57612b0c601980546001019055565b6019549150612b1b33836127d2565b336000908152601d6020526040902054612b36908590613955565b336000908152601d602090815260408083209390935580522054612b5b908590613955565b336000908152602080526040902055601554612b78906001613955565b601555601454612b89906001613955565b60145580612b9681613a1e565b915050612af6565b50604080518481526020810184905233917f40038d437ff4cece80b344923544b3c8527d7f6aa2f9202a9734d5d9c7ffa0e091015b60405180910390a2505050565b60165460ff610100909104161515600114612c335760405162461bcd60e51b815260206004820152601360248201527229b0b6329034b9b713ba1039ba30b93a32b21760691b6044820152606401610c62565b60008111612c7a5760405162461bcd60e51b815260206004820152601460248201527313595cdcd859d94e881e995c9bc8185b5bdd5b9d60621b6044820152606401610c62565b601254811115612cd65760405162461bcd60e51b815260206004820152602160248201527f43616e206f6e6c79206d696e7420313020746f6b656e7320617420612074696d6044820152606560f81b6064820152608401610c62565b60105481601554612ce79190613955565b1115612d355760405162461bcd60e51b815260206004820152601c60248201527f4d6573736167653a206d617820737570706c79206578636565646564000000006044820152606401610c62565b6000612d4060175490565b905034612d4d8383613981565b1115612d6b5760405162461bcd60e51b8152600401610c62906138d6565b6000805b83811015612e0657612d85601980546001019055565b6019549150612d9433836127d2565b336000908152601f6020526040902054612daf908590613955565b336000908152601f602090815260408083209390935580522054612dd4908590613955565b336000908152602080526040902055601554612df1906001613955565b60155580612dfe81613a1e565b915050612d6f565b50604080518481526020810184905233917f0d905a2e95960c2ad9e627d829fae00e7f3b9794c3b62a5c376cf5deee8f2a209101612bd3565b6001600160a01b038316612e9a57612e9581600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612ebd565b816001600160a01b0316836001600160a01b031614612ebd57612ebd8382613037565b6001600160a01b038216612ed457610d98816130d4565b826001600160a01b0316826001600160a01b031614610d9857610d988282613183565b612f0183836131c7565b612f0e6000848484612f2a565b610d985760405162461bcd60e51b8152600401610c62906137fe565b60006001600160a01b0384163b1561302c57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612f6e903390899088908890600401613756565b602060405180830381600087803b158015612f8857600080fd5b505af1925050508015612fb8575060408051601f3d908101601f19168201909252612fb591810190613643565b60015b613012573d808015612fe6576040519150601f19603f3d011682016040523d82523d6000602084013e612feb565b606091505b50805161300a5760405162461bcd60e51b8152600401610c62906137fe565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612526565b506001949350505050565b60006001613044846115d5565b61304e91906139a0565b6000838152600760205260409020549091508082146130a1576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906130e6906001906139a0565b6000838152600960205260408120546008805493945090928490811061310e5761310e613aa5565b90600052602060002001549050806008838154811061312f5761312f613aa5565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061316757613167613a8f565b6001900381819060005260206000200160009055905550505050565b600061318e836115d5565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b03821661321d5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610c62565b6000818152600260205260409020546001600160a01b0316156132825760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610c62565b61328e60008383612e3f565b6001600160a01b03821660009081526003602052604081208054600192906132b7908490613955565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054613321906139e3565b90600052602060002090601f0160209004810192826133435760008555613389565b82601f1061335c5782800160ff19823516178555613389565b82800160010185558215613389579182015b8281111561338957823582559160200191906001019061336e565b50613395929150613399565b5090565b5b80821115613395576000815560010161339a565b8035801515811461225b57600080fd5b6000602082840312156133d057600080fd5b813561200d81613ad1565b600080604083850312156133ee57600080fd5b82356133f981613ad1565b9150602083013561340981613ad1565b809150509250929050565b60008060006060848603121561342957600080fd5b833561343481613ad1565b9250602084013561344481613ad1565b929592945050506040919091013590565b6000806000806080858703121561346b57600080fd5b843561347681613ad1565b9350602085013561348681613ad1565b925060408501359150606085013567ffffffffffffffff808211156134aa57600080fd5b818701915087601f8301126134be57600080fd5b8135818111156134d0576134d0613abb565b604051601f8201601f19908116603f011681019083821181831017156134f8576134f8613abb565b816040528281528a602084870101111561351157600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561354857600080fd5b823561355381613ad1565b9150613561602084016133ae565b90509250929050565b6000806040838503121561357d57600080fd5b823561358881613ad1565b946020939093013593505050565b600080602083850312156135a957600080fd5b823567ffffffffffffffff808211156135c157600080fd5b818501915085601f8301126135d557600080fd5b8135818111156135e457600080fd5b8660208260051b85010111156135f957600080fd5b60209290920196919550909350505050565b60006020828403121561361d57600080fd5b61200d826133ae565b60006020828403121561363857600080fd5b813561200d81613ae6565b60006020828403121561365557600080fd5b815161200d81613ae6565b6000806020838503121561367357600080fd5b823567ffffffffffffffff8082111561368b57600080fd5b818501915085601f83011261369f57600080fd5b8135818111156136ae57600080fd5b8660208285010111156135f957600080fd5b6000602082840312156136d257600080fd5b5035919050565b600081518084526136f18160208601602086016139b7565b601f01601f19169290920160200192915050565b6004811061372357634e487b7160e01b600052602160045260246000fd5b9052565b600083516137398184602088016139b7565b83519083019061374d8183602088016139b7565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090613789908301846136d9565b9695505050505050565b60208101610b558284613705565b604081016137af8285613705565b61200d6020830184613705565b60208152816020820152818360408301376000818301604090810191909152601f909201601f19160101919050565b60208152600061200d60208301846136d9565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526028908201527f4d6573736167653a2045746865722076616c75652073656e74206973206e6f746040820152670818dbdc9c9958dd60c21b606082015260800190565b6020808252601c908201527f5472616e73616374696f6e206973206e6f7420617661696c61626c6500000000604082015260600190565b6000821982111561396857613968613a4d565b500190565b60008261397c5761397c613a63565b500490565b600081600019048311821515161561399b5761399b613a4d565b500290565b6000828210156139b2576139b2613a4d565b500390565b60005b838110156139d25781810151838201526020016139ba565b83811115611d865750506000910152565b600181811c908216806139f757607f821691505b60208210811415613a1857634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415613a3257613a32613a4d565b5060010190565b600082613a4857613a48613a63565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461212157600080fd5b6001600160e01b03198116811461212157600080fdfea2646970667358221220236e0e8ee9926baa71378a414e0d0306b45280a89781d451f986ab409f90060b64736f6c63430008070033

Deployed Bytecode

0x6080604052600436106103845760003560e01c80637f61feaf116101d1578063a5fd7bec11610102578063e33b7de3116100a0578063f2fde38b1161006f578063f2fde38b14610ad2578063f578d9df14610af2578063f75d64a614610b05578063fdbf9ef214610b1a57600080fd5b8063e33b7de314610a3e578063e59ee01414610a53578063e985e9c514610a73578063ed70037414610abc57600080fd5b8063c87b56dd116100dc578063c87b56dd14610999578063cde27a35146109b9578063ce7c2ac2146109cf578063de00a68b14610a0557600080fd5b8063a5fd7bec14610939578063b179e06014610959578063b88d4fde1461097957600080fd5b806391b7f5ed1161016f57806398d5fdca1161014957806398d5fdca146108c75780639ef2d87a146108dc578063a22cb465146108f2578063a33441251461091257600080fd5b806391b7f5ed1461085c57806395d89b411461087c5780639852595c1461089157600080fd5b80638b83209b116101ab5780638b83209b146107d15780638cc4de19146107f15780638da5cb5b1461081e5780638dff4c1d1461083c57600080fd5b80637f61feaf146107715780637f674f48146107905780638456cb59146107bc57600080fd5b80633f4ba83a116102b65780635c975abb116102545780636e0e5b19116102235780636e0e5b19146106fc57806370a082311461071c578063715018a61461073c5780637204a3c91461075157600080fd5b80635c975abb146106905780635edbc28c146106b15780636352211e146106c75780636c0360eb146106e757600080fd5b80634f6ccce7116102905780634f6ccce71461060357806352d728d91461062357806355f804b3146106505780635af46b4b1461067057600080fd5b80633f4ba83a146105ae57806342842e0e146105c357806342966c68146105e357600080fd5b806318160ddd116103235780632412f8d7116102fd5780632412f8d7146105435780632ab4d052146105635780632f745c59146105795780633a98ef391461059957600080fd5b806318160ddd146104ee578063191655871461050357806323b872dd1461052357600080fd5b806307ebec271161035f57806307ebec271461044d578063081812fc14610467578063095ea7b31461049f57806309c3fbb7146104c157600080fd5b8062456379146103d257806301ffc9a7146103fb57806306fdde031461042b57600080fd5b366103cd577f6ef95f06320e7a25a04a175ca677b7052bdd97131872c2192525a629f51be77033604080516001600160a01b0390921682523460208301520160405180910390a1005b600080fd5b3480156103de57600080fd5b506103e860155481565b6040519081526020015b60405180910390f35b34801561040757600080fd5b5061041b610416366004613626565b610b30565b60405190151581526020016103f2565b34801561043757600080fd5b50610440610b5b565b6040516103f291906137eb565b34801561045957600080fd5b5060165461041b9060ff1681565b34801561047357600080fd5b506104876104823660046136c0565b610bed565b6040516001600160a01b0390911681526020016103f2565b3480156104ab57600080fd5b506104bf6104ba36600461356a565b610c87565b005b3480156104cd57600080fd5b506103e86104dc3660046133be565b601f6020526000908152604090205481565b3480156104fa57600080fd5b506008546103e8565b34801561050f57600080fd5b506104bf61051e3660046133be565b610d9d565b34801561052f57600080fd5b506104bf61053e366004613414565b610f6e565b34801561054f57600080fd5b506104bf61055e36600461360b565b610f9f565b34801561056f57600080fd5b506103e860105481565b34801561058557600080fd5b506103e861059436600461356a565b6110af565b3480156105a557600080fd5b50600b546103e8565b3480156105ba57600080fd5b506104bf611145565b3480156105cf57600080fd5b506104bf6105de366004613414565b611200565b3480156105ef57600080fd5b506104bf6105fe3660046136c0565b61121b565b34801561060f57600080fd5b506103e861061e3660046136c0565b6112eb565b34801561062f57600080fd5b506103e861063e3660046133be565b601e6020526000908152604090205481565b34801561065c57600080fd5b506104bf61066b366004613660565b61137e565b34801561067c57600080fd5b506104bf61068b36600461360b565b6113f2565b34801561069c57600080fd5b50600a5461041b90600160a01b900460ff1681565b3480156106bd57600080fd5b506103e860115481565b3480156106d357600080fd5b506104876106e23660046136c0565b611465565b3480156106f357600080fd5b506104406114dc565b34801561070857600080fd5b506104bf61071736600461360b565b61156a565b34801561072857600080fd5b506103e86107373660046133be565b6115d5565b34801561074857600080fd5b506104bf61165c565b34801561075d57600080fd5b506104bf61076c366004613596565b611692565b34801561077d57600080fd5b5060165461041b90610100900460ff1681565b34801561079c57600080fd5b506103e86107ab3660046133be565b602080526000908152604090205481565b3480156107c857600080fd5b506104bf611805565b3480156107dd57600080fd5b506104876107ec3660046136c0565b611897565b3480156107fd57600080fd5b506103e861080c3660046133be565b601d6020526000908152604090205481565b34801561082a57600080fd5b50600a546001600160a01b0316610487565b34801561084857600080fd5b5060165461041b9062010000900460ff1681565b34801561086857600080fd5b506104bf6108773660046136c0565b6118c7565b34801561088857600080fd5b50610440611945565b34801561089d57600080fd5b506103e86108ac3660046133be565b6001600160a01b03166000908152600e602052604090205490565b3480156108d357600080fd5b506017546103e8565b3480156108e857600080fd5b506103e860125481565b3480156108fe57600080fd5b506104bf61090d366004613535565b611954565b34801561091e57600080fd5b5060215461092c9060ff1681565b6040516103f29190613793565b34801561094557600080fd5b506104bf610954366004613596565b611a19565b34801561096557600080fd5b506104bf610974366004613596565b611d8c565b34801561098557600080fd5b506104bf610994366004613455565b611f07565b3480156109a557600080fd5b506104406109b43660046136c0565b611f39565b3480156109c557600080fd5b506103e860145481565b3480156109db57600080fd5b506103e86109ea3660046133be565b6001600160a01b03166000908152600d602052604090205490565b348015610a1157600080fd5b5061041b610a203660046133be565b6001600160a01b03166000908152601c602052604090205460ff1690565b348015610a4a57600080fd5b50600c546103e8565b348015610a5f57600080fd5b506104bf610a6e36600461360b565b612014565b348015610a7f57600080fd5b5061041b610a8e3660046133db565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b348015610ac857600080fd5b506103e860135481565b348015610ade57600080fd5b506104bf610aed3660046133be565b612089565b6104bf610b003660046136c0565b612124565b348015610b1157600080fd5b506103e86121cd565b348015610b2657600080fd5b506103e860175481565b60006001600160e01b0319821663780e9d6360e01b1480610b555750610b5582612260565b92915050565b606060008054610b6a906139e3565b80601f0160208091040260200160405190810160405280929190818152602001828054610b96906139e3565b8015610be35780601f10610bb857610100808354040283529160200191610be3565b820191906000526020600020905b815481529060010190602001808311610bc657829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610c6b5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610c9282611465565b9050806001600160a01b0316836001600160a01b03161415610d005760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610c62565b336001600160a01b0382161480610d1c5750610d1c8133610a8e565b610d8e5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610c62565b610d9883836122b0565b505050565b6001600160a01b0381166000908152600d6020526040902054610e115760405162461bcd60e51b815260206004820152602660248201527f5061796d656e7453706c69747465723a206163636f756e7420686173206e6f2060448201526573686172657360d01b6064820152608401610c62565b6000600c5447610e219190613955565b6001600160a01b0383166000908152600e6020908152604080832054600b54600d909352908320549394509192610e589085613981565b610e62919061396d565b610e6c91906139a0565b905080610ecf5760405162461bcd60e51b815260206004820152602b60248201527f5061796d656e7453706c69747465723a206163636f756e74206973206e6f742060448201526a191d59481c185e5b595b9d60aa1b6064820152608401610c62565b6001600160a01b0383166000908152600e6020526040902054610ef3908290613955565b6001600160a01b0384166000908152600e6020526040902055600c54610f1a908290613955565b600c55610f27838261231e565b604080516001600160a01b0385168152602081018390527fdf20fd1e76bc69d672e4814fafb2c449bba3a5369d8359adf9e05e6fde87b056910160405180910390a1505050565b610f783382612437565b610f945760405162461bcd60e51b8152600401610c6290613885565b610d9883838361252e565b600a546001600160a01b03163314610fc95760405162461bcd60e51b8152600401610c6290613850565b601680548215156101000261ff00199091161790556040517f1620b9276997949f5a656ba304c3eedb6af786cbce9d549751719d88b84b233d9061101290831515815260200190565b60405180910390a16016805461ff001916610100179055604051600181527f1620b9276997949f5a656ba304c3eedb6af786cbce9d549751719d88b84b233d9060200160405180910390a1600a6012556021805460ff191660029081179091556040517f0a97a4ee45751e2abf3e4fc8946939630b11b371ea8ae39ccdc3056e98f5cc3f916110a491600191906137a1565b60405180910390a150565b60006110ba836115d5565b821061111c5760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b6064820152608401610c62565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b0316331461116f5760405162461bcd60e51b8152600401610c6290613850565b600a54600160a01b900460ff166111c85760405162461bcd60e51b815260206004820152601860248201527f5472616e73616374696f6e20697320617661696c61626c6500000000000000006044820152606401610c62565b600a805460ff60a01b191690556040517f7805862f689e2f13df9f062ff482ad3ad112aca9e0847911ed832e158c525b3390600090a1565b610d9883838360405180602001604052806000815250611f07565b60165460ff1661126d5760405162461bcd60e51b815260206004820152601960248201527f4d6573736167653a206275726e696e672064697361626c6564000000000000006044820152606401610c62565b6112773382612437565b6112cd5760405162461bcd60e51b815260206004820152602160248201527f4d6573736167653a206275726e2063616c6c6572206973206e6f74206f776e656044820152603960f91b6064820152608401610c62565b6112d6816126d9565b60016015546112e591906139a0565b60155550565b60006112f660085490565b82106113595760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b6064820152608401610c62565b6008828154811061136c5761136c613aa5565b90600052602060002001549050919050565b600a546001600160a01b031633146113a85760405162461bcd60e51b8152600401610c6290613850565b6113b460188383613315565b507f8a274cdd629b9aae599b13d8bfee3ee4a15350b0386a9b64087a393db009376782826040516113e69291906137bc565b60405180910390a15050565b600a546001600160a01b0316331461141c5760405162461bcd60e51b8152600401610c6290613850565b601680548215156101000261ff00199091161790556040517f1620b9276997949f5a656ba304c3eedb6af786cbce9d549751719d88b84b233d906110a490831515815260200190565b6000818152600260205260408120546001600160a01b031680610b555760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610c62565b601880546114e9906139e3565b80601f0160208091040260200160405190810160405280929190818152602001828054611515906139e3565b80156115625780601f1061153757610100808354040283529160200191611562565b820191906000526020600020905b81548152906001019060200180831161154557829003601f168201915b505050505081565b600a546001600160a01b031633146115945760405162461bcd60e51b8152600401610c6290613850565b6016805460ff19168215159081179091556040519081527f0343da01ca2a51743bc3a245ccf8007e27e6b919fb27b0f83cb5d60c2e8634f3906020016110a4565b60006001600160a01b0382166116405760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610c62565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146116865760405162461bcd60e51b8152600401610c6290613850565b6116906000612780565b565b600a546001600160a01b031633146116bc5760405162461bcd60e51b8152600401610c6290613850565b60005b81811015610d985760008383838181106116db576116db613aa5565b90506020020160208101906116f091906133be565b6001600160a01b031614156117515760405162461bcd60e51b815260206004820152602160248201527f4d6573736167653a2043616e2774206164642061207a65726f206164647265736044820152607360f81b6064820152608401610c62565b601c600084848481811061176757611767613aa5565b905060200201602081019061177c91906133be565b6001600160a01b0316815260208101919091526040016000205460ff166117f3576001601c60008585858181106117b5576117b5613aa5565b90506020020160208101906117ca91906133be565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790555b806117fd81613a1e565b9150506116bf565b600a546001600160a01b0316331461182f5760405162461bcd60e51b8152600401610c6290613850565b600a54600160a01b900460ff16156118595760405162461bcd60e51b8152600401610c629061391e565b600a805460ff60a01b1916600160a01b1790556040517f6985a02210a168e66602d3235cb6db0e70f92b3ba4d376a33c0f3d9434bff62590600090a1565b6000600f82815481106118ac576118ac613aa5565b6000918252602090912001546001600160a01b031692915050565b600a546001600160a01b031633146118f15760405162461bcd60e51b8152600401610c6290613850565b61190281662386f26fc10000613981565b6017557fd6800b65b866c2769be54531e82b793515adb30a5c12080699dcd3c07784caa661193782662386f26fc10000613981565b6040519081526020016110a4565b606060018054610b6a906139e3565b6001600160a01b0382163314156119ad5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610c62565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600a546001600160a01b03163314611a435760405162461bcd60e51b8152600401610c6290613850565b600a54600160a01b900460ff1615611a6d5760405162461bcd60e51b8152600401610c629061391e565b601054601554611a7e908390613955565b1115611ad75760405162461bcd60e51b815260206004820152602260248201527f4d6573736167653a206d617820746f74616c20737570706c7920657863656564604482015261195960f21b6064820152608401610c62565b601154601354611ae8908390613955565b1115611b405760405162461bcd60e51b815260206004820152602160248201527f4d6573736167653a206d6178206769667420737570706c7920657863656564656044820152601960fa1b6064820152608401610c62565b6000805b82811015611d86576000848483818110611b6057611b60613aa5565b9050602002016020810190611b7591906133be565b6001600160a01b03161415611bdb5760405162461bcd60e51b815260206004820152602660248201527f4d6573736167653a20726563657069656e7420697320746865206e756c6c206160448201526564647265737360d01b6064820152608401610c62565b611be9601980546001019055565b6019549150611c1e848483818110611c0357611c03613aa5565b9050602002016020810190611c1891906133be565b836127d2565b601e6000858584818110611c3457611c34613aa5565b9050602002016020810190611c4991906133be565b6001600160a01b03168152602081019190915260400160002054611c6e906001613955565b601e6000868685818110611c8457611c84613aa5565b9050602002016020810190611c9991906133be565b6001600160a01b03166001600160a01b031681526020019081526020016000208190555060206000858584818110611cd357611cd3613aa5565b9050602002016020810190611ce891906133be565b6001600160a01b03168152602081019190915260400160002054611d0d906001613955565b60206000868685818110611d2357611d23613aa5565b9050602002016020810190611d3891906133be565b6001600160a01b03168152602081019190915260400160002055601554611d60906001613955565b601555601354611d71906001613955565b60135580611d7e81613a1e565b915050611b44565b50505050565b600a546001600160a01b03163314611db65760405162461bcd60e51b8152600401610c6290613850565b60005b81811015610d98576000838383818110611dd557611dd5613aa5565b9050602002016020810190611dea91906133be565b6001600160a01b03161415611e4d5760405162461bcd60e51b8152602060048201526024808201527f4d6573736167653a2043616e27742072656d6f76652061207a65726f206164646044820152637265737360e01b6064820152608401610c62565b601c6000848484818110611e6357611e63613aa5565b9050602002016020810190611e7891906133be565b6001600160a01b0316815260208101919091526040016000205460ff16151560011415611ef5576000601c6000858585818110611eb757611eb7613aa5565b9050602002016020810190611ecc91906133be565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790555b80611eff81613a1e565b915050611db9565b611f113383612437565b611f2d5760405162461bcd60e51b8152600401610c6290613885565b611d86848484846127f0565b6000818152600260205260409020546060906001600160a01b0316611fb85760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610c62565b6000611fc2612823565b90506000815111611fe2576040518060200160405280600081525061200d565b80611fec84612832565b604051602001611ffd929190613727565b6040516020818303038152906040525b9392505050565b600a546001600160a01b0316331461203e5760405162461bcd60e51b8152600401610c6290613850565b60168054821515620100000262ff0000199091161790556040517ff9639a949592ffb0c1afab06e7e6805171c8f5a77f018dea799ac9b452b62b5e906110a490831515815260200190565b600a546001600160a01b031633146120b35760405162461bcd60e51b8152600401610c6290613850565b6001600160a01b0381166121185760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610c62565b61212181612780565b50565b600a54600160a01b900460ff161561214e5760405162461bcd60e51b8152600401610c629061391e565b601654610100900460ff1661216b5761216681612930565b612174565b61217481612be0565b601054816015546121859190613955565b1415612121576021805460ff191660039081179091556040517f0a97a4ee45751e2abf3e4fc8946939630b11b371ea8ae39ccdc3056e98f5cc3f916110a491600291906137a1565b6000808060215460ff1660038111156121e8576121e8613a79565b14156121f2575060015b600160215460ff16600381111561220b5761220b613a79565b1415612215575060025b600260215460ff16600381111561222e5761222e613a79565b1415612238575060035b600360215460ff16600381111561225157612251613a79565b141561225b575060045b919050565b60006001600160e01b031982166380ac58cd60e01b148061229157506001600160e01b03198216635b5e139f60e01b145b80610b5557506301ffc9a760e01b6001600160e01b0319831614610b55565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906122e582611465565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b8047101561236e5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610c62565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146123bb576040519150601f19603f3d011682016040523d82523d6000602084013e6123c0565b606091505b5050905080610d985760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610c62565b6000818152600260205260408120546001600160a01b03166124b05760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610c62565b60006124bb83611465565b9050806001600160a01b0316846001600160a01b031614806124f65750836001600160a01b03166124eb84610bed565b6001600160a01b0316145b8061252657506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661254182611465565b6001600160a01b0316146125a95760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610c62565b6001600160a01b03821661260b5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610c62565b612616838383612e3f565b6126216000826122b0565b6001600160a01b038316600090815260036020526040812080546001929061264a9084906139a0565b90915550506001600160a01b0382166000908152600360205260408120805460019290612678908490613955565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b60006126e482611465565b90506126f281600084612e3f565b6126fd6000836122b0565b6001600160a01b03811660009081526003602052604081208054600192906127269084906139a0565b909155505060008281526002602052604080822080546001600160a01b0319169055518391906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908390a45050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6127ec828260405180602001604052806000815250612ef7565b5050565b6127fb84848461252e565b61280784848484612f2a565b611d865760405162461bcd60e51b8152600401610c62906137fe565b606060188054610b6a906139e3565b6060816128565750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612880578061286a81613a1e565b91506128799050600a8361396d565b915061285a565b60008167ffffffffffffffff81111561289b5761289b613abb565b6040519080825280601f01601f1916602001820160405280156128c5576020820181803683370190505b5090505b8415612526576128da6001836139a0565b91506128e7600a86613a39565b6128f2906030613955565b60f81b81838151811061290757612907613aa5565b60200101906001600160f81b031916908160001a905350612929600a8661396d565b94506128c9565b60165462010000900460ff16151560011461298d5760405162461bcd60e51b815260206004820152601c60248201527f596f7520617265206e6f74206f6e207468652077686974656c697374000000006044820152606401610c62565b336000908152601c602052604090205460ff1615156001146129f15760405162461bcd60e51b815260206004820152601c60248201527f596f7520617265206e6f74206f6e207468652077686974656c697374000000006044820152606401610c62565b601254336000908152601d6020526040902054612a0f908390613955565b1115612a5d5760405162461bcd60e51b815260206004820152601a60248201527f596f752063616e206f6e6c79206d696e74203220746f6b656e730000000000006044820152606401610c62565b60105481601554612a6e9190613955565b1115612abc5760405162461bcd60e51b815260206004820152601c60248201527f4d6573736167653a206d617820737570706c79206578636565646564000000006044820152606401610c62565b6000612ac760175490565b905034612ad48383613981565b1115612af25760405162461bcd60e51b8152600401610c62906138d6565b6000805b83811015612b9e57612b0c601980546001019055565b6019549150612b1b33836127d2565b336000908152601d6020526040902054612b36908590613955565b336000908152601d602090815260408083209390935580522054612b5b908590613955565b336000908152602080526040902055601554612b78906001613955565b601555601454612b89906001613955565b60145580612b9681613a1e565b915050612af6565b50604080518481526020810184905233917f40038d437ff4cece80b344923544b3c8527d7f6aa2f9202a9734d5d9c7ffa0e091015b60405180910390a2505050565b60165460ff610100909104161515600114612c335760405162461bcd60e51b815260206004820152601360248201527229b0b6329034b9b713ba1039ba30b93a32b21760691b6044820152606401610c62565b60008111612c7a5760405162461bcd60e51b815260206004820152601460248201527313595cdcd859d94e881e995c9bc8185b5bdd5b9d60621b6044820152606401610c62565b601254811115612cd65760405162461bcd60e51b815260206004820152602160248201527f43616e206f6e6c79206d696e7420313020746f6b656e7320617420612074696d6044820152606560f81b6064820152608401610c62565b60105481601554612ce79190613955565b1115612d355760405162461bcd60e51b815260206004820152601c60248201527f4d6573736167653a206d617820737570706c79206578636565646564000000006044820152606401610c62565b6000612d4060175490565b905034612d4d8383613981565b1115612d6b5760405162461bcd60e51b8152600401610c62906138d6565b6000805b83811015612e0657612d85601980546001019055565b6019549150612d9433836127d2565b336000908152601f6020526040902054612daf908590613955565b336000908152601f602090815260408083209390935580522054612dd4908590613955565b336000908152602080526040902055601554612df1906001613955565b60155580612dfe81613a1e565b915050612d6f565b50604080518481526020810184905233917f0d905a2e95960c2ad9e627d829fae00e7f3b9794c3b62a5c376cf5deee8f2a209101612bd3565b6001600160a01b038316612e9a57612e9581600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612ebd565b816001600160a01b0316836001600160a01b031614612ebd57612ebd8382613037565b6001600160a01b038216612ed457610d98816130d4565b826001600160a01b0316826001600160a01b031614610d9857610d988282613183565b612f0183836131c7565b612f0e6000848484612f2a565b610d985760405162461bcd60e51b8152600401610c62906137fe565b60006001600160a01b0384163b1561302c57604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612f6e903390899088908890600401613756565b602060405180830381600087803b158015612f8857600080fd5b505af1925050508015612fb8575060408051601f3d908101601f19168201909252612fb591810190613643565b60015b613012573d808015612fe6576040519150601f19603f3d011682016040523d82523d6000602084013e612feb565b606091505b50805161300a5760405162461bcd60e51b8152600401610c62906137fe565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612526565b506001949350505050565b60006001613044846115d5565b61304e91906139a0565b6000838152600760205260409020549091508082146130a1576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906130e6906001906139a0565b6000838152600960205260408120546008805493945090928490811061310e5761310e613aa5565b90600052602060002001549050806008838154811061312f5761312f613aa5565b600091825260208083209091019290925582815260099091526040808220849055858252812055600880548061316757613167613a8f565b6001900381819060005260206000200160009055905550505050565b600061318e836115d5565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b03821661321d5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610c62565b6000818152600260205260409020546001600160a01b0316156132825760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610c62565b61328e60008383612e3f565b6001600160a01b03821660009081526003602052604081208054600192906132b7908490613955565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054613321906139e3565b90600052602060002090601f0160209004810192826133435760008555613389565b82601f1061335c5782800160ff19823516178555613389565b82800160010185558215613389579182015b8281111561338957823582559160200191906001019061336e565b50613395929150613399565b5090565b5b80821115613395576000815560010161339a565b8035801515811461225b57600080fd5b6000602082840312156133d057600080fd5b813561200d81613ad1565b600080604083850312156133ee57600080fd5b82356133f981613ad1565b9150602083013561340981613ad1565b809150509250929050565b60008060006060848603121561342957600080fd5b833561343481613ad1565b9250602084013561344481613ad1565b929592945050506040919091013590565b6000806000806080858703121561346b57600080fd5b843561347681613ad1565b9350602085013561348681613ad1565b925060408501359150606085013567ffffffffffffffff808211156134aa57600080fd5b818701915087601f8301126134be57600080fd5b8135818111156134d0576134d0613abb565b604051601f8201601f19908116603f011681019083821181831017156134f8576134f8613abb565b816040528281528a602084870101111561351157600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561354857600080fd5b823561355381613ad1565b9150613561602084016133ae565b90509250929050565b6000806040838503121561357d57600080fd5b823561358881613ad1565b946020939093013593505050565b600080602083850312156135a957600080fd5b823567ffffffffffffffff808211156135c157600080fd5b818501915085601f8301126135d557600080fd5b8135818111156135e457600080fd5b8660208260051b85010111156135f957600080fd5b60209290920196919550909350505050565b60006020828403121561361d57600080fd5b61200d826133ae565b60006020828403121561363857600080fd5b813561200d81613ae6565b60006020828403121561365557600080fd5b815161200d81613ae6565b6000806020838503121561367357600080fd5b823567ffffffffffffffff8082111561368b57600080fd5b818501915085601f83011261369f57600080fd5b8135818111156136ae57600080fd5b8660208285010111156135f957600080fd5b6000602082840312156136d257600080fd5b5035919050565b600081518084526136f18160208601602086016139b7565b601f01601f19169290920160200192915050565b6004811061372357634e487b7160e01b600052602160045260246000fd5b9052565b600083516137398184602088016139b7565b83519083019061374d8183602088016139b7565b01949350505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090613789908301846136d9565b9695505050505050565b60208101610b558284613705565b604081016137af8285613705565b61200d6020830184613705565b60208152816020820152818360408301376000818301604090810191909152601f909201601f19160101919050565b60208152600061200d60208301846136d9565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526028908201527f4d6573736167653a2045746865722076616c75652073656e74206973206e6f746040820152670818dbdc9c9958dd60c21b606082015260800190565b6020808252601c908201527f5472616e73616374696f6e206973206e6f7420617661696c61626c6500000000604082015260600190565b6000821982111561396857613968613a4d565b500190565b60008261397c5761397c613a63565b500490565b600081600019048311821515161561399b5761399b613a4d565b500290565b6000828210156139b2576139b2613a4d565b500390565b60005b838110156139d25781810151838201526020016139ba565b83811115611d865750506000910152565b600181811c908216806139f757607f821691505b60208210811415613a1857634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415613a3257613a32613a4d565b5060010190565b600082613a4857613a48613a63565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052602160045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160a01b038116811461212157600080fd5b6001600160e01b03198116811461212157600080fdfea2646970667358221220236e0e8ee9926baa71378a414e0d0306b45280a89781d451f986ab409f90060b64736f6c63430008070033

Deployed Bytecode Sourcemap

204:9023:11:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2694:40:14;682:10:1;2694:40:14;;;-1:-1:-1;;;;;7149:32:17;;;7131:51;;2724:9:14;7213:2:17;7198:18;;7191:34;7104:18;2694:40:14;;;;;;;204:9023:11;;;;;505:23;;;;;;;;;;;;;;;;;;;24396:25:17;;;24384:2;24369:18;505:23:11;;;;;;;;937:224:5;;;;;;;;;;-1:-1:-1;937:224:5;;;;;:::i;:::-;;:::i;:::-;;;8173:14:17;;8166:22;8148:41;;8136:2;8121:18;937:224:5;8008:187:17;2426:100:4;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;535:25:11:-;;;;;;;;;;-1:-1:-1;535:25:11;;;;;;;;3985:221:4;;;;;;;;;;-1:-1:-1;3985:221:4;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;6905:32:17;;;6887:51;;6875:2;6860:18;3985:221:4;6741:203:17;3508:411:4;;;;;;;;;;-1:-1:-1;3508:411:4;;;;;:::i;:::-;;:::i;:::-;;1049:47:11;;;;;;;;;;-1:-1:-1;1049:47:11;;;;;:::i;:::-;;;;;;;;;;;;;;1577:113:5;;;;;;;;;;-1:-1:-1;1665:10:5;:17;1577:113;;3900:613:14;;;;;;;;;;-1:-1:-1;3900:613:14;;;;;:::i;:::-;;:::i;4875:339:4:-;;;;;;;;;;-1:-1:-1;4875:339:4;;;;;:::i;:::-;;:::i;3348:412:11:-;;;;;;;;;;-1:-1:-1;3348:412:11;;;;;:::i;:::-;;:::i;323:36::-;;;;;;;;;;;;;;;;1245:256:5;;;;;;;;;;-1:-1:-1;1245:256:5;;;;;:::i;:::-;;:::i;2825:91:14:-;;;;;;;;;;-1:-1:-1;2896:12:14;;2825:91;;1025:105:13;;;;;;;;;;;;;:::i;5285:185:4:-;;;;;;;;;;-1:-1:-1;5285:185:4;;;;;:::i;:::-;;:::i;8440:302:11:-;;;;;;;;;;-1:-1:-1;8440:302:11;;;;;:::i;:::-;;:::i;1767:233:5:-;;;;;;;;;;-1:-1:-1;1767:233:5;;;;;:::i;:::-;;:::i;995:47:11:-;;;;;;;;;;-1:-1:-1;995:47:11;;;;;:::i;:::-;;;;;;;;;;;;;;2022:156;;;;;;;;;;-1:-1:-1;2022:156:11;;;;;:::i;:::-;;:::i;4034:190::-;;;;;;;;;;-1:-1:-1;4034:190:11;;;;;:::i;:::-;;:::i;284:26:13:-;;;;;;;;;;-1:-1:-1;284:26:13;;;;-1:-1:-1;;;284:26:13;;;;;;366:33:11;;;;;;;;;;;;;;;;2120:239:4;;;;;;;;;;-1:-1:-1;2120:239:4;;;;;:::i;:::-;;:::i;696:21:11:-;;;;;;;;;;;;;:::i;4232:166::-;;;;;;;;;;-1:-1:-1;4232:166:11;;;;;:::i;:::-;;:::i;1850:208:4:-;;;;;;;;;;-1:-1:-1;1850:208:4;;;;;:::i;:::-;;:::i;1650:94:12:-;;;;;;;;;;;;;:::i;2294:451:11:-;;;;;;;;;;-1:-1:-1;2294:451:11;;;;;:::i;:::-;;:::i;567:29::-;;;;;;;;;;-1:-1:-1;567:29:11;;;;;;;;;;;1103:48;;;;;;;;;;-1:-1:-1;1103:48:11;;;;;:::i;:::-;;;;;;;;;;;;;;827:103:13;;;;;;;;;;;;;:::i;3600:100:14:-;;;;;;;;;;-1:-1:-1;3600:100:14;;;;;:::i;:::-;;:::i;938:50:11:-;;;;;;;;;;-1:-1:-1;938:50:11;;;;;:::i;:::-;;;;;;;;;;;;;;999:87:12;;;;;;;;;;-1:-1:-1;1072:6:12;;-1:-1:-1;;;;;1072:6:12;999:87;;603:34:11;;;;;;;;;;-1:-1:-1;603:34:11;;;;;;;;;;;4408:172;;;;;;;;;;-1:-1:-1;4408:172:11;;;;;:::i;:::-;;:::i;2595:104:4:-;;;;;;;;;;;;;:::i;3400:109:14:-;;;;;;;;;;-1:-1:-1;3400:109:14;;;;;:::i;:::-;-1:-1:-1;;;;;3483:18:14;3456:7;3483:18;;;:9;:18;;;;;;;3400:109;3768:85:11;;;;;;;;;;-1:-1:-1;3836:9:11;;3768:85;;406:27;;;;;;;;;;;;;;;;4278:295:4;;;;;;;;;;-1:-1:-1;4278:295:4;;;;;:::i;:::-;;:::i;1269:30:11:-;;;;;;;;;;-1:-1:-1;1269:30:11;;;;;;;;;;;;;;;:::i;4588:1032::-;;;;;;;;;;-1:-1:-1;4588:1032:11;;;;;:::i;:::-;;:::i;2881:459::-;;;;;;;;;;-1:-1:-1;2881:459:11;;;;;:::i;:::-;;:::i;5541:328:4:-;;;;;;;;;;-1:-1:-1;5541:328:4;;;;;:::i;:::-;;:::i;2770:334::-;;;;;;;;;;-1:-1:-1;2770:334:4;;;;;:::i;:::-;;:::i;471:27:11:-;;;;;;;;;;;;;;;;3196:105:14;;;;;;;;;;-1:-1:-1;3196:105:14;;;;;:::i;:::-;-1:-1:-1;;;;;3277:16:14;3250:7;3277:16;;;:7;:16;;;;;;;3196:105;2753:120:11;;;;;;;;;;-1:-1:-1;2753:120:11;;;;;:::i;:::-;-1:-1:-1;;;;;2843:22:11;2819:4;2843:22;;;:12;:22;;;;;;;;;2753:120;3010:95:14;;;;;;;;;;-1:-1:-1;3083:14:14;;3010:95;;3858:172:11;;;;;;;;;;-1:-1:-1;3858:172:11;;;;;:::i;:::-;;:::i;4644:164:4:-;;;;;;;;;;-1:-1:-1;4644:164:4;;;;;:::i;:::-;-1:-1:-1;;;;;4765:25:4;;;4741:4;4765:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;4644:164;440:24:11;;;;;;;;;;;;;;;;1899:192:12;;;;;;;;;;-1:-1:-1;1899:192:12;;;;;:::i;:::-;;:::i;7973:459:11:-;;;;;;:::i;:::-;;:::i;8750:474::-;;;;;;;;;;;;;:::i;644:45::-;;;;;;;;;;;;;;;;937:224:5;1039:4;-1:-1:-1;;;;;;1063:50:5;;-1:-1:-1;;;1063:50:5;;:90;;;1117:36;1141:11;1117:23;:36::i;:::-;1056:97;937:224;-1:-1:-1;;937:224:5:o;2426:100:4:-;2480:13;2513:5;2506:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2426:100;:::o;3985:221::-;4061:7;7468:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7468:16:4;4081:73;;;;-1:-1:-1;;;4081:73:4;;18183:2:17;4081:73:4;;;18165:21:17;18222:2;18202:18;;;18195:30;18261:34;18241:18;;;18234:62;-1:-1:-1;;;18312:18:17;;;18305:42;18364:19;;4081:73:4;;;;;;;;;-1:-1:-1;4174:24:4;;;;:15;:24;;;;;;-1:-1:-1;;;;;4174:24:4;;3985:221::o;3508:411::-;3589:13;3605:23;3620:7;3605:14;:23::i;:::-;3589:39;;3653:5;-1:-1:-1;;;;;3647:11:4;:2;-1:-1:-1;;;;;3647:11:4;;;3639:57;;;;-1:-1:-1;;;3639:57:4;;20132:2:17;3639:57:4;;;20114:21:17;20171:2;20151:18;;;20144:30;20210:34;20190:18;;;20183:62;-1:-1:-1;;;20261:18:17;;;20254:31;20302:19;;3639:57:4;19930:397:17;3639:57:4;682:10:1;-1:-1:-1;;;;;3731:21:4;;;;:62;;-1:-1:-1;3756:37:4;3773:5;682:10:1;4644:164:4;:::i;3756:37::-;3709:168;;;;-1:-1:-1;;;3709:168:4;;16576:2:17;3709:168:4;;;16558:21:17;16615:2;16595:18;;;16588:30;16654:34;16634:18;;;16627:62;16725:26;16705:18;;;16698:54;16769:19;;3709:168:4;16374:420:17;3709:168:4;3890:21;3899:2;3903:7;3890:8;:21::i;:::-;3578:341;3508:411;;:::o;3900:613:14:-;-1:-1:-1;;;;;3976:16:14;;3995:1;3976:16;;;:7;:16;;;;;;3968:71;;;;-1:-1:-1;;;3968:71:14;;12690:2:17;3968:71:14;;;12672:21:17;12729:2;12709:18;;;12702:30;12768:34;12748:18;;;12741:62;-1:-1:-1;;;12819:18:17;;;12812:36;12865:19;;3968:71:14;12488:402:17;3968:71:14;4052:21;4100:14;;4076:21;:38;;;;:::i;:::-;-1:-1:-1;;;;;4195:18:14;;4125:15;4195:18;;;:9;:18;;;;;;;;;4180:12;;4160:7;:16;;;;;;;4052:62;;-1:-1:-1;4125:15:14;;4144:32;;4052:62;4144:32;:::i;:::-;4143:49;;;;:::i;:::-;:70;;;;:::i;:::-;4125:88;-1:-1:-1;4234:12:14;4226:68;;;;-1:-1:-1;;;4226:68:14;;15054:2:17;4226:68:14;;;15036:21:17;15093:2;15073:18;;;15066:30;15132:34;15112:18;;;15105:62;-1:-1:-1;;;15183:18:17;;;15176:41;15234:19;;4226:68:14;14852:407:17;4226:68:14;-1:-1:-1;;;;;4328:18:14;;;;;;:9;:18;;;;;;:28;;4349:7;;4328:28;:::i;:::-;-1:-1:-1;;;;;4307:18:14;;;;;;:9;:18;;;;;:49;4384:14;;:24;;4401:7;;4384:24;:::i;:::-;4367:14;:41;4421:35;4439:7;4448;4421:17;:35::i;:::-;4472:33;;;-1:-1:-1;;;;;7149:32:17;;7131:51;;7213:2;7198:18;;7191:34;;;4472:33:14;;7104:18:17;4472:33:14;;;;;;;3957:556;;3900:613;:::o;4875:339:4:-;5070:41;682:10:1;5103:7:4;5070:18;:41::i;:::-;5062:103;;;;-1:-1:-1;;;5062:103:4;;;;;;;:::i;:::-;5178:28;5188:4;5194:2;5198:7;5178:9;:28::i;3348:412:11:-;1072:6:12;;-1:-1:-1;;;;;1072:6:12;682:10:1;1219:23:12;1211:68;;;;-1:-1:-1;;;1211:68:12;;;;;;;:::i;:::-;3429:17:11::1;:38:::0;;;::::1;;;;-1:-1:-1::0;;3429:38:11;;::::1;;::::0;;3483:43:::1;::::0;::::1;::::0;::::1;::::0;3449:18;8173:14:17;8166:22;8148:41;;8136:2;8121:18;;8008:187;3483:43:11::1;;;;;;;;3537:17;:24:::0;;-1:-1:-1;;3537:24:11::1;;;::::0;;3577:29:::1;::::0;-1:-1:-1;8148:41:17;;3577:29:11::1;::::0;8136:2:17;8121:18;3577:29:11::1;;;;;;;3628:2;3617:8;:13:::0;3641:8:::1;:30:::0;;-1:-1:-1;;3641:30:11::1;3652:19;3641:30:::0;;::::1;::::0;;;3687:65:::1;::::0;::::1;::::0;::::1;::::0;3641:30;;3652:19;3687:65:::1;:::i;:::-;;;;;;;;3348:412:::0;:::o;1245:256:5:-;1342:7;1378:23;1395:5;1378:16;:23::i;:::-;1370:5;:31;1362:87;;;;-1:-1:-1;;;1362:87:5;;10338:2:17;1362:87:5;;;10320:21:17;10377:2;10357:18;;;10350:30;10416:34;10396:18;;;10389:62;-1:-1:-1;;;10467:18:17;;;10460:41;10518:19;;1362:87:5;10136:407:17;1362:87:5;-1:-1:-1;;;;;;1467:19:5;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;1245:256::o;1025:105:13:-;1072:6:12;;-1:-1:-1;;;;;1072:6:12;682:10:1;1219:23:12;1211:68;;;;-1:-1:-1;;;1211:68:12;;;;;;;:::i;:::-;680:6:13::1;::::0;-1:-1:-1;;;680:6:13;::::1;;;672:43;;;::::0;-1:-1:-1;;;672:43:13;;15820:2:17;672:43:13::1;::::0;::::1;15802:21:17::0;15859:2;15839:18;;;15832:30;15898:26;15878:18;;;15871:54;15942:18;;672:43:13::1;15618:348:17::0;672:43:13::1;1083:6:::2;:14:::0;;-1:-1:-1;;;;1083:14:13::2;::::0;;1113:9:::2;::::0;::::2;::::0;1092:5:::2;::::0;1113:9:::2;1025:105::o:0;5285:185:4:-;5423:39;5440:4;5446:2;5450:7;5423:39;;;;;;;;;;;;:16;:39::i;8440:302:11:-;8499:13;;;;8491:51;;;;-1:-1:-1;;;8491:51:11;;15466:2:17;8491:51:11;;;15448:21:17;15505:2;15485:18;;;15478:30;15544:27;15524:18;;;15517:55;15589:18;;8491:51:11;15264:349:17;8491:51:11;8575:39;8594:10;8606:7;8575:18;:39::i;:::-;8553:122;;;;-1:-1:-1;;;8553:122:11;;22177:2:17;8553:122:11;;;22159:21:17;22216:2;22196:18;;;22189:30;22255:34;22235:18;;;22228:62;-1:-1:-1;;;22306:18:17;;;22299:31;22347:19;;8553:122:11;21975:397:17;8553:122:11;8686:14;8692:7;8686:5;:14::i;:::-;8733:1;8722:8;;:12;;;;:::i;:::-;8711:8;:23;-1:-1:-1;8440:302:11:o;1767:233:5:-;1842:7;1878:30;1665:10;:17;;1577:113;1878:30;1870:5;:38;1862:95;;;;-1:-1:-1;;;1862:95:5;;21764:2:17;1862:95:5;;;21746:21:17;21803:2;21783:18;;;21776:30;21842:34;21822:18;;;21815:62;-1:-1:-1;;;21893:18:17;;;21886:42;21945:19;;1862:95:5;21562:408:17;1862:95:5;1975:10;1986:5;1975:17;;;;;;;;:::i;:::-;;;;;;;;;1968:24;;1767:233;;;:::o;2022:156:11:-;1072:6:12;;-1:-1:-1;;;;;1072:6:12;682:10:1;1219:23:12;1211:68;;;;-1:-1:-1;;;1211:68:12;;;;;;;:::i;:::-;2103:23:11::1;:7;2113:13:::0;;2103:23:::1;:::i;:::-;;2142:28;2156:13;;2142:28;;;;;;;:::i;:::-;;;;;;;;2022:156:::0;;:::o;4034:190::-;1072:6:12;;-1:-1:-1;;;;;1072:6:12;682:10:1;1219:23:12;1211:68;;;;-1:-1:-1;;;1211:68:12;;;;;;;:::i;:::-;4119:17:11::1;:38:::0;;;::::1;;;;-1:-1:-1::0;;4119:38:11;;::::1;;::::0;;4173:43:::1;::::0;::::1;::::0;::::1;::::0;4139:18;8173:14:17;8166:22;8148:41;;8136:2;8121:18;;8008:187;2120:239:4;2192:7;2228:16;;;:7;:16;;;;;;-1:-1:-1;;;;;2228:16:4;2263:19;2255:73;;;;-1:-1:-1;;;2255:73:4;;17412:2:17;2255:73:4;;;17394:21:17;17451:2;17431:18;;;17424:30;17490:34;17470:18;;;17463:62;-1:-1:-1;;;17541:18:17;;;17534:39;17590:19;;2255:73:4;17210:405:17;696:21:11;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;4232:166::-;1072:6:12;;-1:-1:-1;;;;;1072:6:12;682:10:1;1219:23:12;1211:68;;;;-1:-1:-1;;;1211:68:12;;;;;;;:::i;:::-;4309:13:11::1;:30:::0;;-1:-1:-1;;4309:30:11::1;::::0;::::1;;::::0;;::::1;::::0;;;4355:35:::1;::::0;8148:41:17;;;4355:35:11::1;::::0;8136:2:17;8121:18;4355:35:11::1;8008:187:17::0;1850:208:4;1922:7;-1:-1:-1;;;;;1950:19:4;;1942:74;;;;-1:-1:-1;;;1942:74:4;;17001:2:17;1942:74:4;;;16983:21:17;17040:2;17020:18;;;17013:30;17079:34;17059:18;;;17052:62;-1:-1:-1;;;17130:18:17;;;17123:40;17180:19;;1942:74:4;16799:406:17;1942:74:4;-1:-1:-1;;;;;;2034:16:4;;;;;:9;:16;;;;;;;1850:208::o;1650:94:12:-;1072:6;;-1:-1:-1;;;;;1072:6:12;682:10:1;1219:23:12;1211:68;;;;-1:-1:-1;;;1211:68:12;;;;;;;:::i;:::-;1715:21:::1;1733:1;1715:9;:21::i;:::-;1650:94::o:0;2294:451:11:-;1072:6:12;;-1:-1:-1;;;;;1072:6:12;682:10:1;1219:23:12;1211:68;;;;-1:-1:-1;;;1211:68:12;;;;;;;:::i;:::-;2409:11:11::1;2404:334;2426:23:::0;;::::1;2404:334;;;2526:1;2499:10:::0;;2510:3;2499:15;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;2499:29:11::1;;;2473:124;;;::::0;-1:-1:-1;;;2473:124:11;;12288:2:17;2473:124:11::1;::::0;::::1;12270:21:17::0;12327:2;12307:18;;;12300:30;12366:34;12346:18;;;12339:62;-1:-1:-1;;;12417:18:17;;;12410:31;12458:19;;2473:124:11::1;12086:397:17::0;2473:124:11::1;2616:12;:29;2629:10;;2640:3;2629:15;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;2616:29:11::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;2616:29:11;;::::1;;2612:115;;2707:4;2675:12;:29;2688:10;;2699:3;2688:15;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;2675:29:11::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;2675:29:11;:36;;-1:-1:-1;;2675:36:11::1;::::0;::::1;;::::0;;;::::1;::::0;;2612:115:::1;2451:5:::0;::::1;::::0;::::1;:::i;:::-;;;;2404:334;;827:103:13::0;1072:6:12;;-1:-1:-1;;;;;1072:6:12;682:10:1;1219:23:12;1211:68;;;;-1:-1:-1;;;1211:68:12;;;;;;;:::i;:::-;470:6:13::1;::::0;-1:-1:-1;;;470:6:13;::::1;;;469:7;461:48;;;;-1:-1:-1::0;;;461:48:13::1;;;;;;;:::i;:::-;886:6:::2;:13:::0;;-1:-1:-1;;;;886:13:13::2;-1:-1:-1::0;;;886:13:13::2;::::0;;915:7:::2;::::0;::::2;::::0;886:13;;915:7:::2;827:103::o:0;3600:100:14:-;3651:7;3678;3686:5;3678:14;;;;;;;;:::i;:::-;;;;;;;;;;;-1:-1:-1;;;;;3678:14:14;;3600:100;-1:-1:-1;;3600:100:14:o;4408:172:11:-;1072:6:12;;-1:-1:-1;;;;;1072:6:12;682:10:1;1219:23:12;1211:68;;;;-1:-1:-1;;;1211:68:12;;;;;;;:::i;:::-;4485:27:11::1;:7:::0;4495:17:::1;4485:27;:::i;:::-;4473:9;:39:::0;4528:44:::1;4544:27;:7:::0;4554:17:::1;4544:27;:::i;:::-;4528:44;::::0;24396:25:17;;;24384:2;24369:18;4528:44:11::1;24250:177:17::0;2595:104:4;2651:13;2684:7;2677:14;;;;;:::i;4278:295::-;-1:-1:-1;;;;;4381:24:4;;682:10:1;4381:24:4;;4373:62;;;;-1:-1:-1;;;4373:62:4;;13502:2:17;4373:62:4;;;13484:21:17;13541:2;13521:18;;;13514:30;13580:27;13560:18;;;13553:55;13625:18;;4373:62:4;13300:349:17;4373:62:4;682:10:1;4448:32:4;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;4448:42:4;;;;;;;;;;;;:53;;-1:-1:-1;;4448:53:4;;;;;;;;;;4517:48;;8148:41:17;;;4448:42:4;;682:10:1;4517:48:4;;8121:18:17;4517:48:4;;;;;;;4278:295;;:::o;4588:1032:11:-;1072:6:12;;-1:-1:-1;;;;;1072:6:12;682:10:1;1219:23:12;1211:68;;;;-1:-1:-1;;;1211:68:12;;;;;;;:::i;:::-;470:6:13::1;::::0;-1:-1:-1;;;470:6:13;::::1;;;469:7;461:48;;;;-1:-1:-1::0;;;461:48:13::1;;;;;;;:::i;:::-;4767:14:11::2;::::0;4735:8:::2;::::0;:28:::2;::::0;4746:10;;4735:28:::2;:::i;:::-;:46;;4713:130;;;::::0;-1:-1:-1;;;4713:130:11;;16173:2:17;4713:130:11::2;::::0;::::2;16155:21:17::0;16212:2;16192:18;;;16185:30;16251:34;16231:18;;;16224:62;-1:-1:-1;;;16302:18:17;;;16295:32;16344:19;;4713:130:11::2;15971:398:17::0;4713:130:11::2;4911:13;::::0;4878:9:::2;::::0;:29:::2;::::0;4890:10;;4878:29:::2;:::i;:::-;:46;;4856:129;;;::::0;-1:-1:-1;;;4856:129:11;;9936:2:17;4856:129:11::2;::::0;::::2;9918:21:17::0;9975:2;9955:18;;;9948:30;10014:34;9994:18;;;9987:62;-1:-1:-1;;;10065:18:17;;;10058:31;10106:19;;4856:129:11::2;9734:397:17::0;4856:129:11::2;4998:18;::::0;5027:586:::2;5049:23:::0;;::::2;5027:586;;;5149:1;5122:10:::0;;5133:3;5122:15;;::::2;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;5122:29:11::2;;;5096:129;;;::::0;-1:-1:-1;;;5096:129:11;;21357:2:17;5096:129:11::2;::::0;::::2;21339:21:17::0;21396:2;21376:18;;;21369:30;21435:34;21415:18;;;21408:62;-1:-1:-1;;;21486:18:17;;;21479:36;21532:19;;5096:129:11::2;21155:402:17::0;5096:129:11::2;5240:21;:9;1004:19:2::0;;1022:1;1004:19;;;915:127;5240:21:11::2;5289:9;885:14:2::0;5276:32:11::2;;5323:38;5333:10;;5344:3;5333:15;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;5350:10;5323:9;:38::i;:::-;5408:12;:29;5421:10;;5432:3;5421:15;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;5408:29:11::2;::::0;;::::2;::::0;::::2;::::0;;;;;;-1:-1:-1;5408:29:11;;:33:::2;::::0;5440:1:::2;5408:33;:::i;:::-;5376:12;:29;5389:10;;5400:3;5389:15;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;5376:29:11::2;-1:-1:-1::0;;;;;5376:29:11::2;;;;;;;;;;;;:65;;;;5489:13;:30;5503:10;;5514:3;5503:15;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;5489:30:11::2;::::0;;::::2;::::0;::::2;::::0;;;;;;-1:-1:-1;5489:30:11;;:34:::2;::::0;5522:1:::2;5489:34;:::i;:::-;5456:13;:30;5470:10;;5481:3;5470:15;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;5456:30:11::2;::::0;;::::2;::::0;::::2;::::0;;;;;;-1:-1:-1;5456:30:11;:67;5549:8:::2;::::0;:12:::2;::::0;5560:1:::2;5549:12;:::i;:::-;5538:8;:23:::0;5588:9:::2;::::0;:13:::2;::::0;5600:1:::2;5588:13;:::i;:::-;5576:9;:25:::0;5074:5;::::2;::::0;::::2;:::i;:::-;;;;5027:586;;;;4702:918;4588:1032:::0;;:::o;2881:459::-;1072:6:12;;-1:-1:-1;;;;;1072:6:12;682:10:1;1219:23:12;1211:68;;;;-1:-1:-1;;;1211:68:12;;;;;;;:::i;:::-;3001:11:11::1;2996:337;3018:23:::0;;::::1;2996:337;;;3118:1;3091:10:::0;;3102:3;3091:15;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;3091:29:11::1;;;3065:127;;;::::0;-1:-1:-1;;;3065:127:11;;20534:2:17;3065:127:11::1;::::0;::::1;20516:21:17::0;20573:2;20553:18;;;20546:30;20612:34;20592:18;;;20585:62;-1:-1:-1;;;20663:18:17;;;20656:34;20707:19;;3065:127:11::1;20332:400:17::0;3065:127:11::1;3211:12;:29;3224:10;;3235:3;3224:15;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;3211:29:11::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;3211:29:11;;::::1;;:37;;:29:::0;:37:::1;3207:115;;;3301:5;3269:12;:29;3282:10;;3293:3;3282:15;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;3269:29:11::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;3269:29:11;:37;;-1:-1:-1;;3269:37:11::1;::::0;::::1;;::::0;;;::::1;::::0;;3207:115:::1;3043:5:::0;::::1;::::0;::::1;:::i;:::-;;;;2996:337;;5541:328:4::0;5716:41;682:10:1;5749:7:4;5716:18;:41::i;:::-;5708:103;;;;-1:-1:-1;;;5708:103:4;;;;;;;:::i;:::-;5822:39;5836:4;5842:2;5846:7;5855:5;5822:13;:39::i;2770:334::-;7444:4;7468:16;;;:7;:16;;;;;;2843:13;;-1:-1:-1;;;;;7468:16:4;2869:76;;;;-1:-1:-1;;;2869:76:4;;19716:2:17;2869:76:4;;;19698:21:17;19755:2;19735:18;;;19728:30;19794:34;19774:18;;;19767:62;-1:-1:-1;;;19845:18:17;;;19838:45;19900:19;;2869:76:4;19514:411:17;2869:76:4;2958:21;2982:10;:8;:10::i;:::-;2958:34;;3034:1;3016:7;3010:21;:25;:86;;;;;;;;;;;;;;;;;3062:7;3071:18;:7;:16;:18::i;:::-;3045:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;3010:86;3003:93;2770:334;-1:-1:-1;;;2770:334:4:o;3858:172:11:-;1072:6:12;;-1:-1:-1;;;;;1072:6:12;682:10:1;1219:23:12;1211:68;;;;-1:-1:-1;;;1211:68:12;;;;;;;:::i;:::-;3937:14:11::1;:32:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;3937:32:11;;::::1;;::::0;;3985:37:::1;::::0;::::1;::::0;::::1;::::0;3954:15;8173:14:17;8166:22;8148:41;;8136:2;8121:18;;8008:187;1899:192:12;1072:6;;-1:-1:-1;;;;;1072:6:12;682:10:1;1219:23:12;1211:68;;;;-1:-1:-1;;;1211:68:12;;;;;;;:::i;:::-;-1:-1:-1;;;;;1988:22:12;::::1;1980:73;;;::::0;-1:-1:-1;;;1980:73:12;;11169:2:17;1980:73:12::1;::::0;::::1;11151:21:17::0;11208:2;11188:18;;;11181:30;11247:34;11227:18;;;11220:62;-1:-1:-1;;;11298:18:17;;;11291:36;11344:19;;1980:73:12::1;10967:402:17::0;1980:73:12::1;2064:19;2074:8;2064:9;:19::i;:::-;1899:192:::0;:::o;7973:459:11:-;470:6:13;;-1:-1:-1;;;470:6:13;;;;469:7;461:48;;;;-1:-1:-1;;;461:48:13;;;;;;;:::i;:::-;8054:17:11::1;::::0;::::1;::::0;::::1;;;8050:129;;8097:20;8109:7;8097:11;:20::i;:::-;8050:129;;;8150:17;8159:7;8150:8;:17::i;:::-;8215:14;;8204:7;8193:8;;:18;;;;:::i;:::-;:36;8189:236;;;8246:8;:33:::0;;-1:-1:-1;;8246:33:11::1;8257:22;8246:33:::0;;::::1;::::0;;;8299:114:::1;::::0;::::1;::::0;::::1;::::0;8338:19:::1;::::0;8257:22;8299:114:::1;:::i;8750:474::-:0;8800:7;;;8850:8;;;;:41;;;;;;;;:::i;:::-;;8846:85;;;-1:-1:-1;8918:1:11;8846:85;8957:22;8945:8;;;;:34;;;;;;;;:::i;:::-;;8941:78;;;-1:-1:-1;9006:1:11;8941:78;9045:19;9033:8;;;;:31;;;;;;;;:::i;:::-;;9029:75;;;-1:-1:-1;9091:1:11;9029:75;9130:22;9118:8;;;;:34;;;;;;;;:::i;:::-;;9114:78;;;-1:-1:-1;9179:1:11;9114:78;9209:7;8750:474;-1:-1:-1;8750:474:11:o;1481:305:4:-;1583:4;-1:-1:-1;;;;;;1620:40:4;;-1:-1:-1;;;1620:40:4;;:105;;-1:-1:-1;;;;;;;1677:48:4;;-1:-1:-1;;;1677:48:4;1620:105;:158;;;-1:-1:-1;;;;;;;;;;896:40:3;;;1742:36:4;787:157:3;11361:174:4;11436:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;11436:29:4;-1:-1:-1;;;;;11436:29:4;;;;;;;;:24;;11490:23;11436:24;11490:14;:23::i;:::-;-1:-1:-1;;;;;11481:46:4;;;;;;;;;;;11361:174;;:::o;2065:317:0:-;2180:6;2155:21;:31;;2147:73;;;;-1:-1:-1;;;2147:73:0;;14283:2:17;2147:73:0;;;14265:21:17;14322:2;14302:18;;;14295:30;14361:31;14341:18;;;14334:59;14410:18;;2147:73:0;14081:353:17;2147:73:0;2234:12;2252:9;-1:-1:-1;;;;;2252:14:0;2274:6;2252:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2233:52;;;2304:7;2296:78;;;;-1:-1:-1;;;2296:78:0;;13856:2:17;2296:78:0;;;13838:21:17;13895:2;13875:18;;;13868:30;13934:34;13914:18;;;13907:62;14005:28;13985:18;;;13978:56;14051:19;;2296:78:0;13654:422:17;7673:348:4;7766:4;7468:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7468:16:4;7783:73;;;;-1:-1:-1;;;7783:73:4;;14641:2:17;7783:73:4;;;14623:21:17;14680:2;14660:18;;;14653:30;14719:34;14699:18;;;14692:62;-1:-1:-1;;;14770:18:17;;;14763:42;14822:19;;7783:73:4;14439:408:17;7783:73:4;7867:13;7883:23;7898:7;7883:14;:23::i;:::-;7867:39;;7936:5;-1:-1:-1;;;;;7925:16:4;:7;-1:-1:-1;;;;;7925:16:4;;:51;;;;7969:7;-1:-1:-1;;;;;7945:31:4;:20;7957:7;7945:11;:20::i;:::-;-1:-1:-1;;;;;7945:31:4;;7925:51;:87;;;-1:-1:-1;;;;;;4765:25:4;;;4741:4;4765:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;7980:32;7917:96;7673:348;-1:-1:-1;;;;7673:348:4:o;10665:578::-;10824:4;-1:-1:-1;;;;;10797:31:4;:23;10812:7;10797:14;:23::i;:::-;-1:-1:-1;;;;;10797:31:4;;10789:85;;;;-1:-1:-1;;;10789:85:4;;19306:2:17;10789:85:4;;;19288:21:17;19345:2;19325:18;;;19318:30;19384:34;19364:18;;;19357:62;-1:-1:-1;;;19435:18:17;;;19428:39;19484:19;;10789:85:4;19104:405:17;10789:85:4;-1:-1:-1;;;;;10893:16:4;;10885:65;;;;-1:-1:-1;;;10885:65:4;;13097:2:17;10885:65:4;;;13079:21:17;13136:2;13116:18;;;13109:30;13175:34;13155:18;;;13148:62;-1:-1:-1;;;13226:18:17;;;13219:34;13270:19;;10885:65:4;12895:400:17;10885:65:4;10963:39;10984:4;10990:2;10994:7;10963:20;:39::i;:::-;11067:29;11084:1;11088:7;11067:8;:29::i;:::-;-1:-1:-1;;;;;11109:15:4;;;;;;:9;:15;;;;;:20;;11128:1;;11109:15;:20;;11128:1;;11109:20;:::i;:::-;;;;-1:-1:-1;;;;;;;11140:13:4;;;;;;:9;:13;;;;;:18;;11157:1;;11140:13;:18;;11157:1;;11140:18;:::i;:::-;;;;-1:-1:-1;;11169:16:4;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;11169:21:4;-1:-1:-1;;;;;11169:21:4;;;;;;;;;11208:27;;11169:16;;11208:27;;;;;;;10665:578;;;:::o;9968:360::-;10028:13;10044:23;10059:7;10044:14;:23::i;:::-;10028:39;;10080:48;10101:5;10116:1;10120:7;10080:20;:48::i;:::-;10169:29;10186:1;10190:7;10169:8;:29::i;:::-;-1:-1:-1;;;;;10211:16:4;;;;;;:9;:16;;;;;:21;;10231:1;;10211:16;:21;;10231:1;;10211:21;:::i;:::-;;;;-1:-1:-1;;10250:16:4;;;;:7;:16;;;;;;10243:23;;-1:-1:-1;;;;;;10243:23:4;;;10284:36;10258:7;;10250:16;-1:-1:-1;;;;;10284:36:4;;;;;10250:16;;10284:36;10017:311;9968:360;:::o;2099:173:12:-;2174:6;;;-1:-1:-1;;;;;2191:17:12;;;-1:-1:-1;;;;;;2191:17:12;;;;;;;2224:40;;2174:6;;;2191:17;2174:6;;2224:40;;2155:16;;2224:40;2144:128;2099:173;:::o;8363:110:4:-;8439:26;8449:2;8453:7;8439:26;;;;;;;;;;;;:9;:26::i;:::-;8363:110;;:::o;6751:315::-;6908:28;6918:4;6924:2;6928:7;6908:9;:28::i;:::-;6955:48;6978:4;6984:2;6988:7;6997:5;6955:22;:48::i;:::-;6947:111;;;;-1:-1:-1;;;6947:111:4;;;;;;;:::i;2186:100:11:-;2238:13;2271:7;2264:14;;;;;:::i;288:723:16:-;344:13;565:10;561:53;;-1:-1:-1;;592:10:16;;;;;;;;;;;;-1:-1:-1;;;592:10:16;;;;;288:723::o;561:53::-;639:5;624:12;680:78;687:9;;680:78;;713:8;;;;:::i;:::-;;-1:-1:-1;736:10:16;;-1:-1:-1;744:2:16;736:10;;:::i;:::-;;;680:78;;;768:19;800:6;790:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;790:17:16;;768:39;;818:154;825:10;;818:154;;852:11;862:1;852:11;;:::i;:::-;;-1:-1:-1;921:10:16;929:2;921:5;:10;:::i;:::-;908:24;;:2;:24;:::i;:::-;895:39;;878:6;885;878:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;878:56:16;;;;;;;;-1:-1:-1;949:11:16;958:2;949:11;;:::i;:::-;;;818:154;;5628:1241:11;5707:14;;;;;;;:22;;5725:4;5707:22;5686:99;;;;-1:-1:-1;;;5686:99:11;;9579:2:17;5686:99:11;;;9561:21:17;9618:2;9598:18;;;9591:30;9657;9637:18;;;9630:58;9705:18;;5686:99:11;9377:352:17;5686:99:11;5831:10;5818:24;;;;:12;:24;;;;;;;;:32;;:24;:32;5796:110;;;;-1:-1:-1;;;5796:110:11;;9579:2:17;5796:110:11;;;9561:21:17;9618:2;9598:18;;;9591:30;9657;9637:18;;;9630:58;9705:18;;5796:110:11;9377:352:17;5796:110:11;5980:8;;5955:10;5939:27;;;;:15;:27;;;;;;:37;;5969:7;;5939:37;:::i;:::-;:49;;5917:125;;;;-1:-1:-1;;;5917:125:11;;11576:2:17;5917:125:11;;;11558:21:17;11615:2;11595:18;;;11588:30;11654:28;11634:18;;;11627:56;11700:18;;5917:125:11;11374:350:17;5917:125:11;6097:14;;6086:7;6075:8;;:18;;;;:::i;:::-;:36;;6053:114;;;;-1:-1:-1;;;6053:114:11;;22579:2:17;6053:114:11;;;22561:21:17;22618:2;22598:18;;;22591:30;22657;22637:18;;;22630:58;22705:18;;6053:114:11;22377:352:17;6053:114:11;6178:14;6195:10;3836:9;;;3768:85;6195:10;6178:27;-1:-1:-1;6258:9:11;6238:16;6247:7;6178:27;6238:16;:::i;:::-;:29;;6216:119;;;;-1:-1:-1;;;6216:119:11;;;;;;;:::i;:::-;6346:18;;6375:431;6403:7;6397:3;:13;6375:431;;;6434:21;:9;1004:19:2;;1022:1;1004:19;;;915:127;6434:21:11;6483:9;885:14:2;6470:32:11;;6517:33;6527:10;6539;6517:9;:33::i;:::-;6611:10;6595:27;;;;:15;:27;;;;;;:37;;6625:7;;6595:37;:::i;:::-;6581:10;6565:27;;;;:15;:27;;;;;;;;:67;;;;6675:25;;;;:35;;6703:7;;6675:35;:::i;:::-;6661:10;6647:25;;;;:13;:25;;;;;:63;6736:8;;:12;;6747:1;6736:12;:::i;:::-;6725:8;:23;6778:12;;:16;;6793:1;6778:16;:::i;:::-;6763:12;:31;6412:5;;;;:::i;:::-;;;;6375:431;;;-1:-1:-1;6821:40:11;;;24606:25:17;;;24662:2;24647:18;;24640:34;;;6833:10:11;;6821:40;;24579:18:17;6821:40:11;;;;;;;;5675:1194;;5628:1241;:::o;6877:1088::-;6953:17;;;;;;;;:25;;:17;:25;6932:93;;;;-1:-1:-1;;;6932:93:11;;23702:2:17;6932:93:11;;;23684:21:17;23741:2;23721:18;;;23714:30;-1:-1:-1;;;23760:18:17;;;23753:49;23819:18;;6932:93:11;23500:343:17;6932:93:11;7054:1;7044:7;:11;7036:44;;;;-1:-1:-1;;;7036:44:11;;18957:2:17;7036:44:11;;;18939:21:17;18996:2;18976:18;;;18969:30;-1:-1:-1;;;19015:18:17;;;19008:50;19075:18;;7036:44:11;18755:344:17;7036:44:11;7124:8;;7113:7;:19;;7091:102;;;;-1:-1:-1;;;7091:102:11;;24050:2:17;7091:102:11;;;24032:21:17;24089:2;24069:18;;;24062:30;24128:34;24108:18;;;24101:62;-1:-1:-1;;;24179:18:17;;;24172:31;24220:19;;7091:102:11;23848:397:17;7091:102:11;7248:14;;7237:7;7226:8;;:18;;;;:::i;:::-;:36;;7204:114;;;;-1:-1:-1;;;7204:114:11;;22579:2:17;7204:114:11;;;22561:21:17;22618:2;22598:18;;;22591:30;22657;22637:18;;;22630:58;22705:18;;7204:114:11;22377:352:17;7204:114:11;7329:14;7346:10;3836:9;;;3768:85;7346:10;7329:27;-1:-1:-1;7409:9:11;7389:16;7398:7;7329:27;7389:16;:::i;:::-;:29;;7367:119;;;;-1:-1:-1;;;7367:119:11;;;;;;;:::i;:::-;7497:18;;7526:379;7554:7;7548:3;:13;7526:379;;;7585:21;:9;1004:19:2;;1022:1;1004:19;;;915:127;7585:21:11;7634:9;885:14:2;7621:32:11;;7668:33;7678:10;7690;7668:9;:33::i;:::-;7756:10;7743:24;;;;:12;:24;;;;;;:34;;7770:7;;7743:34;:::i;:::-;7729:10;7716:24;;;;:12;:24;;;;;;;;:61;;;;7820:25;;;;:35;;7848:7;;7820:35;:::i;:::-;7806:10;7792:25;;;;:13;:25;;;;;:63;7881:8;;:12;;7892:1;7881:12;:::i;:::-;7870:8;:23;7563:5;;;;:::i;:::-;;;;7526:379;;;-1:-1:-1;7920:37:11;;;24606:25:17;;;24662:2;24647:18;;24640:34;;;7929:10:11;;7920:37;;24579:18:17;7920:37:11;24432:248:17;2613:589:5;-1:-1:-1;;;;;2819:18:5;;2815:187;;2854:40;2886:7;4029:10;:17;;4002:24;;;;:15;:24;;;;;:44;;;4057:24;;;;;;;;;;;;3925:164;2854:40;2815:187;;;2924:2;-1:-1:-1;;;;;2916:10:5;:4;-1:-1:-1;;;;;2916:10:5;;2912:90;;2943:47;2976:4;2982:7;2943:32;:47::i;:::-;-1:-1:-1;;;;;3016:16:5;;3012:183;;3049:45;3086:7;3049:36;:45::i;3012:183::-;3122:4;-1:-1:-1;;;;;3116:10:5;:2;-1:-1:-1;;;;;3116:10:5;;3112:83;;3143:40;3171:2;3175:7;3143:27;:40::i;8700:321:4:-;8830:18;8836:2;8840:7;8830:5;:18::i;:::-;8881:54;8912:1;8916:2;8920:7;8929:5;8881:22;:54::i;:::-;8859:154;;;;-1:-1:-1;;;8859:154:4;;;;;;;:::i;12100:799::-;12255:4;-1:-1:-1;;;;;12276:13:4;;1066:20:0;1114:8;12272:620:4;;12312:72;;-1:-1:-1;;;12312:72:4;;-1:-1:-1;;;;;12312:36:4;;;;;:72;;682:10:1;;12363:4:4;;12369:7;;12378:5;;12312:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12312:72:4;;;;;;;;-1:-1:-1;;12312:72:4;;;;;;;;;;;;:::i;:::-;;;12308:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;12554:13:4;;12550:272;;12597:60;;-1:-1:-1;;;12597:60:4;;;;;;;:::i;12550:272::-;12772:6;12766:13;12757:6;12753:2;12749:15;12742:38;12308:529;-1:-1:-1;;;;;;12435:51:4;-1:-1:-1;;;12435:51:4;;-1:-1:-1;12428:58:4;;12272:620;-1:-1:-1;12876:4:4;12100:799;;;;;;:::o;4716:988:5:-;4982:22;5032:1;5007:22;5024:4;5007:16;:22::i;:::-;:26;;;;:::i;:::-;5044:18;5065:26;;;:17;:26;;;;;;4982:51;;-1:-1:-1;5198:28:5;;;5194:328;;-1:-1:-1;;;;;5265:18:5;;5243:19;5265:18;;;:12;:18;;;;;;;;:34;;;;;;;;;5316:30;;;;;;:44;;;5433:30;;:17;:30;;;;;:43;;;5194:328;-1:-1:-1;5618:26:5;;;;:17;:26;;;;;;;;5611:33;;;-1:-1:-1;;;;;5662:18:5;;;;;:12;:18;;;;;:34;;;;;;;5655:41;4716:988::o;5999:1079::-;6277:10;:17;6252:22;;6277:21;;6297:1;;6277:21;:::i;:::-;6309:18;6330:24;;;:15;:24;;;;;;6703:10;:26;;6252:46;;-1:-1:-1;6330:24:5;;6252:46;;6703:26;;;;;;:::i;:::-;;;;;;;;;6681:48;;6767:11;6742:10;6753;6742:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;6847:28;;;:15;:28;;;;;;;:41;;;7019:24;;;;;7012:31;7054:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;6070:1008;;;5999:1079;:::o;3503:221::-;3588:14;3605:20;3622:2;3605:16;:20::i;:::-;-1:-1:-1;;;;;3636:16:5;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;3681:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;3503:221:5:o;9357:382:4:-;-1:-1:-1;;;;;9437:16:4;;9429:61;;;;-1:-1:-1;;;9429:61:4;;17822:2:17;9429:61:4;;;17804:21:17;;;17841:18;;;17834:30;17900:34;17880:18;;;17873:62;17952:18;;9429:61:4;17620:356:17;9429:61:4;7444:4;7468:16;;;:7;:16;;;;;;-1:-1:-1;;;;;7468:16:4;:30;9501:58;;;;-1:-1:-1;;;9501:58:4;;11931:2:17;9501:58:4;;;11913:21:17;11970:2;11950:18;;;11943:30;12009;11989:18;;;11982:58;12057:18;;9501:58:4;11729:352:17;9501:58:4;9572:45;9601:1;9605:2;9609:7;9572:20;:45::i;:::-;-1:-1:-1;;;;;9630:13:4;;;;;;:9;:13;;;;;:18;;9647:1;;9630:13;:18;;9647:1;;9630:18;:::i;:::-;;;;-1:-1:-1;;9659:16:4;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;9659:21:4;-1:-1:-1;;;;;9659:21:4;;;;;;;;9698:33;;9659:16;;;9698:33;;9659:16;;9698:33;9357:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:160:17;79:20;;135:13;;128:21;118:32;;108:60;;164:1;161;154:12;179:247;238:6;291:2;279:9;270:7;266:23;262:32;259:52;;;307:1;304;297:12;259:52;346:9;333:23;365:31;390:5;365:31;:::i;691:388::-;759:6;767;820:2;808:9;799:7;795:23;791:32;788:52;;;836:1;833;826:12;788:52;875:9;862:23;894:31;919:5;894:31;:::i;:::-;944:5;-1:-1:-1;1001:2:17;986:18;;973:32;1014:33;973:32;1014:33;:::i;:::-;1066:7;1056:17;;;691:388;;;;;:::o;1084:456::-;1161:6;1169;1177;1230:2;1218:9;1209:7;1205:23;1201:32;1198:52;;;1246:1;1243;1236:12;1198:52;1285:9;1272:23;1304:31;1329:5;1304:31;:::i;:::-;1354:5;-1:-1:-1;1411:2:17;1396:18;;1383:32;1424:33;1383:32;1424:33;:::i;:::-;1084:456;;1476:7;;-1:-1:-1;;;1530:2:17;1515:18;;;;1502:32;;1084:456::o;1545:1266::-;1640:6;1648;1656;1664;1717:3;1705:9;1696:7;1692:23;1688:33;1685:53;;;1734:1;1731;1724:12;1685:53;1773:9;1760:23;1792:31;1817:5;1792:31;:::i;:::-;1842:5;-1:-1:-1;1899:2:17;1884:18;;1871:32;1912:33;1871:32;1912:33;:::i;:::-;1964:7;-1:-1:-1;2018:2:17;2003:18;;1990:32;;-1:-1:-1;2073:2:17;2058:18;;2045:32;2096:18;2126:14;;;2123:34;;;2153:1;2150;2143:12;2123:34;2191:6;2180:9;2176:22;2166:32;;2236:7;2229:4;2225:2;2221:13;2217:27;2207:55;;2258:1;2255;2248:12;2207:55;2294:2;2281:16;2316:2;2312;2309:10;2306:36;;;2322:18;;:::i;:::-;2397:2;2391:9;2365:2;2451:13;;-1:-1:-1;;2447:22:17;;;2471:2;2443:31;2439:40;2427:53;;;2495:18;;;2515:22;;;2492:46;2489:72;;;2541:18;;:::i;:::-;2581:10;2577:2;2570:22;2616:2;2608:6;2601:18;2656:7;2651:2;2646;2642;2638:11;2634:20;2631:33;2628:53;;;2677:1;2674;2667:12;2628:53;2733:2;2728;2724;2720:11;2715:2;2707:6;2703:15;2690:46;2778:1;2773:2;2768;2760:6;2756:15;2752:24;2745:35;2799:6;2789:16;;;;;;;1545:1266;;;;;;;:::o;2816:315::-;2881:6;2889;2942:2;2930:9;2921:7;2917:23;2913:32;2910:52;;;2958:1;2955;2948:12;2910:52;2997:9;2984:23;3016:31;3041:5;3016:31;:::i;:::-;3066:5;-1:-1:-1;3090:35:17;3121:2;3106:18;;3090:35;:::i;:::-;3080:45;;2816:315;;;;;:::o;3136:::-;3204:6;3212;3265:2;3253:9;3244:7;3240:23;3236:32;3233:52;;;3281:1;3278;3271:12;3233:52;3320:9;3307:23;3339:31;3364:5;3339:31;:::i;:::-;3389:5;3441:2;3426:18;;;;3413:32;;-1:-1:-1;;;3136:315:17:o;3456:615::-;3542:6;3550;3603:2;3591:9;3582:7;3578:23;3574:32;3571:52;;;3619:1;3616;3609:12;3571:52;3659:9;3646:23;3688:18;3729:2;3721:6;3718:14;3715:34;;;3745:1;3742;3735:12;3715:34;3783:6;3772:9;3768:22;3758:32;;3828:7;3821:4;3817:2;3813:13;3809:27;3799:55;;3850:1;3847;3840:12;3799:55;3890:2;3877:16;3916:2;3908:6;3905:14;3902:34;;;3932:1;3929;3922:12;3902:34;3985:7;3980:2;3970:6;3967:1;3963:14;3959:2;3955:23;3951:32;3948:45;3945:65;;;4006:1;4003;3996:12;3945:65;4037:2;4029:11;;;;;4059:6;;-1:-1:-1;3456:615:17;;-1:-1:-1;;;;3456:615:17:o;4076:180::-;4132:6;4185:2;4173:9;4164:7;4160:23;4156:32;4153:52;;;4201:1;4198;4191:12;4153:52;4224:26;4240:9;4224:26;:::i;4261:245::-;4319:6;4372:2;4360:9;4351:7;4347:23;4343:32;4340:52;;;4388:1;4385;4378:12;4340:52;4427:9;4414:23;4446:30;4470:5;4446:30;:::i;4511:249::-;4580:6;4633:2;4621:9;4612:7;4608:23;4604:32;4601:52;;;4649:1;4646;4639:12;4601:52;4681:9;4675:16;4700:30;4724:5;4700:30;:::i;4765:592::-;4836:6;4844;4897:2;4885:9;4876:7;4872:23;4868:32;4865:52;;;4913:1;4910;4903:12;4865:52;4953:9;4940:23;4982:18;5023:2;5015:6;5012:14;5009:34;;;5039:1;5036;5029:12;5009:34;5077:6;5066:9;5062:22;5052:32;;5122:7;5115:4;5111:2;5107:13;5103:27;5093:55;;5144:1;5141;5134:12;5093:55;5184:2;5171:16;5210:2;5202:6;5199:14;5196:34;;;5226:1;5223;5216:12;5196:34;5271:7;5266:2;5257:6;5253:2;5249:15;5245:24;5242:37;5239:57;;;5292:1;5289;5282:12;5362:180;5421:6;5474:2;5462:9;5453:7;5449:23;5445:32;5442:52;;;5490:1;5487;5480:12;5442:52;-1:-1:-1;5513:23:17;;5362:180;-1:-1:-1;5362:180:17:o;5547:257::-;5588:3;5626:5;5620:12;5653:6;5648:3;5641:19;5669:63;5725:6;5718:4;5713:3;5709:14;5702:4;5695:5;5691:16;5669:63;:::i;:::-;5786:2;5765:15;-1:-1:-1;;5761:29:17;5752:39;;;;5793:4;5748:50;;5547:257;-1:-1:-1;;5547:257:17:o;5809:242::-;5895:1;5888:5;5885:12;5875:143;;5940:10;5935:3;5931:20;5928:1;5921:31;5975:4;5972:1;5965:15;6003:4;6000:1;5993:15;5875:143;6027:18;;5809:242::o;6056:470::-;6235:3;6273:6;6267:13;6289:53;6335:6;6330:3;6323:4;6315:6;6311:17;6289:53;:::i;:::-;6405:13;;6364:16;;;;6427:57;6405:13;6364:16;6461:4;6449:17;;6427:57;:::i;:::-;6500:20;;6056:470;-1:-1:-1;;;;6056:470:17:o;7236:488::-;-1:-1:-1;;;;;7505:15:17;;;7487:34;;7557:15;;7552:2;7537:18;;7530:43;7604:2;7589:18;;7582:34;;;7652:3;7647:2;7632:18;;7625:31;;;7430:4;;7673:45;;7698:19;;7690:6;7673:45;:::i;:::-;7665:53;7236:488;-1:-1:-1;;;;;;7236:488:17:o;8200:218::-;8351:2;8336:18;;8363:49;8340:9;8394:6;8363:49;:::i;8423:330::-;8619:2;8604:18;;8631:49;8608:9;8662:6;8631:49;:::i;:::-;8689:58;8743:2;8732:9;8728:18;8720:6;8689:58;:::i;8758:390::-;8917:2;8906:9;8899:21;8956:6;8951:2;8940:9;8936:18;8929:34;9013:6;9005;9000:2;8989:9;8985:18;8972:48;9069:1;9040:22;;;9064:2;9036:31;;;9029:42;;;;9132:2;9111:15;;;-1:-1:-1;;9107:29:17;9092:45;9088:54;;8758:390;-1:-1:-1;8758:390:17:o;9153:219::-;9302:2;9291:9;9284:21;9265:4;9322:44;9362:2;9351:9;9347:18;9339:6;9322:44;:::i;10548:414::-;10750:2;10732:21;;;10789:2;10769:18;;;10762:30;10828:34;10823:2;10808:18;;10801:62;-1:-1:-1;;;10894:2:17;10879:18;;10872:48;10952:3;10937:19;;10548:414::o;18394:356::-;18596:2;18578:21;;;18615:18;;;18608:30;18674:34;18669:2;18654:18;;18647:62;18741:2;18726:18;;18394:356::o;20737:413::-;20939:2;20921:21;;;20978:2;20958:18;;;20951:30;21017:34;21012:2;20997:18;;20990:62;-1:-1:-1;;;21083:2:17;21068:18;;21061:47;21140:3;21125:19;;20737:413::o;22734:404::-;22936:2;22918:21;;;22975:2;22955:18;;;22948:30;23014:34;23009:2;22994:18;;22987:62;-1:-1:-1;;;23080:2:17;23065:18;;23058:38;23128:3;23113:19;;22734:404::o;23143:352::-;23345:2;23327:21;;;23384:2;23364:18;;;23357:30;23423;23418:2;23403:18;;23396:58;23486:2;23471:18;;23143:352::o;24685:128::-;24725:3;24756:1;24752:6;24749:1;24746:13;24743:39;;;24762:18;;:::i;:::-;-1:-1:-1;24798:9:17;;24685:128::o;24818:120::-;24858:1;24884;24874:35;;24889:18;;:::i;:::-;-1:-1:-1;24923:9:17;;24818:120::o;24943:168::-;24983:7;25049:1;25045;25041:6;25037:14;25034:1;25031:21;25026:1;25019:9;25012:17;25008:45;25005:71;;;25056:18;;:::i;:::-;-1:-1:-1;25096:9:17;;24943:168::o;25116:125::-;25156:4;25184:1;25181;25178:8;25175:34;;;25189:18;;:::i;:::-;-1:-1:-1;25226:9:17;;25116:125::o;25246:258::-;25318:1;25328:113;25342:6;25339:1;25336:13;25328:113;;;25418:11;;;25412:18;25399:11;;;25392:39;25364:2;25357:10;25328:113;;;25459:6;25456:1;25453:13;25450:48;;;-1:-1:-1;;25494:1:17;25476:16;;25469:27;25246:258::o;25509:380::-;25588:1;25584:12;;;;25631;;;25652:61;;25706:4;25698:6;25694:17;25684:27;;25652:61;25759:2;25751:6;25748:14;25728:18;25725:38;25722:161;;;25805:10;25800:3;25796:20;25793:1;25786:31;25840:4;25837:1;25830:15;25868:4;25865:1;25858:15;25722:161;;25509:380;;;:::o;25894:135::-;25933:3;-1:-1:-1;;25954:17:17;;25951:43;;;25974:18;;:::i;:::-;-1:-1:-1;26021:1:17;26010:13;;25894:135::o;26034:112::-;26066:1;26092;26082:35;;26097:18;;:::i;:::-;-1:-1:-1;26131:9:17;;26034:112::o;26151:127::-;26212:10;26207:3;26203:20;26200:1;26193:31;26243:4;26240:1;26233:15;26267:4;26264:1;26257:15;26283:127;26344:10;26339:3;26335:20;26332:1;26325:31;26375:4;26372:1;26365:15;26399:4;26396:1;26389:15;26415:127;26476:10;26471:3;26467:20;26464:1;26457:31;26507:4;26504:1;26497:15;26531:4;26528:1;26521:15;26547:127;26608:10;26603:3;26599:20;26596:1;26589:31;26639:4;26636:1;26629:15;26663:4;26660:1;26653:15;26679:127;26740:10;26735:3;26731:20;26728:1;26721:31;26771:4;26768:1;26761:15;26795:4;26792:1;26785:15;26811:127;26872:10;26867:3;26863:20;26860:1;26853:31;26903:4;26900:1;26893:15;26927:4;26924:1;26917:15;26943:131;-1:-1:-1;;;;;27018:31:17;;27008:42;;26998:70;;27064:1;27061;27054:12;27079:131;-1:-1:-1;;;;;;27153:32:17;;27143:43;;27133:71;;27200:1;27197;27190:12

Swarm Source

ipfs://236e0e8ee9926baa71378a414e0d0306b45280a89781d451f986ab409f90060b
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.