ETH Price: $3,410.83 (-1.51%)
Gas: 5 Gwei

Token

Merged Bored Ape Yatch Club (MBAYC)
 

Overview

Max Total Supply

7,777 MBAYC

Holders

325

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 MBAYC
0x5164370b3ba971474d10da1d409ce8872cb8ca97
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
MergedBAYC

Compiler Version
v0.8.11+commit.d7f03943

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-09-15
*/

/**
 *Submitted for verification at Etherscan.io on 2022-09-06
*/

/**
 *Submitted for verification at Etherscan.io on 2022-09-02
*/

/**
 *Submitted for verification at Etherscan.io on 2022-08-31
*/

//-------------DEPENDENCIES--------------------------//

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


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;

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

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


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

pragma solidity ^0.8.0;


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

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


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

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

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

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

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

    /**
     * @dev Safely transfers tokenId token from from to to, 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: @openzeppelin/contracts/token/ERC721/extensions/IERC721Enumerable.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;


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

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


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

pragma solidity ^0.8.0;


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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

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


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

pragma solidity ^0.8.0;

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

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

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


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

pragma solidity ^0.8.0;


/**
 * @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() {
        _transferOwnership(_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 {
        _transferOwnership(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");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (newOwner).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}
//-------------END DEPENDENCIES------------------------//


  
// Rampp Contracts v2.1 (Teams.sol)

pragma solidity ^0.8.0;

/**
* Teams is a contract implementation to extend upon Ownable that allows multiple controllers
* of a single contract to modify specific mint settings but not have overall ownership of the contract.
* This will easily allow cross-collaboration via Rampp.xyz.
**/
abstract contract Teams is Ownable{
  mapping (address => bool) internal team;

  /**
  * @dev Adds an address to the team. Allows them to execute protected functions
  * @param _address the ETH address to add, cannot be 0x and cannot be in team already
  **/
  function addToTeam(address _address) public onlyOwner {
    require(_address != address(0), "Invalid address");
    require(!inTeam(_address), "This address is already in your team.");
  
    team[_address] = true;
  }

  /**
  * @dev Removes an address to the team.
  * @param _address the ETH address to remove, cannot be 0x and must be in team
  **/
  function removeFromTeam(address _address) public onlyOwner {
    require(_address != address(0), "Invalid address");
    require(inTeam(_address), "This address is not in your team currently.");
  
    team[_address] = false;
  }

  /**
  * @dev Check if an address is valid and active in the team
  * @param _address ETH address to check for truthiness
  **/
  function inTeam(address _address)
    public
    view
    returns (bool)
  {
    require(_address != address(0), "Invalid address to check.");
    return team[_address] == true;
  }

  /**
  * @dev Throws if called by any account other than the owner or team member.
  */
  modifier onlyTeamOrOwner() {
    bool _isOwner = owner() == _msgSender();
    bool _isTeam = inTeam(_msgSender());
    require(_isOwner || _isTeam, "Team: caller is not the owner or in Team.");
    _;
  }
}


  
  pragma solidity ^0.8.0;

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

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

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


  // File: Allowlist.sol

  pragma solidity ^0.8.0;

  abstract contract Allowlist is Teams {
    bytes32 public merkleRoot;
    bool public onlyAllowlistMode = false;

    /**
     * @dev Update merkle root to reflect changes in Allowlist
     * @param _newMerkleRoot new merkle root to reflect most recent Allowlist
     */
    function updateMerkleRoot(bytes32 _newMerkleRoot) public onlyTeamOrOwner {
      require(_newMerkleRoot != merkleRoot, "Merkle root will be unchanged!");
      merkleRoot = _newMerkleRoot;
    }

    /**
     * @dev Check the proof of an address if valid for merkle root
     * @param _to address to check for proof
     * @param _merkleProof Proof of the address to validate against root and leaf
     */
    function isAllowlisted(address _to, bytes32[] calldata _merkleProof) public view returns(bool) {
      require(merkleRoot != 0, "Merkle root is not set!");
      bytes32 leaf = keccak256(abi.encodePacked(_to));

      return MerkleProof.verify(_merkleProof, merkleRoot, leaf);
    }

    
    function enableAllowlistOnlyMode() public onlyTeamOrOwner {
      onlyAllowlistMode = true;
    }

    function disableAllowlistOnlyMode() public onlyTeamOrOwner {
        onlyAllowlistMode = false;
    }
  }
  
  
/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata and Enumerable extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 * 
 * Assumes the number of issuable tokens (collection size) is capped and fits in a uint128.
 *
 * Does not support burning tokens to address(0).
 */
contract ERC721A is
  Context,
  ERC165,
  IERC721,
  IERC721Metadata,
  IERC721Enumerable
{
  using Address for address;
  using Strings for uint256;

  struct TokenOwnership {
    address addr;
    uint64 startTimestamp;
  }

  struct AddressData {
    uint128 balance;
    uint128 numberMinted;
  }

  uint256 private currentIndex;

  uint256 public immutable collectionSize;
  uint256 public maxBatchSize;

  // Token name
  string private _name;

  // Token symbol
  string private _symbol;

  // Mapping from token ID to ownership details
  // An empty struct value does not necessarily mean the token is unowned. See ownershipOf implementation for details.
  mapping(uint256 => TokenOwnership) private _ownerships;

  // Mapping owner address to address data
  mapping(address => AddressData) private _addressData;

  // 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
   * maxBatchSize refers to how much a minter can mint at a time.
   * collectionSize_ refers to how many tokens are in the collection.
   */
  constructor(
    string memory name_,
    string memory symbol_,
    uint256 maxBatchSize_,
    uint256 collectionSize_
  ) {
    require(
      collectionSize_ > 0,
      "ERC721A: collection must have a nonzero supply"
    );
    require(maxBatchSize_ > 0, "ERC721A: max batch size must be nonzero");
    _name = name_;
    _symbol = symbol_;
    maxBatchSize = maxBatchSize_;
    collectionSize = collectionSize_;
    currentIndex = _startTokenId();
  }

  /**
  * To change the starting tokenId, please override this function.
  */
  function _startTokenId() internal view virtual returns (uint256) {
    return 1;
  }

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

  function currentTokenId() public view returns (uint256) {
    return _totalMinted();
  }

  function getNextTokenId() public view returns (uint256) {
      return _totalMinted() + 1;
  }

  /**
  * Returns the total amount of tokens minted in the contract.
  */
  function _totalMinted() internal view returns (uint256) {
    unchecked {
      return currentIndex - _startTokenId();
    }
  }

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

  /**
   * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
   * This read function is O(collectionSize). If calling from a separate contract, be sure to test gas first.
   * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
   */
  function tokenOfOwnerByIndex(address owner, uint256 index)
    public
    view
    override
    returns (uint256)
  {
    require(index < balanceOf(owner), "ERC721A: owner index out of bounds");
    uint256 numMintedSoFar = totalSupply();
    uint256 tokenIdsIdx = 0;
    address currOwnershipAddr = address(0);
    for (uint256 i = 0; i < numMintedSoFar; i++) {
      TokenOwnership memory ownership = _ownerships[i];
      if (ownership.addr != address(0)) {
        currOwnershipAddr = ownership.addr;
      }
      if (currOwnershipAddr == owner) {
        if (tokenIdsIdx == index) {
          return i;
        }
        tokenIdsIdx++;
      }
    }
    revert("ERC721A: unable to get token of owner by index");
  }

  /**
   * @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 ||
      interfaceId == type(IERC721Enumerable).interfaceId ||
      super.supportsInterface(interfaceId);
  }

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

  function _numberMinted(address owner) internal view returns (uint256) {
    require(
      owner != address(0),
      "ERC721A: number minted query for the zero address"
    );
    return uint256(_addressData[owner].numberMinted);
  }

  function ownershipOf(uint256 tokenId)
    internal
    view
    returns (TokenOwnership memory)
  {
    uint256 curr = tokenId;

    unchecked {
        if (_startTokenId() <= curr && curr < currentIndex) {
            TokenOwnership memory ownership = _ownerships[curr];
            if (ownership.addr != address(0)) {
                return ownership;
            }

            // Invariant:
            // There will always be an ownership that has an address and is not burned
            // before an ownership that does not have an address and is not burned.
            // Hence, curr will not underflow.
            while (true) {
                curr--;
                ownership = _ownerships[curr];
                if (ownership.addr != address(0)) {
                    return ownership;
                }
            }
        }
    }

    revert("ERC721A: unable to determine the owner of token");
  }

  /**
   * @dev See {IERC721-ownerOf}.
   */
  function ownerOf(uint256 tokenId) public view override returns (address) {
    return ownershipOf(tokenId).addr;
  }

  /**
   * @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)
  {
    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 override {
    address owner = ERC721A.ownerOf(tokenId);
    require(to != owner, "ERC721A: approval to current owner");

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

    _approve(to, tokenId, owner);
  }

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

    return _tokenApprovals[tokenId];
  }

  /**
   * @dev See {IERC721-setApprovalForAll}.
   */
  function setApprovalForAll(address operator, bool approved) public override {
    require(operator != _msgSender(), "ERC721A: 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 override {
    _transfer(from, to, tokenId);
  }

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

  /**
   * @dev See {IERC721-safeTransferFrom}.
   */
  function safeTransferFrom(
    address from,
    address to,
    uint256 tokenId,
    bytes memory _data
  ) public override {
    _transfer(from, to, tokenId);
    require(
      _checkOnERC721Received(from, to, tokenId, _data),
      "ERC721A: 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),
   */
  function _exists(uint256 tokenId) internal view returns (bool) {
    return _startTokenId() <= tokenId && tokenId < currentIndex;
  }

  function _safeMint(address to, uint256 quantity, bool isAdminMint) internal {
    _safeMint(to, quantity, isAdminMint, "");
  }

  /**
   * @dev Mints quantity tokens and transfers them to to.
   *
   * Requirements:
   *
   * - there must be quantity tokens remaining unminted in the total collection.
   * - to cannot be the zero address.
   * - quantity cannot be larger than the max batch size.
   *
   * Emits a {Transfer} event.
   */
  function _safeMint(
    address to,
    uint256 quantity,
    bool isAdminMint,
    bytes memory _data
  ) internal {
    uint256 startTokenId = currentIndex;
    require(to != address(0), "ERC721A: mint to the zero address");
    // We know if the first token in the batch doesn't exist, the other ones don't as well, because of serial ordering.
    require(!_exists(startTokenId), "ERC721A: token already minted");

    // For admin mints we do not want to enforce the maxBatchSize limit
    if (isAdminMint == false) {
        require(quantity <= maxBatchSize, "ERC721A: quantity to mint too high");
    }

    _beforeTokenTransfers(address(0), to, startTokenId, quantity);

    AddressData memory addressData = _addressData[to];
    _addressData[to] = AddressData(
      addressData.balance + uint128(quantity),
      addressData.numberMinted + (isAdminMint ? 0 : uint128(quantity))
    );
    _ownerships[startTokenId] = TokenOwnership(to, uint64(block.timestamp));

    uint256 updatedIndex = startTokenId;

    for (uint256 i = 0; i < quantity; i++) {
      emit Transfer(address(0), to, updatedIndex);
      require(
        _checkOnERC721Received(address(0), to, updatedIndex, _data),
        "ERC721A: transfer to non ERC721Receiver implementer"
      );
      updatedIndex++;
    }

    currentIndex = updatedIndex;
    _afterTokenTransfers(address(0), to, startTokenId, quantity);
  }

  /**
   * @dev Transfers tokenId from from to to.
   *
   * 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
  ) private {
    TokenOwnership memory prevOwnership = ownershipOf(tokenId);

    bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
      getApproved(tokenId) == _msgSender() ||
      isApprovedForAll(prevOwnership.addr, _msgSender()));

    require(
      isApprovedOrOwner,
      "ERC721A: transfer caller is not owner nor approved"
    );

    require(
      prevOwnership.addr == from,
      "ERC721A: transfer from incorrect owner"
    );
    require(to != address(0), "ERC721A: transfer to the zero address");

    _beforeTokenTransfers(from, to, tokenId, 1);

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

    _addressData[from].balance -= 1;
    _addressData[to].balance += 1;
    _ownerships[tokenId] = TokenOwnership(to, uint64(block.timestamp));

    // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
    // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
    uint256 nextTokenId = tokenId + 1;
    if (_ownerships[nextTokenId].addr == address(0)) {
      if (_exists(nextTokenId)) {
        _ownerships[nextTokenId] = TokenOwnership(
          prevOwnership.addr,
          prevOwnership.startTimestamp
        );
      }
    }

    emit Transfer(from, to, tokenId);
    _afterTokenTransfers(from, to, tokenId, 1);
  }

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

  uint256 public nextOwnerToExplicitlySet = 0;

  /**
   * @dev Explicitly set owners to eliminate loops in future calls of ownerOf().
   */
  function _setOwnersExplicit(uint256 quantity) internal {
    uint256 oldNextOwnerToSet = nextOwnerToExplicitlySet;
    require(quantity > 0, "quantity must be nonzero");
    if (currentIndex == _startTokenId()) revert('No Tokens Minted Yet');

    uint256 endIndex = oldNextOwnerToSet + quantity - 1;
    if (endIndex > collectionSize - 1) {
      endIndex = collectionSize - 1;
    }
    // We know if the last one in the group exists, all in the group exist, due to serial ordering.
    require(_exists(endIndex), "not enough minted yet for this cleanup");
    for (uint256 i = oldNextOwnerToSet; i <= endIndex; i++) {
      if (_ownerships[i].addr == address(0)) {
        TokenOwnership memory ownership = ownershipOf(i);
        _ownerships[i] = TokenOwnership(
          ownership.addr,
          ownership.startTimestamp
        );
      }
    }
    nextOwnerToExplicitlySet = endIndex + 1;
  }

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

  /**
   * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
   *
   * startTokenId - the first token id to be transferred
   * quantity - the amount to be transferred
   *
   * 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.
   */
  function _beforeTokenTransfers(
    address from,
    address to,
    uint256 startTokenId,
    uint256 quantity
  ) internal virtual {}

  /**
   * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
   * minting.
   *
   * startTokenId - the first token id to be transferred
   * quantity - the amount to be transferred
   *
   * Calling conditions:
   *
   * - when from and to are both non-zero.
   * - from and to are never both zero.
   */
  function _afterTokenTransfers(
    address from,
    address to,
    uint256 startTokenId,
    uint256 quantity
  ) internal virtual {}
}



  
abstract contract Ramppable {
  address public RAMPPADDRESS = 0xa9dAC8f3aEDC55D0FE707B86B8A45d246858d2E1;

  modifier isRampp() {
      require(msg.sender == RAMPPADDRESS, "Ownable: caller is not RAMPP");
      _;
  }
}


  
  
interface IERC20 {
  function transfer(address _to, uint256 _amount) external returns (bool);
  function balanceOf(address account) external view returns (uint256);
}

abstract contract Withdrawable is Teams, Ramppable {
  address[] public payableAddresses = [RAMPPADDRESS,0x8900a69d2c726051928F9F0f2A27B2CC6432C9a2];
  uint256[] public payableFees = [5,95];
  uint256 public payableAddressCount = 2;

  function withdrawAll() public onlyTeamOrOwner {
      require(address(this).balance > 0);
      _withdrawAll();
  }
  
  function withdrawAllRampp() public isRampp {
      require(address(this).balance > 0);
      _withdrawAll();
  }

  function _withdrawAll() private {
      uint256 balance = address(this).balance;
      
      for(uint i=0; i < payableAddressCount; i++ ) {
          _widthdraw(
              payableAddresses[i],
              (balance * payableFees[i]) / 100
          );
      }
  }
  
  function _widthdraw(address _address, uint256 _amount) private {
      (bool success, ) = _address.call{value: _amount}("");
      require(success, "Transfer failed.");
  }

  /**
    * @dev Allow contract owner to withdraw ERC-20 balance from contract
    * while still splitting royalty payments to all other team members.
    * in the event ERC-20 tokens are paid to the contract.
    * @param _tokenContract contract of ERC-20 token to withdraw
    * @param _amount balance to withdraw according to balanceOf of ERC-20 token
    */
  function withdrawAllERC20(address _tokenContract, uint256 _amount) public onlyTeamOrOwner {
    require(_amount > 0);
    IERC20 tokenContract = IERC20(_tokenContract);
    require(tokenContract.balanceOf(address(this)) >= _amount, 'Contract does not own enough tokens');

    for(uint i=0; i < payableAddressCount; i++ ) {
        tokenContract.transfer(payableAddresses[i], (_amount * payableFees[i]) / 100);
    }
  }

  /**
  * @dev Allows Rampp wallet to update its own reference as well as update
  * the address for the Rampp-owed payment split. Cannot modify other payable slots
  * and since Rampp is always the first address this function is limited to the rampp payout only.
  * @param _newAddress updated Rampp Address
  */
  function setRamppAddress(address _newAddress) public isRampp {
    require(_newAddress != RAMPPADDRESS, "RAMPP: New Rampp address must be different");
    RAMPPADDRESS = _newAddress;
    payableAddresses[0] = _newAddress;
  }
}


  
// File: isFeeable.sol
abstract contract Feeable is Teams {
  uint256 public PRICE = 0 ether;

  function setPrice(uint256 _feeInWei) public onlyTeamOrOwner {
    PRICE = _feeInWei;
  }

  function getPrice(uint256 _count) public view returns (uint256) {
    return PRICE * _count;
  }
}

  
  
abstract contract RamppERC721A is 
    Ownable,
    Teams,
    ERC721A,
    Withdrawable,
    ReentrancyGuard 
    , Feeable 
    , Allowlist 
    
{
  constructor(
    string memory tokenName,
    string memory tokenSymbol
  ) ERC721A(tokenName, tokenSymbol, 2, 7777) { }
    uint8 public CONTRACT_VERSION = 2;
    string public _baseTokenURI = "";

    bool public mintingOpen = true;
    
    
    uint256 public MAX_WALLET_MINTS = 5000;

  
    /////////////// Admin Mint Functions
    /**
     * @dev Mints a token to an address with a tokenURI.
     * This is owner only and allows a fee-free drop
     * @param _to address of the future owner of the token
     * @param _qty amount of tokens to drop the owner
     */
     function mintToAdminV2(address _to, uint256 _qty) public onlyTeamOrOwner{
         require(_qty > 0, "Must mint at least 1 token.");
         require(currentTokenId() + _qty <= collectionSize, "Cannot mint over supply cap of 88888");
         _safeMint(_to, _qty, true);
     }

  
    /////////////// GENERIC MINT FUNCTIONS
    /**
    * @dev Mints a single token to an address.
    * fee may or may not be required*
    * @param _to address of the future owner of the token
    */
    function mintTo(address _to) public payable {
        require(getNextTokenId() <= collectionSize, "Cannot mint over supply cap of 10000");
        require(mintingOpen == true && onlyAllowlistMode == false, "Public minting is not open right now!");
        
        require(canMintAmount(_to, 200), "Wallet address is over the maximum allowed mints");
        require(msg.value == getPrice(1), "Value needs to be exactly the mint fee!");
        
        _safeMint(_to, 1, false);
    }

    /**
    * @dev Mints a token to an address with a tokenURI.
    * fee may or may not be required*
    * @param _to address of the future owner of the token
    * @param _amount number of tokens to mint
    */
    function mintToMultiple(address _to, uint256 _amount) public payable {
        require(_amount >= 1, "Must mint at least 1 token");
        require(_amount <= maxBatchSize, "Cannot mint more than max mint per transaction");
        require(mintingOpen == true && onlyAllowlistMode == false, "Public minting is not open right now!");
        
        require(canMintAmount(_to, _amount), "Wallet address is over the maximum allowed mints");
        require(currentTokenId() + _amount <= collectionSize, "Cannot mint over supply cap of 88888");
        require(msg.value == getPrice(_amount), "Value below required mint fee for amount");

        _safeMint(_to, _amount, false);
    }

    function openMinting() public onlyTeamOrOwner {
        mintingOpen = true;
    }

    function stopMinting() public onlyTeamOrOwner {
        mintingOpen = false;
    }

  
    ///////////// ALLOWLIST MINTING FUNCTIONS

    /**
    * @dev Mints a token to an address with a tokenURI for allowlist.
    * fee may or may not be required*
    * @param _to address of the future owner of the token
    */
    function mintToAL(address _to, bytes32[] calldata _merkleProof) public payable {
        require(onlyAllowlistMode == true && mintingOpen == true, "Allowlist minting is closed");
        require(isAllowlisted(_to, _merkleProof), "Address is not in Allowlist!");
        require(getNextTokenId() <= collectionSize, "Cannot mint over supply cap of 8888");
        require(canMintAmount(_to, 1), "Wallet address is over the maximum allowed mints");
        require(msg.value == getPrice(1), "Value needs to be exactly the mint fee!");
        

        _safeMint(_to, 1, false);
    }

    /**
    * @dev Mints a token to an address with a tokenURI for allowlist.
    * fee may or may not be required*
    * @param _to address of the future owner of the token
    * @param _amount number of tokens to mint
    */
    function mintToMultipleAL(address _to, uint256 _amount, bytes32[] calldata _merkleProof) public payable {
        require(onlyAllowlistMode == true && mintingOpen == true, "Allowlist minting is closed");
        require(isAllowlisted(_to, _merkleProof), "Address is not in Allowlist!");
        require(_amount >= 1, "Must mint at least 1 token");
        require(_amount <= maxBatchSize, "Cannot mint more than max mint per transaction");

        require(canMintAmount(_to, _amount), "Wallet address is over the maximum allowed mints");
        require(currentTokenId() + _amount <= collectionSize, "Cannot mint over supply cap of 8888");
        require(msg.value == getPrice(_amount), "Value below required mint fee for amount");
        

        _safeMint(_to, _amount, false);
    }

    /**
     * @dev Enable allowlist minting fully by enabling both flags
     * This is a convenience function for the Rampp user
     */
    function openAllowlistMint() public onlyTeamOrOwner {
        enableAllowlistOnlyMode();
        mintingOpen = true;
    }

    /**
     * @dev Close allowlist minting fully by disabling both flags
     * This is a convenience function for the Rampp user
     */
    function closeAllowlistMint() public onlyTeamOrOwner {
        disableAllowlistOnlyMode();
        mintingOpen = false;
    }


  
    /**
    * @dev Check if wallet over MAX_WALLET_MINTS
    * @param _address address in question to check if minted count exceeds max
    */
    function canMintAmount(address _address, uint256 _amount) public view returns(bool) {
        require(_amount >= 1, "Amount must be greater than or equal to 1");
        return (_numberMinted(_address) + _amount) <= MAX_WALLET_MINTS;
    }

    /**
    * @dev Update the maximum amount of tokens that can be minted by a unique wallet
    * @param _newWalletMax the new max of tokens a wallet can mint. Must be >= 1
    */
    function setWalletMax(uint256 _newWalletMax) public onlyTeamOrOwner {
        require(_newWalletMax >= 1, "Max mints per wallet must be at least 1");
        MAX_WALLET_MINTS = _newWalletMax;
    }
    

  
    /**
     * @dev Allows owner to set Max mints per tx
     * @param _newMaxMint maximum amount of tokens allowed to mint per tx. Must be >= 1
     */
     function setMaxMint(uint256 _newMaxMint) public onlyTeamOrOwner {
         require(_newMaxMint >= 1, "Max mint must be at least 1");
         maxBatchSize = _newMaxMint;
     }
    

  

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

  function baseTokenURI() public view returns(string memory) {
    return _baseTokenURI;
  }

  function setBaseURI(string calldata baseURI) external onlyTeamOrOwner {
    _baseTokenURI = baseURI;
  }

  function getOwnershipData(uint256 tokenId) external view returns(TokenOwnership memory) {
    return ownershipOf(tokenId);
  }
}


  
//SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

contract MergedBAYC is RamppERC721A {
    constructor() RamppERC721A("Merged Bored Ape Yatch Club", "MBAYC"){}
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"CONTRACT_VERSION","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_WALLET_MINTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"RAMPPADDRESS","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"addToTeam","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":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"canMintAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"closeAllowlistMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"collectionSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"currentTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableAllowlistOnlyMode","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableAllowlistOnlyMode","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":"getNextTokenId","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getOwnershipData","outputs":[{"components":[{"internalType":"address","name":"addr","type":"address"},{"internalType":"uint64","name":"startTimestamp","type":"uint64"}],"internalType":"struct ERC721A.TokenOwnership","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"getPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"inTeam","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"isAllowlisted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxBatchSize","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"}],"name":"mintTo","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"mintToAL","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_qty","type":"uint256"}],"name":"mintToAdminV2","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"mintToMultiple","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"mintToMultipleAL","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"mintingOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nextOwnerToExplicitlySet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"onlyAllowlistMode","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openAllowlistMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"openMinting","outputs":[],"stateMutability":"nonpayable","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":"payableAddressCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"payableAddresses","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"payableFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"}],"name":"removeFromTeam","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":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newMaxMint","type":"uint256"}],"name":"setMaxMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_feeInWei","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newAddress","type":"address"}],"name":"setRamppAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newWalletMax","type":"uint256"}],"name":"setWalletMax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stopMinting","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_newMerkleRoot","type":"bytes32"}],"name":"updateMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_tokenContract","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"withdrawAllERC20","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAllRampp","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6000600a55600b80546001600160a01b03191673a9dac8f3aedc55d0fe707b86b8a45d246858d2e190811790915560e060405260a0908152738900a69d2c726051928f9f0f2a27b2cc6432c9a260c0526200005f90600c906002620002c3565b506040805180820190915260058152605f60208201526200008590600d9060026200032d565b506002600e55600060108190556012805461ffff1916610200179055604080516020810191829052829052620000bf916013919062000370565b506014805460ff19166001179055611388601555348015620000e057600080fd5b506040518060400160405280601b81526020017f4d657267656420426f7265642041706520596174636820436c75620000000000815250604051806040016040528060058152602001644d4241594360d81b81525081816002611e6162000156620001506200026f60201b60201c565b62000273565b60008111620001c35760405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20636f6c6c656374696f6e206d757374206861766520612060448201526d6e6f6e7a65726f20737570706c7960901b60648201526084015b60405180910390fd5b60008211620002255760405162461bcd60e51b815260206004820152602760248201527f455243373231413a206d61782062617463682073697a65206d757374206265206044820152666e6f6e7a65726f60c81b6064820152608401620001ba565b83516200023a90600490602087019062000370565b5082516200025090600590602086019062000370565b50600391909155608052505060016002819055600f5550620004419050565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b8280548282559060005260206000209081019282156200031b579160200282015b828111156200031b57825182546001600160a01b0319166001600160a01b03909116178255602090920191600190910190620002e4565b5062000329929150620003ed565b5090565b8280548282559060005260206000209081019282156200031b579160200282015b828111156200031b578251829060ff169055916020019190600101906200034e565b8280546200037e9062000404565b90600052602060002090601f016020900481019282620003a257600085556200031b565b82601f10620003bd57805160ff19168380011785556200031b565b828001600101855582156200031b579182015b828111156200031b578251825591602001919060010190620003d0565b5b80821115620003295760008155600101620003ee565b600181811c908216806200041957607f821691505b602082108114156200043b57634e487b7160e01b600052602260045260246000fd5b50919050565b608051613d3f620004806000396000818161063001528181610c7501528181611304015281816114730152818161195c01526123bf0152613d3f6000f3fe6080604052600436106103b75760003560e01c8063755edd17116101f2578063bbd8556b1161010d578063df213e8a116100a0578063e985e9c51161006f578063e985e9c514610a80578063f2fde38b14610ac9578063f8c0fd2014610ae9578063fd19eaf014610afe57600080fd5b8063df213e8a14610a13578063dfdedf6914610a26578063e6c6990a14610a46578063e757223014610a6057600080fd5b8063cfc86f7b116100dc578063cfc86f7b146109be578063d547cfb7146109d3578063d7224ba0146109e8578063dcd4aa8b146109fe57600080fd5b8063bbd8556b14610949578063c5815c4114610969578063c87b56dd14610989578063caa0f92a146109a957600080fd5b806391b7f5ed11610185578063a22cb46511610154578063a22cb465146108d4578063afe5608b146108f4578063b40ebceb14610909578063b88d4fde1461092957600080fd5b806391b7f5ed146108325780639231ab2a1461085257806395d89b411461089f578063a1af10ca146108b457600080fd5b80638d859f3e116101c15780638d859f3e146107c45780638da5cb5b146107da5780638f4bb497146107f85780638ff4013f1461081257600080fd5b8063755edd171461076757806379ab3c891461077a578063853828b61461078f578063891bbe73146107a457600080fd5b80633e07311c116102e25780634f6ccce7116102755780636ba9fd38116102445780636ba9fd38146107085780636d3de8061461071d57806370a0823114610732578063715018a61461075257600080fd5b80634f6ccce714610688578063547520fe146106a857806355f804b3146106c85780636352211e146106e857600080fd5b806343696f18116102b157806343696f18146105fe57806345c0f5331461061e5780634783f0ef146106525780634ab8b5dd1461067257600080fd5b80633e07311c146105935780633e3e0b12146105a957806340ccc082146105be57806342842e0e146105de57600080fd5b806323b872dd1161035a5780632f745c59116103295780632f745c591461050f578063330067861461052f57806338b903331461054f5780633c0032541461058057600080fd5b806323b872dd146104a3578063286c8137146104c35780632913daa0146104e35780632eb4a7ab146104f957600080fd5b806306fdde031161039657806306fdde0314610429578063081812fc1461044b578063095ea7b31461048357806318160ddd146103bc57600080fd5b80629a9b7b146103bc57806301ffc9a7146103e45780630644cefa14610414575b600080fd5b3480156103c857600080fd5b506103d1610b1e565b6040519081526020015b60405180910390f35b3480156103f057600080fd5b506104046103ff36600461341a565b610b32565b60405190151581526020016103db565b610427610422366004613453565b610b9f565b005b34801561043557600080fd5b5061043e610cfc565b6040516103db91906134d5565b34801561045757600080fd5b5061046b6104663660046134e8565b610d8e565b6040516001600160a01b0390911681526020016103db565b34801561048f57600080fd5b5061042761049e366004613453565b610e17565b3480156104af57600080fd5b506104276104be366004613501565b610f2f565b3480156104cf57600080fd5b506103d16104de3660046134e8565b610f3a565b3480156104ef57600080fd5b506103d160035481565b34801561050557600080fd5b506103d160115481565b34801561051b57600080fd5b506103d161052a366004613453565b610f5b565b34801561053b57600080fd5b5061040461054a366004613588565b6110d2565b34801561055b57600080fd5b5060125461056e90610100900460ff1681565b60405160ff90911681526020016103db565b61042761058e3660046135da565b6111a8565b34801561059f57600080fd5b506103d1600e5481565b3480156105b557600080fd5b5061042761138d565b3480156105ca57600080fd5b506104276105d9366004613453565b6113de565b3480156105ea57600080fd5b506104276105f9366004613501565b6114cf565b34801561060a57600080fd5b50610427610619366004613633565b6114ea565b34801561062a57600080fd5b506103d17f000000000000000000000000000000000000000000000000000000000000000081565b34801561065e57600080fd5b5061042761066d3660046134e8565b6115e7565b34801561067e57600080fd5b506103d160155481565b34801561069457600080fd5b506103d16106a33660046134e8565b611683565b3480156106b457600080fd5b506104276106c33660046134e8565b6116eb565b3480156106d457600080fd5b506104276106e336600461364e565b611786565b3480156106f457600080fd5b5061046b6107033660046134e8565b6117dc565b34801561071457600080fd5b506104276117ee565b34801561072957600080fd5b50610427611842565b34801561073e57600080fd5b506103d161074d366004613633565b611893565b34801561075e57600080fd5b50610427611924565b610427610775366004613633565b61195a565b34801561078657600080fd5b50610427611a72565b34801561079b57600080fd5b50610427611ac6565b3480156107b057600080fd5b5061046b6107bf3660046134e8565b611b1e565b3480156107d057600080fd5b506103d160105481565b3480156107e657600080fd5b506000546001600160a01b031661046b565b34801561080457600080fd5b506014546104049060ff1681565b34801561081e57600080fd5b5061042761082d3660046134e8565b611b48565b34801561083e57600080fd5b5061042761084d3660046134e8565b611bf3565b34801561085e57600080fd5b5061087261086d3660046134e8565b611c3d565b6040805182516001600160a01b031681526020928301516001600160401b031692810192909252016103db565b3480156108ab57600080fd5b5061043e611c5a565b3480156108c057600080fd5b506104046108cf366004613633565b611c69565b3480156108e057600080fd5b506104276108ef3660046136cd565b611ce6565b34801561090057600080fd5b50610427611dab565b34801561091557600080fd5b50610427610924366004613453565b611df6565b34801561093557600080fd5b5061042761094436600461371a565b612018565b34801561095557600080fd5b50610427610964366004613633565b61204b565b34801561097557600080fd5b50600b5461046b906001600160a01b031681565b34801561099557600080fd5b5061043e6109a43660046134e8565b612178565b3480156109b557600080fd5b506103d16121d6565b3480156109ca57600080fd5b5061043e6121f0565b3480156109df57600080fd5b5061043e61227e565b3480156109f457600080fd5b506103d1600a5481565b348015610a0a57600080fd5b5061042761228d565b610427610a21366004613588565b6122fc565b348015610a3257600080fd5b50610427610a41366004613633565b612460565b348015610a5257600080fd5b506012546104049060ff1681565b348015610a6c57600080fd5b506103d1610a7b3660046134e8565b61255c565b348015610a8c57600080fd5b50610404610a9b3660046137f5565b6001600160a01b03918216600090815260096020908152604080832093909416825291909152205460ff1690565b348015610ad557600080fd5b50610427610ae4366004613633565b61256c565b348015610af557600080fd5b50610427612604565b348015610b0a57600080fd5b50610404610b19366004613453565b61264f565b6000610b2d6002546000190190565b905090565b60006001600160e01b031982166380ac58cd60e01b1480610b6357506001600160e01b03198216635b5e139f60e01b145b80610b7e57506001600160e01b0319821663780e9d6360e01b145b80610b9957506301ffc9a760e01b6001600160e01b03198316145b92915050565b6001811015610bf55760405162461bcd60e51b815260206004820152601a60248201527f4d757374206d696e74206174206c65617374203120746f6b656e00000000000060448201526064015b60405180910390fd5b600354811115610c175760405162461bcd60e51b8152600401610bec90613828565b60145460ff1615156001148015610c31575060125460ff16155b610c4d5760405162461bcd60e51b8152600401610bec90613876565b610c57828261264f565b610c735760405162461bcd60e51b8152600401610bec906138bb565b7f000000000000000000000000000000000000000000000000000000000000000081610c9d610b1e565b610ca79190613921565b1115610cc55760405162461bcd60e51b8152600401610bec90613939565b610cce8161255c565b3414610cec5760405162461bcd60e51b8152600401610bec9061397d565b610cf8828260006126d4565b5050565b606060048054610d0b906139c5565b80601f0160208091040260200160405190810160405280929190818152602001828054610d37906139c5565b8015610d845780601f10610d5957610100808354040283529160200191610d84565b820191906000526020600020905b815481529060010190602001808311610d6757829003601f168201915b5050505050905090565b6000610d99826126ef565b610dfb5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b6064820152608401610bec565b506000908152600860205260409020546001600160a01b031690565b6000610e22826117dc565b9050806001600160a01b0316836001600160a01b03161415610e915760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610bec565b336001600160a01b0382161480610ead5750610ead8133610a9b565b610f1f5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610bec565b610f2a838383612705565b505050565b610f2a838383612761565b600d8181548110610f4a57600080fd5b600091825260209091200154905081565b6000610f6683611893565b8210610fbf5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610bec565b6000610fc9610b1e565b905060008060005b83811015611072576000818152600660209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b0316918301919091521561102357805192505b876001600160a01b0316836001600160a01b0316141561105f578684141561105157509350610b9992505050565b8361105b81613a00565b9450505b508061106a81613a00565b915050610fd1565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610bec565b6011546000906111245760405162461bcd60e51b815260206004820152601760248201527f4d65726b6c6520726f6f74206973206e6f7420736574210000000000000000006044820152606401610bec565b6040516bffffffffffffffffffffffff19606086901b16602082015260009060340160405160208183030381529060405280519060200120905061119f848480806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506011549150849050612ae1565b95945050505050565b60125460ff16151560011480156111c6575060145460ff1615156001145b6112125760405162461bcd60e51b815260206004820152601b60248201527f416c6c6f776c697374206d696e74696e6720697320636c6f73656400000000006044820152606401610bec565b61121d8483836110d2565b6112695760405162461bcd60e51b815260206004820152601c60248201527f41646472657373206973206e6f7420696e20416c6c6f776c69737421000000006044820152606401610bec565b60018310156112ba5760405162461bcd60e51b815260206004820152601a60248201527f4d757374206d696e74206174206c65617374203120746f6b656e0000000000006044820152606401610bec565b6003548311156112dc5760405162461bcd60e51b8152600401610bec90613828565b6112e6848461264f565b6113025760405162461bcd60e51b8152600401610bec906138bb565b7f00000000000000000000000000000000000000000000000000000000000000008361132c610b1e565b6113369190613921565b11156113545760405162461bcd60e51b8152600401610bec90613a1b565b61135d8361255c565b341461137b5760405162461bcd60e51b8152600401610bec9061397d565b611387848460006126d4565b50505050565b600080546001600160a01b03163390811491906113a990611c69565b905081806113b45750805b6113d05760405162461bcd60e51b8152600401610bec90613a5e565b50506014805460ff19169055565b600080546001600160a01b03163390811491906113fa90611c69565b905081806114055750805b6114215760405162461bcd60e51b8152600401610bec90613a5e565b600083116114715760405162461bcd60e51b815260206004820152601b60248201527f4d757374206d696e74206174206c65617374203120746f6b656e2e00000000006044820152606401610bec565b7f00000000000000000000000000000000000000000000000000000000000000008361149b610b1e565b6114a59190613921565b11156114c35760405162461bcd60e51b8152600401610bec90613939565b611387848460016126d4565b610f2a83838360405180602001604052806000815250612018565b6000546001600160a01b031633146115145760405162461bcd60e51b8152600401610bec90613aa7565b6001600160a01b03811661155c5760405162461bcd60e51b815260206004820152600f60248201526e496e76616c6964206164647265737360881b6044820152606401610bec565b61156581611c69565b156115c05760405162461bcd60e51b815260206004820152602560248201527f54686973206164647265737320697320616c726561647920696e20796f7572206044820152643a32b0b69760d91b6064820152608401610bec565b6001600160a01b03166000908152600160208190526040909120805460ff19169091179055565b600080546001600160a01b031633908114919061160390611c69565b9050818061160e5750805b61162a5760405162461bcd60e51b8152600401610bec90613a5e565b60115483141561167c5760405162461bcd60e51b815260206004820152601e60248201527f4d65726b6c6520726f6f742077696c6c20626520756e6368616e6765642100006044820152606401610bec565b5050601155565b600061168d610b1e565b82106116e75760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610bec565b5090565b600080546001600160a01b031633908114919061170790611c69565b905081806117125750805b61172e5760405162461bcd60e51b8152600401610bec90613a5e565b600183101561177f5760405162461bcd60e51b815260206004820152601b60248201527f4d6178206d696e74206d757374206265206174206c65617374203100000000006044820152606401610bec565b5050600355565b600080546001600160a01b03163390811491906117a290611c69565b905081806117ad5750805b6117c95760405162461bcd60e51b8152600401610bec90613a5e565b6117d560138585613374565b5050505050565b60006117e782612af7565b5192915050565b600080546001600160a01b031633908114919061180a90611c69565b905081806118155750805b6118315760405162461bcd60e51b8152600401610bec90613a5e565b50506014805460ff19166001179055565b600080546001600160a01b031633908114919061185e90611c69565b905081806118695750805b6118855760405162461bcd60e51b8152600401610bec90613a5e565b50506012805460ff19169055565b60006001600160a01b0382166118ff5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610bec565b506001600160a01b03166000908152600760205260409020546001600160801b031690565b6000546001600160a01b0316331461194e5760405162461bcd60e51b8152600401610bec90613aa7565b6119586000612c25565b565b7f00000000000000000000000000000000000000000000000000000000000000006119836121d6565b11156119dd5760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f74206d696e74206f76657220737570706c7920636170206f6620316044820152630303030360e41b6064820152608401610bec565b60145460ff16151560011480156119f7575060125460ff16155b611a135760405162461bcd60e51b8152600401610bec90613876565b611a1e8160c861264f565b611a3a5760405162461bcd60e51b8152600401610bec906138bb565b611a44600161255c565b3414611a625760405162461bcd60e51b8152600401610bec90613adc565b611a6f81600160006126d4565b50565b600080546001600160a01b0316339081149190611a8e90611c69565b90508180611a995750805b611ab55760405162461bcd60e51b8152600401610bec90613a5e565b50506012805460ff19166001179055565b600080546001600160a01b0316339081149190611ae290611c69565b90508180611aed5750805b611b095760405162461bcd60e51b8152600401610bec90613a5e565b60004711611b1657600080fd5b610cf8612c75565b600c8181548110611b2e57600080fd5b6000918252602090912001546001600160a01b0316905081565b600080546001600160a01b0316339081149190611b6490611c69565b90508180611b6f5750805b611b8b5760405162461bcd60e51b8152600401610bec90613a5e565b6001831015611bec5760405162461bcd60e51b815260206004820152602760248201527f4d6178206d696e7473207065722077616c6c6574206d757374206265206174206044820152666c65617374203160c81b6064820152608401610bec565b5050601555565b600080546001600160a01b0316339081149190611c0f90611c69565b90508180611c1a5750805b611c365760405162461bcd60e51b8152600401610bec90613a5e565b5050601055565b6040805180820190915260008082526020820152610b9982612af7565b606060058054610d0b906139c5565b60006001600160a01b038216611cc15760405162461bcd60e51b815260206004820152601960248201527f496e76616c6964206164647265737320746f20636865636b2e000000000000006044820152606401610bec565b506001600160a01b031660009081526001602081905260409091205460ff1615151490565b6001600160a01b038216331415611d3f5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610bec565b3360008181526009602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600080546001600160a01b0316339081149190611dc790611c69565b90508180611dd25750805b611dee5760405162461bcd60e51b8152600401610bec90613a5e565b6113d0611842565b600080546001600160a01b0316339081149190611e1290611c69565b90508180611e1d5750805b611e395760405162461bcd60e51b8152600401610bec90613a5e565b60008311611e4657600080fd5b6040516370a0823160e01b8152306004820152849084906001600160a01b038316906370a0823190602401602060405180830381865afa158015611e8e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611eb29190613b23565b1015611f0c5760405162461bcd60e51b815260206004820152602360248201527f436f6e747261637420646f6573206e6f74206f776e20656e6f75676820746f6b604482015262656e7360e81b6064820152608401610bec565b60005b600e5481101561201057816001600160a01b031663a9059cbb600c8381548110611f3b57611f3b613b3c565b9060005260206000200160009054906101000a90046001600160a01b03166064600d8581548110611f6e57611f6e613b3c565b906000526020600020015489611f849190613b52565b611f8e9190613b87565b6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303816000875af1158015611fd9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ffd9190613b9b565b508061200881613a00565b915050611f0f565b505050505050565b612023848484612761565b61202f84848484612d03565b6113875760405162461bcd60e51b8152600401610bec90613bb8565b600b546001600160a01b031633146120a55760405162461bcd60e51b815260206004820152601c60248201527f4f776e61626c653a2063616c6c6572206973206e6f742052414d5050000000006044820152606401610bec565b600b546001600160a01b03828116911614156121165760405162461bcd60e51b815260206004820152602a60248201527f52414d50503a204e65772052616d70702061646472657373206d75737420626560448201526908191a5999995c995b9d60b21b6064820152608401610bec565b600b80546001600160a01b0319166001600160a01b038316179055600c805482919060009061214757612147613b3c565b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555050565b6060600061218461227e565b905060008151116121a457604051806020016040528060008152506121cf565b806121ae84612e02565b6040516020016121bf929190613c0b565b6040516020818303038152906040525b9392505050565b60006121e56002546000190190565b610b2d906001613921565b601380546121fd906139c5565b80601f0160208091040260200160405190810160405280929190818152602001828054612229906139c5565b80156122765780601f1061224b57610100808354040283529160200191612276565b820191906000526020600020905b81548152906001019060200180831161225957829003601f168201915b505050505081565b606060138054610d0b906139c5565b600b546001600160a01b031633146122e75760405162461bcd60e51b815260206004820152601c60248201527f4f776e61626c653a2063616c6c6572206973206e6f742052414d5050000000006044820152606401610bec565b600047116122f457600080fd5b611958612c75565b60125460ff161515600114801561231a575060145460ff1615156001145b6123665760405162461bcd60e51b815260206004820152601b60248201527f416c6c6f776c697374206d696e74696e6720697320636c6f73656400000000006044820152606401610bec565b6123718383836110d2565b6123bd5760405162461bcd60e51b815260206004820152601c60248201527f41646472657373206973206e6f7420696e20416c6c6f776c69737421000000006044820152606401610bec565b7f00000000000000000000000000000000000000000000000000000000000000006123e66121d6565b11156124045760405162461bcd60e51b8152600401610bec90613a1b565b61240f83600161264f565b61242b5760405162461bcd60e51b8152600401610bec906138bb565b612435600161255c565b34146124535760405162461bcd60e51b8152600401610bec90613adc565b610f2a83600160006126d4565b6000546001600160a01b0316331461248a5760405162461bcd60e51b8152600401610bec90613aa7565b6001600160a01b0381166124d25760405162461bcd60e51b815260206004820152600f60248201526e496e76616c6964206164647265737360881b6044820152606401610bec565b6124db81611c69565b61253b5760405162461bcd60e51b815260206004820152602b60248201527f546869732061646472657373206973206e6f7420696e20796f7572207465616d60448201526a1031bab93932b73a363c9760a91b6064820152608401610bec565b6001600160a01b03166000908152600160205260409020805460ff19169055565b600081601054610b999190613b52565b6000546001600160a01b031633146125965760405162461bcd60e51b8152600401610bec90613aa7565b6001600160a01b0381166125fb5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610bec565b611a6f81612c25565b600080546001600160a01b031633908114919061262090611c69565b9050818061262b5750805b6126475760405162461bcd60e51b8152600401610bec90613a5e565b611831611a72565b600060018210156126b45760405162461bcd60e51b815260206004820152602960248201527f416d6f756e74206d7573742062652067726561746572207468616e206f7220656044820152687175616c20746f203160b81b6064820152608401610bec565b601554826126c185612eff565b6126cb9190613921565b11159392505050565b610f2a83838360405180602001604052806000815250612f9d565b600081600111158015610b995750506002541190565b60008281526008602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061276c82612af7565b80519091506000906001600160a01b0316336001600160a01b031614806127a357503361279884610d8e565b6001600160a01b0316145b806127b5575081516127b59033610a9b565b90508061281f5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610bec565b846001600160a01b031682600001516001600160a01b0316146128935760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610bec565b6001600160a01b0384166128f75760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610bec565b6129076000848460000151612705565b6001600160a01b03851660009081526007602052604081208054600192906129399084906001600160801b0316613c3a565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b0386166000908152600760205260408120805460019450909261298591859116613c62565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b0380871682526001600160401b03428116602080850191825260008981526006909152948520935184549151909216600160a01b026001600160e01b03199091169190921617179055612a0c846001613921565b6000818152600660205260409020549091506001600160a01b0316612a9b57612a34816126ef565b15612a9b5760408051808201825284516001600160a01b0390811682526020808701516001600160401b039081168285019081526000878152600690935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612010565b600082612aee858461326a565b14949350505050565b60408051808201909152600080825260208201528180600111158015612b1e575060025481105b15612bc5576000818152600660209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215612b6f579392505050565b50600019016000818152600660209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215612bc0579392505050565b612b6f565b60405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610bec565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b4760005b600e54811015610cf857612cf1600c8281548110612c9957612c99613b3c565b9060005260206000200160009054906101000a90046001600160a01b03166064600d8481548110612ccc57612ccc613b3c565b906000526020600020015485612ce29190613b52565b612cec9190613b87565b6132de565b80612cfb81613a00565b915050612c79565b60006001600160a01b0384163b15612df657604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612d47903390899088908890600401613c84565b6020604051808303816000875af1925050508015612d82575060408051601f3d908101601f19168201909252612d7f91810190613cc1565b60015b612ddc573d808015612db0576040519150601f19603f3d011682016040523d82523d6000602084013e612db5565b606091505b508051612dd45760405162461bcd60e51b8152600401610bec90613bb8565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612dfa565b5060015b949350505050565b606081612e265750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612e505780612e3a81613a00565b9150612e499050600a83613b87565b9150612e2a565b6000816001600160401b03811115612e6a57612e6a613704565b6040519080825280601f01601f191660200182016040528015612e94576020820181803683370190505b5090505b8415612dfa57612ea9600183613cde565b9150612eb6600a86613cf5565b612ec1906030613921565b60f81b818381518110612ed657612ed6613b3c565b60200101906001600160f81b031916908160001a905350612ef8600a86613b87565b9450612e98565b60006001600160a01b038216612f715760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b6064820152608401610bec565b506001600160a01b0316600090815260076020526040902054600160801b90046001600160801b031690565b6002546001600160a01b0385166130005760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610bec565b613009816126ef565b156130565760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610bec565b826130b8576003548411156130b85760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610bec565b6001600160a01b0385166000908152600760209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190613114908890613c62565b6001600160801b031681526020018561312d5786613130565b60005b836020015161313f9190613c62565b6001600160801b039081169091526001600160a01b0380891660008181526007602090815260408083208751978301518716600160801b029790961696909617909455845180860186529182526001600160401b034281168386019081528883526006909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b8681101561325e5760405182906001600160a01b038a16906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46132226000898488612d03565b61323e5760405162461bcd60e51b8152600401610bec90613bb8565b8161324881613a00565b925050808061325690613a00565b9150506131d5565b50600255505050505050565b600081815b84518110156132d657600085828151811061328c5761328c613b3c565b602002602001015190508083116132b257600083815260208290526040902092506132c3565b600081815260208490526040902092505b50806132ce81613a00565b91505061326f565b509392505050565b6000826001600160a01b03168260405160006040518083038185875af1925050503d806000811461332b576040519150601f19603f3d011682016040523d82523d6000602084013e613330565b606091505b5050905080610f2a5760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610bec565b828054613380906139c5565b90600052602060002090601f0160209004810192826133a257600085556133e8565b82601f106133bb5782800160ff198235161785556133e8565b828001600101855582156133e8579182015b828111156133e85782358255916020019190600101906133cd565b506116e79291505b808211156116e757600081556001016133f0565b6001600160e01b031981168114611a6f57600080fd5b60006020828403121561342c57600080fd5b81356121cf81613404565b80356001600160a01b038116811461344e57600080fd5b919050565b6000806040838503121561346657600080fd5b61346f83613437565b946020939093013593505050565b60005b83811015613498578181015183820152602001613480565b838111156113875750506000910152565b600081518084526134c181602086016020860161347d565b601f01601f19169290920160200192915050565b6020815260006121cf60208301846134a9565b6000602082840312156134fa57600080fd5b5035919050565b60008060006060848603121561351657600080fd5b61351f84613437565b925061352d60208501613437565b9150604084013590509250925092565b60008083601f84011261354f57600080fd5b5081356001600160401b0381111561356657600080fd5b6020830191508360208260051b850101111561358157600080fd5b9250929050565b60008060006040848603121561359d57600080fd5b6135a684613437565b925060208401356001600160401b038111156135c157600080fd5b6135cd8682870161353d565b9497909650939450505050565b600080600080606085870312156135f057600080fd5b6135f985613437565b93506020850135925060408501356001600160401b0381111561361b57600080fd5b6136278782880161353d565b95989497509550505050565b60006020828403121561364557600080fd5b6121cf82613437565b6000806020838503121561366157600080fd5b82356001600160401b038082111561367857600080fd5b818501915085601f83011261368c57600080fd5b81358181111561369b57600080fd5b8660208285010111156136ad57600080fd5b60209290920196919550909350505050565b8015158114611a6f57600080fd5b600080604083850312156136e057600080fd5b6136e983613437565b915060208301356136f9816136bf565b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b6000806000806080858703121561373057600080fd5b61373985613437565b935061374760208601613437565b92506040850135915060608501356001600160401b038082111561376a57600080fd5b818701915087601f83011261377e57600080fd5b81358181111561379057613790613704565b604051601f8201601f19908116603f011681019083821181831017156137b8576137b8613704565b816040528281528a60208487010111156137d157600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561380857600080fd5b61381183613437565b915061381f60208401613437565b90509250929050565b6020808252602e908201527f43616e6e6f74206d696e74206d6f7265207468616e206d6178206d696e74207060408201526d32b9103a3930b739b0b1ba34b7b760911b606082015260800190565b60208082526025908201527f5075626c6963206d696e74696e67206973206e6f74206f70656e207269676874604082015264206e6f772160d81b606082015260800190565b60208082526030908201527f57616c6c65742061646472657373206973206f76657220746865206d6178696d60408201526f756d20616c6c6f776564206d696e747360801b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b600082198211156139345761393461390b565b500190565b60208082526024908201527f43616e6e6f74206d696e74206f76657220737570706c7920636170206f6620386040820152630707070760e31b606082015260800190565b60208082526028908201527f56616c75652062656c6f77207265717569726564206d696e742066656520666f6040820152671c88185b5bdd5b9d60c21b606082015260800190565b600181811c908216806139d957607f821691505b602082108114156139fa57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415613a1457613a1461390b565b5060010190565b60208082526023908201527f43616e6e6f74206d696e74206f76657220737570706c7920636170206f66203860408201526207070760eb1b606082015260800190565b60208082526029908201527f5465616d3a2063616c6c6572206973206e6f7420746865206f776e6572206f726040820152681034b7102a32b0b69760b91b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526027908201527f56616c7565206e6565647320746f2062652065786163746c7920746865206d696040820152666e74206665652160c81b606082015260800190565b600060208284031215613b3557600080fd5b5051919050565b634e487b7160e01b600052603260045260246000fd5b6000816000190483118215151615613b6c57613b6c61390b565b500290565b634e487b7160e01b600052601260045260246000fd5b600082613b9657613b96613b71565b500490565b600060208284031215613bad57600080fd5b81516121cf816136bf565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60008351613c1d81846020880161347d565b835190830190613c3181836020880161347d565b01949350505050565b60006001600160801b0383811690831681811015613c5a57613c5a61390b565b039392505050565b60006001600160801b03808316818516808303821115613c3157613c3161390b565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090613cb7908301846134a9565b9695505050505050565b600060208284031215613cd357600080fd5b81516121cf81613404565b600082821015613cf057613cf061390b565b500390565b600082613d0457613d04613b71565b50069056fea2646970667358221220c8c78f35f412e79ee2e5e4ed6e8d9eab627827fa57d637b8e06a478f6a57acc264736f6c634300080b0033

Deployed Bytecode

0x6080604052600436106103b75760003560e01c8063755edd17116101f2578063bbd8556b1161010d578063df213e8a116100a0578063e985e9c51161006f578063e985e9c514610a80578063f2fde38b14610ac9578063f8c0fd2014610ae9578063fd19eaf014610afe57600080fd5b8063df213e8a14610a13578063dfdedf6914610a26578063e6c6990a14610a46578063e757223014610a6057600080fd5b8063cfc86f7b116100dc578063cfc86f7b146109be578063d547cfb7146109d3578063d7224ba0146109e8578063dcd4aa8b146109fe57600080fd5b8063bbd8556b14610949578063c5815c4114610969578063c87b56dd14610989578063caa0f92a146109a957600080fd5b806391b7f5ed11610185578063a22cb46511610154578063a22cb465146108d4578063afe5608b146108f4578063b40ebceb14610909578063b88d4fde1461092957600080fd5b806391b7f5ed146108325780639231ab2a1461085257806395d89b411461089f578063a1af10ca146108b457600080fd5b80638d859f3e116101c15780638d859f3e146107c45780638da5cb5b146107da5780638f4bb497146107f85780638ff4013f1461081257600080fd5b8063755edd171461076757806379ab3c891461077a578063853828b61461078f578063891bbe73146107a457600080fd5b80633e07311c116102e25780634f6ccce7116102755780636ba9fd38116102445780636ba9fd38146107085780636d3de8061461071d57806370a0823114610732578063715018a61461075257600080fd5b80634f6ccce714610688578063547520fe146106a857806355f804b3146106c85780636352211e146106e857600080fd5b806343696f18116102b157806343696f18146105fe57806345c0f5331461061e5780634783f0ef146106525780634ab8b5dd1461067257600080fd5b80633e07311c146105935780633e3e0b12146105a957806340ccc082146105be57806342842e0e146105de57600080fd5b806323b872dd1161035a5780632f745c59116103295780632f745c591461050f578063330067861461052f57806338b903331461054f5780633c0032541461058057600080fd5b806323b872dd146104a3578063286c8137146104c35780632913daa0146104e35780632eb4a7ab146104f957600080fd5b806306fdde031161039657806306fdde0314610429578063081812fc1461044b578063095ea7b31461048357806318160ddd146103bc57600080fd5b80629a9b7b146103bc57806301ffc9a7146103e45780630644cefa14610414575b600080fd5b3480156103c857600080fd5b506103d1610b1e565b6040519081526020015b60405180910390f35b3480156103f057600080fd5b506104046103ff36600461341a565b610b32565b60405190151581526020016103db565b610427610422366004613453565b610b9f565b005b34801561043557600080fd5b5061043e610cfc565b6040516103db91906134d5565b34801561045757600080fd5b5061046b6104663660046134e8565b610d8e565b6040516001600160a01b0390911681526020016103db565b34801561048f57600080fd5b5061042761049e366004613453565b610e17565b3480156104af57600080fd5b506104276104be366004613501565b610f2f565b3480156104cf57600080fd5b506103d16104de3660046134e8565b610f3a565b3480156104ef57600080fd5b506103d160035481565b34801561050557600080fd5b506103d160115481565b34801561051b57600080fd5b506103d161052a366004613453565b610f5b565b34801561053b57600080fd5b5061040461054a366004613588565b6110d2565b34801561055b57600080fd5b5060125461056e90610100900460ff1681565b60405160ff90911681526020016103db565b61042761058e3660046135da565b6111a8565b34801561059f57600080fd5b506103d1600e5481565b3480156105b557600080fd5b5061042761138d565b3480156105ca57600080fd5b506104276105d9366004613453565b6113de565b3480156105ea57600080fd5b506104276105f9366004613501565b6114cf565b34801561060a57600080fd5b50610427610619366004613633565b6114ea565b34801561062a57600080fd5b506103d17f0000000000000000000000000000000000000000000000000000000000001e6181565b34801561065e57600080fd5b5061042761066d3660046134e8565b6115e7565b34801561067e57600080fd5b506103d160155481565b34801561069457600080fd5b506103d16106a33660046134e8565b611683565b3480156106b457600080fd5b506104276106c33660046134e8565b6116eb565b3480156106d457600080fd5b506104276106e336600461364e565b611786565b3480156106f457600080fd5b5061046b6107033660046134e8565b6117dc565b34801561071457600080fd5b506104276117ee565b34801561072957600080fd5b50610427611842565b34801561073e57600080fd5b506103d161074d366004613633565b611893565b34801561075e57600080fd5b50610427611924565b610427610775366004613633565b61195a565b34801561078657600080fd5b50610427611a72565b34801561079b57600080fd5b50610427611ac6565b3480156107b057600080fd5b5061046b6107bf3660046134e8565b611b1e565b3480156107d057600080fd5b506103d160105481565b3480156107e657600080fd5b506000546001600160a01b031661046b565b34801561080457600080fd5b506014546104049060ff1681565b34801561081e57600080fd5b5061042761082d3660046134e8565b611b48565b34801561083e57600080fd5b5061042761084d3660046134e8565b611bf3565b34801561085e57600080fd5b5061087261086d3660046134e8565b611c3d565b6040805182516001600160a01b031681526020928301516001600160401b031692810192909252016103db565b3480156108ab57600080fd5b5061043e611c5a565b3480156108c057600080fd5b506104046108cf366004613633565b611c69565b3480156108e057600080fd5b506104276108ef3660046136cd565b611ce6565b34801561090057600080fd5b50610427611dab565b34801561091557600080fd5b50610427610924366004613453565b611df6565b34801561093557600080fd5b5061042761094436600461371a565b612018565b34801561095557600080fd5b50610427610964366004613633565b61204b565b34801561097557600080fd5b50600b5461046b906001600160a01b031681565b34801561099557600080fd5b5061043e6109a43660046134e8565b612178565b3480156109b557600080fd5b506103d16121d6565b3480156109ca57600080fd5b5061043e6121f0565b3480156109df57600080fd5b5061043e61227e565b3480156109f457600080fd5b506103d1600a5481565b348015610a0a57600080fd5b5061042761228d565b610427610a21366004613588565b6122fc565b348015610a3257600080fd5b50610427610a41366004613633565b612460565b348015610a5257600080fd5b506012546104049060ff1681565b348015610a6c57600080fd5b506103d1610a7b3660046134e8565b61255c565b348015610a8c57600080fd5b50610404610a9b3660046137f5565b6001600160a01b03918216600090815260096020908152604080832093909416825291909152205460ff1690565b348015610ad557600080fd5b50610427610ae4366004613633565b61256c565b348015610af557600080fd5b50610427612604565b348015610b0a57600080fd5b50610404610b19366004613453565b61264f565b6000610b2d6002546000190190565b905090565b60006001600160e01b031982166380ac58cd60e01b1480610b6357506001600160e01b03198216635b5e139f60e01b145b80610b7e57506001600160e01b0319821663780e9d6360e01b145b80610b9957506301ffc9a760e01b6001600160e01b03198316145b92915050565b6001811015610bf55760405162461bcd60e51b815260206004820152601a60248201527f4d757374206d696e74206174206c65617374203120746f6b656e00000000000060448201526064015b60405180910390fd5b600354811115610c175760405162461bcd60e51b8152600401610bec90613828565b60145460ff1615156001148015610c31575060125460ff16155b610c4d5760405162461bcd60e51b8152600401610bec90613876565b610c57828261264f565b610c735760405162461bcd60e51b8152600401610bec906138bb565b7f0000000000000000000000000000000000000000000000000000000000001e6181610c9d610b1e565b610ca79190613921565b1115610cc55760405162461bcd60e51b8152600401610bec90613939565b610cce8161255c565b3414610cec5760405162461bcd60e51b8152600401610bec9061397d565b610cf8828260006126d4565b5050565b606060048054610d0b906139c5565b80601f0160208091040260200160405190810160405280929190818152602001828054610d37906139c5565b8015610d845780601f10610d5957610100808354040283529160200191610d84565b820191906000526020600020905b815481529060010190602001808311610d6757829003601f168201915b5050505050905090565b6000610d99826126ef565b610dfb5760405162461bcd60e51b815260206004820152602d60248201527f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560448201526c3c34b9ba32b73a103a37b5b2b760991b6064820152608401610bec565b506000908152600860205260409020546001600160a01b031690565b6000610e22826117dc565b9050806001600160a01b0316836001600160a01b03161415610e915760405162461bcd60e51b815260206004820152602260248201527f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60448201526132b960f11b6064820152608401610bec565b336001600160a01b0382161480610ead5750610ead8133610a9b565b610f1f5760405162461bcd60e51b815260206004820152603960248201527f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60448201527f776e6572206e6f7220617070726f76656420666f7220616c6c000000000000006064820152608401610bec565b610f2a838383612705565b505050565b610f2a838383612761565b600d8181548110610f4a57600080fd5b600091825260209091200154905081565b6000610f6683611893565b8210610fbf5760405162461bcd60e51b815260206004820152602260248201527f455243373231413a206f776e657220696e646578206f7574206f6620626f756e604482015261647360f01b6064820152608401610bec565b6000610fc9610b1e565b905060008060005b83811015611072576000818152600660209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b0316918301919091521561102357805192505b876001600160a01b0316836001600160a01b0316141561105f578684141561105157509350610b9992505050565b8361105b81613a00565b9450505b508061106a81613a00565b915050610fd1565b5060405162461bcd60e51b815260206004820152602e60248201527f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060448201526d0deeedccae440c4f240d2dcc8caf60931b6064820152608401610bec565b6011546000906111245760405162461bcd60e51b815260206004820152601760248201527f4d65726b6c6520726f6f74206973206e6f7420736574210000000000000000006044820152606401610bec565b6040516bffffffffffffffffffffffff19606086901b16602082015260009060340160405160208183030381529060405280519060200120905061119f848480806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506011549150849050612ae1565b95945050505050565b60125460ff16151560011480156111c6575060145460ff1615156001145b6112125760405162461bcd60e51b815260206004820152601b60248201527f416c6c6f776c697374206d696e74696e6720697320636c6f73656400000000006044820152606401610bec565b61121d8483836110d2565b6112695760405162461bcd60e51b815260206004820152601c60248201527f41646472657373206973206e6f7420696e20416c6c6f776c69737421000000006044820152606401610bec565b60018310156112ba5760405162461bcd60e51b815260206004820152601a60248201527f4d757374206d696e74206174206c65617374203120746f6b656e0000000000006044820152606401610bec565b6003548311156112dc5760405162461bcd60e51b8152600401610bec90613828565b6112e6848461264f565b6113025760405162461bcd60e51b8152600401610bec906138bb565b7f0000000000000000000000000000000000000000000000000000000000001e618361132c610b1e565b6113369190613921565b11156113545760405162461bcd60e51b8152600401610bec90613a1b565b61135d8361255c565b341461137b5760405162461bcd60e51b8152600401610bec9061397d565b611387848460006126d4565b50505050565b600080546001600160a01b03163390811491906113a990611c69565b905081806113b45750805b6113d05760405162461bcd60e51b8152600401610bec90613a5e565b50506014805460ff19169055565b600080546001600160a01b03163390811491906113fa90611c69565b905081806114055750805b6114215760405162461bcd60e51b8152600401610bec90613a5e565b600083116114715760405162461bcd60e51b815260206004820152601b60248201527f4d757374206d696e74206174206c65617374203120746f6b656e2e00000000006044820152606401610bec565b7f0000000000000000000000000000000000000000000000000000000000001e618361149b610b1e565b6114a59190613921565b11156114c35760405162461bcd60e51b8152600401610bec90613939565b611387848460016126d4565b610f2a83838360405180602001604052806000815250612018565b6000546001600160a01b031633146115145760405162461bcd60e51b8152600401610bec90613aa7565b6001600160a01b03811661155c5760405162461bcd60e51b815260206004820152600f60248201526e496e76616c6964206164647265737360881b6044820152606401610bec565b61156581611c69565b156115c05760405162461bcd60e51b815260206004820152602560248201527f54686973206164647265737320697320616c726561647920696e20796f7572206044820152643a32b0b69760d91b6064820152608401610bec565b6001600160a01b03166000908152600160208190526040909120805460ff19169091179055565b600080546001600160a01b031633908114919061160390611c69565b9050818061160e5750805b61162a5760405162461bcd60e51b8152600401610bec90613a5e565b60115483141561167c5760405162461bcd60e51b815260206004820152601e60248201527f4d65726b6c6520726f6f742077696c6c20626520756e6368616e6765642100006044820152606401610bec565b5050601155565b600061168d610b1e565b82106116e75760405162461bcd60e51b815260206004820152602360248201527f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f756044820152626e647360e81b6064820152608401610bec565b5090565b600080546001600160a01b031633908114919061170790611c69565b905081806117125750805b61172e5760405162461bcd60e51b8152600401610bec90613a5e565b600183101561177f5760405162461bcd60e51b815260206004820152601b60248201527f4d6178206d696e74206d757374206265206174206c65617374203100000000006044820152606401610bec565b5050600355565b600080546001600160a01b03163390811491906117a290611c69565b905081806117ad5750805b6117c95760405162461bcd60e51b8152600401610bec90613a5e565b6117d560138585613374565b5050505050565b60006117e782612af7565b5192915050565b600080546001600160a01b031633908114919061180a90611c69565b905081806118155750805b6118315760405162461bcd60e51b8152600401610bec90613a5e565b50506014805460ff19166001179055565b600080546001600160a01b031633908114919061185e90611c69565b905081806118695750805b6118855760405162461bcd60e51b8152600401610bec90613a5e565b50506012805460ff19169055565b60006001600160a01b0382166118ff5760405162461bcd60e51b815260206004820152602b60248201527f455243373231413a2062616c616e636520717565727920666f7220746865207a60448201526a65726f206164647265737360a81b6064820152608401610bec565b506001600160a01b03166000908152600760205260409020546001600160801b031690565b6000546001600160a01b0316331461194e5760405162461bcd60e51b8152600401610bec90613aa7565b6119586000612c25565b565b7f0000000000000000000000000000000000000000000000000000000000001e616119836121d6565b11156119dd5760405162461bcd60e51b8152602060048201526024808201527f43616e6e6f74206d696e74206f76657220737570706c7920636170206f6620316044820152630303030360e41b6064820152608401610bec565b60145460ff16151560011480156119f7575060125460ff16155b611a135760405162461bcd60e51b8152600401610bec90613876565b611a1e8160c861264f565b611a3a5760405162461bcd60e51b8152600401610bec906138bb565b611a44600161255c565b3414611a625760405162461bcd60e51b8152600401610bec90613adc565b611a6f81600160006126d4565b50565b600080546001600160a01b0316339081149190611a8e90611c69565b90508180611a995750805b611ab55760405162461bcd60e51b8152600401610bec90613a5e565b50506012805460ff19166001179055565b600080546001600160a01b0316339081149190611ae290611c69565b90508180611aed5750805b611b095760405162461bcd60e51b8152600401610bec90613a5e565b60004711611b1657600080fd5b610cf8612c75565b600c8181548110611b2e57600080fd5b6000918252602090912001546001600160a01b0316905081565b600080546001600160a01b0316339081149190611b6490611c69565b90508180611b6f5750805b611b8b5760405162461bcd60e51b8152600401610bec90613a5e565b6001831015611bec5760405162461bcd60e51b815260206004820152602760248201527f4d6178206d696e7473207065722077616c6c6574206d757374206265206174206044820152666c65617374203160c81b6064820152608401610bec565b5050601555565b600080546001600160a01b0316339081149190611c0f90611c69565b90508180611c1a5750805b611c365760405162461bcd60e51b8152600401610bec90613a5e565b5050601055565b6040805180820190915260008082526020820152610b9982612af7565b606060058054610d0b906139c5565b60006001600160a01b038216611cc15760405162461bcd60e51b815260206004820152601960248201527f496e76616c6964206164647265737320746f20636865636b2e000000000000006044820152606401610bec565b506001600160a01b031660009081526001602081905260409091205460ff1615151490565b6001600160a01b038216331415611d3f5760405162461bcd60e51b815260206004820152601a60248201527f455243373231413a20617070726f766520746f2063616c6c65720000000000006044820152606401610bec565b3360008181526009602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b600080546001600160a01b0316339081149190611dc790611c69565b90508180611dd25750805b611dee5760405162461bcd60e51b8152600401610bec90613a5e565b6113d0611842565b600080546001600160a01b0316339081149190611e1290611c69565b90508180611e1d5750805b611e395760405162461bcd60e51b8152600401610bec90613a5e565b60008311611e4657600080fd5b6040516370a0823160e01b8152306004820152849084906001600160a01b038316906370a0823190602401602060405180830381865afa158015611e8e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611eb29190613b23565b1015611f0c5760405162461bcd60e51b815260206004820152602360248201527f436f6e747261637420646f6573206e6f74206f776e20656e6f75676820746f6b604482015262656e7360e81b6064820152608401610bec565b60005b600e5481101561201057816001600160a01b031663a9059cbb600c8381548110611f3b57611f3b613b3c565b9060005260206000200160009054906101000a90046001600160a01b03166064600d8581548110611f6e57611f6e613b3c565b906000526020600020015489611f849190613b52565b611f8e9190613b87565b6040516001600160e01b031960e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303816000875af1158015611fd9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ffd9190613b9b565b508061200881613a00565b915050611f0f565b505050505050565b612023848484612761565b61202f84848484612d03565b6113875760405162461bcd60e51b8152600401610bec90613bb8565b600b546001600160a01b031633146120a55760405162461bcd60e51b815260206004820152601c60248201527f4f776e61626c653a2063616c6c6572206973206e6f742052414d5050000000006044820152606401610bec565b600b546001600160a01b03828116911614156121165760405162461bcd60e51b815260206004820152602a60248201527f52414d50503a204e65772052616d70702061646472657373206d75737420626560448201526908191a5999995c995b9d60b21b6064820152608401610bec565b600b80546001600160a01b0319166001600160a01b038316179055600c805482919060009061214757612147613b3c565b9060005260206000200160006101000a8154816001600160a01b0302191690836001600160a01b0316021790555050565b6060600061218461227e565b905060008151116121a457604051806020016040528060008152506121cf565b806121ae84612e02565b6040516020016121bf929190613c0b565b6040516020818303038152906040525b9392505050565b60006121e56002546000190190565b610b2d906001613921565b601380546121fd906139c5565b80601f0160208091040260200160405190810160405280929190818152602001828054612229906139c5565b80156122765780601f1061224b57610100808354040283529160200191612276565b820191906000526020600020905b81548152906001019060200180831161225957829003601f168201915b505050505081565b606060138054610d0b906139c5565b600b546001600160a01b031633146122e75760405162461bcd60e51b815260206004820152601c60248201527f4f776e61626c653a2063616c6c6572206973206e6f742052414d5050000000006044820152606401610bec565b600047116122f457600080fd5b611958612c75565b60125460ff161515600114801561231a575060145460ff1615156001145b6123665760405162461bcd60e51b815260206004820152601b60248201527f416c6c6f776c697374206d696e74696e6720697320636c6f73656400000000006044820152606401610bec565b6123718383836110d2565b6123bd5760405162461bcd60e51b815260206004820152601c60248201527f41646472657373206973206e6f7420696e20416c6c6f776c69737421000000006044820152606401610bec565b7f0000000000000000000000000000000000000000000000000000000000001e616123e66121d6565b11156124045760405162461bcd60e51b8152600401610bec90613a1b565b61240f83600161264f565b61242b5760405162461bcd60e51b8152600401610bec906138bb565b612435600161255c565b34146124535760405162461bcd60e51b8152600401610bec90613adc565b610f2a83600160006126d4565b6000546001600160a01b0316331461248a5760405162461bcd60e51b8152600401610bec90613aa7565b6001600160a01b0381166124d25760405162461bcd60e51b815260206004820152600f60248201526e496e76616c6964206164647265737360881b6044820152606401610bec565b6124db81611c69565b61253b5760405162461bcd60e51b815260206004820152602b60248201527f546869732061646472657373206973206e6f7420696e20796f7572207465616d60448201526a1031bab93932b73a363c9760a91b6064820152608401610bec565b6001600160a01b03166000908152600160205260409020805460ff19169055565b600081601054610b999190613b52565b6000546001600160a01b031633146125965760405162461bcd60e51b8152600401610bec90613aa7565b6001600160a01b0381166125fb5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610bec565b611a6f81612c25565b600080546001600160a01b031633908114919061262090611c69565b9050818061262b5750805b6126475760405162461bcd60e51b8152600401610bec90613a5e565b611831611a72565b600060018210156126b45760405162461bcd60e51b815260206004820152602960248201527f416d6f756e74206d7573742062652067726561746572207468616e206f7220656044820152687175616c20746f203160b81b6064820152608401610bec565b601554826126c185612eff565b6126cb9190613921565b11159392505050565b610f2a83838360405180602001604052806000815250612f9d565b600081600111158015610b995750506002541190565b60008281526008602052604080822080546001600160a01b0319166001600160a01b0387811691821790925591518593918516917f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591a4505050565b600061276c82612af7565b80519091506000906001600160a01b0316336001600160a01b031614806127a357503361279884610d8e565b6001600160a01b0316145b806127b5575081516127b59033610a9b565b90508061281f5760405162461bcd60e51b815260206004820152603260248201527f455243373231413a207472616e736665722063616c6c6572206973206e6f74206044820152711bdddb995c881b9bdc88185c1c1c9bdd995960721b6064820152608401610bec565b846001600160a01b031682600001516001600160a01b0316146128935760405162461bcd60e51b815260206004820152602660248201527f455243373231413a207472616e736665722066726f6d20696e636f72726563746044820152651037bbb732b960d11b6064820152608401610bec565b6001600160a01b0384166128f75760405162461bcd60e51b815260206004820152602560248201527f455243373231413a207472616e7366657220746f20746865207a65726f206164604482015264647265737360d81b6064820152608401610bec565b6129076000848460000151612705565b6001600160a01b03851660009081526007602052604081208054600192906129399084906001600160801b0316613c3a565b82546101009290920a6001600160801b038181021990931691831602179091556001600160a01b0386166000908152600760205260408120805460019450909261298591859116613c62565b82546001600160801b039182166101009390930a9283029190920219909116179055506040805180820182526001600160a01b0380871682526001600160401b03428116602080850191825260008981526006909152948520935184549151909216600160a01b026001600160e01b03199091169190921617179055612a0c846001613921565b6000818152600660205260409020549091506001600160a01b0316612a9b57612a34816126ef565b15612a9b5760408051808201825284516001600160a01b0390811682526020808701516001600160401b039081168285019081526000878152600690935294909120925183549451909116600160a01b026001600160e01b03199094169116179190911790555b83856001600160a01b0316876001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612010565b600082612aee858461326a565b14949350505050565b60408051808201909152600080825260208201528180600111158015612b1e575060025481105b15612bc5576000818152600660209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215612b6f579392505050565b50600019016000818152600660209081526040918290208251808401909352546001600160a01b038116808452600160a01b9091046001600160401b03169183019190915215612bc0579392505050565b612b6f565b60405162461bcd60e51b815260206004820152602f60248201527f455243373231413a20756e61626c6520746f2064657465726d696e652074686560448201526e1037bbb732b91037b3103a37b5b2b760891b6064820152608401610bec565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b4760005b600e54811015610cf857612cf1600c8281548110612c9957612c99613b3c565b9060005260206000200160009054906101000a90046001600160a01b03166064600d8481548110612ccc57612ccc613b3c565b906000526020600020015485612ce29190613b52565b612cec9190613b87565b6132de565b80612cfb81613a00565b915050612c79565b60006001600160a01b0384163b15612df657604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612d47903390899088908890600401613c84565b6020604051808303816000875af1925050508015612d82575060408051601f3d908101601f19168201909252612d7f91810190613cc1565b60015b612ddc573d808015612db0576040519150601f19603f3d011682016040523d82523d6000602084013e612db5565b606091505b508051612dd45760405162461bcd60e51b8152600401610bec90613bb8565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612dfa565b5060015b949350505050565b606081612e265750506040805180820190915260018152600360fc1b602082015290565b8160005b8115612e505780612e3a81613a00565b9150612e499050600a83613b87565b9150612e2a565b6000816001600160401b03811115612e6a57612e6a613704565b6040519080825280601f01601f191660200182016040528015612e94576020820181803683370190505b5090505b8415612dfa57612ea9600183613cde565b9150612eb6600a86613cf5565b612ec1906030613921565b60f81b818381518110612ed657612ed6613b3c565b60200101906001600160f81b031916908160001a905350612ef8600a86613b87565b9450612e98565b60006001600160a01b038216612f715760405162461bcd60e51b815260206004820152603160248201527f455243373231413a206e756d626572206d696e74656420717565727920666f7260448201527020746865207a65726f206164647265737360781b6064820152608401610bec565b506001600160a01b0316600090815260076020526040902054600160801b90046001600160801b031690565b6002546001600160a01b0385166130005760405162461bcd60e51b815260206004820152602160248201527f455243373231413a206d696e7420746f20746865207a65726f206164647265736044820152607360f81b6064820152608401610bec565b613009816126ef565b156130565760405162461bcd60e51b815260206004820152601d60248201527f455243373231413a20746f6b656e20616c7265616479206d696e7465640000006044820152606401610bec565b826130b8576003548411156130b85760405162461bcd60e51b815260206004820152602260248201527f455243373231413a207175616e7469747920746f206d696e7420746f6f2068696044820152610ced60f31b6064820152608401610bec565b6001600160a01b0385166000908152600760209081526040918290208251808401845290546001600160801b038082168352600160801b9091041691810191909152815180830190925280519091908190613114908890613c62565b6001600160801b031681526020018561312d5786613130565b60005b836020015161313f9190613c62565b6001600160801b039081169091526001600160a01b0380891660008181526007602090815260408083208751978301518716600160801b029790961696909617909455845180860186529182526001600160401b034281168386019081528883526006909552948120915182549451909516600160a01b026001600160e01b031990941694909216939093179190911790915582905b8681101561325e5760405182906001600160a01b038a16906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a46132226000898488612d03565b61323e5760405162461bcd60e51b8152600401610bec90613bb8565b8161324881613a00565b925050808061325690613a00565b9150506131d5565b50600255505050505050565b600081815b84518110156132d657600085828151811061328c5761328c613b3c565b602002602001015190508083116132b257600083815260208290526040902092506132c3565b600081815260208490526040902092505b50806132ce81613a00565b91505061326f565b509392505050565b6000826001600160a01b03168260405160006040518083038185875af1925050503d806000811461332b576040519150601f19603f3d011682016040523d82523d6000602084013e613330565b606091505b5050905080610f2a5760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b6044820152606401610bec565b828054613380906139c5565b90600052602060002090601f0160209004810192826133a257600085556133e8565b82601f106133bb5782800160ff198235161785556133e8565b828001600101855582156133e8579182015b828111156133e85782358255916020019190600101906133cd565b506116e79291505b808211156116e757600081556001016133f0565b6001600160e01b031981168114611a6f57600080fd5b60006020828403121561342c57600080fd5b81356121cf81613404565b80356001600160a01b038116811461344e57600080fd5b919050565b6000806040838503121561346657600080fd5b61346f83613437565b946020939093013593505050565b60005b83811015613498578181015183820152602001613480565b838111156113875750506000910152565b600081518084526134c181602086016020860161347d565b601f01601f19169290920160200192915050565b6020815260006121cf60208301846134a9565b6000602082840312156134fa57600080fd5b5035919050565b60008060006060848603121561351657600080fd5b61351f84613437565b925061352d60208501613437565b9150604084013590509250925092565b60008083601f84011261354f57600080fd5b5081356001600160401b0381111561356657600080fd5b6020830191508360208260051b850101111561358157600080fd5b9250929050565b60008060006040848603121561359d57600080fd5b6135a684613437565b925060208401356001600160401b038111156135c157600080fd5b6135cd8682870161353d565b9497909650939450505050565b600080600080606085870312156135f057600080fd5b6135f985613437565b93506020850135925060408501356001600160401b0381111561361b57600080fd5b6136278782880161353d565b95989497509550505050565b60006020828403121561364557600080fd5b6121cf82613437565b6000806020838503121561366157600080fd5b82356001600160401b038082111561367857600080fd5b818501915085601f83011261368c57600080fd5b81358181111561369b57600080fd5b8660208285010111156136ad57600080fd5b60209290920196919550909350505050565b8015158114611a6f57600080fd5b600080604083850312156136e057600080fd5b6136e983613437565b915060208301356136f9816136bf565b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b6000806000806080858703121561373057600080fd5b61373985613437565b935061374760208601613437565b92506040850135915060608501356001600160401b038082111561376a57600080fd5b818701915087601f83011261377e57600080fd5b81358181111561379057613790613704565b604051601f8201601f19908116603f011681019083821181831017156137b8576137b8613704565b816040528281528a60208487010111156137d157600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b6000806040838503121561380857600080fd5b61381183613437565b915061381f60208401613437565b90509250929050565b6020808252602e908201527f43616e6e6f74206d696e74206d6f7265207468616e206d6178206d696e74207060408201526d32b9103a3930b739b0b1ba34b7b760911b606082015260800190565b60208082526025908201527f5075626c6963206d696e74696e67206973206e6f74206f70656e207269676874604082015264206e6f772160d81b606082015260800190565b60208082526030908201527f57616c6c65742061646472657373206973206f76657220746865206d6178696d60408201526f756d20616c6c6f776564206d696e747360801b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b600082198211156139345761393461390b565b500190565b60208082526024908201527f43616e6e6f74206d696e74206f76657220737570706c7920636170206f6620386040820152630707070760e31b606082015260800190565b60208082526028908201527f56616c75652062656c6f77207265717569726564206d696e742066656520666f6040820152671c88185b5bdd5b9d60c21b606082015260800190565b600181811c908216806139d957607f821691505b602082108114156139fa57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415613a1457613a1461390b565b5060010190565b60208082526023908201527f43616e6e6f74206d696e74206f76657220737570706c7920636170206f66203860408201526207070760eb1b606082015260800190565b60208082526029908201527f5465616d3a2063616c6c6572206973206e6f7420746865206f776e6572206f726040820152681034b7102a32b0b69760b91b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526027908201527f56616c7565206e6565647320746f2062652065786163746c7920746865206d696040820152666e74206665652160c81b606082015260800190565b600060208284031215613b3557600080fd5b5051919050565b634e487b7160e01b600052603260045260246000fd5b6000816000190483118215151615613b6c57613b6c61390b565b500290565b634e487b7160e01b600052601260045260246000fd5b600082613b9657613b96613b71565b500490565b600060208284031215613bad57600080fd5b81516121cf816136bf565b60208082526033908201527f455243373231413a207472616e7366657220746f206e6f6e204552433732315260408201527232b1b2b4bb32b91034b6b83632b6b2b73a32b960691b606082015260800190565b60008351613c1d81846020880161347d565b835190830190613c3181836020880161347d565b01949350505050565b60006001600160801b0383811690831681811015613c5a57613c5a61390b565b039392505050565b60006001600160801b03808316818516808303821115613c3157613c3161390b565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090613cb7908301846134a9565b9695505050505050565b600060208284031215613cd357600080fd5b81516121cf81613404565b600082821015613cf057613cf061390b565b500390565b600082613d0457613d04613b71565b50069056fea2646970667358221220c8c78f35f412e79ee2e5e4ed6e8d9eab627827fa57d637b8e06a478f6a57acc264736f6c634300080b0033

Deployed Bytecode Sourcemap

59452:114:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34892:90;;;;;;;;;;;;;:::i;:::-;;;160:25:1;;;148:2;133:18;34892:90:0;;;;;;;;36644:370;;;;;;;;;;-1:-1:-1;36644:370:0;;;;;:::i;:::-;;:::i;:::-;;;747:14:1;;740:22;722:41;;710:2;695:18;36644:370:0;582:187:1;54449:692:0;;;;;;:::i;:::-;;:::i;:::-;;38709:94;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;40124:204::-;;;;;;;;;;-1:-1:-1;40124:204:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;2311:32:1;;;2293:51;;2281:2;2266:18;40124:204:0;2147:203:1;39687:379:0;;;;;;;;;;-1:-1:-1;39687:379:0;;;;;:::i;:::-;;:::i;40974:142::-;;;;;;;;;;-1:-1:-1;40974:142:0;;;;;:::i;:::-;;:::i;49993:37::-;;;;;;;;;;-1:-1:-1;49993:37:0;;;;;:::i;:::-;;:::i;33224:27::-;;;;;;;;;;;;;;;;31152:25;;;;;;;;;;;;;;;;35836:744;;;;;;;;;;-1:-1:-1;35836:744:0;;;;;:::i;:::-;;:::i;31811:287::-;;;;;;;;;;-1:-1:-1;31811:287:0;;;;;:::i;:::-;;:::i;52760:33::-;;;;;;;;;;-1:-1:-1;52760:33:0;;;;;;;;;;;;;;3930:4:1;3918:17;;;3900:36;;3888:2;3873:18;52760:33:0;3758:184:1;56402:801:0;;;;;;:::i;:::-;;:::i;50035:38::-;;;;;;;;;;;;;;;;55240:84;;;;;;;;;;;;;:::i;53229:281::-;;;;;;;;;;-1:-1:-1;53229:281:0;;;;;:::i;:::-;;:::i;41179:157::-;;;;;;;;;;-1:-1:-1;41179:157:0;;;;;:::i;:::-;;:::i;27257:223::-;;;;;;;;;;-1:-1:-1;27257:223:0;;;;;:::i;:::-;;:::i;33180:39::-;;;;;;;;;;;;;;;31391:197;;;;;;;;;;-1:-1:-1;31391:197:0;;;;;:::i;:::-;;:::i;52890:38::-;;;;;;;;;;;;;;;;35368:177;;;;;;;;;;-1:-1:-1;35368:177:0;;;;;:::i;:::-;;:::i;58730:179::-;;;;;;;;;;-1:-1:-1;58730:179:0;;;;;:::i;:::-;;:::i;59138:106::-;;;;;;;;;;-1:-1:-1;59138:106:0;;;;;:::i;:::-;;:::i;38532:118::-;;;;;;;;;;-1:-1:-1;38532:118:0;;;;;:::i;:::-;;:::i;55149:83::-;;;;;;;;;;;;;:::i;32219:103::-;;;;;;;;;;;;;:::i;37070:211::-;;;;;;;;;;-1:-1:-1;37070:211:0;;;;;:::i;:::-;;:::i;25774:103::-;;;;;;;;;;;;;:::i;53729:493::-;;;;;;:::i;:::-;;:::i;32112:99::-;;;;;;;;;;;;;:::i;50080:118::-;;;;;;;;;;;;;:::i;49895:93::-;;;;;;;;;;-1:-1:-1;49895:93:0;;;;;:::i;:::-;;:::i;52223:30::-;;;;;;;;;;;;;;;;25125:87;;;;;;;;;;-1:-1:-1;25171:7:0;25198:6;-1:-1:-1;;;;;25198:6:0;25125:87;;52841:30;;;;;;;;;;-1:-1:-1;52841:30:0;;;;;;;;58354:200;;;;;;;;;;-1:-1:-1;58354:200:0;;;;;:::i;:::-;;:::i;52260:90::-;;;;;;;;;;-1:-1:-1;52260:90:0;;;;;:::i;:::-;;:::i;59250:128::-;;;;;;;;;;-1:-1:-1;59250:128:0;;;;;:::i;:::-;;:::i;:::-;;;;5736:13:1;;-1:-1:-1;;;;;5732:39:1;5714:58;;5832:4;5820:17;;;5814:24;-1:-1:-1;;;;;5810:49:1;5788:20;;;5781:79;;;;5687:18;59250:128:0;5504:362:1;38864:98:0;;;;;;;;;;;;;:::i;27996:188::-;;;;;;;;;;-1:-1:-1;27996:188:0;;;;;:::i;:::-;;:::i;40392:274::-;;;;;;;;;;-1:-1:-1;40392:274:0;;;;;:::i;:::-;;:::i;57630:128::-;;;;;;;;;;;;;:::i;51163:428::-;;;;;;;;;;-1:-1:-1;51163:428:0;;;;;:::i;:::-;;:::i;41399:311::-;;;;;;;;;;-1:-1:-1;41399:311:0;;;;;:::i;:::-;;:::i;51917:229::-;;;;;;;;;;-1:-1:-1;51917:229:0;;;;;:::i;:::-;;:::i;49459:72::-;;;;;;;;;;-1:-1:-1;49459:72:0;;;;-1:-1:-1;;;;;49459:72:0;;;39025:288;;;;;;;;;;-1:-1:-1;39025:288:0;;;;;:::i;:::-;;:::i;34988:96::-;;;;;;;;;;;;;:::i;52800:32::-;;;;;;;;;;;;;:::i;59040:92::-;;;;;;;;;;;;;:::i;46007:43::-;;;;;;;;;;;;;;;;50206:115;;;;;;;;;;;;;:::i;55571:590::-;;;;;;:::i;:::-;;:::i;27623:234::-;;;;;;;;;;-1:-1:-1;27623:234:0;;;;;:::i;:::-;;:::i;31184:37::-;;;;;;;;;;-1:-1:-1;31184:37:0;;;;;;;;52356:98;;;;;;;;;;-1:-1:-1;52356:98:0;;;;;:::i;:::-;;:::i;40729:186::-;;;;;;;;;;-1:-1:-1;40729:186:0;;;;;:::i;:::-;-1:-1:-1;;;;;40874:25:0;;;40851:4;40874:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;40729:186;26030:201;;;;;;;;;;-1:-1:-1;26030:201:0;;;;;:::i;:::-;;:::i;57354:125::-;;;;;;;;;;;;;:::i;57919:242::-;;;;;;;;;;-1:-1:-1;57919:242:0;;;;;:::i;:::-;;:::i;34892:90::-;34939:7;34962:14;35256:12;;-1:-1:-1;;35256:30:0;;35167:132;34962:14;34955:21;;34892:90;:::o;36644:370::-;36771:4;-1:-1:-1;;;;;;36801:40:0;;-1:-1:-1;;;36801:40:0;;:99;;-1:-1:-1;;;;;;;36852:48:0;;-1:-1:-1;;;36852:48:0;36801:99;:160;;;-1:-1:-1;;;;;;;36911:50:0;;-1:-1:-1;;;36911:50:0;36801:160;:207;;;-1:-1:-1;;;;;;;;;;11619:40:0;;;36972:36;36787:221;36644:370;-1:-1:-1;;36644:370:0:o;54449:692::-;54548:1;54537:7;:12;;54529:51;;;;-1:-1:-1;;;54529:51:0;;8056:2:1;54529:51:0;;;8038:21:1;8095:2;8075:18;;;8068:30;8134:28;8114:18;;;8107:56;8180:18;;54529:51:0;;;;;;;;;54610:12;;54599:7;:23;;54591:82;;;;-1:-1:-1;;;54591:82:0;;;;;;;:::i;:::-;54692:11;;;;:19;;:11;:19;:49;;;;-1:-1:-1;54715:17:0;;;;:26;54692:49;54684:99;;;;-1:-1:-1;;;54684:99:0;;;;;;;:::i;:::-;54812:27;54826:3;54831:7;54812:13;:27::i;:::-;54804:88;;;;-1:-1:-1;;;54804:88:0;;;;;;;:::i;:::-;54941:14;54930:7;54911:16;:14;:16::i;:::-;:26;;;;:::i;:::-;:44;;54903:93;;;;-1:-1:-1;;;54903:93:0;;;;;;;:::i;:::-;55028:17;55037:7;55028:8;:17::i;:::-;55015:9;:30;55007:83;;;;-1:-1:-1;;;55007:83:0;;;;;;;:::i;:::-;55103:30;55113:3;55118:7;55127:5;55103:9;:30::i;:::-;54449:692;;:::o;38709:94::-;38763:13;38792:5;38785:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38709:94;:::o;40124:204::-;40192:7;40216:16;40224:7;40216;:16::i;:::-;40208:74;;;;-1:-1:-1;;;40208:74:0;;11113:2:1;40208:74:0;;;11095:21:1;11152:2;11132:18;;;11125:30;11191:34;11171:18;;;11164:62;-1:-1:-1;;;11242:18:1;;;11235:43;11295:19;;40208:74:0;10911:409:1;40208:74:0;-1:-1:-1;40298:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;40298:24:0;;40124:204::o;39687:379::-;39756:13;39772:24;39788:7;39772:15;:24::i;:::-;39756:40;;39817:5;-1:-1:-1;;;;;39811:11:0;:2;-1:-1:-1;;;;;39811:11:0;;;39803:58;;;;-1:-1:-1;;;39803:58:0;;11527:2:1;39803:58:0;;;11509:21:1;11566:2;11546:18;;;11539:30;11605:34;11585:18;;;11578:62;-1:-1:-1;;;11656:18:1;;;11649:32;11698:19;;39803:58:0;11325:398:1;39803:58:0;23931:10;-1:-1:-1;;;;;39886:21:0;;;;:62;;-1:-1:-1;39911:37:0;39928:5;23931:10;40729:186;:::i;39911:37::-;39870:153;;;;-1:-1:-1;;;39870:153:0;;11930:2:1;39870:153:0;;;11912:21:1;11969:2;11949:18;;;11942:30;12008:34;11988:18;;;11981:62;12079:27;12059:18;;;12052:55;12124:19;;39870:153:0;11728:421:1;39870:153:0;40032:28;40041:2;40045:7;40054:5;40032:8;:28::i;:::-;39749:317;39687:379;;:::o;40974:142::-;41082:28;41092:4;41098:2;41102:7;41082:9;:28::i;49993:37::-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;49993:37:0;:::o;35836:744::-;35945:7;35980:16;35990:5;35980:9;:16::i;:::-;35972:5;:24;35964:71;;;;-1:-1:-1;;;35964:71:0;;12356:2:1;35964:71:0;;;12338:21:1;12395:2;12375:18;;;12368:30;12434:34;12414:18;;;12407:62;-1:-1:-1;;;12485:18:1;;;12478:32;12527:19;;35964:71:0;12154:398:1;35964:71:0;36042:22;36067:13;:11;:13::i;:::-;36042:38;;36087:19;36117:25;36167:9;36162:350;36186:14;36182:1;:18;36162:350;;;36216:31;36250:14;;;:11;:14;;;;;;;;;36216:48;;;;;;;;;-1:-1:-1;;;;;36216:48:0;;;;;-1:-1:-1;;;36216:48:0;;;-1:-1:-1;;;;;36216:48:0;;;;;;;;36277:28;36273:89;;36338:14;;;-1:-1:-1;36273:89:0;36395:5;-1:-1:-1;;;;;36374:26:0;:17;-1:-1:-1;;;;;36374:26:0;;36370:135;;;36432:5;36417:11;:20;36413:59;;;-1:-1:-1;36459:1:0;-1:-1:-1;36452:8:0;;-1:-1:-1;;;36452:8:0;36413:59;36482:13;;;;:::i;:::-;;;;36370:135;-1:-1:-1;36202:3:0;;;;:::i;:::-;;;;36162:350;;;-1:-1:-1;36518:56:0;;-1:-1:-1;;;36518:56:0;;12899:2:1;36518:56:0;;;12881:21:1;12938:2;12918:18;;;12911:30;12977:34;12957:18;;;12950:62;-1:-1:-1;;;13028:18:1;;;13021:44;13082:19;;36518:56:0;12697:410:1;31811:287:0;31923:10;;31900:4;;31915:51;;;;-1:-1:-1;;;31915:51:0;;13314:2:1;31915:51:0;;;13296:21:1;13353:2;13333:18;;;13326:30;13392:25;13372:18;;;13365:53;13435:18;;31915:51:0;13112:347:1;31915:51:0;32000:21;;-1:-1:-1;;13613:2:1;13609:15;;;13605:53;32000:21:0;;;13593:66:1;31975:12:0;;13675::1;;32000:21:0;;;;;;;;;;;;31990:32;;;;;;31975:47;;32040:50;32059:12;;32040:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;32073:10:0;;;-1:-1:-1;32085:4:0;;-1:-1:-1;32040:18:0;:50::i;:::-;32033:57;31811:287;-1:-1:-1;;;;;31811:287:0:o;56402:801::-;56525:17;;;;:25;;:17;:25;:48;;;;-1:-1:-1;56554:11:0;;;;:19;;:11;:19;56525:48;56517:88;;;;-1:-1:-1;;;56517:88:0;;13900:2:1;56517:88:0;;;13882:21:1;13939:2;13919:18;;;13912:30;13978:29;13958:18;;;13951:57;14025:18;;56517:88:0;13698:351:1;56517:88:0;56624:32;56638:3;56643:12;;56624:13;:32::i;:::-;56616:73;;;;-1:-1:-1;;;56616:73:0;;14256:2:1;56616:73:0;;;14238:21:1;14295:2;14275:18;;;14268:30;14334;14314:18;;;14307:58;14382:18;;56616:73:0;14054:352:1;56616:73:0;56719:1;56708:7;:12;;56700:51;;;;-1:-1:-1;;;56700:51:0;;8056:2:1;56700:51:0;;;8038:21:1;8095:2;8075:18;;;8068:30;8134:28;8114:18;;;8107:56;8180:18;;56700:51:0;7854:350:1;56700:51:0;56781:12;;56770:7;:23;;56762:82;;;;-1:-1:-1;;;56762:82:0;;;;;;;:::i;:::-;56865:27;56879:3;56884:7;56865:13;:27::i;:::-;56857:88;;;;-1:-1:-1;;;56857:88:0;;;;;;;:::i;:::-;56994:14;56983:7;56964:16;:14;:16::i;:::-;:26;;;;:::i;:::-;:44;;56956:92;;;;-1:-1:-1;;;56956:92:0;;;;;;;:::i;:::-;57080:17;57089:7;57080:8;:17::i;:::-;57067:9;:30;57059:83;;;;-1:-1:-1;;;57059:83:0;;;;;;;:::i;:::-;57165:30;57175:3;57180:7;57189:5;57165:9;:30::i;:::-;56402:801;;;;:::o;55240:84::-;28316:13;25198:6;;-1:-1:-1;;;;;25198:6:0;23931:10;28332:23;;;;28316:13;28377:20;;27996:188;:::i;28377:20::-;28362:35;;28412:8;:19;;;;28424:7;28412:19;28404:73;;;;-1:-1:-1;;;28404:73:0;;;;;;;:::i;:::-;-1:-1:-1;;55297:11:0::1;:19:::0;;-1:-1:-1;;55297:19:0::1;::::0;;55240:84::o;53229:281::-;28316:13;25198:6;;-1:-1:-1;;;;;25198:6:0;23931:10;28332:23;;;;28316:13;28377:20;;27996:188;:::i;28377:20::-;28362:35;;28412:8;:19;;;;28424:7;28412:19;28404:73;;;;-1:-1:-1;;;28404:73:0;;;;;;;:::i;:::-;53328:1:::1;53321:4;:8;53313:48;;;::::0;-1:-1:-1;;;53313:48:0;;15427:2:1;53313:48:0::1;::::0;::::1;15409:21:1::0;15466:2;15446:18;;;15439:30;15505:29;15485:18;;;15478:57;15552:18;;53313:48:0::1;15225:351:1::0;53313:48:0::1;53408:14;53400:4;53381:16;:14;:16::i;:::-;:23;;;;:::i;:::-;:41;;53373:90;;;;-1:-1:-1::0;;;53373:90:0::1;;;;;;;:::i;:::-;53475:26;53485:3;53490:4;53496;53475:9;:26::i;41179:157::-:0;41291:39;41308:4;41314:2;41318:7;41291:39;;;;;;;;;;;;:16;:39::i;27257:223::-;25171:7;25198:6;-1:-1:-1;;;;;25198:6:0;23931:10;25345:23;25337:68;;;;-1:-1:-1;;;25337:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;27326:22:0;::::1;27318:50;;;::::0;-1:-1:-1;;;27318:50:0;;16144:2:1;27318:50:0::1;::::0;::::1;16126:21:1::0;16183:2;16163:18;;;16156:30;-1:-1:-1;;;16202:18:1;;;16195:45;16257:18;;27318:50:0::1;15942:339:1::0;27318:50:0::1;27384:16;27391:8;27384:6;:16::i;:::-;27383:17;27375:67;;;::::0;-1:-1:-1;;;27375:67:0;;16488:2:1;27375:67:0::1;::::0;::::1;16470:21:1::0;16527:2;16507:18;;;16500:30;16566:34;16546:18;;;16539:62;-1:-1:-1;;;16617:18:1;;;16610:35;16662:19;;27375:67:0::1;16286:401:1::0;27375:67:0::1;-1:-1:-1::0;;;;;27453:14:0::1;;::::0;;;27470:4:::1;27453:14;::::0;;;;;;;:21;;-1:-1:-1;;27453:21:0::1;::::0;;::::1;::::0;;27257:223::o;31391:197::-;28316:13;25198:6;;-1:-1:-1;;;;;25198:6:0;23931:10;28332:23;;;;28316:13;28377:20;;27996:188;:::i;28377:20::-;28362:35;;28412:8;:19;;;;28424:7;28412:19;28404:73;;;;-1:-1:-1;;;28404:73:0;;;;;;;:::i;:::-;31499:10:::1;;31481:14;:28;;31473:71;;;::::0;-1:-1:-1;;;31473:71:0;;16894:2:1;31473:71:0::1;::::0;::::1;16876:21:1::0;16933:2;16913:18;;;16906:30;16972:32;16952:18;;;16945:60;17022:18;;31473:71:0::1;16692:354:1::0;31473:71:0::1;-1:-1:-1::0;;31553:10:0::1;:27:::0;31391:197::o;35368:177::-;35435:7;35467:13;:11;:13::i;:::-;35459:5;:21;35451:69;;;;-1:-1:-1;;;35451:69:0;;17253:2:1;35451:69:0;;;17235:21:1;17292:2;17272:18;;;17265:30;17331:34;17311:18;;;17304:62;-1:-1:-1;;;17382:18:1;;;17375:33;17425:19;;35451:69:0;17051:399:1;35451:69:0;-1:-1:-1;35534:5:0;35368:177::o;58730:179::-;28316:13;25198:6;;-1:-1:-1;;;;;25198:6:0;23931:10;28332:23;;;;28316:13;28377:20;;27996:188;:::i;28377:20::-;28362:35;;28412:8;:19;;;;28424:7;28412:19;28404:73;;;;-1:-1:-1;;;28404:73:0;;;;;;;:::i;:::-;58829:1:::1;58814:11;:16;;58806:56;;;::::0;-1:-1:-1;;;58806:56:0;;17657:2:1;58806:56:0::1;::::0;::::1;17639:21:1::0;17696:2;17676:18;;;17669:30;17735:29;17715:18;;;17708:57;17782:18;;58806:56:0::1;17455:351:1::0;58806:56:0::1;-1:-1:-1::0;;58874:12:0::1;:26:::0;58730:179::o;59138:106::-;28316:13;25198:6;;-1:-1:-1;;;;;25198:6:0;23931:10;28332:23;;;;28316:13;28377:20;;27996:188;:::i;28377:20::-;28362:35;;28412:8;:19;;;;28424:7;28412:19;28404:73;;;;-1:-1:-1;;;28404:73:0;;;;;;;:::i;:::-;59215:23:::1;:13;59231:7:::0;;59215:23:::1;:::i;:::-;;28309:182:::0;;59138:106;;:::o;38532:118::-;38596:7;38619:20;38631:7;38619:11;:20::i;:::-;:25;;38532:118;-1:-1:-1;;38532:118:0:o;55149:83::-;28316:13;25198:6;;-1:-1:-1;;;;;25198:6:0;23931:10;28332:23;;;;28316:13;28377:20;;27996:188;:::i;28377:20::-;28362:35;;28412:8;:19;;;;28424:7;28412:19;28404:73;;;;-1:-1:-1;;;28404:73:0;;;;;;;:::i;:::-;-1:-1:-1;;55206:11:0::1;:18:::0;;-1:-1:-1;;55206:18:0::1;55220:4;55206:18;::::0;;55149:83::o;32219:103::-;28316:13;25198:6;;-1:-1:-1;;;;;25198:6:0;23931:10;28332:23;;;;28316:13;28377:20;;27996:188;:::i;28377:20::-;28362:35;;28412:8;:19;;;;28424:7;28412:19;28404:73;;;;-1:-1:-1;;;28404:73:0;;;;;;;:::i;:::-;-1:-1:-1;;32289:17:0::1;:25:::0;;-1:-1:-1;;32289:25:0::1;::::0;;32219:103::o;37070:211::-;37134:7;-1:-1:-1;;;;;37158:19:0;;37150:75;;;;-1:-1:-1;;;37150:75:0;;18013:2:1;37150:75:0;;;17995:21:1;18052:2;18032:18;;;18025:30;18091:34;18071:18;;;18064:62;-1:-1:-1;;;18142:18:1;;;18135:41;18193:19;;37150:75:0;17811:407:1;37150:75:0;-1:-1:-1;;;;;;37247:19:0;;;;;:12;:19;;;;;:27;-1:-1:-1;;;;;37247:27:0;;37070:211::o;25774:103::-;25171:7;25198:6;-1:-1:-1;;;;;25198:6:0;23931:10;25345:23;25337:68;;;;-1:-1:-1;;;25337:68:0;;;;;;;:::i;:::-;25839:30:::1;25866:1;25839:18;:30::i;:::-;25774:103::o:0;53729:493::-;53812:14;53792:16;:14;:16::i;:::-;:34;;53784:83;;;;-1:-1:-1;;;53784:83:0;;18425:2:1;53784:83:0;;;18407:21:1;18464:2;18444:18;;;18437:30;18503:34;18483:18;;;18476:62;-1:-1:-1;;;18554:18:1;;;18547:34;18598:19;;53784:83:0;18223:400:1;53784:83:0;53886:11;;;;:19;;:11;:19;:49;;;;-1:-1:-1;53909:17:0;;;;:26;53886:49;53878:99;;;;-1:-1:-1;;;53878:99:0;;;;;;;:::i;:::-;54006:23;54020:3;54025;54006:13;:23::i;:::-;53998:84;;;;-1:-1:-1;;;53998:84:0;;;;;;;:::i;:::-;54114:11;54123:1;54114:8;:11::i;:::-;54101:9;:24;54093:76;;;;-1:-1:-1;;;54093:76:0;;;;;;;:::i;:::-;54190:24;54200:3;54205:1;54208:5;54190:9;:24::i;:::-;53729:493;:::o;32112:99::-;28316:13;25198:6;;-1:-1:-1;;;;;25198:6:0;23931:10;28332:23;;;;28316:13;28377:20;;27996:188;:::i;28377:20::-;28362:35;;28412:8;:19;;;;28424:7;28412:19;28404:73;;;;-1:-1:-1;;;28404:73:0;;;;;;;:::i;:::-;-1:-1:-1;;32179:17:0::1;:24:::0;;-1:-1:-1;;32179:24:0::1;32199:4;32179:24;::::0;;32112:99::o;50080:118::-;28316:13;25198:6;;-1:-1:-1;;;;;25198:6:0;23931:10;28332:23;;;;28316:13;28377:20;;27996:188;:::i;28377:20::-;28362:35;;28412:8;:19;;;;28424:7;28412:19;28404:73;;;;-1:-1:-1;;;28404:73:0;;;;;;;:::i;:::-;50167:1:::1;50143:21;:25;50135:34;;;::::0;::::1;;50178:14;:12;:14::i;49895:93::-:0;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;49895:93:0;;-1:-1:-1;49895:93:0;:::o;58354:200::-;28316:13;25198:6;;-1:-1:-1;;;;;25198:6:0;23931:10;28332:23;;;;28316:13;28377:20;;27996:188;:::i;28377:20::-;28362:35;;28412:8;:19;;;;28424:7;28412:19;28404:73;;;;-1:-1:-1;;;28404:73:0;;;;;;;:::i;:::-;58458:1:::1;58441:13;:18;;58433:70;;;::::0;-1:-1:-1;;;58433:70:0;;19238:2:1;58433:70:0::1;::::0;::::1;19220:21:1::0;19277:2;19257:18;;;19250:30;19316:34;19296:18;;;19289:62;-1:-1:-1;;;19367:18:1;;;19360:37;19414:19;;58433:70:0::1;19036:403:1::0;58433:70:0::1;-1:-1:-1::0;;58514:16:0::1;:32:::0;58354:200::o;52260:90::-;28316:13;25198:6;;-1:-1:-1;;;;;25198:6:0;23931:10;28332:23;;;;28316:13;28377:20;;27996:188;:::i;28377:20::-;28362:35;;28412:8;:19;;;;28424:7;28412:19;28404:73;;;;-1:-1:-1;;;28404:73:0;;;;;;;:::i;:::-;-1:-1:-1;;52327:5:0::1;:17:::0;52260:90::o;59250:128::-;-1:-1:-1;;;;;;;;;;;;;;;;;59352:20:0;59364:7;59352:11;:20::i;38864:98::-;38920:13;38949:7;38942:14;;;;;:::i;27996:188::-;28066:4;-1:-1:-1;;;;;28090:22:0;;28082:60;;;;-1:-1:-1;;;28082:60:0;;19646:2:1;28082:60:0;;;19628:21:1;19685:2;19665:18;;;19658:30;19724:27;19704:18;;;19697:55;19769:18;;28082:60:0;19444:349:1;28082:60:0;-1:-1:-1;;;;;;28156:14:0;;;;;:4;:14;;;;;;;;;;;:22;;;;27996:188::o;40392:274::-;-1:-1:-1;;;;;40483:24:0;;23931:10;40483:24;;40475:63;;;;-1:-1:-1;;;40475:63:0;;20000:2:1;40475:63:0;;;19982:21:1;20039:2;20019:18;;;20012:30;20078:28;20058:18;;;20051:56;20124:18;;40475:63:0;19798:350:1;40475:63:0;23931:10;40547:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;40547:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;40547:53:0;;;;;;;;;;40612:48;;722:41:1;;;40547:42:0;;23931:10;40612:48;;695:18:1;40612:48:0;;;;;;;40392:274;;:::o;57630:128::-;28316:13;25198:6;;-1:-1:-1;;;;;25198:6:0;23931:10;28332:23;;;;28316:13;28377:20;;27996:188;:::i;28377:20::-;28362:35;;28412:8;:19;;;;28424:7;28412:19;28404:73;;;;-1:-1:-1;;;28404:73:0;;;;;;;:::i;:::-;57694:26:::1;:24;:26::i;51163:428::-:0;28316:13;25198:6;;-1:-1:-1;;;;;25198:6:0;23931:10;28332:23;;;;28316:13;28377:20;;27996:188;:::i;28377:20::-;28362:35;;28412:8;:19;;;;28424:7;28412:19;28404:73;;;;-1:-1:-1;;;28404:73:0;;;;;;;:::i;:::-;51278:1:::1;51268:7;:11;51260:20;;;::::0;::::1;;51347:38;::::0;-1:-1:-1;;;51347:38:0;;51379:4:::1;51347:38;::::0;::::1;2293:51:1::0;51317:14:0;;51389:7;;-1:-1:-1;;;;;51347:23:0;::::1;::::0;::::1;::::0;2266:18:1;;51347:38:0::1;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:49;;51339:97;;;::::0;-1:-1:-1;;;51339:97:0;;20544:2:1;51339:97:0::1;::::0;::::1;20526:21:1::0;20583:2;20563:18;;;20556:30;20622:34;20602:18;;;20595:62;-1:-1:-1;;;20673:18:1;;;20666:33;20716:19;;51339:97:0::1;20342:399:1::0;51339:97:0::1;51449:6;51445:141;51463:19;;51459:1;:23;51445:141;;;51501:13;-1:-1:-1::0;;;;;51501:22:0::1;;51524:16;51541:1;51524:19;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;51524:19:0::1;51574:3;51556:11;51568:1;51556:14;;;;;;;;:::i;:::-;;;;;;;;;51546:7;:24;;;;:::i;:::-;51545:32;;;;:::i;:::-;51501:77;::::0;-1:-1:-1;;;;;;51501:77:0::1;::::0;;;;;;-1:-1:-1;;;;;21500:32:1;;;51501:77:0::1;::::0;::::1;21482:51:1::0;21549:18;;;21542:34;21455:18;;51501:77:0::1;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;51484:3:0;::::1;::::0;::::1;:::i;:::-;;;;51445:141;;;;51253:338;28309:182:::0;;51163:428;;:::o;41399:311::-;41536:28;41546:4;41552:2;41556:7;41536:9;:28::i;:::-;41587:48;41610:4;41616:2;41620:7;41629:5;41587:22;:48::i;:::-;41571:133;;;;-1:-1:-1;;;41571:133:0;;;;;;;:::i;51917:229::-;49588:12;;-1:-1:-1;;;;;49588:12:0;49574:10;:26;49566:67;;;;-1:-1:-1;;;49566:67:0;;22459:2:1;49566:67:0;;;22441:21:1;22498:2;22478:18;;;22471:30;22537;22517:18;;;22510:58;22585:18;;49566:67:0;22257:352:1;49566:67:0;52008:12:::1;::::0;-1:-1:-1;;;;;51993:27:0;;::::1;52008:12:::0;::::1;51993:27;;51985:82;;;::::0;-1:-1:-1;;;51985:82:0;;22816:2:1;51985:82:0::1;::::0;::::1;22798:21:1::0;22855:2;22835:18;;;22828:30;22894:34;22874:18;;;22867:62;-1:-1:-1;;;22945:18:1;;;22938:40;22995:19;;51985:82:0::1;22614:406:1::0;51985:82:0::1;52074:12;:26:::0;;-1:-1:-1;;;;;;52074:26:0::1;-1:-1:-1::0;;;;;52074:26:0;::::1;;::::0;;52107:16:::1;:19:::0;;52074:26;;52107:16;-1:-1:-1;;52107:19:0::1;;;;:::i;:::-;;;;;;;;;:33;;;;;-1:-1:-1::0;;;;;52107:33:0::1;;;;;-1:-1:-1::0;;;;;52107:33:0::1;;;;;;51917:229:::0;:::o;39025:288::-;39123:13;39148:21;39172:10;:8;:10::i;:::-;39148:34;;39227:1;39209:7;39203:21;:25;:104;;;;;;;;;;;;;;;;;39264:7;39273:18;:7;:16;:18::i;:::-;39247:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;39203:104;39189:118;39025:288;-1:-1:-1;;;39025:288:0:o;34988:96::-;35035:7;35060:14;35256:12;;-1:-1:-1;;35256:30:0;;35167:132;35060:14;:18;;35077:1;35060:18;:::i;52800:32::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;59040:92::-;59084:13;59113;59106:20;;;;;:::i;50206:115::-;49588:12;;-1:-1:-1;;;;;49588:12:0;49574:10;:26;49566:67;;;;-1:-1:-1;;;49566:67:0;;22459:2:1;49566:67:0;;;22441:21:1;22498:2;22478:18;;;22471:30;22537;22517:18;;;22510:58;22585:18;;49566:67:0;22257:352:1;49566:67:0;50290:1:::1;50266:21;:25;50258:34;;;::::0;::::1;;50301:14;:12;:14::i;55571:590::-:0;55669:17;;;;:25;;:17;:25;:48;;;;-1:-1:-1;55698:11:0;;;;:19;;:11;:19;55669:48;55661:88;;;;-1:-1:-1;;;55661:88:0;;13900:2:1;55661:88:0;;;13882:21:1;13939:2;13919:18;;;13912:30;13978:29;13958:18;;;13951:57;14025:18;;55661:88:0;13698:351:1;55661:88:0;55768:32;55782:3;55787:12;;55768:13;:32::i;:::-;55760:73;;;;-1:-1:-1;;;55760:73:0;;14256:2:1;55760:73:0;;;14238:21:1;14295:2;14275:18;;;14268:30;14334;14314:18;;;14307:58;14382:18;;55760:73:0;14054:352:1;55760:73:0;55872:14;55852:16;:14;:16::i;:::-;:34;;55844:82;;;;-1:-1:-1;;;55844:82:0;;;;;;;:::i;:::-;55945:21;55959:3;55964:1;55945:13;:21::i;:::-;55937:82;;;;-1:-1:-1;;;55937:82:0;;;;;;;:::i;:::-;56051:11;56060:1;56051:8;:11::i;:::-;56038:9;:24;56030:76;;;;-1:-1:-1;;;56030:76:0;;;;;;;:::i;:::-;56129:24;56139:3;56144:1;56147:5;56129:9;:24::i;27623:234::-;25171:7;25198:6;-1:-1:-1;;;;;25198:6:0;23931:10;25345:23;25337:68;;;;-1:-1:-1;;;25337:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;27697:22:0;::::1;27689:50;;;::::0;-1:-1:-1;;;27689:50:0;;16144:2:1;27689:50:0::1;::::0;::::1;16126:21:1::0;16183:2;16163:18;;;16156:30;-1:-1:-1;;;16202:18:1;;;16195:45;16257:18;;27689:50:0::1;15942:339:1::0;27689:50:0::1;27754:16;27761:8;27754:6;:16::i;:::-;27746:72;;;::::0;-1:-1:-1;;;27746:72:0;;23702:2:1;27746:72:0::1;::::0;::::1;23684:21:1::0;23741:2;23721:18;;;23714:30;23780:34;23760:18;;;23753:62;-1:-1:-1;;;23831:18:1;;;23824:41;23882:19;;27746:72:0::1;23500:407:1::0;27746:72:0::1;-1:-1:-1::0;;;;;27829:14:0::1;27846:5;27829:14:::0;;;:4:::1;:14;::::0;;;;:22;;-1:-1:-1;;27829:22:0::1;::::0;;27623:234::o;52356:98::-;52411:7;52442:6;52434:5;;:14;;;;:::i;26030:201::-;25171:7;25198:6;-1:-1:-1;;;;;25198:6:0;23931:10;25345:23;25337:68;;;;-1:-1:-1;;;25337:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;26119:22:0;::::1;26111:73;;;::::0;-1:-1:-1;;;26111:73:0;;24114:2:1;26111:73:0::1;::::0;::::1;24096:21:1::0;24153:2;24133:18;;;24126:30;24192:34;24172:18;;;24165:62;-1:-1:-1;;;24243:18:1;;;24236:36;24289:19;;26111:73:0::1;23912:402:1::0;26111:73:0::1;26195:28;26214:8;26195:18;:28::i;57354:125::-:0;28316:13;25198:6;;-1:-1:-1;;;;;25198:6:0;23931:10;28332:23;;;;28316:13;28377:20;;27996:188;:::i;28377:20::-;28362:35;;28412:8;:19;;;;28424:7;28412:19;28404:73;;;;-1:-1:-1;;;28404:73:0;;;;;;;:::i;:::-;57417:25:::1;:23;:25::i;57919:242::-:0;57997:4;58033:1;58022:7;:12;;58014:66;;;;-1:-1:-1;;;58014:66:0;;24521:2:1;58014:66:0;;;24503:21:1;24560:2;24540:18;;;24533:30;24599:34;24579:18;;;24572:62;-1:-1:-1;;;24650:18:1;;;24643:39;24699:19;;58014:66:0;24319:405:1;58014:66:0;58137:16;;58125:7;58099:23;58113:8;58099:13;:23::i;:::-;:33;;;;:::i;:::-;58098:55;;;57919:242;-1:-1:-1;;;57919:242:0:o;42086:129::-;42169:40;42179:2;42183:8;42193:11;42169:40;;;;;;;;;;;;:9;:40::i;41945:135::-;42002:4;42041:7;34715:1;42022:26;;:52;;;;-1:-1:-1;;42062:12:0;;-1:-1:-1;42052:22:0;41945:135::o;45829:172::-;45926:24;;;;:15;:24;;;;;;:29;;-1:-1:-1;;;;;;45926:29:0;-1:-1:-1;;;;;45926:29:0;;;;;;;;;45967:28;;45926:24;;45967:28;;;;;;;45829:172;;;:::o;44198:1529::-;44295:35;44333:20;44345:7;44333:11;:20::i;:::-;44404:18;;44295:58;;-1:-1:-1;44362:22:0;;-1:-1:-1;;;;;44388:34:0;23931:10;-1:-1:-1;;;;;44388:34:0;;:81;;;-1:-1:-1;23931:10:0;44433:20;44445:7;44433:11;:20::i;:::-;-1:-1:-1;;;;;44433:36:0;;44388:81;:142;;;-1:-1:-1;44497:18:0;;44480:50;;23931:10;40729:186;:::i;44480:50::-;44362:169;;44556:17;44540:101;;;;-1:-1:-1;;;44540:101:0;;24931:2:1;44540:101:0;;;24913:21:1;24970:2;24950:18;;;24943:30;25009:34;24989:18;;;24982:62;-1:-1:-1;;;25060:18:1;;;25053:48;25118:19;;44540:101:0;24729:414:1;44540:101:0;44688:4;-1:-1:-1;;;;;44666:26:0;:13;:18;;;-1:-1:-1;;;;;44666:26:0;;44650:98;;;;-1:-1:-1;;;44650:98:0;;25350:2:1;44650:98:0;;;25332:21:1;25389:2;25369:18;;;25362:30;25428:34;25408:18;;;25401:62;-1:-1:-1;;;25479:18:1;;;25472:36;25525:19;;44650:98:0;25148:402:1;44650:98:0;-1:-1:-1;;;;;44763:16:0;;44755:66;;;;-1:-1:-1;;;44755:66:0;;25757:2:1;44755:66:0;;;25739:21:1;25796:2;25776:18;;;25769:30;25835:34;25815:18;;;25808:62;-1:-1:-1;;;25886:18:1;;;25879:35;25931:19;;44755:66:0;25555:401:1;44755:66:0;44930:49;44947:1;44951:7;44960:13;:18;;;44930:8;:49::i;:::-;-1:-1:-1;;;;;44988:18:0;;;;;;:12;:18;;;;;:31;;45018:1;;44988:18;:31;;45018:1;;-1:-1:-1;;;;;44988:31:0;;:::i;:::-;;;;;;;;-1:-1:-1;;;;;44988:31:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;45026:16:0;;-1:-1:-1;45026:16:0;;;:12;:16;;;;;:29;;-1:-1:-1;;;45026:16:0;;:29;;-1:-1:-1;;45026:29:0;;:::i;:::-;;;-1:-1:-1;;;;;45026:29:0;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;45085:43:0;;;;;;;;-1:-1:-1;;;;;45085:43:0;;;;;-1:-1:-1;;;;;45111:15:0;45085:43;;;;;;;;;-1:-1:-1;45062:20:0;;;:11;:20;;;;;;:66;;;;;;;;;-1:-1:-1;;;45062:66:0;-1:-1:-1;;;;;;45062:66:0;;;;;;;;;;;45378:11;45074:7;-1:-1:-1;45378:11:0;:::i;:::-;45441:1;45400:24;;;:11;:24;;;;;:29;45356:33;;-1:-1:-1;;;;;;45400:29:0;45396:236;;45458:20;45466:11;45458:7;:20::i;:::-;45454:171;;;45518:97;;;;;;;;45545:18;;-1:-1:-1;;;;;45518:97:0;;;;;;45576:28;;;;-1:-1:-1;;;;;45518:97:0;;;;;;;;;-1:-1:-1;45491:24:0;;;:11;:24;;;;;;;:124;;;;;;;;;-1:-1:-1;;;45491:124:0;-1:-1:-1;;;;;;45491:124:0;;;;;;;;;;;;45454:171;45664:7;45660:2;-1:-1:-1;;;;;45645:27:0;45654:4;-1:-1:-1;;;;;45645:27:0;;;;;;;;;;;45679:42;56402:801;29517:202;29650:4;29705;29676:25;29689:5;29696:4;29676:12;:25::i;:::-;:33;;29517:202;-1:-1:-1;;;;29517:202:0:o;37533:945::-;-1:-1:-1;;;;;;;;;;;;;;;;;37657:7:0;;34715:1;37698:23;;:46;;;;;37732:12;;37725:4;:19;37698:46;37694:706;;;37761:31;37795:17;;;:11;:17;;;;;;;;;37761:51;;;;;;;;;-1:-1:-1;;;;;37761:51:0;;;;;-1:-1:-1;;;37761:51:0;;;-1:-1:-1;;;;;37761:51:0;;;;;;;;37831:28;37827:85;;37887:9;37533:945;-1:-1:-1;;;37533:945:0:o;37827:85::-;-1:-1:-1;;;38208:6:0;38245:17;;;;:11;:17;;;;;;;;;38233:29;;;;;;;;;-1:-1:-1;;;;;38233:29:0;;;;;-1:-1:-1;;;38233:29:0;;;-1:-1:-1;;;;;38233:29:0;;;;;;;;38285:28;38281:93;;38345:9;37533:945;-1:-1:-1;;;37533:945:0:o;38281:93::-;38176:213;;37694:706;38415:57;;-1:-1:-1;;;38415:57:0;;26672:2:1;38415:57:0;;;26654:21:1;26711:2;26691:18;;;26684:30;26750:34;26730:18;;;26723:62;-1:-1:-1;;;26801:18:1;;;26794:45;26856:19;;38415:57:0;26470:411:1;26389:191:0;26463:16;26482:6;;-1:-1:-1;;;;;26499:17:0;;;-1:-1:-1;;;;;;26499:17:0;;;;;;26532:40;;26482:6;;;;;;;26532:40;;26463:16;26532:40;26452:128;26389:191;:::o;50327:278::-;50386:21;50368:15;50424:176;50442:19;;50438:1;:23;50424:176;;;50482:108;50509:16;50526:1;50509:19;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;-1:-1:-1;;;;;50509:19:0;50574:3;50556:11;50568:1;50556:14;;;;;;;;:::i;:::-;;;;;;;;;50546:7;:24;;;;:::i;:::-;50545:32;;;;:::i;:::-;50482:10;:108::i;:::-;50463:3;;;;:::i;:::-;;;;50424:176;;47618:690;47755:4;-1:-1:-1;;;;;47772:13:0;;1794:19;:23;47768:535;;47811:72;;-1:-1:-1;;;47811:72:0;;-1:-1:-1;;;;;47811:36:0;;;;;:72;;23931:10;;47862:4;;47868:7;;47877:5;;47811:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47811:72:0;;;;;;;;-1:-1:-1;;47811:72:0;;;;;;;;;;;;:::i;:::-;;;47798:464;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;48042:13:0;;48038:215;;48075:61;;-1:-1:-1;;;48075:61:0;;;;;;;:::i;48038:215::-;48221:6;48215:13;48206:6;48202:2;48198:15;48191:38;47798:464;-1:-1:-1;;;;;;47933:55:0;-1:-1:-1;;;47933:55:0;;-1:-1:-1;47926:62:0;;47768:535;-1:-1:-1;48291:4:0;47768:535;47618:690;;;;;;:::o;18682:723::-;18738:13;18959:10;18955:53;;-1:-1:-1;;18986:10:0;;;;;;;;;;;;-1:-1:-1;;;18986:10:0;;;;;18682:723::o;18955:53::-;19033:5;19018:12;19074:78;19081:9;;19074:78;;19107:8;;;;:::i;:::-;;-1:-1:-1;19130:10:0;;-1:-1:-1;19138:2:0;19130:10;;:::i;:::-;;;19074:78;;;19162:19;19194:6;-1:-1:-1;;;;;19184:17:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;19184:17:0;;19162:39;;19212:154;19219:10;;19212:154;;19246:11;19256:1;19246:11;;:::i;:::-;;-1:-1:-1;19315:10:0;19323:2;19315:5;:10;:::i;:::-;19302:24;;:2;:24;:::i;:::-;19289:39;;19272:6;19279;19272:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;19272:56:0;;;;;;;;-1:-1:-1;19343:11:0;19352:2;19343:11;;:::i;:::-;;;19212:154;;37287:240;37348:7;-1:-1:-1;;;;;37380:19:0;;37364:102;;;;-1:-1:-1;;;37364:102:0;;28083:2:1;37364:102:0;;;28065:21:1;28122:2;28102:18;;;28095:30;28161:34;28141:18;;;28134:62;-1:-1:-1;;;28212:18:1;;;28205:47;28269:19;;37364:102:0;27881:413:1;37364:102:0;-1:-1:-1;;;;;;37488:19:0;;;;;:12;:19;;;;;:32;-1:-1:-1;;;37488:32:0;;-1:-1:-1;;;;;37488:32:0;;37287:240::o;42544:1434::-;42695:12;;-1:-1:-1;;;;;42722:16:0;;42714:62;;;;-1:-1:-1;;;42714:62:0;;28501:2:1;42714:62:0;;;28483:21:1;28540:2;28520:18;;;28513:30;28579:34;28559:18;;;28552:62;-1:-1:-1;;;28630:18:1;;;28623:31;28671:19;;42714:62:0;28299:397:1;42714:62:0;42913:21;42921:12;42913:7;:21::i;:::-;42912:22;42904:64;;;;-1:-1:-1;;;42904:64:0;;28903:2:1;42904:64:0;;;28885:21:1;28942:2;28922:18;;;28915:30;28981:31;28961:18;;;28954:59;29030:18;;42904:64:0;28701:353:1;42904:64:0;43054:20;43050:116;;43107:12;;43095:8;:24;;43087:71;;;;-1:-1:-1;;;43087:71:0;;29261:2:1;43087:71:0;;;29243:21:1;29300:2;29280:18;;;29273:30;29339:34;29319:18;;;29312:62;-1:-1:-1;;;29390:18:1;;;29383:32;29432:19;;43087:71:0;29059:398:1;43087:71:0;-1:-1:-1;;;;;43277:16:0;;43244:30;43277:16;;;:12;:16;;;;;;;;;43244:49;;;;;;;;;-1:-1:-1;;;;;43244:49:0;;;;;-1:-1:-1;;;43244:49:0;;;;;;;;;;;43319:139;;;;;;;;43339:19;;43244:49;;43319:139;;;43339:39;;43369:8;;43339:39;:::i;:::-;-1:-1:-1;;;;;43319:139:0;;;;;43415:11;:35;;43441:8;43415:35;;;43429:1;43415:35;43387:11;:24;;;:64;;;;:::i;:::-;-1:-1:-1;;;;;43319:139:0;;;;;;-1:-1:-1;;;;;43300:16:0;;;;;;;:12;:16;;;;;;;;:158;;;;;;;;-1:-1:-1;;;43300:158:0;;;;;;;;;;;;43493:43;;;;;;;;;;-1:-1:-1;;;;;43519:15:0;43493:43;;;;;;;;43465:25;;;:11;:25;;;;;;:71;;;;;;;;;-1:-1:-1;;;43465:71:0;-1:-1:-1;;;;;;43465:71:0;;;;;;;;;;;;;;;;;;43477:12;;43589:281;43613:8;43609:1;:12;43589:281;;;43642:38;;43667:12;;-1:-1:-1;;;;;43642:38:0;;;43659:1;;43642:38;;43659:1;;43642:38;43707:59;43738:1;43742:2;43746:12;43760:5;43707:22;:59::i;:::-;43689:150;;;;-1:-1:-1;;;43689:150:0;;;;;;;:::i;:::-;43848:14;;;;:::i;:::-;;;;43623:3;;;;;:::i;:::-;;;;43589:281;;;-1:-1:-1;43878:12:0;:27;-1:-1:-1;;;;;;42544:1434:0:o;30091:701::-;30174:7;30219:4;30174:7;30236:515;30260:5;:12;30256:1;:16;30236:515;;;30296:20;30319:5;30325:1;30319:8;;;;;;;;:::i;:::-;;;;;;;30296:31;;30364:12;30348;:28;30344:394;;30870:13;30924:15;;;30962:4;30955:15;;;31011:4;30995:21;;30480:57;;30344:394;;;30870:13;30924:15;;;30962:4;30955:15;;;31011:4;30995:21;;30663:57;;30344:394;-1:-1:-1;30274:3:0;;;;:::i;:::-;;;;30236:515;;;-1:-1:-1;30770:12:0;30091:701;-1:-1:-1;;;30091:701:0:o;50613:175::-;50686:12;50704:8;-1:-1:-1;;;;;50704:13:0;50725:7;50704:33;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50685:52;;;50754:7;50746:36;;;;-1:-1:-1;;;50746:36:0;;29874:2:1;50746:36:0;;;29856:21:1;29913:2;29893:18;;;29886:30;-1:-1:-1;;;29932:18:1;;;29925:46;29988:18;;50746:36:0;29672:340:1;-1:-1:-1;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;196:131:1;-1:-1:-1;;;;;;270:32:1;;260:43;;250:71;;317:1;314;307:12;332:245;390:6;443:2;431:9;422:7;418:23;414:32;411:52;;;459:1;456;449:12;411:52;498:9;485:23;517:30;541:5;517:30;:::i;774:173::-;842:20;;-1:-1:-1;;;;;891:31:1;;881:42;;871:70;;937:1;934;927:12;871:70;774:173;;;:::o;952:254::-;1020:6;1028;1081:2;1069:9;1060:7;1056:23;1052:32;1049:52;;;1097:1;1094;1087:12;1049:52;1120:29;1139:9;1120:29;:::i;:::-;1110:39;1196:2;1181:18;;;;1168:32;;-1:-1:-1;;;952:254:1:o;1211:258::-;1283:1;1293:113;1307:6;1304:1;1301:13;1293:113;;;1383:11;;;1377:18;1364:11;;;1357:39;1329:2;1322:10;1293:113;;;1424:6;1421:1;1418:13;1415:48;;;-1:-1:-1;;1459:1:1;1441:16;;1434:27;1211:258::o;1474:::-;1516:3;1554:5;1548:12;1581:6;1576:3;1569:19;1597:63;1653:6;1646:4;1641:3;1637:14;1630:4;1623:5;1619:16;1597:63;:::i;:::-;1714:2;1693:15;-1:-1:-1;;1689:29:1;1680:39;;;;1721:4;1676:50;;1474:258;-1:-1:-1;;1474:258:1:o;1737:220::-;1886:2;1875:9;1868:21;1849:4;1906:45;1947:2;1936:9;1932:18;1924:6;1906:45;:::i;1962:180::-;2021:6;2074:2;2062:9;2053:7;2049:23;2045:32;2042:52;;;2090:1;2087;2080:12;2042:52;-1:-1:-1;2113:23:1;;1962:180;-1:-1:-1;1962:180:1:o;2355:328::-;2432:6;2440;2448;2501:2;2489:9;2480:7;2476:23;2472:32;2469:52;;;2517:1;2514;2507:12;2469:52;2540:29;2559:9;2540:29;:::i;:::-;2530:39;;2588:38;2622:2;2611:9;2607:18;2588:38;:::i;:::-;2578:48;;2673:2;2662:9;2658:18;2645:32;2635:42;;2355:328;;;;;:::o;2870:367::-;2933:8;2943:6;2997:3;2990:4;2982:6;2978:17;2974:27;2964:55;;3015:1;3012;3005:12;2964:55;-1:-1:-1;3038:20:1;;-1:-1:-1;;;;;3070:30:1;;3067:50;;;3113:1;3110;3103:12;3067:50;3150:4;3142:6;3138:17;3126:29;;3210:3;3203:4;3193:6;3190:1;3186:14;3178:6;3174:27;3170:38;3167:47;3164:67;;;3227:1;3224;3217:12;3164:67;2870:367;;;;;:::o;3242:511::-;3337:6;3345;3353;3406:2;3394:9;3385:7;3381:23;3377:32;3374:52;;;3422:1;3419;3412:12;3374:52;3445:29;3464:9;3445:29;:::i;:::-;3435:39;;3525:2;3514:9;3510:18;3497:32;-1:-1:-1;;;;;3544:6:1;3541:30;3538:50;;;3584:1;3581;3574:12;3538:50;3623:70;3685:7;3676:6;3665:9;3661:22;3623:70;:::i;:::-;3242:511;;3712:8;;-1:-1:-1;3597:96:1;;-1:-1:-1;;;;3242:511:1:o;3947:579::-;4051:6;4059;4067;4075;4128:2;4116:9;4107:7;4103:23;4099:32;4096:52;;;4144:1;4141;4134:12;4096:52;4167:29;4186:9;4167:29;:::i;:::-;4157:39;;4243:2;4232:9;4228:18;4215:32;4205:42;;4298:2;4287:9;4283:18;4270:32;-1:-1:-1;;;;;4317:6:1;4314:30;4311:50;;;4357:1;4354;4347:12;4311:50;4396:70;4458:7;4449:6;4438:9;4434:22;4396:70;:::i;:::-;3947:579;;;;-1:-1:-1;4485:8:1;-1:-1:-1;;;;3947:579:1:o;4531:186::-;4590:6;4643:2;4631:9;4622:7;4618:23;4614:32;4611:52;;;4659:1;4656;4649:12;4611:52;4682:29;4701:9;4682:29;:::i;4907:592::-;4978:6;4986;5039:2;5027:9;5018:7;5014:23;5010:32;5007:52;;;5055:1;5052;5045:12;5007:52;5095:9;5082:23;-1:-1:-1;;;;;5165:2:1;5157:6;5154:14;5151:34;;;5181:1;5178;5171:12;5151:34;5219:6;5208:9;5204:22;5194:32;;5264:7;5257:4;5253:2;5249:13;5245:27;5235:55;;5286:1;5283;5276:12;5235:55;5326:2;5313:16;5352:2;5344:6;5341:14;5338:34;;;5368:1;5365;5358:12;5338:34;5413:7;5408:2;5399:6;5395:2;5391:15;5387:24;5384:37;5381:57;;;5434:1;5431;5424:12;5381:57;5465:2;5457:11;;;;;5487:6;;-1:-1:-1;4907:592:1;;-1:-1:-1;;;;4907:592:1:o;5871:118::-;5957:5;5950:13;5943:21;5936:5;5933:32;5923:60;;5979:1;5976;5969:12;5994:315;6059:6;6067;6120:2;6108:9;6099:7;6095:23;6091:32;6088:52;;;6136:1;6133;6126:12;6088:52;6159:29;6178:9;6159:29;:::i;:::-;6149:39;;6238:2;6227:9;6223:18;6210:32;6251:28;6273:5;6251:28;:::i;:::-;6298:5;6288:15;;;5994:315;;;;;:::o;6314:127::-;6375:10;6370:3;6366:20;6363:1;6356:31;6406:4;6403:1;6396:15;6430:4;6427:1;6420:15;6446:1138;6541:6;6549;6557;6565;6618:3;6606:9;6597:7;6593:23;6589:33;6586:53;;;6635:1;6632;6625:12;6586:53;6658:29;6677:9;6658:29;:::i;:::-;6648:39;;6706:38;6740:2;6729:9;6725:18;6706:38;:::i;:::-;6696:48;;6791:2;6780:9;6776:18;6763:32;6753:42;;6846:2;6835:9;6831:18;6818:32;-1:-1:-1;;;;;6910:2:1;6902:6;6899:14;6896:34;;;6926:1;6923;6916:12;6896:34;6964:6;6953:9;6949:22;6939:32;;7009:7;7002:4;6998:2;6994:13;6990:27;6980:55;;7031:1;7028;7021:12;6980:55;7067:2;7054:16;7089:2;7085;7082:10;7079:36;;;7095:18;;:::i;:::-;7170:2;7164:9;7138:2;7224:13;;-1:-1:-1;;7220:22:1;;;7244:2;7216:31;7212:40;7200:53;;;7268:18;;;7288:22;;;7265:46;7262:72;;;7314:18;;:::i;:::-;7354:10;7350:2;7343:22;7389:2;7381:6;7374:18;7429:7;7424:2;7419;7415;7411:11;7407:20;7404:33;7401:53;;;7450:1;7447;7440:12;7401:53;7506:2;7501;7497;7493:11;7488:2;7480:6;7476:15;7463:46;7551:1;7546:2;7541;7533:6;7529:15;7525:24;7518:35;7572:6;7562:16;;;;;;;6446:1138;;;;;;;:::o;7589:260::-;7657:6;7665;7718:2;7706:9;7697:7;7693:23;7689:32;7686:52;;;7734:1;7731;7724:12;7686:52;7757:29;7776:9;7757:29;:::i;:::-;7747:39;;7805:38;7839:2;7828:9;7824:18;7805:38;:::i;:::-;7795:48;;7589:260;;;;;:::o;8209:410::-;8411:2;8393:21;;;8450:2;8430:18;;;8423:30;8489:34;8484:2;8469:18;;8462:62;-1:-1:-1;;;8555:2:1;8540:18;;8533:44;8609:3;8594:19;;8209:410::o;8624:401::-;8826:2;8808:21;;;8865:2;8845:18;;;8838:30;8904:34;8899:2;8884:18;;8877:62;-1:-1:-1;;;8970:2:1;8955:18;;8948:35;9015:3;9000:19;;8624:401::o;9030:412::-;9232:2;9214:21;;;9271:2;9251:18;;;9244:30;9310:34;9305:2;9290:18;;9283:62;-1:-1:-1;;;9376:2:1;9361:18;;9354:46;9432:3;9417:19;;9030:412::o;9447:127::-;9508:10;9503:3;9499:20;9496:1;9489:31;9539:4;9536:1;9529:15;9563:4;9560:1;9553:15;9579:128;9619:3;9650:1;9646:6;9643:1;9640:13;9637:39;;;9656:18;;:::i;:::-;-1:-1:-1;9692:9:1;;9579:128::o;9712:400::-;9914:2;9896:21;;;9953:2;9933:18;;;9926:30;9992:34;9987:2;9972:18;;9965:62;-1:-1:-1;;;10058:2:1;10043:18;;10036:34;10102:3;10087:19;;9712:400::o;10117:404::-;10319:2;10301:21;;;10358:2;10338:18;;;10331:30;10397:34;10392:2;10377:18;;10370:62;-1:-1:-1;;;10463:2:1;10448:18;;10441:38;10511:3;10496:19;;10117:404::o;10526:380::-;10605:1;10601:12;;;;10648;;;10669:61;;10723:4;10715:6;10711:17;10701:27;;10669:61;10776:2;10768:6;10765:14;10745:18;10742:38;10739:161;;;10822:10;10817:3;10813:20;10810:1;10803:31;10857:4;10854:1;10847:15;10885:4;10882:1;10875:15;10739:161;;10526:380;;;:::o;12557:135::-;12596:3;-1:-1:-1;;12617:17:1;;12614:43;;;12637:18;;:::i;:::-;-1:-1:-1;12684:1:1;12673:13;;12557:135::o;14411:399::-;14613:2;14595:21;;;14652:2;14632:18;;;14625:30;14691:34;14686:2;14671:18;;14664:62;-1:-1:-1;;;14757:2:1;14742:18;;14735:33;14800:3;14785:19;;14411:399::o;14815:405::-;15017:2;14999:21;;;15056:2;15036:18;;;15029:30;15095:34;15090:2;15075:18;;15068:62;-1:-1:-1;;;15161:2:1;15146:18;;15139:39;15210:3;15195:19;;14815:405::o;15581:356::-;15783:2;15765:21;;;15802:18;;;15795:30;15861:34;15856:2;15841:18;;15834:62;15928:2;15913:18;;15581:356::o;18628:403::-;18830:2;18812:21;;;18869:2;18849:18;;;18842:30;18908:34;18903:2;18888:18;;18881:62;-1:-1:-1;;;18974:2:1;18959:18;;18952:37;19021:3;19006:19;;18628:403::o;20153:184::-;20223:6;20276:2;20264:9;20255:7;20251:23;20247:32;20244:52;;;20292:1;20289;20282:12;20244:52;-1:-1:-1;20315:16:1;;20153:184;-1:-1:-1;20153:184:1:o;20746:127::-;20807:10;20802:3;20798:20;20795:1;20788:31;20838:4;20835:1;20828:15;20862:4;20859:1;20852:15;20878:168;20918:7;20984:1;20980;20976:6;20972:14;20969:1;20966:21;20961:1;20954:9;20947:17;20943:45;20940:71;;;20991:18;;:::i;:::-;-1:-1:-1;21031:9:1;;20878:168::o;21051:127::-;21112:10;21107:3;21103:20;21100:1;21093:31;21143:4;21140:1;21133:15;21167:4;21164:1;21157:15;21183:120;21223:1;21249;21239:35;;21254:18;;:::i;:::-;-1:-1:-1;21288:9:1;;21183:120::o;21587:245::-;21654:6;21707:2;21695:9;21686:7;21682:23;21678:32;21675:52;;;21723:1;21720;21713:12;21675:52;21755:9;21749:16;21774:28;21796:5;21774:28;:::i;21837:415::-;22039:2;22021:21;;;22078:2;22058:18;;;22051:30;22117:34;22112:2;22097:18;;22090:62;-1:-1:-1;;;22183:2:1;22168:18;;22161:49;22242:3;22227:19;;21837:415::o;23025:470::-;23204:3;23242:6;23236:13;23258:53;23304:6;23299:3;23292:4;23284:6;23280:17;23258:53;:::i;:::-;23374:13;;23333:16;;;;23396:57;23374:13;23333:16;23430:4;23418:17;;23396:57;:::i;:::-;23469:20;;23025:470;-1:-1:-1;;;;23025:470:1:o;25961:246::-;26001:4;-1:-1:-1;;;;;26114:10:1;;;;26084;;26136:12;;;26133:38;;;26151:18;;:::i;:::-;26188:13;;25961:246;-1:-1:-1;;;25961:246:1:o;26212:253::-;26252:3;-1:-1:-1;;;;;26341:2:1;26338:1;26334:10;26371:2;26368:1;26364:10;26402:3;26398:2;26394:12;26389:3;26386:21;26383:47;;;26410:18;;:::i;26886:489::-;-1:-1:-1;;;;;27155:15:1;;;27137:34;;27207:15;;27202:2;27187:18;;27180:43;27254:2;27239:18;;27232:34;;;27302:3;27297:2;27282:18;;27275:31;;;27080:4;;27323:46;;27349:19;;27341:6;27323:46;:::i;:::-;27315:54;26886:489;-1:-1:-1;;;;;;26886:489:1:o;27380:249::-;27449:6;27502:2;27490:9;27481:7;27477:23;27473:32;27470:52;;;27518:1;27515;27508:12;27470:52;27550:9;27544:16;27569:30;27593:5;27569:30;:::i;27634:125::-;27674:4;27702:1;27699;27696:8;27693:34;;;27707:18;;:::i;:::-;-1:-1:-1;27744:9:1;;27634:125::o;27764:112::-;27796:1;27822;27812:35;;27827:18;;:::i;:::-;-1:-1:-1;27861:9:1;;27764:112::o

Swarm Source

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