ETH Price: $3,377.44 (-1.13%)
Gas: 10 Gwei

Token

RebelsCoin (RBLSCOIN)
 

Overview

Max Total Supply

1,427 RBLSCOIN

Holders

257

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
525960.eth
0x97013995b4866f7279e2bf6dbd7677529b21a762
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:
RebelsCoin

Compiler Version
v0.8.2+commit.661d1103

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.4.2/contracts/utils/cryptography/MerkleProof.sol


// OpenZeppelin Contracts v4.4.1 (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 */
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 Merklee 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 = keccak256(abi.encodePacked(computedHash, proofElement));
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = keccak256(abi.encodePacked(proofElement, computedHash));
            }
        }
        return computedHash;
    }
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.4.2/contracts/utils/math/SafeMath.sol


// OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.4.2/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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.4.2/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);
    }
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.4.2/contracts/utils/Address.sol


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.4.2/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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.4.2/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: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.4.2/contracts/token/ERC1155/IERC1155Receiver.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC1155/IERC1155Receiver.sol)

pragma solidity ^0.8.0;


/**
 * @dev _Available since v3.1._
 */
interface IERC1155Receiver is IERC165 {
    /**
        @dev Handles the receipt of a single ERC1155 token type. This function is
        called at the end of a `safeTransferFrom` after the balance has been updated.
        To accept the transfer, this must return
        `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))`
        (i.e. 0xf23a6e61, or its own function selector).
        @param operator The address which initiated the transfer (i.e. msg.sender)
        @param from The address which previously owned the token
        @param id The ID of the token being transferred
        @param value The amount of tokens being transferred
        @param data Additional data with no specified format
        @return `bytes4(keccak256("onERC1155Received(address,address,uint256,uint256,bytes)"))` if transfer is allowed
    */
    function onERC1155Received(
        address operator,
        address from,
        uint256 id,
        uint256 value,
        bytes calldata data
    ) external returns (bytes4);

    /**
        @dev Handles the receipt of a multiple ERC1155 token types. This function
        is called at the end of a `safeBatchTransferFrom` after the balances have
        been updated. To accept the transfer(s), this must return
        `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))`
        (i.e. 0xbc197c81, or its own function selector).
        @param operator The address which initiated the batch transfer (i.e. msg.sender)
        @param from The address which previously owned the token
        @param ids An array containing ids of each token being transferred (order and length must match values array)
        @param values An array containing amounts of each token being transferred (order and length must match ids array)
        @param data Additional data with no specified format
        @return `bytes4(keccak256("onERC1155BatchReceived(address,address,uint256[],uint256[],bytes)"))` if transfer is allowed
    */
    function onERC1155BatchReceived(
        address operator,
        address from,
        uint256[] calldata ids,
        uint256[] calldata values,
        bytes calldata data
    ) external returns (bytes4);
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.4.2/contracts/token/ERC1155/IERC1155.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC1155/IERC1155.sol)

pragma solidity ^0.8.0;


/**
 * @dev Required interface of an ERC1155 compliant contract, as defined in the
 * https://eips.ethereum.org/EIPS/eip-1155[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155 is IERC165 {
    /**
     * @dev Emitted when `value` tokens of token type `id` are transferred from `from` to `to` by `operator`.
     */
    event TransferSingle(address indexed operator, address indexed from, address indexed to, uint256 id, uint256 value);

    /**
     * @dev Equivalent to multiple {TransferSingle} events, where `operator`, `from` and `to` are the same for all
     * transfers.
     */
    event TransferBatch(
        address indexed operator,
        address indexed from,
        address indexed to,
        uint256[] ids,
        uint256[] values
    );

    /**
     * @dev Emitted when `account` grants or revokes permission to `operator` to transfer their tokens, according to
     * `approved`.
     */
    event ApprovalForAll(address indexed account, address indexed operator, bool approved);

    /**
     * @dev Emitted when the URI for token type `id` changes to `value`, if it is a non-programmatic URI.
     *
     * If an {URI} event was emitted for `id`, the standard
     * https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[guarantees] that `value` will equal the value
     * returned by {IERC1155MetadataURI-uri}.
     */
    event URI(string value, uint256 indexed id);

    /**
     * @dev Returns the amount of tokens of token type `id` owned by `account`.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) external view returns (uint256);

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {balanceOf}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(address[] calldata accounts, uint256[] calldata ids)
        external
        view
        returns (uint256[] memory);

    /**
     * @dev Grants or revokes permission to `operator` to transfer the caller's tokens, according to `approved`,
     *
     * Emits an {ApprovalForAll} event.
     *
     * Requirements:
     *
     * - `operator` cannot be the caller.
     */
    function setApprovalForAll(address operator, bool approved) external;

    /**
     * @dev Returns true if `operator` is approved to transfer ``account``'s tokens.
     *
     * See {setApprovalForAll}.
     */
    function isApprovedForAll(address account, address operator) external view returns (bool);

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - If the caller is not `from`, it must be have been approved to spend ``from``'s tokens via {setApprovalForAll}.
     * - `from` must have a balance of tokens of type `id` of at least `amount`.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes calldata data
    ) external;

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] calldata ids,
        uint256[] calldata amounts,
        bytes calldata data
    ) external;
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.4.2/contracts/token/ERC1155/extensions/IERC1155MetadataURI.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/IERC1155MetadataURI.sol)

pragma solidity ^0.8.0;


/**
 * @dev Interface of the optional ERC1155MetadataExtension interface, as defined
 * in the https://eips.ethereum.org/EIPS/eip-1155#metadata-extensions[EIP].
 *
 * _Available since v3.1._
 */
interface IERC1155MetadataURI is IERC1155 {
    /**
     * @dev Returns the URI for token type `id`.
     *
     * If the `\{id\}` substring is present in the URI, it must be replaced by
     * clients with the actual token type ID.
     */
    function uri(uint256 id) external view returns (string memory);
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.4.2/contracts/token/ERC1155/ERC1155.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC1155/ERC1155.sol)

pragma solidity ^0.8.0;







/**
 * @dev Implementation of the basic standard multi-token.
 * See https://eips.ethereum.org/EIPS/eip-1155
 * Originally based on code by Enjin: https://github.com/enjin/erc-1155
 *
 * _Available since v3.1._
 */
contract ERC1155 is Context, ERC165, IERC1155, IERC1155MetadataURI {
    using Address for address;

    // Mapping from token ID to account balances
    mapping(uint256 => mapping(address => uint256)) private _balances;

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

    // Used as the URI for all token types by relying on ID substitution, e.g. https://token-cdn-domain/{id}.json
    string private _uri;

    /**
     * @dev See {_setURI}.
     */
    constructor(string memory uri_) {
        _setURI(uri_);
    }

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

    /**
     * @dev See {IERC1155MetadataURI-uri}.
     *
     * This implementation returns the same URI for *all* token types. It relies
     * on the token type ID substitution mechanism
     * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
     *
     * Clients calling this function must replace the `\{id\}` substring with the
     * actual token type ID.
     */
    function uri(uint256) public view virtual override returns (string memory) {
        return _uri;
    }

    /**
     * @dev See {IERC1155-balanceOf}.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function balanceOf(address account, uint256 id) public view virtual override returns (uint256) {
        require(account != address(0), "ERC1155: balance query for the zero address");
        return _balances[id][account];
    }

    /**
     * @dev See {IERC1155-balanceOfBatch}.
     *
     * Requirements:
     *
     * - `accounts` and `ids` must have the same length.
     */
    function balanceOfBatch(address[] memory accounts, uint256[] memory ids)
        public
        view
        virtual
        override
        returns (uint256[] memory)
    {
        require(accounts.length == ids.length, "ERC1155: accounts and ids length mismatch");

        uint256[] memory batchBalances = new uint256[](accounts.length);

        for (uint256 i = 0; i < accounts.length; ++i) {
            batchBalances[i] = balanceOf(accounts[i], ids[i]);
        }

        return batchBalances;
    }

    /**
     * @dev See {IERC1155-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

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

    /**
     * @dev See {IERC1155-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) public virtual override {
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: caller is not owner nor approved"
        );
        _safeTransferFrom(from, to, id, amount, data);
    }

    /**
     * @dev See {IERC1155-safeBatchTransferFrom}.
     */
    function safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) public virtual override {
        require(
            from == _msgSender() || isApprovedForAll(from, _msgSender()),
            "ERC1155: transfer caller is not owner nor approved"
        );
        _safeBatchTransferFrom(from, to, ids, amounts, data);
    }

    /**
     * @dev Transfers `amount` tokens of token type `id` from `from` to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `from` must have a balance of tokens of type `id` of at least `amount`.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _safeTransferFrom(
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: transfer to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, to, _asSingletonArray(id), _asSingletonArray(amount), data);

        uint256 fromBalance = _balances[id][from];
        require(fromBalance >= amount, "ERC1155: insufficient balance for transfer");
        unchecked {
            _balances[id][from] = fromBalance - amount;
        }
        _balances[id][to] += amount;

        emit TransferSingle(operator, from, to, id, amount);

        _doSafeTransferAcceptanceCheck(operator, from, to, id, amount, data);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_safeTransferFrom}.
     *
     * Emits a {TransferBatch} event.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function _safeBatchTransferFrom(
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");
        require(to != address(0), "ERC1155: transfer to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, to, ids, amounts, data);

        for (uint256 i = 0; i < ids.length; ++i) {
            uint256 id = ids[i];
            uint256 amount = amounts[i];

            uint256 fromBalance = _balances[id][from];
            require(fromBalance >= amount, "ERC1155: insufficient balance for transfer");
            unchecked {
                _balances[id][from] = fromBalance - amount;
            }
            _balances[id][to] += amount;
        }

        emit TransferBatch(operator, from, to, ids, amounts);

        _doSafeBatchTransferAcceptanceCheck(operator, from, to, ids, amounts, data);
    }

    /**
     * @dev Sets a new URI for all token types, by relying on the token type ID
     * substitution mechanism
     * https://eips.ethereum.org/EIPS/eip-1155#metadata[defined in the EIP].
     *
     * By this mechanism, any occurrence of the `\{id\}` substring in either the
     * URI or any of the amounts in the JSON file at said URI will be replaced by
     * clients with the token type ID.
     *
     * For example, the `https://token-cdn-domain/\{id\}.json` URI would be
     * interpreted by clients as
     * `https://token-cdn-domain/000000000000000000000000000000000000000000000000000000000004cce0.json`
     * for token type ID 0x4cce0.
     *
     * See {uri}.
     *
     * Because these URIs cannot be meaningfully represented by the {URI} event,
     * this function emits no events.
     */
    function _setURI(string memory newuri) internal virtual {
        _uri = newuri;
    }

    /**
     * @dev Creates `amount` tokens of token type `id`, and assigns them to `to`.
     *
     * Emits a {TransferSingle} event.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155Received} and return the
     * acceptance magic value.
     */
    function _mint(
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: mint to the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, address(0), to, _asSingletonArray(id), _asSingletonArray(amount), data);

        _balances[id][to] += amount;
        emit TransferSingle(operator, address(0), to, id, amount);

        _doSafeTransferAcceptanceCheck(operator, address(0), to, id, amount, data);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_mint}.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     * - If `to` refers to a smart contract, it must implement {IERC1155Receiver-onERC1155BatchReceived} and return the
     * acceptance magic value.
     */
    function _mintBatch(
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {
        require(to != address(0), "ERC1155: mint to the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, address(0), to, ids, amounts, data);

        for (uint256 i = 0; i < ids.length; i++) {
            _balances[ids[i]][to] += amounts[i];
        }

        emit TransferBatch(operator, address(0), to, ids, amounts);

        _doSafeBatchTransferAcceptanceCheck(operator, address(0), to, ids, amounts, data);
    }

    /**
     * @dev Destroys `amount` tokens of token type `id` from `from`
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `from` must have at least `amount` tokens of token type `id`.
     */
    function _burn(
        address from,
        uint256 id,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC1155: burn from the zero address");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, address(0), _asSingletonArray(id), _asSingletonArray(amount), "");

        uint256 fromBalance = _balances[id][from];
        require(fromBalance >= amount, "ERC1155: burn amount exceeds balance");
        unchecked {
            _balances[id][from] = fromBalance - amount;
        }

        emit TransferSingle(operator, from, address(0), id, amount);
    }

    /**
     * @dev xref:ROOT:erc1155.adoc#batch-operations[Batched] version of {_burn}.
     *
     * Requirements:
     *
     * - `ids` and `amounts` must have the same length.
     */
    function _burnBatch(
        address from,
        uint256[] memory ids,
        uint256[] memory amounts
    ) internal virtual {
        require(from != address(0), "ERC1155: burn from the zero address");
        require(ids.length == amounts.length, "ERC1155: ids and amounts length mismatch");

        address operator = _msgSender();

        _beforeTokenTransfer(operator, from, address(0), ids, amounts, "");

        for (uint256 i = 0; i < ids.length; i++) {
            uint256 id = ids[i];
            uint256 amount = amounts[i];

            uint256 fromBalance = _balances[id][from];
            require(fromBalance >= amount, "ERC1155: burn amount exceeds balance");
            unchecked {
                _balances[id][from] = fromBalance - amount;
            }
        }

        emit TransferBatch(operator, from, address(0), ids, amounts);
    }

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC1155: setting approval status for self");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning, as well as batched variants.
     *
     * The same hook is called on both single and batched variants. For single
     * transfers, the length of the `id` and `amount` arrays will be 1.
     *
     * Calling conditions (for each `id` and `amount` pair):
     *
     * - When `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * of token type `id` will be  transferred to `to`.
     * - When `from` is zero, `amount` tokens of token type `id` will be minted
     * for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens of token type `id`
     * will be burned.
     * - `from` and `to` are never both zero.
     * - `ids` and `amounts` have the same, non-zero length.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) internal virtual {}

    function _doSafeTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256 id,
        uint256 amount,
        bytes memory data
    ) private {
        if (to.isContract()) {
            try IERC1155Receiver(to).onERC1155Received(operator, from, id, amount, data) returns (bytes4 response) {
                if (response != IERC1155Receiver.onERC1155Received.selector) {
                    revert("ERC1155: ERC1155Receiver rejected tokens");
                }
            } catch Error(string memory reason) {
                revert(reason);
            } catch {
                revert("ERC1155: transfer to non ERC1155Receiver implementer");
            }
        }
    }

    function _doSafeBatchTransferAcceptanceCheck(
        address operator,
        address from,
        address to,
        uint256[] memory ids,
        uint256[] memory amounts,
        bytes memory data
    ) private {
        if (to.isContract()) {
            try IERC1155Receiver(to).onERC1155BatchReceived(operator, from, ids, amounts, data) returns (
                bytes4 response
            ) {
                if (response != IERC1155Receiver.onERC1155BatchReceived.selector) {
                    revert("ERC1155: ERC1155Receiver rejected tokens");
                }
            } catch Error(string memory reason) {
                revert(reason);
            } catch {
                revert("ERC1155: transfer to non ERC1155Receiver implementer");
            }
        }
    }

    function _asSingletonArray(uint256 element) private pure returns (uint256[] memory) {
        uint256[] memory array = new uint256[](1);
        array[0] = element;

        return array;
    }
}

// File: https://github.com/OpenZeppelin/openzeppelin-contracts/blob/v4.4.2/contracts/token/ERC1155/extensions/ERC1155Burnable.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC1155/extensions/ERC1155Burnable.sol)

pragma solidity ^0.8.0;


/**
 * @dev Extension of {ERC1155} that allows token holders to destroy both their
 * own tokens and those that they have been approved to use.
 *
 * _Available since v3.1._
 */
abstract contract ERC1155Burnable is ERC1155 {
    function burn(
        address account,
        uint256 id,
        uint256 value
    ) public virtual {
        require(
            account == _msgSender() || isApprovedForAll(account, _msgSender()),
            "ERC1155: caller is not owner nor approved"
        );

        _burn(account, id, value);
    }

    function burnBatch(
        address account,
        uint256[] memory ids,
        uint256[] memory values
    ) public virtual {
        require(
            account == _msgSender() || isApprovedForAll(account, _msgSender()),
            "ERC1155: caller is not owner nor approved"
        );

        _burnBatch(account, ids, values);
    }
}

// File: contracts/erc1155.sol


/* 
8888888b.          888               888               d8b               8888888b.  d8b                            d8b                   
888   Y88b         888               888               Y8P               888  "Y88b Y8P                            Y8P                   
888    888         888               888                                 888    888                                                      
888   d88P .d88b.  88888b.   .d88b.  888 .d8888b       888 88888b.       888    888 888 .d8888b   .d88b.  888  888 888 .d8888b   .d88b.  
8888888P" d8P  Y8b 888 "88b d8P  Y8b 888 88K           888 888 "88b      888    888 888 88K      d88P"88b 888  888 888 88K      d8P  Y8b 
888 T88b  88888888 888  888 88888888 888 "Y8888b.      888 888  888      888    888 888 "Y8888b. 888  888 888  888 888 "Y8888b. 88888888 
888  T88b Y8b.     888 d88P Y8b.     888      X88      888 888  888      888  .d88P 888      X88 Y88b 888 Y88b 888 888      X88 Y8b.     
888   T88b "Y8888  88888P"   "Y8888  888  88888P'      888 888  888      8888888P"  888  88888P'  "Y88888  "Y88888 888  88888P'  "Y8888  
                                                                                                      888                                
                                                                                                 Y8b d88P                                
                                                                                                  "Y88P"                                 
*/
pragma solidity ^0.8.2;






contract RebelsCoin is ERC1155, Ownable, ERC1155Burnable {
    using SafeMath for uint256;
    using MerkleProof for bytes32[];

    uint256 amountMinted = 0;
    uint256 perTransaction = 5;
    uint256 perTransactionForWhitelist = 2;
    uint256 maxrebels = 5555;

    uint256 private tokenPrice = 55000000000000000;
    bytes32 public merkleRoot;
    string name_;
    string symbol_;

    mapping(address => bool) public whitelistClaimed;

    bool whitelistSale = true;
    bool publicSale = false;
    bool salesStarted = false;
    bool migrationStarted = false;

    Rebels721Contract public rebels721Contract;

    // Payout addresses
    address team1 = 0xd228c59148a3428B845b572d88E7ec77839cf474;
    address team2 = 0xdBdFdB5a3c50BE2481cC021828b6815B46d2f2f8;
    address team3 = 0x13205830f2bf6f1197D057f145454CE99A955A6d;
    address team4 = 0xE2BFf72848B50e2385E63c23681695e990eC42cb;
    address team5 = 0x3F838Fb407b750655632088bDf1D0430F53AC8F3;
    address team6 = 0xCdC82eE2cbC9168e7DA4CD3EeF49705C5610839b;
    address team7 = 0x35364A2B2c2DC73bEdF16e7fBCd29D2dA27E04D4;
    address team8 = 0xDf82600D2fA71B2Cb9406EEF582114b395729d23;
    address team9 = 0x9D35BaDbC2300003B5CF077262e7Ef389a89e981;

    constructor(address _rebels721Contract, string memory _name, string memory _symbol)
        ERC1155("https://gateway.pinata.cloud/ipfs/QmRKarHppL2BCj6Vvm6HKaaR5vHF63mvn9aRHj8fKGgocb/0")
    {
        name_ = _name;
        symbol_ = _symbol;
        rebels721Contract = Rebels721Contract(_rebels721Contract);
    }

    modifier callerIsUser() {
        require(tx.origin == msg.sender, "The caller is another contract");
        _;
    }

    // set Rebels ERC721 contract
    function setRebelsERC721Contract(address _contract) public onlyOwner {
        rebels721Contract = Rebels721Contract(_contract);
    }

    // Toggle all sales
    function toggleSales() public onlyOwner {
        salesStarted = !salesStarted;
    }

    // Toggle the private sales system
    function toggleWhitelistSales() public onlyOwner {
        whitelistSale = !whitelistSale;
    }

    // Toggle public sale
    function togglePublicSales() public onlyOwner {
        publicSale = !publicSale;
    }

    // Toggle migrations
    function toggleMigration() public onlyOwner {
        migrationStarted = !migrationStarted;
    }

    //Set merkle root hash
    function setMerkleRoot(bytes32 root) public onlyOwner {
        merkleRoot = root;
    }

    // Mint function
    function mint(uint256 _count) public payable callerIsUser {
        require(salesStarted == true, "Sales have not started");
        require(publicSale == true, "Public sale have not yet started");
        require(msg.value >= tokenPrice.mul(_count), "Not enough money");
        require(_count <= perTransaction, "Only 5 for public per transaction");
        require(_count + amountMinted <= maxrebels, "Limit reached");

        _mint(msg.sender, 0, _count, "");
        amountMinted += _count;
    }

    // Mint function for whitelist
    function whitelistMint(uint256 _count, bytes32[] calldata merkleProof) public payable {
        require(salesStarted == true, "Sales have not started");
        require(whitelistSale == true, "Whitelist sale have not yet started");
        require(msg.value >= tokenPrice.mul(_count), "Not enough money");
        require(_count + amountMinted <= maxrebels, "Limit reached");
        require(_count <= perTransactionForWhitelist, "Only 2 for whitelisted users");
        require(!whitelistClaimed[msg.sender], "Whitelist already claimed");
        require(merkleProof.verify(merkleRoot, keccak256(abi.encodePacked(msg.sender))), "Not whitelisted");

        _mint(msg.sender, 0, _count, "");
        whitelistClaimed[msg.sender] = true;
        amountMinted += _count;
    }

    // Mint function for only owner
    function mintForOwner(uint256 _count) public onlyOwner {
        require(_count + amountMinted <= maxrebels, "Limit reached");

        _mint(msg.sender, 0, _count, "");
        amountMinted += _count;
    }

    // Migrate ERC1155 to ERC721
    function migrateBatch(uint256 _count) public {
        require(migrationStarted == true, "Migration has not started");
        require(balanceOf(msg.sender, 0) >= _count, "Doesn't own the token");

        rebels721Contract.mintTransfer(msg.sender, _count);
        burn(msg.sender, 0, _count);
    }

    // Get amount of 1155 minted
    function totalSupply() public view returns (uint256) {
        return amountMinted;
    }

    // Change price
    function setPrice(uint256 _newPrice) public onlyOwner {
        tokenPrice = _newPrice;
    }

    // Change supply
    function setSupply(uint256 _newSupply) public onlyOwner {
        maxrebels = _newSupply;
    }

    // Basic withdrawal of funds function in order to transfert ETH out of the smart contract
    function withdraw() public onlyOwner {
        uint256 amountToTeam1 = (address(this).balance * 150) / 1000; // 15%
        uint256 amountToTeam2 = (address(this).balance * 125) / 1000; // 12.5%
        uint256 amountToTeam4 = (address(this).balance * 50) / 1000; // 5%
        uint256 amountToTeam5 = (address(this).balance * 125) / 1000; // 12.5%
        uint256 amountToTeam6 = (address(this).balance * 125) / 1000; // 12.5%
        uint256 amountToTeam7 = (address(this).balance * 125) / 1000; // 12.5%
        uint256 amountToTeam8 = (address(this).balance * 125) / 1000; // 12.5%
        uint256 amountToTeam9 = (address(this).balance * 125) / 1000; // 12.5%

        sendEth(team1, amountToTeam1);
        sendEth(team2, amountToTeam2);
        sendEth(team4, amountToTeam4);
        sendEth(team5, amountToTeam5);
        sendEth(team6, amountToTeam6);
        sendEth(team7, amountToTeam7);
        sendEth(team8, amountToTeam8);
        sendEth(team9, amountToTeam9);

        // send the rest to team 3
        uint256 amountToTeam3 = address(this).balance; // ~10%
        sendEth(team3, amountToTeam3);
    }

    function sendEth(address to, uint256 amount) internal {
        (bool success, ) = to.call{value: amount}("");
        require(success, "Failed to send ether");
    }

    function name() public view returns (string memory) {
        return name_;
    }

    function symbol() public view returns (string memory) {
        return symbol_;
    }   
}

interface Rebels721Contract {
    function mintTransfer(address to, uint256 _count) external;
 }

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_rebels721Contract","type":"address"},{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","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":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"indexed":false,"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"TransferBatch","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"id","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"TransferSingle","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"value","type":"string"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"URI","type":"event"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"accounts","type":"address[]"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"}],"name":"balanceOfBatch","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256[]","name":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"values","type":"uint256[]"}],"name":"burnBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"migrateBatch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mintForOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rebels721Contract","outputs":[{"internalType":"contract Rebels721Contract","name":"","type":"address"}],"stateMutability":"view","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":"ids","type":"uint256[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeBatchTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"uint256","name":"amount","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":"bytes32","name":"root","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_contract","type":"address"}],"name":"setRebelsERC721Contract","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newSupply","type":"uint256"}],"name":"setSupply","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":[],"name":"toggleMigration","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePublicSales","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleSales","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"toggleWhitelistSales","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"uri","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260006004556005805560026006556115b360075566c3663566a580006008556001600d60006101000a81548160ff0219169083151502179055506000600d60016101000a81548160ff0219169083151502179055506000600d60026101000a81548160ff0219169083151502179055506000600d60036101000a81548160ff02191690831515021790555073d228c59148a3428b845b572d88e7ec77839cf474600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073dbdfdb5a3c50be2481cc021828b6815b46d2f2f8600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507313205830f2bf6f1197d057f145454ce99a955a6d601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073e2bff72848b50e2385e63c23681695e990ec42cb601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550733f838fb407b750655632088bdf1d0430f53ac8f3601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073cdc82ee2cbc9168e7da4cd3eef49705c5610839b601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055507335364a2b2c2dc73bedf16e7fbcd29d2da27e04d4601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073df82600d2fa71b2cb9406eef582114b395729d23601560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550739d35badbc2300003b5cf077262e7ef389a89e981601660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200039957600080fd5b5060405162005f2b38038062005f2b8339818101604052810190620003bf9190620006aa565b60405180608001604052806052815260200162005ed960529139620003ea816200048760201b60201c565b506200040b620003ff620004a360201b60201c565b620004ab60201b60201c565b81600a90805190602001906200042392919062000571565b5080600b90805190602001906200043c92919062000571565b5082600d60046101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550505050620008f0565b80600290805190602001906200049f92919062000571565b5050565b600033905090565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200057f90620007fb565b90600052602060002090601f016020900481019282620005a35760008555620005ef565b82601f10620005be57805160ff1916838001178555620005ef565b82800160010185558215620005ef579182015b82811115620005ee578251825591602001919060010190620005d1565b5b509050620005fe919062000602565b5090565b5b808211156200061d57600081600090555060010162000603565b5090565b60006200063862000632846200075b565b62000732565b9050828152602081018484840111156200065157600080fd5b6200065e848285620007c5565b509392505050565b6000815190506200067781620008d6565b92915050565b600082601f8301126200068f57600080fd5b8151620006a184826020860162000621565b91505092915050565b600080600060608486031215620006c057600080fd5b6000620006d08682870162000666565b935050602084015167ffffffffffffffff811115620006ee57600080fd5b620006fc868287016200067d565b925050604084015167ffffffffffffffff8111156200071a57600080fd5b62000728868287016200067d565b9150509250925092565b60006200073e62000751565b90506200074c828262000831565b919050565b6000604051905090565b600067ffffffffffffffff82111562000779576200077862000896565b5b6200078482620008c5565b9050602081019050919050565b60006200079e82620007a5565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60005b83811015620007e5578082015181840152602081019050620007c8565b83811115620007f5576000848401525b50505050565b600060028204905060018216806200081457607f821691505b602082108114156200082b576200082a62000867565b5b50919050565b6200083c82620008c5565b810181811067ffffffffffffffff821117156200085e576200085d62000896565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b620008e18162000791565b8114620008ed57600080fd5b50565b6155d980620009006000396000f3fe6080604052600436106101e25760003560e01c80638d19c2aa11610102578063d2cab05611610095578063e985e9c511610064578063e985e9c51461064d578063f242432a1461068a578063f2fde38b146106b3578063f5298aca146106dc576101e2565b8063d2cab056146105b4578063db4bec44146105d0578063dbd30ae01461060d578063dd4778cd14610624576101e2565b806395d89b41116100d157806395d89b411461051b578063a0712d6814610546578063a22cb46514610562578063b984e76a1461058b576101e2565b80638d19c2aa146104855780638da5cb5b1461049c5780639167b026146104c757806391b7f5ed146104f2576101e2565b8063348fb8541161017a57806363bc312a1161014957806363bc312a146103f35780636b20c4541461041c578063715018a6146104455780637cb647591461045c576101e2565b8063348fb8541461035f5780633b4c4b25146103765780633ccfd60b1461039f5780634e1273f4146103b6576101e2565b806318160ddd116101b657806318160ddd146102c957806321fec36c146102f45780632eb2c2d61461030b5780632eb4a7ab14610334576101e2565b8062fdd58e146101e757806301ffc9a71461022457806306fdde03146102615780630e89341c1461028c575b600080fd5b3480156101f357600080fd5b5061020e60048036038101906102099190613b9d565b610705565b60405161021b91906148a5565b60405180910390f35b34801561023057600080fd5b5061024b60048036038101906102469190613cbd565b6107ce565b60405161025891906144b2565b60405180910390f35b34801561026d57600080fd5b506102766108b0565b6040516102839190614503565b60405180910390f35b34801561029857600080fd5b506102b360048036038101906102ae9190613d0f565b610942565b6040516102c09190614503565b60405180910390f35b3480156102d557600080fd5b506102de6109d6565b6040516102eb91906148a5565b60405180910390f35b34801561030057600080fd5b506103096109e0565b005b34801561031757600080fd5b50610332600480360381019061032d9190613994565b610a88565b005b34801561034057600080fd5b50610349610b29565b60405161035691906144cd565b60405180910390f35b34801561036b57600080fd5b50610374610b2f565b005b34801561038257600080fd5b5061039d60048036038101906103989190613d0f565b610bd7565b005b3480156103ab57600080fd5b506103b4610c5d565b005b3480156103c257600080fd5b506103dd60048036038101906103d89190613c28565b610f65565b6040516103ea9190614459565b60405180910390f35b3480156103ff57600080fd5b5061041a60048036038101906104159190613d0f565b611116565b005b34801561042857600080fd5b50610443600480360381019061043e9190613ae2565b61121c565b005b34801561045157600080fd5b5061045a6112b9565b005b34801561046857600080fd5b50610483600480360381019061047e9190613c94565b611341565b005b34801561049157600080fd5b5061049a6113c7565b005b3480156104a857600080fd5b506104b161146f565b6040516104be9190614353565b60405180910390f35b3480156104d357600080fd5b506104dc611499565b6040516104e991906144e8565b60405180910390f35b3480156104fe57600080fd5b5061051960048036038101906105149190613d0f565b6114bf565b005b34801561052757600080fd5b50610530611545565b60405161053d9190614503565b60405180910390f35b610560600480360381019061055b9190613d0f565b6115d7565b005b34801561056e57600080fd5b5061058960048036038101906105849190613b61565b611817565b005b34801561059757600080fd5b506105b260048036038101906105ad919061392f565b61182d565b005b6105ce60048036038101906105c99190613d38565b6118ed565b005b3480156105dc57600080fd5b506105f760048036038101906105f2919061392f565b611c63565b60405161060491906144b2565b60405180910390f35b34801561061957600080fd5b50610622611c83565b005b34801561063057600080fd5b5061064b60048036038101906106469190613d0f565b611d2b565b005b34801561065957600080fd5b50610674600480360381019061066f9190613958565b611e6c565b60405161068191906144b2565b60405180910390f35b34801561069657600080fd5b506106b160048036038101906106ac9190613a53565b611f00565b005b3480156106bf57600080fd5b506106da60048036038101906106d5919061392f565b611fa1565b005b3480156106e857600080fd5b5061070360048036038101906106fe9190613bd9565b612099565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610776576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161076d906145a5565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061089957507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108a957506108a882612136565b5b9050919050565b6060600a80546108bf90614bd8565b80601f01602080910402602001604051908101604052809291908181526020018280546108eb90614bd8565b80156109385780601f1061090d57610100808354040283529160200191610938565b820191906000526020600020905b81548152906001019060200180831161091b57829003601f168201915b5050505050905090565b60606002805461095190614bd8565b80601f016020809104026020016040519081016040528092919081815260200182805461097d90614bd8565b80156109ca5780601f1061099f576101008083540402835291602001916109ca565b820191906000526020600020905b8154815290600101906020018083116109ad57829003601f168201915b50505050509050919050565b6000600454905090565b6109e86121a0565b73ffffffffffffffffffffffffffffffffffffffff16610a0661146f565b73ffffffffffffffffffffffffffffffffffffffff1614610a5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5390614765565b60405180910390fd5b600d60039054906101000a900460ff1615600d60036101000a81548160ff021916908315150217905550565b610a906121a0565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610ad65750610ad585610ad06121a0565b611e6c565b5b610b15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0c906146c5565b60405180910390fd5b610b2285858585856121a8565b5050505050565b60095481565b610b376121a0565b73ffffffffffffffffffffffffffffffffffffffff16610b5561146f565b73ffffffffffffffffffffffffffffffffffffffff1614610bab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba290614765565b60405180910390fd5b600d60009054906101000a900460ff1615600d60006101000a81548160ff021916908315150217905550565b610bdf6121a0565b73ffffffffffffffffffffffffffffffffffffffff16610bfd61146f565b73ffffffffffffffffffffffffffffffffffffffff1614610c53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4a90614765565b60405180910390fd5b8060078190555050565b610c656121a0565b73ffffffffffffffffffffffffffffffffffffffff16610c8361146f565b73ffffffffffffffffffffffffffffffffffffffff1614610cd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd090614765565b60405180910390fd5b60006103e8609647610ceb9190614a9a565b610cf59190614a69565b905060006103e8607d47610d099190614a9a565b610d139190614a69565b905060006103e8603247610d279190614a9a565b610d319190614a69565b905060006103e8607d47610d459190614a9a565b610d4f9190614a69565b905060006103e8607d47610d639190614a9a565b610d6d9190614a69565b905060006103e8607d47610d819190614a9a565b610d8b9190614a69565b905060006103e8607d47610d9f9190614a9a565b610da99190614a69565b905060006103e8607d47610dbd9190614a9a565b610dc79190614a69565b9050610df5600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1689612508565b610e21600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1688612508565b610e4d601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1687612508565b610e79601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1686612508565b610ea5601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1685612508565b610ed1601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684612508565b610efd601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683612508565b610f29601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682612508565b6000479050610f5a601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682612508565b505050505050505050565b60608151835114610fab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa290614845565b60405180910390fd5b6000835167ffffffffffffffff811115610fee577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60405190808252806020026020018201604052801561101c5781602001602082028036833780820191505090505b50905060005b845181101561110b576110b5858281518110611067577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101518583815181106110a8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151610705565b8282815181106110ee577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250508061110490614c3b565b9050611022565b508091505092915050565b61111e6121a0565b73ffffffffffffffffffffffffffffffffffffffff1661113c61146f565b73ffffffffffffffffffffffffffffffffffffffff1614611192576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118990614765565b60405180910390fd5b600754600454826111a39190614a13565b11156111e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111db90614645565b60405180910390fd5b61120033600083604051806020016040528060008152506125b9565b80600460008282546112129190614a13565b9250508190555050565b6112246121a0565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061126a5750611269836112646121a0565b611e6c565b5b6112a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a090614625565b60405180910390fd5b6112b483838361274f565b505050565b6112c16121a0565b73ffffffffffffffffffffffffffffffffffffffff166112df61146f565b73ffffffffffffffffffffffffffffffffffffffff1614611335576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132c90614765565b60405180910390fd5b61133f6000612a4c565b565b6113496121a0565b73ffffffffffffffffffffffffffffffffffffffff1661136761146f565b73ffffffffffffffffffffffffffffffffffffffff16146113bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b490614765565b60405180910390fd5b8060098190555050565b6113cf6121a0565b73ffffffffffffffffffffffffffffffffffffffff166113ed61146f565b73ffffffffffffffffffffffffffffffffffffffff1614611443576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143a90614765565b60405180910390fd5b600d60019054906101000a900460ff1615600d60016101000a81548160ff021916908315150217905550565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600d60049054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6114c76121a0565b73ffffffffffffffffffffffffffffffffffffffff166114e561146f565b73ffffffffffffffffffffffffffffffffffffffff161461153b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153290614765565b60405180910390fd5b8060088190555050565b6060600b805461155490614bd8565b80601f016020809104026020016040519081016040528092919081815260200182805461158090614bd8565b80156115cd5780601f106115a2576101008083540402835291602001916115cd565b820191906000526020600020905b8154815290600101906020018083116115b057829003601f168201915b5050505050905090565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611645576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163c90614685565b60405180910390fd5b60011515600d60029054906101000a900460ff1615151461169b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169290614665565b60405180910390fd5b60011515600d60019054906101000a900460ff161515146116f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e8906147e5565b60405180910390fd5b61170681600854612b1290919063ffffffff16565b341015611748576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173f90614565565b60405180910390fd5b60055481111561178d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611784906147c5565b60405180910390fd5b6007546004548261179e9190614a13565b11156117df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d690614645565b60405180910390fd5b6117fb33600083604051806020016040528060008152506125b9565b806004600082825461180d9190614a13565b9250508190555050565b6118296118226121a0565b8383612b28565b5050565b6118356121a0565b73ffffffffffffffffffffffffffffffffffffffff1661185361146f565b73ffffffffffffffffffffffffffffffffffffffff16146118a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a090614765565b60405180910390fd5b80600d60046101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60011515600d60029054906101000a900460ff16151514611943576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193a90614665565b60405180910390fd5b60011515600d60009054906101000a900460ff16151514611999576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199090614805565b60405180910390fd5b6119ae83600854612b1290919063ffffffff16565b3410156119f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e790614565565b60405180910390fd5b60075460045484611a019190614a13565b1115611a42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3990614645565b60405180910390fd5b600654831115611a87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7e906147a5565b60405180910390fd5b600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611b14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0b90614745565b60405180910390fd5b611b9260095433604051602001611b2b91906142f7565b60405160208183030381529060405280519060200120848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050612c959092919063ffffffff16565b611bd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc8906146e5565b60405180910390fd5b611bed33600085604051806020016040528060008152506125b9565b6001600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508260046000828254611c579190614a13565b92505081905550505050565b600c6020528060005260406000206000915054906101000a900460ff1681565b611c8b6121a0565b73ffffffffffffffffffffffffffffffffffffffff16611ca961146f565b73ffffffffffffffffffffffffffffffffffffffff1614611cff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf690614765565b60405180910390fd5b600d60029054906101000a900460ff1615600d60026101000a81548160ff021916908315150217905550565b60011515600d60039054906101000a900460ff16151514611d81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7890614585565b60405180910390fd5b80611d8d336000610705565b1015611dce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc5906145e5565b60405180910390fd5b600d60049054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c349c93e33836040518363ffffffff1660e01b8152600401611e2b929190614430565b600060405180830381600087803b158015611e4557600080fd5b505af1158015611e59573d6000803e3d6000fd5b50505050611e6933600083612099565b50565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611f086121a0565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480611f4e5750611f4d85611f486121a0565b611e6c565b5b611f8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8490614625565b60405180910390fd5b611f9a8585858585612cac565b5050505050565b611fa96121a0565b73ffffffffffffffffffffffffffffffffffffffff16611fc761146f565b73ffffffffffffffffffffffffffffffffffffffff161461201d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201490614765565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561208d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612084906145c5565b60405180910390fd5b61209681612a4c565b50565b6120a16121a0565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806120e757506120e6836120e16121a0565b611e6c565b5b612126576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211d90614625565b60405180910390fd5b612131838383612f2e565b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b81518351146121ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121e390614865565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561225c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612253906146a5565b60405180910390fd5b60006122666121a0565b905061227681878787878761314b565b60005b84518110156124735760008582815181106122bd577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015190506000858381518110612302577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156123a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239a90614725565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124589190614a13565b925050819055505050508061246c90614c3b565b9050612279565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516124ea92919061447b565b60405180910390a4612500818787878787613153565b505050505050565b60008273ffffffffffffffffffffffffffffffffffffffff168260405161252e9061433e565b60006040518083038185875af1925050503d806000811461256b576040519150601f19603f3d011682016040523d82523d6000602084013e612570565b606091505b50509050806125b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125ab90614785565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612629576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161262090614885565b60405180910390fd5b60006126336121a0565b9050612654816000876126458861333a565b61264e8861333a565b8761314b565b8260008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546126b39190614a13565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6287876040516127319291906148c0565b60405180910390a461274881600087878787613400565b5050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156127bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127b690614705565b60405180910390fd5b8051825114612803576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127fa90614865565b60405180910390fd5b600061280d6121a0565b905061282d8185600086866040518060200160405280600081525061314b565b60005b83518110156129c6576000848281518110612874577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151905060008483815181106128b9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050600080600084815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561295a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161295190614605565b60405180910390fd5b81810360008085815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050505080806129be90614c3b565b915050612830565b50600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8686604051612a3e92919061447b565b60405180910390a450505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008183612b209190614a9a565b905092915050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612b97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b8e90614825565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612c8891906144b2565b60405180910390a3505050565b600082612ca285846135e7565b1490509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612d1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d13906146a5565b60405180910390fd5b6000612d266121a0565b9050612d46818787612d378861333a565b612d408861333a565b8761314b565b600080600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015612ddd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dd490614725565b60405180910390fd5b83810360008087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508360008087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612e929190614a13565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628888604051612f0f9291906148c0565b60405180910390a4612f25828888888888613400565b50505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612f9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f9590614705565b60405180910390fd5b6000612fa86121a0565b9050612fd881856000612fba8761333a565b612fc38761333a565b6040518060200160405280600081525061314b565b600080600085815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561306f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161306690614605565b60405180910390fd5b82810360008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62878760405161313c9291906148c0565b60405180910390a45050505050565b505050505050565b6131728473ffffffffffffffffffffffffffffffffffffffff166136c0565b15613332578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b81526004016131b895949392919061436e565b602060405180830381600087803b1580156131d257600080fd5b505af192505050801561320357506040513d601f19601f820116820180604052508101906132009190613ce6565b60015b6132a95761320f614d6e565b806308c379a0141561326c575061322461549a565b8061322f575061326e565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132639190614503565b60405180910390fd5b505b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132a090614525565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614613330576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161332790614545565b60405180910390fd5b505b505050505050565b60606000600167ffffffffffffffff81111561337f577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156133ad5781602001602082028036833780820191505090505b50905082816000815181106133eb577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080915050919050565b61341f8473ffffffffffffffffffffffffffffffffffffffff166136c0565b156135df578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b81526004016134659594939291906143d6565b602060405180830381600087803b15801561347f57600080fd5b505af19250505080156134b057506040513d601f19601f820116820180604052508101906134ad9190613ce6565b60015b613556576134bc614d6e565b806308c379a0141561351957506134d161549a565b806134dc575061351b565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135109190614503565b60405180910390fd5b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161354d90614525565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146135dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135d490614545565b60405180910390fd5b505b505050505050565b60008082905060005b84518110156136b5576000858281518110613634577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050808311613675578281604051602001613658929190614312565b6040516020818303038152906040528051906020012092506136a1565b8083604051602001613688929190614312565b6040516020818303038152906040528051906020012092505b5080806136ad90614c3b565b9150506135f0565b508091505092915050565b600080823b905060008111915050919050565b60006136e66136e18461490e565b6148e9565b9050808382526020820190508285602086028201111561370557600080fd5b60005b85811015613735578161371b88826137e9565b845260208401935060208301925050600181019050613708565b5050509392505050565b600061375261374d8461493a565b6148e9565b9050808382526020820190508285602086028201111561377157600080fd5b60005b858110156137a15781613787888261391a565b845260208401935060208301925050600181019050613774565b5050509392505050565b60006137be6137b984614966565b6148e9565b9050828152602081018484840111156137d657600080fd5b6137e1848285614b96565b509392505050565b6000813590506137f881615530565b92915050565b600082601f83011261380f57600080fd5b813561381f8482602086016136d3565b91505092915050565b60008083601f84011261383a57600080fd5b8235905067ffffffffffffffff81111561385357600080fd5b60208301915083602082028301111561386b57600080fd5b9250929050565b600082601f83011261388357600080fd5b813561389384826020860161373f565b91505092915050565b6000813590506138ab81615547565b92915050565b6000813590506138c08161555e565b92915050565b6000813590506138d581615575565b92915050565b6000815190506138ea81615575565b92915050565b600082601f83011261390157600080fd5b81356139118482602086016137ab565b91505092915050565b6000813590506139298161558c565b92915050565b60006020828403121561394157600080fd5b600061394f848285016137e9565b91505092915050565b6000806040838503121561396b57600080fd5b6000613979858286016137e9565b925050602061398a858286016137e9565b9150509250929050565b600080600080600060a086880312156139ac57600080fd5b60006139ba888289016137e9565b95505060206139cb888289016137e9565b945050604086013567ffffffffffffffff8111156139e857600080fd5b6139f488828901613872565b935050606086013567ffffffffffffffff811115613a1157600080fd5b613a1d88828901613872565b925050608086013567ffffffffffffffff811115613a3a57600080fd5b613a46888289016138f0565b9150509295509295909350565b600080600080600060a08688031215613a6b57600080fd5b6000613a79888289016137e9565b9550506020613a8a888289016137e9565b9450506040613a9b8882890161391a565b9350506060613aac8882890161391a565b925050608086013567ffffffffffffffff811115613ac957600080fd5b613ad5888289016138f0565b9150509295509295909350565b600080600060608486031215613af757600080fd5b6000613b05868287016137e9565b935050602084013567ffffffffffffffff811115613b2257600080fd5b613b2e86828701613872565b925050604084013567ffffffffffffffff811115613b4b57600080fd5b613b5786828701613872565b9150509250925092565b60008060408385031215613b7457600080fd5b6000613b82858286016137e9565b9250506020613b938582860161389c565b9150509250929050565b60008060408385031215613bb057600080fd5b6000613bbe858286016137e9565b9250506020613bcf8582860161391a565b9150509250929050565b600080600060608486031215613bee57600080fd5b6000613bfc868287016137e9565b9350506020613c0d8682870161391a565b9250506040613c1e8682870161391a565b9150509250925092565b60008060408385031215613c3b57600080fd5b600083013567ffffffffffffffff811115613c5557600080fd5b613c61858286016137fe565b925050602083013567ffffffffffffffff811115613c7e57600080fd5b613c8a85828601613872565b9150509250929050565b600060208284031215613ca657600080fd5b6000613cb4848285016138b1565b91505092915050565b600060208284031215613ccf57600080fd5b6000613cdd848285016138c6565b91505092915050565b600060208284031215613cf857600080fd5b6000613d06848285016138db565b91505092915050565b600060208284031215613d2157600080fd5b6000613d2f8482850161391a565b91505092915050565b600080600060408486031215613d4d57600080fd5b6000613d5b8682870161391a565b935050602084013567ffffffffffffffff811115613d7857600080fd5b613d8486828701613828565b92509250509250925092565b6000613d9c83836142d9565b60208301905092915050565b613db181614af4565b82525050565b613dc8613dc382614af4565b614c84565b82525050565b6000613dd9826149a7565b613de381856149d5565b9350613dee83614997565b8060005b83811015613e1f578151613e068882613d90565b9750613e11836149c8565b925050600181019050613df2565b5085935050505092915050565b613e3581614b06565b82525050565b613e4481614b12565b82525050565b613e5b613e5682614b12565b614c96565b82525050565b6000613e6c826149b2565b613e7681856149e6565b9350613e86818560208601614ba5565b613e8f81614d90565b840191505092915050565b613ea381614b72565b82525050565b6000613eb4826149bd565b613ebe8185614a02565b9350613ece818560208601614ba5565b613ed781614d90565b840191505092915050565b6000613eef603483614a02565b9150613efa82614dbb565b604082019050919050565b6000613f12602883614a02565b9150613f1d82614e0a565b604082019050919050565b6000613f35601083614a02565b9150613f4082614e59565b602082019050919050565b6000613f58601983614a02565b9150613f6382614e82565b602082019050919050565b6000613f7b602b83614a02565b9150613f8682614eab565b604082019050919050565b6000613f9e602683614a02565b9150613fa982614efa565b604082019050919050565b6000613fc1601583614a02565b9150613fcc82614f49565b602082019050919050565b6000613fe4602483614a02565b9150613fef82614f72565b604082019050919050565b6000614007602983614a02565b915061401282614fc1565b604082019050919050565b600061402a600d83614a02565b915061403582615010565b602082019050919050565b600061404d601683614a02565b915061405882615039565b602082019050919050565b6000614070601e83614a02565b915061407b82615062565b602082019050919050565b6000614093602583614a02565b915061409e8261508b565b604082019050919050565b60006140b6603283614a02565b91506140c1826150da565b604082019050919050565b60006140d9600f83614a02565b91506140e482615129565b602082019050919050565b60006140fc602383614a02565b915061410782615152565b604082019050919050565b600061411f602a83614a02565b915061412a826151a1565b604082019050919050565b6000614142601983614a02565b915061414d826151f0565b602082019050919050565b6000614165602083614a02565b915061417082615219565b602082019050919050565b6000614188601483614a02565b915061419382615242565b602082019050919050565b60006141ab601c83614a02565b91506141b68261526b565b602082019050919050565b60006141ce602183614a02565b91506141d982615294565b604082019050919050565b60006141f1602083614a02565b91506141fc826152e3565b602082019050919050565b6000614214602383614a02565b915061421f8261530c565b604082019050919050565b60006142376000836149f7565b91506142428261535b565b600082019050919050565b600061425a602983614a02565b91506142658261535e565b604082019050919050565b600061427d602983614a02565b9150614288826153ad565b604082019050919050565b60006142a0602883614a02565b91506142ab826153fc565b604082019050919050565b60006142c3602183614a02565b91506142ce8261544b565b604082019050919050565b6142e281614b68565b82525050565b6142f181614b68565b82525050565b60006143038284613db7565b60148201915081905092915050565b600061431e8285613e4a565b60208201915061432e8284613e4a565b6020820191508190509392505050565b60006143498261422a565b9150819050919050565b60006020820190506143686000830184613da8565b92915050565b600060a0820190506143836000830188613da8565b6143906020830187613da8565b81810360408301526143a28186613dce565b905081810360608301526143b68185613dce565b905081810360808301526143ca8184613e61565b90509695505050505050565b600060a0820190506143eb6000830188613da8565b6143f86020830187613da8565b61440560408301866142e8565b61441260608301856142e8565b81810360808301526144248184613e61565b90509695505050505050565b60006040820190506144456000830185613da8565b61445260208301846142e8565b9392505050565b600060208201905081810360008301526144738184613dce565b905092915050565b600060408201905081810360008301526144958185613dce565b905081810360208301526144a98184613dce565b90509392505050565b60006020820190506144c76000830184613e2c565b92915050565b60006020820190506144e26000830184613e3b565b92915050565b60006020820190506144fd6000830184613e9a565b92915050565b6000602082019050818103600083015261451d8184613ea9565b905092915050565b6000602082019050818103600083015261453e81613ee2565b9050919050565b6000602082019050818103600083015261455e81613f05565b9050919050565b6000602082019050818103600083015261457e81613f28565b9050919050565b6000602082019050818103600083015261459e81613f4b565b9050919050565b600060208201905081810360008301526145be81613f6e565b9050919050565b600060208201905081810360008301526145de81613f91565b9050919050565b600060208201905081810360008301526145fe81613fb4565b9050919050565b6000602082019050818103600083015261461e81613fd7565b9050919050565b6000602082019050818103600083015261463e81613ffa565b9050919050565b6000602082019050818103600083015261465e8161401d565b9050919050565b6000602082019050818103600083015261467e81614040565b9050919050565b6000602082019050818103600083015261469e81614063565b9050919050565b600060208201905081810360008301526146be81614086565b9050919050565b600060208201905081810360008301526146de816140a9565b9050919050565b600060208201905081810360008301526146fe816140cc565b9050919050565b6000602082019050818103600083015261471e816140ef565b9050919050565b6000602082019050818103600083015261473e81614112565b9050919050565b6000602082019050818103600083015261475e81614135565b9050919050565b6000602082019050818103600083015261477e81614158565b9050919050565b6000602082019050818103600083015261479e8161417b565b9050919050565b600060208201905081810360008301526147be8161419e565b9050919050565b600060208201905081810360008301526147de816141c1565b9050919050565b600060208201905081810360008301526147fe816141e4565b9050919050565b6000602082019050818103600083015261481e81614207565b9050919050565b6000602082019050818103600083015261483e8161424d565b9050919050565b6000602082019050818103600083015261485e81614270565b9050919050565b6000602082019050818103600083015261487e81614293565b9050919050565b6000602082019050818103600083015261489e816142b6565b9050919050565b60006020820190506148ba60008301846142e8565b92915050565b60006040820190506148d560008301856142e8565b6148e260208301846142e8565b9392505050565b60006148f3614904565b90506148ff8282614c0a565b919050565b6000604051905090565b600067ffffffffffffffff82111561492957614928614d3f565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561495557614954614d3f565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561498157614980614d3f565b5b61498a82614d90565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b6000614a1e82614b68565b9150614a2983614b68565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614a5e57614a5d614cb2565b5b828201905092915050565b6000614a7482614b68565b9150614a7f83614b68565b925082614a8f57614a8e614ce1565b5b828204905092915050565b6000614aa582614b68565b9150614ab083614b68565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614ae957614ae8614cb2565b5b828202905092915050565b6000614aff82614b48565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000614b7d82614b84565b9050919050565b6000614b8f82614b48565b9050919050565b82818337600083830152505050565b60005b83811015614bc3578082015181840152602081019050614ba8565b83811115614bd2576000848401525b50505050565b60006002820490506001821680614bf057607f821691505b60208210811415614c0457614c03614d10565b5b50919050565b614c1382614d90565b810181811067ffffffffffffffff82111715614c3257614c31614d3f565b5b80604052505050565b6000614c4682614b68565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614c7957614c78614cb2565b5b600182019050919050565b6000614c8f82614ca0565b9050919050565b6000819050919050565b6000614cab82614da1565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060033d1115614d8d5760046000803e614d8a600051614dae565b90505b90565b6000601f19601f8301169050919050565b60008160601b9050919050565b60008160e01c9050919050565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f756768206d6f6e657900000000000000000000000000000000600082015250565b7f4d6967726174696f6e20686173206e6f74207374617274656400000000000000600082015250565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f446f65736e2774206f776e2074686520746f6b656e0000000000000000000000600082015250565b7f455243313135353a206275726e20616d6f756e7420657863656564732062616c60008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b7f4c696d6974207265616368656400000000000000000000000000000000000000600082015250565b7f53616c65732068617665206e6f74207374617274656400000000000000000000600082015250565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f4e6f742077686974656c69737465640000000000000000000000000000000000600082015250565b7f455243313135353a206275726e2066726f6d20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b7f57686974656c69737420616c726561647920636c61696d656400000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4661696c656420746f2073656e64206574686572000000000000000000000000600082015250565b7f4f6e6c79203220666f722077686974656c697374656420757365727300000000600082015250565b7f4f6e6c79203520666f72207075626c696320706572207472616e73616374696f60008201527f6e00000000000000000000000000000000000000000000000000000000000000602082015250565b7f5075626c69632073616c652068617665206e6f74207965742073746172746564600082015250565b7f57686974656c6973742073616c652068617665206e6f7420796574207374617260008201527f7465640000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600060443d10156154aa5761552d565b6154b2614904565b60043d036004823e80513d602482011167ffffffffffffffff821117156154da57505061552d565b808201805167ffffffffffffffff8111156154f8575050505061552d565b80602083010160043d03850181111561551557505050505061552d565b61552482602001850186614c0a565b82955050505050505b90565b61553981614af4565b811461554457600080fd5b50565b61555081614b06565b811461555b57600080fd5b50565b61556781614b12565b811461557257600080fd5b50565b61557e81614b1c565b811461558957600080fd5b50565b61559581614b68565b81146155a057600080fd5b5056fea264697066735822122065e4b7fafb2af2a90c436d0294d0c4ffe77df749f3ecf74bc725e0262258771164736f6c6343000802003368747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d524b61724870704c3242436a3656766d36484b6161523576484636336d766e396152486a38664b47676f63622f300000000000000000000000001ca1f5dc13f3204088993df413c81561dce72cfc000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000a526562656c73436f696e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000852424c53434f494e000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106101e25760003560e01c80638d19c2aa11610102578063d2cab05611610095578063e985e9c511610064578063e985e9c51461064d578063f242432a1461068a578063f2fde38b146106b3578063f5298aca146106dc576101e2565b8063d2cab056146105b4578063db4bec44146105d0578063dbd30ae01461060d578063dd4778cd14610624576101e2565b806395d89b41116100d157806395d89b411461051b578063a0712d6814610546578063a22cb46514610562578063b984e76a1461058b576101e2565b80638d19c2aa146104855780638da5cb5b1461049c5780639167b026146104c757806391b7f5ed146104f2576101e2565b8063348fb8541161017a57806363bc312a1161014957806363bc312a146103f35780636b20c4541461041c578063715018a6146104455780637cb647591461045c576101e2565b8063348fb8541461035f5780633b4c4b25146103765780633ccfd60b1461039f5780634e1273f4146103b6576101e2565b806318160ddd116101b657806318160ddd146102c957806321fec36c146102f45780632eb2c2d61461030b5780632eb4a7ab14610334576101e2565b8062fdd58e146101e757806301ffc9a71461022457806306fdde03146102615780630e89341c1461028c575b600080fd5b3480156101f357600080fd5b5061020e60048036038101906102099190613b9d565b610705565b60405161021b91906148a5565b60405180910390f35b34801561023057600080fd5b5061024b60048036038101906102469190613cbd565b6107ce565b60405161025891906144b2565b60405180910390f35b34801561026d57600080fd5b506102766108b0565b6040516102839190614503565b60405180910390f35b34801561029857600080fd5b506102b360048036038101906102ae9190613d0f565b610942565b6040516102c09190614503565b60405180910390f35b3480156102d557600080fd5b506102de6109d6565b6040516102eb91906148a5565b60405180910390f35b34801561030057600080fd5b506103096109e0565b005b34801561031757600080fd5b50610332600480360381019061032d9190613994565b610a88565b005b34801561034057600080fd5b50610349610b29565b60405161035691906144cd565b60405180910390f35b34801561036b57600080fd5b50610374610b2f565b005b34801561038257600080fd5b5061039d60048036038101906103989190613d0f565b610bd7565b005b3480156103ab57600080fd5b506103b4610c5d565b005b3480156103c257600080fd5b506103dd60048036038101906103d89190613c28565b610f65565b6040516103ea9190614459565b60405180910390f35b3480156103ff57600080fd5b5061041a60048036038101906104159190613d0f565b611116565b005b34801561042857600080fd5b50610443600480360381019061043e9190613ae2565b61121c565b005b34801561045157600080fd5b5061045a6112b9565b005b34801561046857600080fd5b50610483600480360381019061047e9190613c94565b611341565b005b34801561049157600080fd5b5061049a6113c7565b005b3480156104a857600080fd5b506104b161146f565b6040516104be9190614353565b60405180910390f35b3480156104d357600080fd5b506104dc611499565b6040516104e991906144e8565b60405180910390f35b3480156104fe57600080fd5b5061051960048036038101906105149190613d0f565b6114bf565b005b34801561052757600080fd5b50610530611545565b60405161053d9190614503565b60405180910390f35b610560600480360381019061055b9190613d0f565b6115d7565b005b34801561056e57600080fd5b5061058960048036038101906105849190613b61565b611817565b005b34801561059757600080fd5b506105b260048036038101906105ad919061392f565b61182d565b005b6105ce60048036038101906105c99190613d38565b6118ed565b005b3480156105dc57600080fd5b506105f760048036038101906105f2919061392f565b611c63565b60405161060491906144b2565b60405180910390f35b34801561061957600080fd5b50610622611c83565b005b34801561063057600080fd5b5061064b60048036038101906106469190613d0f565b611d2b565b005b34801561065957600080fd5b50610674600480360381019061066f9190613958565b611e6c565b60405161068191906144b2565b60405180910390f35b34801561069657600080fd5b506106b160048036038101906106ac9190613a53565b611f00565b005b3480156106bf57600080fd5b506106da60048036038101906106d5919061392f565b611fa1565b005b3480156106e857600080fd5b5061070360048036038101906106fe9190613bd9565b612099565b005b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610776576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161076d906145a5565b60405180910390fd5b60008083815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60007fd9b67a26000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061089957507f0e89341c000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806108a957506108a882612136565b5b9050919050565b6060600a80546108bf90614bd8565b80601f01602080910402602001604051908101604052809291908181526020018280546108eb90614bd8565b80156109385780601f1061090d57610100808354040283529160200191610938565b820191906000526020600020905b81548152906001019060200180831161091b57829003601f168201915b5050505050905090565b60606002805461095190614bd8565b80601f016020809104026020016040519081016040528092919081815260200182805461097d90614bd8565b80156109ca5780601f1061099f576101008083540402835291602001916109ca565b820191906000526020600020905b8154815290600101906020018083116109ad57829003601f168201915b50505050509050919050565b6000600454905090565b6109e86121a0565b73ffffffffffffffffffffffffffffffffffffffff16610a0661146f565b73ffffffffffffffffffffffffffffffffffffffff1614610a5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a5390614765565b60405180910390fd5b600d60039054906101000a900460ff1615600d60036101000a81548160ff021916908315150217905550565b610a906121a0565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480610ad65750610ad585610ad06121a0565b611e6c565b5b610b15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0c906146c5565b60405180910390fd5b610b2285858585856121a8565b5050505050565b60095481565b610b376121a0565b73ffffffffffffffffffffffffffffffffffffffff16610b5561146f565b73ffffffffffffffffffffffffffffffffffffffff1614610bab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba290614765565b60405180910390fd5b600d60009054906101000a900460ff1615600d60006101000a81548160ff021916908315150217905550565b610bdf6121a0565b73ffffffffffffffffffffffffffffffffffffffff16610bfd61146f565b73ffffffffffffffffffffffffffffffffffffffff1614610c53576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4a90614765565b60405180910390fd5b8060078190555050565b610c656121a0565b73ffffffffffffffffffffffffffffffffffffffff16610c8361146f565b73ffffffffffffffffffffffffffffffffffffffff1614610cd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd090614765565b60405180910390fd5b60006103e8609647610ceb9190614a9a565b610cf59190614a69565b905060006103e8607d47610d099190614a9a565b610d139190614a69565b905060006103e8603247610d279190614a9a565b610d319190614a69565b905060006103e8607d47610d459190614a9a565b610d4f9190614a69565b905060006103e8607d47610d639190614a9a565b610d6d9190614a69565b905060006103e8607d47610d819190614a9a565b610d8b9190614a69565b905060006103e8607d47610d9f9190614a9a565b610da99190614a69565b905060006103e8607d47610dbd9190614a9a565b610dc79190614a69565b9050610df5600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1689612508565b610e21600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1688612508565b610e4d601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1687612508565b610e79601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1686612508565b610ea5601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1685612508565b610ed1601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1684612508565b610efd601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683612508565b610f29601660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682612508565b6000479050610f5a601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1682612508565b505050505050505050565b60608151835114610fab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa290614845565b60405180910390fd5b6000835167ffffffffffffffff811115610fee577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60405190808252806020026020018201604052801561101c5781602001602082028036833780820191505090505b50905060005b845181101561110b576110b5858281518110611067577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101518583815181106110a8577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151610705565b8282815181106110ee577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010181815250508061110490614c3b565b9050611022565b508091505092915050565b61111e6121a0565b73ffffffffffffffffffffffffffffffffffffffff1661113c61146f565b73ffffffffffffffffffffffffffffffffffffffff1614611192576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118990614765565b60405180910390fd5b600754600454826111a39190614a13565b11156111e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111db90614645565b60405180910390fd5b61120033600083604051806020016040528060008152506125b9565b80600460008282546112129190614a13565b9250508190555050565b6112246121a0565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061126a5750611269836112646121a0565b611e6c565b5b6112a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112a090614625565b60405180910390fd5b6112b483838361274f565b505050565b6112c16121a0565b73ffffffffffffffffffffffffffffffffffffffff166112df61146f565b73ffffffffffffffffffffffffffffffffffffffff1614611335576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132c90614765565b60405180910390fd5b61133f6000612a4c565b565b6113496121a0565b73ffffffffffffffffffffffffffffffffffffffff1661136761146f565b73ffffffffffffffffffffffffffffffffffffffff16146113bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b490614765565b60405180910390fd5b8060098190555050565b6113cf6121a0565b73ffffffffffffffffffffffffffffffffffffffff166113ed61146f565b73ffffffffffffffffffffffffffffffffffffffff1614611443576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143a90614765565b60405180910390fd5b600d60019054906101000a900460ff1615600d60016101000a81548160ff021916908315150217905550565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600d60049054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6114c76121a0565b73ffffffffffffffffffffffffffffffffffffffff166114e561146f565b73ffffffffffffffffffffffffffffffffffffffff161461153b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153290614765565b60405180910390fd5b8060088190555050565b6060600b805461155490614bd8565b80601f016020809104026020016040519081016040528092919081815260200182805461158090614bd8565b80156115cd5780601f106115a2576101008083540402835291602001916115cd565b820191906000526020600020905b8154815290600101906020018083116115b057829003601f168201915b5050505050905090565b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611645576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161163c90614685565b60405180910390fd5b60011515600d60029054906101000a900460ff1615151461169b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169290614665565b60405180910390fd5b60011515600d60019054906101000a900460ff161515146116f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e8906147e5565b60405180910390fd5b61170681600854612b1290919063ffffffff16565b341015611748576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173f90614565565b60405180910390fd5b60055481111561178d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611784906147c5565b60405180910390fd5b6007546004548261179e9190614a13565b11156117df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117d690614645565b60405180910390fd5b6117fb33600083604051806020016040528060008152506125b9565b806004600082825461180d9190614a13565b9250508190555050565b6118296118226121a0565b8383612b28565b5050565b6118356121a0565b73ffffffffffffffffffffffffffffffffffffffff1661185361146f565b73ffffffffffffffffffffffffffffffffffffffff16146118a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a090614765565b60405180910390fd5b80600d60046101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60011515600d60029054906101000a900460ff16151514611943576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193a90614665565b60405180910390fd5b60011515600d60009054906101000a900460ff16151514611999576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199090614805565b60405180910390fd5b6119ae83600854612b1290919063ffffffff16565b3410156119f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119e790614565565b60405180910390fd5b60075460045484611a019190614a13565b1115611a42576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3990614645565b60405180910390fd5b600654831115611a87576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7e906147a5565b60405180910390fd5b600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611b14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b0b90614745565b60405180910390fd5b611b9260095433604051602001611b2b91906142f7565b60405160208183030381529060405280519060200120848480806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050612c959092919063ffffffff16565b611bd1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc8906146e5565b60405180910390fd5b611bed33600085604051806020016040528060008152506125b9565b6001600c60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508260046000828254611c579190614a13565b92505081905550505050565b600c6020528060005260406000206000915054906101000a900460ff1681565b611c8b6121a0565b73ffffffffffffffffffffffffffffffffffffffff16611ca961146f565b73ffffffffffffffffffffffffffffffffffffffff1614611cff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cf690614765565b60405180910390fd5b600d60029054906101000a900460ff1615600d60026101000a81548160ff021916908315150217905550565b60011515600d60039054906101000a900460ff16151514611d81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7890614585565b60405180910390fd5b80611d8d336000610705565b1015611dce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dc5906145e5565b60405180910390fd5b600d60049054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c349c93e33836040518363ffffffff1660e01b8152600401611e2b929190614430565b600060405180830381600087803b158015611e4557600080fd5b505af1158015611e59573d6000803e3d6000fd5b50505050611e6933600083612099565b50565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611f086121a0565b73ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480611f4e5750611f4d85611f486121a0565b611e6c565b5b611f8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f8490614625565b60405180910390fd5b611f9a8585858585612cac565b5050505050565b611fa96121a0565b73ffffffffffffffffffffffffffffffffffffffff16611fc761146f565b73ffffffffffffffffffffffffffffffffffffffff161461201d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201490614765565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561208d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612084906145c5565b60405180910390fd5b61209681612a4c565b50565b6120a16121a0565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806120e757506120e6836120e16121a0565b611e6c565b5b612126576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211d90614625565b60405180910390fd5b612131838383612f2e565b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b81518351146121ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121e390614865565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141561225c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612253906146a5565b60405180910390fd5b60006122666121a0565b905061227681878787878761314b565b60005b84518110156124735760008582815181106122bd577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015190506000858381518110612302577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050600080600084815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156123a3576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239a90614725565b60405180910390fd5b81810360008085815260200190815260200160002060008c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160008085815260200190815260200160002060008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124589190614a13565b925050819055505050508061246c90614c3b565b9050612279565b508473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb87876040516124ea92919061447b565b60405180910390a4612500818787878787613153565b505050505050565b60008273ffffffffffffffffffffffffffffffffffffffff168260405161252e9061433e565b60006040518083038185875af1925050503d806000811461256b576040519150601f19603f3d011682016040523d82523d6000602084013e612570565b606091505b50509050806125b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125ab90614785565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612629576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161262090614885565b60405180910390fd5b60006126336121a0565b9050612654816000876126458861333a565b61264e8861333a565b8761314b565b8260008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546126b39190614a13565b925050819055508473ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f6287876040516127319291906148c0565b60405180910390a461274881600087878787613400565b5050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156127bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127b690614705565b60405180910390fd5b8051825114612803576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127fa90614865565b60405180910390fd5b600061280d6121a0565b905061282d8185600086866040518060200160405280600081525061314b565b60005b83518110156129c6576000848281518110612874577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151905060008483815181106128b9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050600080600084815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561295a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161295190614605565b60405180910390fd5b81810360008085815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050505080806129be90614c3b565b915050612830565b50600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f4a39dc06d4c0dbc64b70af90fd698a233a518aa5d07e595d983b8c0526c8f7fb8686604051612a3e92919061447b565b60405180910390a450505050565b6000600360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008183612b209190614a9a565b905092915050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612b97576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b8e90614825565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051612c8891906144b2565b60405180910390a3505050565b600082612ca285846135e7565b1490509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612d1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d13906146a5565b60405180910390fd5b6000612d266121a0565b9050612d46818787612d378861333a565b612d408861333a565b8761314b565b600080600086815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905083811015612ddd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612dd490614725565b60405180910390fd5b83810360008087815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508360008087815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612e929190614a13565b925050819055508573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f628888604051612f0f9291906148c0565b60405180910390a4612f25828888888888613400565b50505050505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612f9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f9590614705565b60405180910390fd5b6000612fa86121a0565b9050612fd881856000612fba8761333a565b612fc38761333a565b6040518060200160405280600081525061314b565b600080600085815260200190815260200160002060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561306f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161306690614605565b60405180910390fd5b82810360008086815260200190815260200160002060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fc3d58168c5ae7397731d063d5bbf3d657854427343f4c083240f7aacaa2d0f62878760405161313c9291906148c0565b60405180910390a45050505050565b505050505050565b6131728473ffffffffffffffffffffffffffffffffffffffff166136c0565b15613332578373ffffffffffffffffffffffffffffffffffffffff1663bc197c8187878686866040518663ffffffff1660e01b81526004016131b895949392919061436e565b602060405180830381600087803b1580156131d257600080fd5b505af192505050801561320357506040513d601f19601f820116820180604052508101906132009190613ce6565b60015b6132a95761320f614d6e565b806308c379a0141561326c575061322461549a565b8061322f575061326e565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132639190614503565b60405180910390fd5b505b6040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132a090614525565b60405180910390fd5b63bc197c8160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614613330576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161332790614545565b60405180910390fd5b505b505050505050565b60606000600167ffffffffffffffff81111561337f577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156133ad5781602001602082028036833780820191505090505b50905082816000815181106133eb577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101818152505080915050919050565b61341f8473ffffffffffffffffffffffffffffffffffffffff166136c0565b156135df578373ffffffffffffffffffffffffffffffffffffffff1663f23a6e6187878686866040518663ffffffff1660e01b81526004016134659594939291906143d6565b602060405180830381600087803b15801561347f57600080fd5b505af19250505080156134b057506040513d601f19601f820116820180604052508101906134ad9190613ce6565b60015b613556576134bc614d6e565b806308c379a0141561351957506134d161549a565b806134dc575061351b565b806040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135109190614503565b60405180910390fd5b505b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161354d90614525565b60405180910390fd5b63f23a6e6160e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916146135dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016135d490614545565b60405180910390fd5b505b505050505050565b60008082905060005b84518110156136b5576000858281518110613634577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519050808311613675578281604051602001613658929190614312565b6040516020818303038152906040528051906020012092506136a1565b8083604051602001613688929190614312565b6040516020818303038152906040528051906020012092505b5080806136ad90614c3b565b9150506135f0565b508091505092915050565b600080823b905060008111915050919050565b60006136e66136e18461490e565b6148e9565b9050808382526020820190508285602086028201111561370557600080fd5b60005b85811015613735578161371b88826137e9565b845260208401935060208301925050600181019050613708565b5050509392505050565b600061375261374d8461493a565b6148e9565b9050808382526020820190508285602086028201111561377157600080fd5b60005b858110156137a15781613787888261391a565b845260208401935060208301925050600181019050613774565b5050509392505050565b60006137be6137b984614966565b6148e9565b9050828152602081018484840111156137d657600080fd5b6137e1848285614b96565b509392505050565b6000813590506137f881615530565b92915050565b600082601f83011261380f57600080fd5b813561381f8482602086016136d3565b91505092915050565b60008083601f84011261383a57600080fd5b8235905067ffffffffffffffff81111561385357600080fd5b60208301915083602082028301111561386b57600080fd5b9250929050565b600082601f83011261388357600080fd5b813561389384826020860161373f565b91505092915050565b6000813590506138ab81615547565b92915050565b6000813590506138c08161555e565b92915050565b6000813590506138d581615575565b92915050565b6000815190506138ea81615575565b92915050565b600082601f83011261390157600080fd5b81356139118482602086016137ab565b91505092915050565b6000813590506139298161558c565b92915050565b60006020828403121561394157600080fd5b600061394f848285016137e9565b91505092915050565b6000806040838503121561396b57600080fd5b6000613979858286016137e9565b925050602061398a858286016137e9565b9150509250929050565b600080600080600060a086880312156139ac57600080fd5b60006139ba888289016137e9565b95505060206139cb888289016137e9565b945050604086013567ffffffffffffffff8111156139e857600080fd5b6139f488828901613872565b935050606086013567ffffffffffffffff811115613a1157600080fd5b613a1d88828901613872565b925050608086013567ffffffffffffffff811115613a3a57600080fd5b613a46888289016138f0565b9150509295509295909350565b600080600080600060a08688031215613a6b57600080fd5b6000613a79888289016137e9565b9550506020613a8a888289016137e9565b9450506040613a9b8882890161391a565b9350506060613aac8882890161391a565b925050608086013567ffffffffffffffff811115613ac957600080fd5b613ad5888289016138f0565b9150509295509295909350565b600080600060608486031215613af757600080fd5b6000613b05868287016137e9565b935050602084013567ffffffffffffffff811115613b2257600080fd5b613b2e86828701613872565b925050604084013567ffffffffffffffff811115613b4b57600080fd5b613b5786828701613872565b9150509250925092565b60008060408385031215613b7457600080fd5b6000613b82858286016137e9565b9250506020613b938582860161389c565b9150509250929050565b60008060408385031215613bb057600080fd5b6000613bbe858286016137e9565b9250506020613bcf8582860161391a565b9150509250929050565b600080600060608486031215613bee57600080fd5b6000613bfc868287016137e9565b9350506020613c0d8682870161391a565b9250506040613c1e8682870161391a565b9150509250925092565b60008060408385031215613c3b57600080fd5b600083013567ffffffffffffffff811115613c5557600080fd5b613c61858286016137fe565b925050602083013567ffffffffffffffff811115613c7e57600080fd5b613c8a85828601613872565b9150509250929050565b600060208284031215613ca657600080fd5b6000613cb4848285016138b1565b91505092915050565b600060208284031215613ccf57600080fd5b6000613cdd848285016138c6565b91505092915050565b600060208284031215613cf857600080fd5b6000613d06848285016138db565b91505092915050565b600060208284031215613d2157600080fd5b6000613d2f8482850161391a565b91505092915050565b600080600060408486031215613d4d57600080fd5b6000613d5b8682870161391a565b935050602084013567ffffffffffffffff811115613d7857600080fd5b613d8486828701613828565b92509250509250925092565b6000613d9c83836142d9565b60208301905092915050565b613db181614af4565b82525050565b613dc8613dc382614af4565b614c84565b82525050565b6000613dd9826149a7565b613de381856149d5565b9350613dee83614997565b8060005b83811015613e1f578151613e068882613d90565b9750613e11836149c8565b925050600181019050613df2565b5085935050505092915050565b613e3581614b06565b82525050565b613e4481614b12565b82525050565b613e5b613e5682614b12565b614c96565b82525050565b6000613e6c826149b2565b613e7681856149e6565b9350613e86818560208601614ba5565b613e8f81614d90565b840191505092915050565b613ea381614b72565b82525050565b6000613eb4826149bd565b613ebe8185614a02565b9350613ece818560208601614ba5565b613ed781614d90565b840191505092915050565b6000613eef603483614a02565b9150613efa82614dbb565b604082019050919050565b6000613f12602883614a02565b9150613f1d82614e0a565b604082019050919050565b6000613f35601083614a02565b9150613f4082614e59565b602082019050919050565b6000613f58601983614a02565b9150613f6382614e82565b602082019050919050565b6000613f7b602b83614a02565b9150613f8682614eab565b604082019050919050565b6000613f9e602683614a02565b9150613fa982614efa565b604082019050919050565b6000613fc1601583614a02565b9150613fcc82614f49565b602082019050919050565b6000613fe4602483614a02565b9150613fef82614f72565b604082019050919050565b6000614007602983614a02565b915061401282614fc1565b604082019050919050565b600061402a600d83614a02565b915061403582615010565b602082019050919050565b600061404d601683614a02565b915061405882615039565b602082019050919050565b6000614070601e83614a02565b915061407b82615062565b602082019050919050565b6000614093602583614a02565b915061409e8261508b565b604082019050919050565b60006140b6603283614a02565b91506140c1826150da565b604082019050919050565b60006140d9600f83614a02565b91506140e482615129565b602082019050919050565b60006140fc602383614a02565b915061410782615152565b604082019050919050565b600061411f602a83614a02565b915061412a826151a1565b604082019050919050565b6000614142601983614a02565b915061414d826151f0565b602082019050919050565b6000614165602083614a02565b915061417082615219565b602082019050919050565b6000614188601483614a02565b915061419382615242565b602082019050919050565b60006141ab601c83614a02565b91506141b68261526b565b602082019050919050565b60006141ce602183614a02565b91506141d982615294565b604082019050919050565b60006141f1602083614a02565b91506141fc826152e3565b602082019050919050565b6000614214602383614a02565b915061421f8261530c565b604082019050919050565b60006142376000836149f7565b91506142428261535b565b600082019050919050565b600061425a602983614a02565b91506142658261535e565b604082019050919050565b600061427d602983614a02565b9150614288826153ad565b604082019050919050565b60006142a0602883614a02565b91506142ab826153fc565b604082019050919050565b60006142c3602183614a02565b91506142ce8261544b565b604082019050919050565b6142e281614b68565b82525050565b6142f181614b68565b82525050565b60006143038284613db7565b60148201915081905092915050565b600061431e8285613e4a565b60208201915061432e8284613e4a565b6020820191508190509392505050565b60006143498261422a565b9150819050919050565b60006020820190506143686000830184613da8565b92915050565b600060a0820190506143836000830188613da8565b6143906020830187613da8565b81810360408301526143a28186613dce565b905081810360608301526143b68185613dce565b905081810360808301526143ca8184613e61565b90509695505050505050565b600060a0820190506143eb6000830188613da8565b6143f86020830187613da8565b61440560408301866142e8565b61441260608301856142e8565b81810360808301526144248184613e61565b90509695505050505050565b60006040820190506144456000830185613da8565b61445260208301846142e8565b9392505050565b600060208201905081810360008301526144738184613dce565b905092915050565b600060408201905081810360008301526144958185613dce565b905081810360208301526144a98184613dce565b90509392505050565b60006020820190506144c76000830184613e2c565b92915050565b60006020820190506144e26000830184613e3b565b92915050565b60006020820190506144fd6000830184613e9a565b92915050565b6000602082019050818103600083015261451d8184613ea9565b905092915050565b6000602082019050818103600083015261453e81613ee2565b9050919050565b6000602082019050818103600083015261455e81613f05565b9050919050565b6000602082019050818103600083015261457e81613f28565b9050919050565b6000602082019050818103600083015261459e81613f4b565b9050919050565b600060208201905081810360008301526145be81613f6e565b9050919050565b600060208201905081810360008301526145de81613f91565b9050919050565b600060208201905081810360008301526145fe81613fb4565b9050919050565b6000602082019050818103600083015261461e81613fd7565b9050919050565b6000602082019050818103600083015261463e81613ffa565b9050919050565b6000602082019050818103600083015261465e8161401d565b9050919050565b6000602082019050818103600083015261467e81614040565b9050919050565b6000602082019050818103600083015261469e81614063565b9050919050565b600060208201905081810360008301526146be81614086565b9050919050565b600060208201905081810360008301526146de816140a9565b9050919050565b600060208201905081810360008301526146fe816140cc565b9050919050565b6000602082019050818103600083015261471e816140ef565b9050919050565b6000602082019050818103600083015261473e81614112565b9050919050565b6000602082019050818103600083015261475e81614135565b9050919050565b6000602082019050818103600083015261477e81614158565b9050919050565b6000602082019050818103600083015261479e8161417b565b9050919050565b600060208201905081810360008301526147be8161419e565b9050919050565b600060208201905081810360008301526147de816141c1565b9050919050565b600060208201905081810360008301526147fe816141e4565b9050919050565b6000602082019050818103600083015261481e81614207565b9050919050565b6000602082019050818103600083015261483e8161424d565b9050919050565b6000602082019050818103600083015261485e81614270565b9050919050565b6000602082019050818103600083015261487e81614293565b9050919050565b6000602082019050818103600083015261489e816142b6565b9050919050565b60006020820190506148ba60008301846142e8565b92915050565b60006040820190506148d560008301856142e8565b6148e260208301846142e8565b9392505050565b60006148f3614904565b90506148ff8282614c0a565b919050565b6000604051905090565b600067ffffffffffffffff82111561492957614928614d3f565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561495557614954614d3f565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561498157614980614d3f565b5b61498a82614d90565b9050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b6000614a1e82614b68565b9150614a2983614b68565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614a5e57614a5d614cb2565b5b828201905092915050565b6000614a7482614b68565b9150614a7f83614b68565b925082614a8f57614a8e614ce1565b5b828204905092915050565b6000614aa582614b68565b9150614ab083614b68565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614ae957614ae8614cb2565b5b828202905092915050565b6000614aff82614b48565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6000614b7d82614b84565b9050919050565b6000614b8f82614b48565b9050919050565b82818337600083830152505050565b60005b83811015614bc3578082015181840152602081019050614ba8565b83811115614bd2576000848401525b50505050565b60006002820490506001821680614bf057607f821691505b60208210811415614c0457614c03614d10565b5b50919050565b614c1382614d90565b810181811067ffffffffffffffff82111715614c3257614c31614d3f565b5b80604052505050565b6000614c4682614b68565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614c7957614c78614cb2565b5b600182019050919050565b6000614c8f82614ca0565b9050919050565b6000819050919050565b6000614cab82614da1565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600060033d1115614d8d5760046000803e614d8a600051614dae565b90505b90565b6000601f19601f8301169050919050565b60008160601b9050919050565b60008160e01c9050919050565b7f455243313135353a207472616e7366657220746f206e6f6e204552433131353560008201527f526563656976657220696d706c656d656e746572000000000000000000000000602082015250565b7f455243313135353a204552433131353552656365697665722072656a6563746560008201527f6420746f6b656e73000000000000000000000000000000000000000000000000602082015250565b7f4e6f7420656e6f756768206d6f6e657900000000000000000000000000000000600082015250565b7f4d6967726174696f6e20686173206e6f74207374617274656400000000000000600082015250565b7f455243313135353a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f446f65736e2774206f776e2074686520746f6b656e0000000000000000000000600082015250565b7f455243313135353a206275726e20616d6f756e7420657863656564732062616c60008201527f616e636500000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2063616c6c6572206973206e6f74206f776e6572206e6f7260008201527f20617070726f7665640000000000000000000000000000000000000000000000602082015250565b7f4c696d6974207265616368656400000000000000000000000000000000000000600082015250565b7f53616c65732068617665206e6f74207374617274656400000000000000000000600082015250565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b7f455243313135353a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f4e6f742077686974656c69737465640000000000000000000000000000000000600082015250565b7f455243313135353a206275726e2066726f6d20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a20696e73756666696369656e742062616c616e636520666f60008201527f72207472616e7366657200000000000000000000000000000000000000000000602082015250565b7f57686974656c69737420616c726561647920636c61696d656400000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4661696c656420746f2073656e64206574686572000000000000000000000000600082015250565b7f4f6e6c79203220666f722077686974656c697374656420757365727300000000600082015250565b7f4f6e6c79203520666f72207075626c696320706572207472616e73616374696f60008201527f6e00000000000000000000000000000000000000000000000000000000000000602082015250565b7f5075626c69632073616c652068617665206e6f74207965742073746172746564600082015250565b7f57686974656c6973742073616c652068617665206e6f7420796574207374617260008201527f7465640000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f455243313135353a2073657474696e6720617070726f76616c2073746174757360008201527f20666f722073656c660000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206163636f756e747320616e6420696473206c656e67746860008201527f206d69736d617463680000000000000000000000000000000000000000000000602082015250565b7f455243313135353a2069647320616e6420616d6f756e7473206c656e6774682060008201527f6d69736d61746368000000000000000000000000000000000000000000000000602082015250565b7f455243313135353a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b600060443d10156154aa5761552d565b6154b2614904565b60043d036004823e80513d602482011167ffffffffffffffff821117156154da57505061552d565b808201805167ffffffffffffffff8111156154f8575050505061552d565b80602083010160043d03850181111561551557505050505061552d565b61552482602001850186614c0a565b82955050505050505b90565b61553981614af4565b811461554457600080fd5b50565b61555081614b06565b811461555b57600080fd5b50565b61556781614b12565b811461557257600080fd5b50565b61557e81614b1c565b811461558957600080fd5b50565b61559581614b68565b81146155a057600080fd5b5056fea264697066735822122065e4b7fafb2af2a90c436d0294d0c4ffe77df749f3ecf74bc725e0262258771164736f6c63430008020033

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

0000000000000000000000001ca1f5dc13f3204088993df413c81561dce72cfc000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000000000000000000000000a526562656c73436f696e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000852424c53434f494e000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _rebels721Contract (address): 0x1ca1f5DC13f3204088993df413C81561dce72cfc
Arg [1] : _name (string): RebelsCoin
Arg [2] : _symbol (string): RBLSCOIN

-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000001ca1f5dc13f3204088993df413c81561dce72cfc
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [2] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [3] : 000000000000000000000000000000000000000000000000000000000000000a
Arg [4] : 526562656c73436f696e00000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [6] : 52424c53434f494e000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

49043:6510:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32756:231;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31779:310;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55369:83;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32500:105;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53596:91;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51353:99;;;;;;;;;;;;;:::i;:::-;;34695:442;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49375:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51097:98;;;;;;;;;;;;;:::i;:::-;;53841:97;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54041:1143;;;;;;;;;;;;;:::i;:::-;;33153:524;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52994:212;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47072:353;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12013:103;;;;;;;;;;;;;:::i;:::-;;51488:90;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51230:89;;;;;;;;;;;;;:::i;:::-;;11362:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;49638:42;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53716:95;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55460:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51608:511;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33750:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;50793:136;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52163:786;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;49449:48;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50962:87;;;;;;;;;;;;;:::i;:::-;;53248:306;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33977:168;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34217:401;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;12271:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46743:321;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32756:231;32842:7;32889:1;32870:21;;:7;:21;;;;32862:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;32957:9;:13;32967:2;32957:13;;;;;;;;;;;:22;32971:7;32957:22;;;;;;;;;;;;;;;;32950:29;;32756:231;;;;:::o;31779:310::-;31881:4;31933:26;31918:41;;;:11;:41;;;;:110;;;;31991:37;31976:52;;;:11;:52;;;;31918:110;:163;;;;32045:36;32069:11;32045:23;:36::i;:::-;31918:163;31898:183;;31779:310;;;:::o;55369:83::-;55406:13;55439:5;55432:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55369:83;:::o;32500:105::-;32560:13;32593:4;32586:11;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;32500:105;;;:::o;53596:91::-;53640:7;53667:12;;53660:19;;53596:91;:::o;51353:99::-;11593:12;:10;:12::i;:::-;11582:23;;:7;:5;:7::i;:::-;:23;;;11574:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51428:16:::1;;;;;;;;;;;51427:17;51408:16;;:36;;;;;;;;;;;;;;;;;;51353:99::o:0;34695:442::-;34936:12;:10;:12::i;:::-;34928:20;;:4;:20;;;:60;;;;34952:36;34969:4;34975:12;:10;:12::i;:::-;34952:16;:36::i;:::-;34928:60;34906:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;35077:52;35100:4;35106:2;35110:3;35115:7;35124:4;35077:22;:52::i;:::-;34695:442;;;;;:::o;49375:25::-;;;;:::o;51097:98::-;11593:12;:10;:12::i;:::-;11582:23;;:7;:5;:7::i;:::-;:23;;;11574:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51174:13:::1;;;;;;;;;;;51173:14;51157:13;;:30;;;;;;;;;;;;;;;;;;51097:98::o:0;53841:97::-;11593:12;:10;:12::i;:::-;11582:23;;:7;:5;:7::i;:::-;:23;;;11574:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53920:10:::1;53908:9;:22;;;;53841:97:::0;:::o;54041:1143::-;11593:12;:10;:12::i;:::-;11582:23;;:7;:5;:7::i;:::-;:23;;;11574:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;54089:21:::1;54145:4;54138:3;54114:21;:27;;;;:::i;:::-;54113:36;;;;:::i;:::-;54089:60;;54167:21;54223:4;54216:3;54192:21;:27;;;;:::i;:::-;54191:36;;;;:::i;:::-;54167:60;;54247:21;54302:4;54296:2;54272:21;:26;;;;:::i;:::-;54271:35;;;;:::i;:::-;54247:59;;54323:21;54379:4;54372:3;54348:21;:27;;;;:::i;:::-;54347:36;;;;:::i;:::-;54323:60;;54403:21;54459:4;54452:3;54428:21;:27;;;;:::i;:::-;54427:36;;;;:::i;:::-;54403:60;;54483:21;54539:4;54532:3;54508:21;:27;;;;:::i;:::-;54507:36;;;;:::i;:::-;54483:60;;54563:21;54619:4;54612:3;54588:21;:27;;;;:::i;:::-;54587:36;;;;:::i;:::-;54563:60;;54643:21;54699:4;54692:3;54668:21;:27;;;;:::i;:::-;54667:36;;;;:::i;:::-;54643:60;;54725:29;54733:5;;;;;;;;;;;54740:13;54725:7;:29::i;:::-;54765;54773:5;;;;;;;;;;;54780:13;54765:7;:29::i;:::-;54805;54813:5;;;;;;;;;;;54820:13;54805:7;:29::i;:::-;54845;54853:5;;;;;;;;;;;54860:13;54845:7;:29::i;:::-;54885;54893:5;;;;;;;;;;;54900:13;54885:7;:29::i;:::-;54925;54933:5;;;;;;;;;;;54940:13;54925:7;:29::i;:::-;54965;54973:5;;;;;;;;;;;54980:13;54965:7;:29::i;:::-;55005;55013:5;;;;;;;;;;;55020:13;55005:7;:29::i;:::-;55083:21;55107;55083:45;;55147:29;55155:5;;;;;;;;;;;55162:13;55147:7;:29::i;:::-;11653:1;;;;;;;;;54041:1143::o:0;33153:524::-;33309:16;33370:3;:10;33351:8;:15;:29;33343:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;33439:30;33486:8;:15;33472:30;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33439:63;;33520:9;33515:122;33539:8;:15;33535:1;:19;33515:122;;;33595:30;33605:8;33614:1;33605:11;;;;;;;;;;;;;;;;;;;;;;33618:3;33622:1;33618:6;;;;;;;;;;;;;;;;;;;;;;33595:9;:30::i;:::-;33576:13;33590:1;33576:16;;;;;;;;;;;;;;;;;;;;;:49;;;;;33556:3;;;;:::i;:::-;;;33515:122;;;;33656:13;33649:20;;;33153:524;;;;:::o;52994:212::-;11593:12;:10;:12::i;:::-;11582:23;;:7;:5;:7::i;:::-;:23;;;11574:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53093:9:::1;;53077:12;;53068:6;:21;;;;:::i;:::-;:34;;53060:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;53133:32;53139:10;53151:1;53154:6;53133:32;;;;;;;;;;;::::0;:5:::1;:32::i;:::-;53192:6;53176:12;;:22;;;;;;;:::i;:::-;;;;;;;;52994:212:::0;:::o;47072:353::-;47248:12;:10;:12::i;:::-;47237:23;;:7;:23;;;:66;;;;47264:39;47281:7;47290:12;:10;:12::i;:::-;47264:16;:39::i;:::-;47237:66;47215:157;;;;;;;;;;;;:::i;:::-;;;;;;;;;47385:32;47396:7;47405:3;47410:6;47385:10;:32::i;:::-;47072:353;;;:::o;12013:103::-;11593:12;:10;:12::i;:::-;11582:23;;:7;:5;:7::i;:::-;:23;;;11574:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12078:30:::1;12105:1;12078:18;:30::i;:::-;12013:103::o:0;51488:90::-;11593:12;:10;:12::i;:::-;11582:23;;:7;:5;:7::i;:::-;:23;;;11574:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51566:4:::1;51553:10;:17;;;;51488:90:::0;:::o;51230:89::-;11593:12;:10;:12::i;:::-;11582:23;;:7;:5;:7::i;:::-;:23;;;11574:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51301:10:::1;;;;;;;;;;;51300:11;51287:10;;:24;;;;;;;;;;;;;;;;;;51230:89::o:0;11362:87::-;11408:7;11435:6;;;;;;;;;;;11428:13;;11362:87;:::o;49638:42::-;;;;;;;;;;;;;:::o;53716:95::-;11593:12;:10;:12::i;:::-;11582:23;;:7;:5;:7::i;:::-;:23;;;11574:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53794:9:::1;53781:10;:22;;;;53716:95:::0;:::o;55460:87::-;55499:13;55532:7;55525:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55460:87;:::o;51608:511::-;50685:10;50672:23;;:9;:23;;;50664:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;51701:4:::1;51685:20;;:12;;;;;;;;;;;:20;;;51677:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;51765:4;51751:18;;:10;;;;;;;;;;;:18;;;51743:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;51838:22;51853:6;51838:10;;:14;;:22;;;;:::i;:::-;51825:9;:35;;51817:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;51910:14;;51900:6;:24;;51892:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;52006:9;;51990:12;;51981:6;:21;;;;:::i;:::-;:34;;51973:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;52046:32;52052:10;52064:1;52067:6;52046:32;;;;;;;;;;;::::0;:5:::1;:32::i;:::-;52105:6;52089:12;;:22;;;;;;;:::i;:::-;;;;;;;;51608:511:::0;:::o;33750:155::-;33845:52;33864:12;:10;:12::i;:::-;33878:8;33888;33845:18;:52::i;:::-;33750:155;;:::o;50793:136::-;11593:12;:10;:12::i;:::-;11582:23;;:7;:5;:7::i;:::-;:23;;;11574:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;50911:9:::1;50873:17;;:48;;;;;;;;;;;;;;;;;;50793:136:::0;:::o;52163:786::-;52284:4;52268:20;;:12;;;;;;;;;;;:20;;;52260:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;52351:4;52334:21;;:13;;;;;;;;;;;:21;;;52326:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;52427:22;52442:6;52427:10;;:14;;:22;;;;:::i;:::-;52414:9;:35;;52406:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;52514:9;;52498:12;;52489:6;:21;;;;:::i;:::-;:34;;52481:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;52570:26;;52560:6;:36;;52552:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;52649:16;:28;52666:10;52649:28;;;;;;;;;;;;;;;;;;;;;;;;;52648:29;52640:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;52726:71;52745:10;;52784;52767:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;52757:39;;;;;;52726:11;;:18;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:71;;;;;:::i;:::-;52718:99;;;;;;;;;;;;:::i;:::-;;;;;;;;;52830:32;52836:10;52848:1;52851:6;52830:32;;;;;;;;;;;;:5;:32::i;:::-;52904:4;52873:16;:28;52890:10;52873:28;;;;;;;;;;;;;;;;:35;;;;;;;;;;;;;;;;;;52935:6;52919:12;;:22;;;;;;;:::i;:::-;;;;;;;;52163:786;;;:::o;49449:48::-;;;;;;;;;;;;;;;;;;;;;;:::o;50962:87::-;11593:12;:10;:12::i;:::-;11582:23;;:7;:5;:7::i;:::-;:23;;;11574:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;51029:12:::1;;;;;;;;;;;51028:13;51013:12;;:28;;;;;;;;;;;;;;;;;;50962:87::o:0;53248:306::-;53332:4;53312:24;;:16;;;;;;;;;;;:24;;;53304:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;53413:6;53385:24;53395:10;53407:1;53385:9;:24::i;:::-;:34;;53377:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53458:17;;;;;;;;;;;:30;;;53489:10;53501:6;53458:50;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53519:27;53524:10;53536:1;53539:6;53519:4;:27::i;:::-;53248:306;:::o;33977:168::-;34076:4;34100:18;:27;34119:7;34100:27;;;;;;;;;;;;;;;:37;34128:8;34100:37;;;;;;;;;;;;;;;;;;;;;;;;;34093:44;;33977:168;;;;:::o;34217:401::-;34433:12;:10;:12::i;:::-;34425:20;;:4;:20;;;:60;;;;34449:36;34466:4;34472:12;:10;:12::i;:::-;34449:16;:36::i;:::-;34425:60;34403:151;;;;;;;;;;;;:::i;:::-;;;;;;;;;34565:45;34583:4;34589:2;34593;34597:6;34605:4;34565:17;:45::i;:::-;34217:401;;;;;:::o;12271:201::-;11593:12;:10;:12::i;:::-;11582:23;;:7;:5;:7::i;:::-;:23;;;11574:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;12380:1:::1;12360:22;;:8;:22;;;;12352:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;12436:28;12455:8;12436:18;:28::i;:::-;12271:201:::0;:::o;46743:321::-;46894:12;:10;:12::i;:::-;46883:23;;:7;:23;;;:66;;;;46910:39;46927:7;46936:12;:10;:12::i;:::-;46910:16;:39::i;:::-;46883:66;46861:157;;;;;;;;;;;;:::i;:::-;;;;;;;;;47031:25;47037:7;47046:2;47050:5;47031;:25::i;:::-;46743:321;;;:::o;22922:157::-;23007:4;23046:25;23031:40;;;:11;:40;;;;23024:47;;22922:157;;;:::o;10033:98::-;10086:7;10113:10;10106:17;;10033:98;:::o;36779:1074::-;37006:7;:14;36992:3;:10;:28;36984:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;37098:1;37084:16;;:2;:16;;;;37076:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;37155:16;37174:12;:10;:12::i;:::-;37155:31;;37199:60;37220:8;37230:4;37236:2;37240:3;37245:7;37254:4;37199:20;:60::i;:::-;37277:9;37272:421;37296:3;:10;37292:1;:14;37272:421;;;37328:10;37341:3;37345:1;37341:6;;;;;;;;;;;;;;;;;;;;;;37328:19;;37362:14;37379:7;37387:1;37379:10;;;;;;;;;;;;;;;;;;;;;;37362:27;;37406:19;37428:9;:13;37438:2;37428:13;;;;;;;;;;;:19;37442:4;37428:19;;;;;;;;;;;;;;;;37406:41;;37485:6;37470:11;:21;;37462:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;37618:6;37604:11;:20;37582:9;:13;37592:2;37582:13;;;;;;;;;;;:19;37596:4;37582:19;;;;;;;;;;;;;;;:42;;;;37675:6;37654:9;:13;37664:2;37654:13;;;;;;;;;;;:17;37668:2;37654:17;;;;;;;;;;;;;;;;:27;;;;;;;:::i;:::-;;;;;;;;37272:421;;;37308:3;;;;:::i;:::-;;;37272:421;;;;37740:2;37710:47;;37734:4;37710:47;;37724:8;37710:47;;;37744:3;37749:7;37710:47;;;;;;;:::i;:::-;;;;;;;;37770:75;37806:8;37816:4;37822:2;37826:3;37831:7;37840:4;37770:35;:75::i;:::-;36779:1074;;;;;;:::o;55192:169::-;55258:12;55276:2;:7;;55291:6;55276:26;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55257:45;;;55321:7;55313:40;;;;;;;;;;;;:::i;:::-;;;;;;;;;55192:169;;;:::o;39171:569::-;39338:1;39324:16;;:2;:16;;;;39316:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;39391:16;39410:12;:10;:12::i;:::-;39391:31;;39435:102;39456:8;39474:1;39478:2;39482:21;39500:2;39482:17;:21::i;:::-;39505:25;39523:6;39505:17;:25::i;:::-;39532:4;39435:20;:102::i;:::-;39571:6;39550:9;:13;39560:2;39550:13;;;;;;;;;;;:17;39564:2;39550:17;;;;;;;;;;;;;;;;:27;;;;;;;:::i;:::-;;;;;;;;39630:2;39593:52;;39626:1;39593:52;;39608:8;39593:52;;;39634:2;39638:6;39593:52;;;;;;;:::i;:::-;;;;;;;;39658:74;39689:8;39707:1;39711:2;39715;39719:6;39727:4;39658:30;:74::i;:::-;39171:569;;;;;:::o;41932:891::-;42100:1;42084:18;;:4;:18;;;;42076:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;42175:7;:14;42161:3;:10;:28;42153:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;42247:16;42266:12;:10;:12::i;:::-;42247:31;;42291:66;42312:8;42322:4;42336:1;42340:3;42345:7;42291:66;;;;;;;;;;;;:20;:66::i;:::-;42375:9;42370:373;42394:3;:10;42390:1;:14;42370:373;;;42426:10;42439:3;42443:1;42439:6;;;;;;;;;;;;;;;;;;;;;;42426:19;;42460:14;42477:7;42485:1;42477:10;;;;;;;;;;;;;;;;;;;;;;42460:27;;42504:19;42526:9;:13;42536:2;42526:13;;;;;;;;;;;:19;42540:4;42526:19;;;;;;;;;;;;;;;;42504:41;;42583:6;42568:11;:21;;42560:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;42710:6;42696:11;:20;42674:9;:13;42684:2;42674:13;;;;;;;;;;;:19;42688:4;42674:19;;;;;;;;;;;;;;;:42;;;;42370:373;;;42406:3;;;;;:::i;:::-;;;;42370:373;;;;42798:1;42760:55;;42784:4;42760:55;;42774:8;42760:55;;;42802:3;42807:7;42760:55;;;;;;;:::i;:::-;;;;;;;;41932:891;;;;:::o;12632:191::-;12706:16;12725:6;;;;;;;;;;;12706:25;;12751:8;12742:6;;:17;;;;;;;;;;;;;;;;;;12806:8;12775:40;;12796:8;12775:40;;;;;;;;;;;;12632:191;;:::o;5874:98::-;5932:7;5963:1;5959;:5;;;;:::i;:::-;5952:12;;5874:98;;;;:::o;42965:331::-;43120:8;43111:17;;:5;:17;;;;43103:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;43223:8;43185:18;:25;43204:5;43185:25;;;;;;;;;;;;;;;:35;43211:8;43185:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;43269:8;43247:41;;43262:5;43247:41;;;43279:8;43247:41;;;;;;:::i;:::-;;;;;;;;42965:331;;;:::o;961:190::-;1086:4;1139;1110:25;1123:5;1130:4;1110:12;:25::i;:::-;:33;1103:40;;961:190;;;;;:::o;35601:820::-;35803:1;35789:16;;:2;:16;;;;35781:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;35860:16;35879:12;:10;:12::i;:::-;35860:31;;35904:96;35925:8;35935:4;35941:2;35945:21;35963:2;35945:17;:21::i;:::-;35968:25;35986:6;35968:17;:25::i;:::-;35995:4;35904:20;:96::i;:::-;36013:19;36035:9;:13;36045:2;36035:13;;;;;;;;;;;:19;36049:4;36035:19;;;;;;;;;;;;;;;;36013:41;;36088:6;36073:11;:21;;36065:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;36213:6;36199:11;:20;36177:9;:13;36187:2;36177:13;;;;;;;;;;;:19;36191:4;36177:19;;;;;;;;;;;;;;;:42;;;;36262:6;36241:9;:13;36251:2;36241:13;;;;;;;;;;;:17;36255:2;36241:17;;;;;;;;;;;;;;;;:27;;;;;;;:::i;:::-;;;;;;;;36317:2;36286:46;;36311:4;36286:46;;36301:8;36286:46;;;36321:2;36325:6;36286:46;;;;;;;:::i;:::-;;;;;;;;36345:68;36376:8;36386:4;36392:2;36396;36400:6;36408:4;36345:30;:68::i;:::-;35601:820;;;;;;;:::o;41081:648::-;41224:1;41208:18;;:4;:18;;;;41200:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;41279:16;41298:12;:10;:12::i;:::-;41279:31;;41323:102;41344:8;41354:4;41368:1;41372:21;41390:2;41372:17;:21::i;:::-;41395:25;41413:6;41395:17;:25::i;:::-;41323:102;;;;;;;;;;;;:20;:102::i;:::-;41438:19;41460:9;:13;41470:2;41460:13;;;;;;;;;;;:19;41474:4;41460:19;;;;;;;;;;;;;;;;41438:41;;41513:6;41498:11;:21;;41490:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;41632:6;41618:11;:20;41596:9;:13;41606:2;41596:13;;;;;;;;;;;:19;41610:4;41596:19;;;;;;;;;;;;;;;:42;;;;41706:1;41667:54;;41692:4;41667:54;;41682:8;41667:54;;;41710:2;41714:6;41667:54;;;;;;;:::i;:::-;;;;;;;;41081:648;;;;;:::o;44252:221::-;;;;;;;:::o;45233:813::-;45473:15;:2;:13;;;:15::i;:::-;45469:570;;;45526:2;45509:43;;;45553:8;45563:4;45569:3;45574:7;45583:4;45509:79;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;45505:523;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;45901:6;45894:14;;;;;;;;;;;:::i;:::-;;;;;;;;45505:523;;;45950:62;;;;;;;;;;:::i;:::-;;;;;;;;45505:523;45682:48;;;45670:60;;;:8;:60;;;;45666:159;;45755:50;;;;;;;;;;:::i;:::-;;;;;;;;45666:159;45589:251;45469:570;45233:813;;;;;;:::o;46054:198::-;46120:16;46149:22;46188:1;46174:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46149:41;;46212:7;46201:5;46207:1;46201:8;;;;;;;;;;;;;;;;;;;;;:18;;;;;46239:5;46232:12;;;46054:198;;;:::o;44481:744::-;44696:15;:2;:13;;;:15::i;:::-;44692:526;;;44749:2;44732:38;;;44771:8;44781:4;44787:2;44791:6;44799:4;44732:72;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;44728:479;;;;:::i;:::-;;;;;;;;;;:::i;:::-;;;;;;;;45080:6;45073:14;;;;;;;;;;;:::i;:::-;;;;;;;;44728:479;;;45129:62;;;;;;;;;;:::i;:::-;;;;;;;;44728:479;44866:43;;;44854:55;;;:8;:55;;;;44850:154;;44934:50;;;;;;;;;;:::i;:::-;;;;;;;;44850:154;44805:214;44692:526;44481:744;;;;;;:::o;1513:701::-;1596:7;1616:20;1639:4;1616:27;;1659:9;1654:523;1678:5;:12;1674:1;:16;1654:523;;;1712:20;1735:5;1741:1;1735:8;;;;;;;;;;;;;;;;;;;;;;1712:31;;1778:12;1762;:28;1758:408;;1932:12;1946;1915:44;;;;;;;;;:::i;:::-;;;;;;;;;;;;;1905:55;;;;;;1890:70;;1758:408;;;2122:12;2136;2105:44;;;;;;;;;:::i;:::-;;;;;;;;;;;;;2095:55;;;;;;2080:70;;1758:408;1654:523;1692:3;;;;;:::i;:::-;;;;1654:523;;;;2194:12;2187:19;;;1513:701;;;;:::o;13703:387::-;13763:4;13971:12;14038:7;14026:20;14018:28;;14081:1;14074:4;:8;14067:15;;;13703:387;;;:::o;24:623:1:-;;145:81;161:64;218:6;161:64;:::i;:::-;145:81;:::i;:::-;136:90;;246:5;274:6;267:5;260:21;300:4;293:5;289:16;282:23;;325:6;375:3;367:4;359:6;355:17;350:3;346:27;343:36;340:2;;;392:1;389;382:12;340:2;420:1;405:236;430:6;427:1;424:13;405:236;;;497:3;525:37;558:3;546:10;525:37;:::i;:::-;520:3;513:50;592:4;587:3;583:14;576:21;;626:4;621:3;617:14;610:21;;465:176;452:1;449;445:9;440:14;;405:236;;;409:14;126:521;;;;;;;:::o;670:623::-;;791:81;807:64;864:6;807:64;:::i;:::-;791:81;:::i;:::-;782:90;;892:5;920:6;913:5;906:21;946:4;939:5;935:16;928:23;;971:6;1021:3;1013:4;1005:6;1001:17;996:3;992:27;989:36;986:2;;;1038:1;1035;1028:12;986:2;1066:1;1051:236;1076:6;1073:1;1070:13;1051:236;;;1143:3;1171:37;1204:3;1192:10;1171:37;:::i;:::-;1166:3;1159:50;1238:4;1233:3;1229:14;1222:21;;1272:4;1267:3;1263:14;1256:21;;1111:176;1098:1;1095;1091:9;1086:14;;1051:236;;;1055:14;772:521;;;;;;;:::o;1299:343::-;;1401:65;1417:48;1458:6;1417:48;:::i;:::-;1401:65;:::i;:::-;1392:74;;1489:6;1482:5;1475:21;1527:4;1520:5;1516:16;1565:3;1556:6;1551:3;1547:16;1544:25;1541:2;;;1582:1;1579;1572:12;1541:2;1595:41;1629:6;1624:3;1619;1595:41;:::i;:::-;1382:260;;;;;;:::o;1648:139::-;;1732:6;1719:20;1710:29;;1748:33;1775:5;1748:33;:::i;:::-;1700:87;;;;:::o;1810:303::-;;1930:3;1923:4;1915:6;1911:17;1907:27;1897:2;;1948:1;1945;1938:12;1897:2;1988:6;1975:20;2013:94;2103:3;2095:6;2088:4;2080:6;2076:17;2013:94;:::i;:::-;2004:103;;1887:226;;;;;:::o;2136:367::-;;;2269:3;2262:4;2254:6;2250:17;2246:27;2236:2;;2287:1;2284;2277:12;2236:2;2323:6;2310:20;2300:30;;2353:18;2345:6;2342:30;2339:2;;;2385:1;2382;2375:12;2339:2;2422:4;2414:6;2410:17;2398:29;;2476:3;2468:4;2460:6;2456:17;2446:8;2442:32;2439:41;2436:2;;;2493:1;2490;2483:12;2436:2;2226:277;;;;;:::o;2526:303::-;;2646:3;2639:4;2631:6;2627:17;2623:27;2613:2;;2664:1;2661;2654:12;2613:2;2704:6;2691:20;2729:94;2819:3;2811:6;2804:4;2796:6;2792:17;2729:94;:::i;:::-;2720:103;;2603:226;;;;;:::o;2835:133::-;;2916:6;2903:20;2894:29;;2932:30;2956:5;2932:30;:::i;:::-;2884:84;;;;:::o;2974:139::-;;3058:6;3045:20;3036:29;;3074:33;3101:5;3074:33;:::i;:::-;3026:87;;;;:::o;3119:137::-;;3202:6;3189:20;3180:29;;3218:32;3244:5;3218:32;:::i;:::-;3170:86;;;;:::o;3262:141::-;;3349:6;3343:13;3334:22;;3365:32;3391:5;3365:32;:::i;:::-;3324:79;;;;:::o;3422:271::-;;3526:3;3519:4;3511:6;3507:17;3503:27;3493:2;;3544:1;3541;3534:12;3493:2;3584:6;3571:20;3609:78;3683:3;3675:6;3668:4;3660:6;3656:17;3609:78;:::i;:::-;3600:87;;3483:210;;;;;:::o;3699:139::-;;3783:6;3770:20;3761:29;;3799:33;3826:5;3799:33;:::i;:::-;3751:87;;;;:::o;3844:262::-;;3952:2;3940:9;3931:7;3927:23;3923:32;3920:2;;;3968:1;3965;3958:12;3920:2;4011:1;4036:53;4081:7;4072:6;4061:9;4057:22;4036:53;:::i;:::-;4026:63;;3982:117;3910:196;;;;:::o;4112:407::-;;;4237:2;4225:9;4216:7;4212:23;4208:32;4205:2;;;4253:1;4250;4243:12;4205:2;4296:1;4321:53;4366:7;4357:6;4346:9;4342:22;4321:53;:::i;:::-;4311:63;;4267:117;4423:2;4449:53;4494:7;4485:6;4474:9;4470:22;4449:53;:::i;:::-;4439:63;;4394:118;4195:324;;;;;:::o;4525:1241::-;;;;;;4760:3;4748:9;4739:7;4735:23;4731:33;4728:2;;;4777:1;4774;4767:12;4728:2;4820:1;4845:53;4890:7;4881:6;4870:9;4866:22;4845:53;:::i;:::-;4835:63;;4791:117;4947:2;4973:53;5018:7;5009:6;4998:9;4994:22;4973:53;:::i;:::-;4963:63;;4918:118;5103:2;5092:9;5088:18;5075:32;5134:18;5126:6;5123:30;5120:2;;;5166:1;5163;5156:12;5120:2;5194:78;5264:7;5255:6;5244:9;5240:22;5194:78;:::i;:::-;5184:88;;5046:236;5349:2;5338:9;5334:18;5321:32;5380:18;5372:6;5369:30;5366:2;;;5412:1;5409;5402:12;5366:2;5440:78;5510:7;5501:6;5490:9;5486:22;5440:78;:::i;:::-;5430:88;;5292:236;5595:3;5584:9;5580:19;5567:33;5627:18;5619:6;5616:30;5613:2;;;5659:1;5656;5649:12;5613:2;5687:62;5741:7;5732:6;5721:9;5717:22;5687:62;:::i;:::-;5677:72;;5538:221;4718:1048;;;;;;;;:::o;5772:955::-;;;;;;5957:3;5945:9;5936:7;5932:23;5928:33;5925:2;;;5974:1;5971;5964:12;5925:2;6017:1;6042:53;6087:7;6078:6;6067:9;6063:22;6042:53;:::i;:::-;6032:63;;5988:117;6144:2;6170:53;6215:7;6206:6;6195:9;6191:22;6170:53;:::i;:::-;6160:63;;6115:118;6272:2;6298:53;6343:7;6334:6;6323:9;6319:22;6298:53;:::i;:::-;6288:63;;6243:118;6400:2;6426:53;6471:7;6462:6;6451:9;6447:22;6426:53;:::i;:::-;6416:63;;6371:118;6556:3;6545:9;6541:19;6528:33;6588:18;6580:6;6577:30;6574:2;;;6620:1;6617;6610:12;6574:2;6648:62;6702:7;6693:6;6682:9;6678:22;6648:62;:::i;:::-;6638:72;;6499:221;5915:812;;;;;;;;:::o;6733:838::-;;;;6925:2;6913:9;6904:7;6900:23;6896:32;6893:2;;;6941:1;6938;6931:12;6893:2;6984:1;7009:53;7054:7;7045:6;7034:9;7030:22;7009:53;:::i;:::-;6999:63;;6955:117;7139:2;7128:9;7124:18;7111:32;7170:18;7162:6;7159:30;7156:2;;;7202:1;7199;7192:12;7156:2;7230:78;7300:7;7291:6;7280:9;7276:22;7230:78;:::i;:::-;7220:88;;7082:236;7385:2;7374:9;7370:18;7357:32;7416:18;7408:6;7405:30;7402:2;;;7448:1;7445;7438:12;7402:2;7476:78;7546:7;7537:6;7526:9;7522:22;7476:78;:::i;:::-;7466:88;;7328:236;6883:688;;;;;:::o;7577:401::-;;;7699:2;7687:9;7678:7;7674:23;7670:32;7667:2;;;7715:1;7712;7705:12;7667:2;7758:1;7783:53;7828:7;7819:6;7808:9;7804:22;7783:53;:::i;:::-;7773:63;;7729:117;7885:2;7911:50;7953:7;7944:6;7933:9;7929:22;7911:50;:::i;:::-;7901:60;;7856:115;7657:321;;;;;:::o;7984:407::-;;;8109:2;8097:9;8088:7;8084:23;8080:32;8077:2;;;8125:1;8122;8115:12;8077:2;8168:1;8193:53;8238:7;8229:6;8218:9;8214:22;8193:53;:::i;:::-;8183:63;;8139:117;8295:2;8321:53;8366:7;8357:6;8346:9;8342:22;8321:53;:::i;:::-;8311:63;;8266:118;8067:324;;;;;:::o;8397:552::-;;;;8539:2;8527:9;8518:7;8514:23;8510:32;8507:2;;;8555:1;8552;8545:12;8507:2;8598:1;8623:53;8668:7;8659:6;8648:9;8644:22;8623:53;:::i;:::-;8613:63;;8569:117;8725:2;8751:53;8796:7;8787:6;8776:9;8772:22;8751:53;:::i;:::-;8741:63;;8696:118;8853:2;8879:53;8924:7;8915:6;8904:9;8900:22;8879:53;:::i;:::-;8869:63;;8824:118;8497:452;;;;;:::o;8955:693::-;;;9130:2;9118:9;9109:7;9105:23;9101:32;9098:2;;;9146:1;9143;9136:12;9098:2;9217:1;9206:9;9202:17;9189:31;9247:18;9239:6;9236:30;9233:2;;;9279:1;9276;9269:12;9233:2;9307:78;9377:7;9368:6;9357:9;9353:22;9307:78;:::i;:::-;9297:88;;9160:235;9462:2;9451:9;9447:18;9434:32;9493:18;9485:6;9482:30;9479:2;;;9525:1;9522;9515:12;9479:2;9553:78;9623:7;9614:6;9603:9;9599:22;9553:78;:::i;:::-;9543:88;;9405:236;9088:560;;;;;:::o;9654:262::-;;9762:2;9750:9;9741:7;9737:23;9733:32;9730:2;;;9778:1;9775;9768:12;9730:2;9821:1;9846:53;9891:7;9882:6;9871:9;9867:22;9846:53;:::i;:::-;9836:63;;9792:117;9720:196;;;;:::o;9922:260::-;;10029:2;10017:9;10008:7;10004:23;10000:32;9997:2;;;10045:1;10042;10035:12;9997:2;10088:1;10113:52;10157:7;10148:6;10137:9;10133:22;10113:52;:::i;:::-;10103:62;;10059:116;9987:195;;;;:::o;10188:282::-;;10306:2;10294:9;10285:7;10281:23;10277:32;10274:2;;;10322:1;10319;10312:12;10274:2;10365:1;10390:63;10445:7;10436:6;10425:9;10421:22;10390:63;:::i;:::-;10380:73;;10336:127;10264:206;;;;:::o;10476:262::-;;10584:2;10572:9;10563:7;10559:23;10555:32;10552:2;;;10600:1;10597;10590:12;10552:2;10643:1;10668:53;10713:7;10704:6;10693:9;10689:22;10668:53;:::i;:::-;10658:63;;10614:117;10542:196;;;;:::o;10744:570::-;;;;10904:2;10892:9;10883:7;10879:23;10875:32;10872:2;;;10920:1;10917;10910:12;10872:2;10963:1;10988:53;11033:7;11024:6;11013:9;11009:22;10988:53;:::i;:::-;10978:63;;10934:117;11118:2;11107:9;11103:18;11090:32;11149:18;11141:6;11138:30;11135:2;;;11181:1;11178;11171:12;11135:2;11217:80;11289:7;11280:6;11269:9;11265:22;11217:80;:::i;:::-;11199:98;;;;11061:246;10862:452;;;;;:::o;11320:179::-;;11410:46;11452:3;11444:6;11410:46;:::i;:::-;11488:4;11483:3;11479:14;11465:28;;11400:99;;;;:::o;11505:118::-;11592:24;11610:5;11592:24;:::i;:::-;11587:3;11580:37;11570:53;;:::o;11629:157::-;11734:45;11754:24;11772:5;11754:24;:::i;:::-;11734:45;:::i;:::-;11729:3;11722:58;11712:74;;:::o;11822:732::-;;11970:54;12018:5;11970:54;:::i;:::-;12040:86;12119:6;12114:3;12040:86;:::i;:::-;12033:93;;12150:56;12200:5;12150:56;:::i;:::-;12229:7;12260:1;12245:284;12270:6;12267:1;12264:13;12245:284;;;12346:6;12340:13;12373:63;12432:3;12417:13;12373:63;:::i;:::-;12366:70;;12459:60;12512:6;12459:60;:::i;:::-;12449:70;;12305:224;12292:1;12289;12285:9;12280:14;;12245:284;;;12249:14;12545:3;12538:10;;11946:608;;;;;;;:::o;12560:109::-;12641:21;12656:5;12641:21;:::i;:::-;12636:3;12629:34;12619:50;;:::o;12675:118::-;12762:24;12780:5;12762:24;:::i;:::-;12757:3;12750:37;12740:53;;:::o;12799:157::-;12904:45;12924:24;12942:5;12924:24;:::i;:::-;12904:45;:::i;:::-;12899:3;12892:58;12882:74;;:::o;12962:360::-;;13076:38;13108:5;13076:38;:::i;:::-;13130:70;13193:6;13188:3;13130:70;:::i;:::-;13123:77;;13209:52;13254:6;13249:3;13242:4;13235:5;13231:16;13209:52;:::i;:::-;13286:29;13308:6;13286:29;:::i;:::-;13281:3;13277:39;13270:46;;13052:270;;;;;:::o;13328:183::-;13441:63;13498:5;13441:63;:::i;:::-;13436:3;13429:76;13419:92;;:::o;13517:364::-;;13633:39;13666:5;13633:39;:::i;:::-;13688:71;13752:6;13747:3;13688:71;:::i;:::-;13681:78;;13768:52;13813:6;13808:3;13801:4;13794:5;13790:16;13768:52;:::i;:::-;13845:29;13867:6;13845:29;:::i;:::-;13840:3;13836:39;13829:46;;13609:272;;;;;:::o;13887:366::-;;14050:67;14114:2;14109:3;14050:67;:::i;:::-;14043:74;;14126:93;14215:3;14126:93;:::i;:::-;14244:2;14239:3;14235:12;14228:19;;14033:220;;;:::o;14259:366::-;;14422:67;14486:2;14481:3;14422:67;:::i;:::-;14415:74;;14498:93;14587:3;14498:93;:::i;:::-;14616:2;14611:3;14607:12;14600:19;;14405:220;;;:::o;14631:366::-;;14794:67;14858:2;14853:3;14794:67;:::i;:::-;14787:74;;14870:93;14959:3;14870:93;:::i;:::-;14988:2;14983:3;14979:12;14972:19;;14777:220;;;:::o;15003:366::-;;15166:67;15230:2;15225:3;15166:67;:::i;:::-;15159:74;;15242:93;15331:3;15242:93;:::i;:::-;15360:2;15355:3;15351:12;15344:19;;15149:220;;;:::o;15375:366::-;;15538:67;15602:2;15597:3;15538:67;:::i;:::-;15531:74;;15614:93;15703:3;15614:93;:::i;:::-;15732:2;15727:3;15723:12;15716:19;;15521:220;;;:::o;15747:366::-;;15910:67;15974:2;15969:3;15910:67;:::i;:::-;15903:74;;15986:93;16075:3;15986:93;:::i;:::-;16104:2;16099:3;16095:12;16088:19;;15893:220;;;:::o;16119:366::-;;16282:67;16346:2;16341:3;16282:67;:::i;:::-;16275:74;;16358:93;16447:3;16358:93;:::i;:::-;16476:2;16471:3;16467:12;16460:19;;16265:220;;;:::o;16491:366::-;;16654:67;16718:2;16713:3;16654:67;:::i;:::-;16647:74;;16730:93;16819:3;16730:93;:::i;:::-;16848:2;16843:3;16839:12;16832:19;;16637:220;;;:::o;16863:366::-;;17026:67;17090:2;17085:3;17026:67;:::i;:::-;17019:74;;17102:93;17191:3;17102:93;:::i;:::-;17220:2;17215:3;17211:12;17204:19;;17009:220;;;:::o;17235:366::-;;17398:67;17462:2;17457:3;17398:67;:::i;:::-;17391:74;;17474:93;17563:3;17474:93;:::i;:::-;17592:2;17587:3;17583:12;17576:19;;17381:220;;;:::o;17607:366::-;;17770:67;17834:2;17829:3;17770:67;:::i;:::-;17763:74;;17846:93;17935:3;17846:93;:::i;:::-;17964:2;17959:3;17955:12;17948:19;;17753:220;;;:::o;17979:366::-;;18142:67;18206:2;18201:3;18142:67;:::i;:::-;18135:74;;18218:93;18307:3;18218:93;:::i;:::-;18336:2;18331:3;18327:12;18320:19;;18125:220;;;:::o;18351:366::-;;18514:67;18578:2;18573:3;18514:67;:::i;:::-;18507:74;;18590:93;18679:3;18590:93;:::i;:::-;18708:2;18703:3;18699:12;18692:19;;18497:220;;;:::o;18723:366::-;;18886:67;18950:2;18945:3;18886:67;:::i;:::-;18879:74;;18962:93;19051:3;18962:93;:::i;:::-;19080:2;19075:3;19071:12;19064:19;;18869:220;;;:::o;19095:366::-;;19258:67;19322:2;19317:3;19258:67;:::i;:::-;19251:74;;19334:93;19423:3;19334:93;:::i;:::-;19452:2;19447:3;19443:12;19436:19;;19241:220;;;:::o;19467:366::-;;19630:67;19694:2;19689:3;19630:67;:::i;:::-;19623:74;;19706:93;19795:3;19706:93;:::i;:::-;19824:2;19819:3;19815:12;19808:19;;19613:220;;;:::o;19839:366::-;;20002:67;20066:2;20061:3;20002:67;:::i;:::-;19995:74;;20078:93;20167:3;20078:93;:::i;:::-;20196:2;20191:3;20187:12;20180:19;;19985:220;;;:::o;20211:366::-;;20374:67;20438:2;20433:3;20374:67;:::i;:::-;20367:74;;20450:93;20539:3;20450:93;:::i;:::-;20568:2;20563:3;20559:12;20552:19;;20357:220;;;:::o;20583:366::-;;20746:67;20810:2;20805:3;20746:67;:::i;:::-;20739:74;;20822:93;20911:3;20822:93;:::i;:::-;20940:2;20935:3;20931:12;20924:19;;20729:220;;;:::o;20955:366::-;;21118:67;21182:2;21177:3;21118:67;:::i;:::-;21111:74;;21194:93;21283:3;21194:93;:::i;:::-;21312:2;21307:3;21303:12;21296:19;;21101:220;;;:::o;21327:366::-;;21490:67;21554:2;21549:3;21490:67;:::i;:::-;21483:74;;21566:93;21655:3;21566:93;:::i;:::-;21684:2;21679:3;21675:12;21668:19;;21473:220;;;:::o;21699:366::-;;21862:67;21926:2;21921:3;21862:67;:::i;:::-;21855:74;;21938:93;22027:3;21938:93;:::i;:::-;22056:2;22051:3;22047:12;22040:19;;21845:220;;;:::o;22071:366::-;;22234:67;22298:2;22293:3;22234:67;:::i;:::-;22227:74;;22310:93;22399:3;22310:93;:::i;:::-;22428:2;22423:3;22419:12;22412:19;;22217:220;;;:::o;22443:366::-;;22606:67;22670:2;22665:3;22606:67;:::i;:::-;22599:74;;22682:93;22771:3;22682:93;:::i;:::-;22800:2;22795:3;22791:12;22784:19;;22589:220;;;:::o;22815:398::-;;22995:83;23076:1;23071:3;22995:83;:::i;:::-;22988:90;;23087:93;23176:3;23087:93;:::i;:::-;23205:1;23200:3;23196:11;23189:18;;22978:235;;;:::o;23219:366::-;;23382:67;23446:2;23441:3;23382:67;:::i;:::-;23375:74;;23458:93;23547:3;23458:93;:::i;:::-;23576:2;23571:3;23567:12;23560:19;;23365:220;;;:::o;23591:366::-;;23754:67;23818:2;23813:3;23754:67;:::i;:::-;23747:74;;23830:93;23919:3;23830:93;:::i;:::-;23948:2;23943:3;23939:12;23932:19;;23737:220;;;:::o;23963:366::-;;24126:67;24190:2;24185:3;24126:67;:::i;:::-;24119:74;;24202:93;24291:3;24202:93;:::i;:::-;24320:2;24315:3;24311:12;24304:19;;24109:220;;;:::o;24335:366::-;;24498:67;24562:2;24557:3;24498:67;:::i;:::-;24491:74;;24574:93;24663:3;24574:93;:::i;:::-;24692:2;24687:3;24683:12;24676:19;;24481:220;;;:::o;24707:108::-;24784:24;24802:5;24784:24;:::i;:::-;24779:3;24772:37;24762:53;;:::o;24821:118::-;24908:24;24926:5;24908:24;:::i;:::-;24903:3;24896:37;24886:53;;:::o;24945:256::-;;25072:75;25143:3;25134:6;25072:75;:::i;:::-;25172:2;25167:3;25163:12;25156:19;;25192:3;25185:10;;25061:140;;;;:::o;25207:397::-;;25362:75;25433:3;25424:6;25362:75;:::i;:::-;25462:2;25457:3;25453:12;25446:19;;25475:75;25546:3;25537:6;25475:75;:::i;:::-;25575:2;25570:3;25566:12;25559:19;;25595:3;25588:10;;25351:253;;;;;:::o;25610:379::-;;25816:147;25959:3;25816:147;:::i;:::-;25809:154;;25980:3;25973:10;;25798:191;;;:::o;25995:222::-;;26126:2;26115:9;26111:18;26103:26;;26139:71;26207:1;26196:9;26192:17;26183:6;26139:71;:::i;:::-;26093:124;;;;:::o;26223:1053::-;;26584:3;26573:9;26569:19;26561:27;;26598:71;26666:1;26655:9;26651:17;26642:6;26598:71;:::i;:::-;26679:72;26747:2;26736:9;26732:18;26723:6;26679:72;:::i;:::-;26798:9;26792:4;26788:20;26783:2;26772:9;26768:18;26761:48;26826:108;26929:4;26920:6;26826:108;:::i;:::-;26818:116;;26981:9;26975:4;26971:20;26966:2;26955:9;26951:18;26944:48;27009:108;27112:4;27103:6;27009:108;:::i;:::-;27001:116;;27165:9;27159:4;27155:20;27149:3;27138:9;27134:19;27127:49;27193:76;27264:4;27255:6;27193:76;:::i;:::-;27185:84;;26551:725;;;;;;;;:::o;27282:751::-;;27543:3;27532:9;27528:19;27520:27;;27557:71;27625:1;27614:9;27610:17;27601:6;27557:71;:::i;:::-;27638:72;27706:2;27695:9;27691:18;27682:6;27638:72;:::i;:::-;27720;27788:2;27777:9;27773:18;27764:6;27720:72;:::i;:::-;27802;27870:2;27859:9;27855:18;27846:6;27802:72;:::i;:::-;27922:9;27916:4;27912:20;27906:3;27895:9;27891:19;27884:49;27950:76;28021:4;28012:6;27950:76;:::i;:::-;27942:84;;27510:523;;;;;;;;:::o;28039:332::-;;28198:2;28187:9;28183:18;28175:26;;28211:71;28279:1;28268:9;28264:17;28255:6;28211:71;:::i;:::-;28292:72;28360:2;28349:9;28345:18;28336:6;28292:72;:::i;:::-;28165:206;;;;;:::o;28377:373::-;;28558:2;28547:9;28543:18;28535:26;;28607:9;28601:4;28597:20;28593:1;28582:9;28578:17;28571:47;28635:108;28738:4;28729:6;28635:108;:::i;:::-;28627:116;;28525:225;;;;:::o;28756:634::-;;29015:2;29004:9;29000:18;28992:26;;29064:9;29058:4;29054:20;29050:1;29039:9;29035:17;29028:47;29092:108;29195:4;29186:6;29092:108;:::i;:::-;29084:116;;29247:9;29241:4;29237:20;29232:2;29221:9;29217:18;29210:48;29275:108;29378:4;29369:6;29275:108;:::i;:::-;29267:116;;28982:408;;;;;:::o;29396:210::-;;29521:2;29510:9;29506:18;29498:26;;29534:65;29596:1;29585:9;29581:17;29572:6;29534:65;:::i;:::-;29488:118;;;;:::o;29612:222::-;;29743:2;29732:9;29728:18;29720:26;;29756:71;29824:1;29813:9;29809:17;29800:6;29756:71;:::i;:::-;29710:124;;;;:::o;29840:274::-;;29997:2;29986:9;29982:18;29974:26;;30010:97;30104:1;30093:9;30089:17;30080:6;30010:97;:::i;:::-;29964:150;;;;:::o;30120:313::-;;30271:2;30260:9;30256:18;30248:26;;30320:9;30314:4;30310:20;30306:1;30295:9;30291:17;30284:47;30348:78;30421:4;30412:6;30348:78;:::i;:::-;30340:86;;30238:195;;;;:::o;30439:419::-;;30643:2;30632:9;30628:18;30620:26;;30692:9;30686:4;30682:20;30678:1;30667:9;30663:17;30656:47;30720:131;30846:4;30720:131;:::i;:::-;30712:139;;30610:248;;;:::o;30864:419::-;;31068:2;31057:9;31053:18;31045:26;;31117:9;31111:4;31107:20;31103:1;31092:9;31088:17;31081:47;31145:131;31271:4;31145:131;:::i;:::-;31137:139;;31035:248;;;:::o;31289:419::-;;31493:2;31482:9;31478:18;31470:26;;31542:9;31536:4;31532:20;31528:1;31517:9;31513:17;31506:47;31570:131;31696:4;31570:131;:::i;:::-;31562:139;;31460:248;;;:::o;31714:419::-;;31918:2;31907:9;31903:18;31895:26;;31967:9;31961:4;31957:20;31953:1;31942:9;31938:17;31931:47;31995:131;32121:4;31995:131;:::i;:::-;31987:139;;31885:248;;;:::o;32139:419::-;;32343:2;32332:9;32328:18;32320:26;;32392:9;32386:4;32382:20;32378:1;32367:9;32363:17;32356:47;32420:131;32546:4;32420:131;:::i;:::-;32412:139;;32310:248;;;:::o;32564:419::-;;32768:2;32757:9;32753:18;32745:26;;32817:9;32811:4;32807:20;32803:1;32792:9;32788:17;32781:47;32845:131;32971:4;32845:131;:::i;:::-;32837:139;;32735:248;;;:::o;32989:419::-;;33193:2;33182:9;33178:18;33170:26;;33242:9;33236:4;33232:20;33228:1;33217:9;33213:17;33206:47;33270:131;33396:4;33270:131;:::i;:::-;33262:139;;33160:248;;;:::o;33414:419::-;;33618:2;33607:9;33603:18;33595:26;;33667:9;33661:4;33657:20;33653:1;33642:9;33638:17;33631:47;33695:131;33821:4;33695:131;:::i;:::-;33687:139;;33585:248;;;:::o;33839:419::-;;34043:2;34032:9;34028:18;34020:26;;34092:9;34086:4;34082:20;34078:1;34067:9;34063:17;34056:47;34120:131;34246:4;34120:131;:::i;:::-;34112:139;;34010:248;;;:::o;34264:419::-;;34468:2;34457:9;34453:18;34445:26;;34517:9;34511:4;34507:20;34503:1;34492:9;34488:17;34481:47;34545:131;34671:4;34545:131;:::i;:::-;34537:139;;34435:248;;;:::o;34689:419::-;;34893:2;34882:9;34878:18;34870:26;;34942:9;34936:4;34932:20;34928:1;34917:9;34913:17;34906:47;34970:131;35096:4;34970:131;:::i;:::-;34962:139;;34860:248;;;:::o;35114:419::-;;35318:2;35307:9;35303:18;35295:26;;35367:9;35361:4;35357:20;35353:1;35342:9;35338:17;35331:47;35395:131;35521:4;35395:131;:::i;:::-;35387:139;;35285:248;;;:::o;35539:419::-;;35743:2;35732:9;35728:18;35720:26;;35792:9;35786:4;35782:20;35778:1;35767:9;35763:17;35756:47;35820:131;35946:4;35820:131;:::i;:::-;35812:139;;35710:248;;;:::o;35964:419::-;;36168:2;36157:9;36153:18;36145:26;;36217:9;36211:4;36207:20;36203:1;36192:9;36188:17;36181:47;36245:131;36371:4;36245:131;:::i;:::-;36237:139;;36135:248;;;:::o;36389:419::-;;36593:2;36582:9;36578:18;36570:26;;36642:9;36636:4;36632:20;36628:1;36617:9;36613:17;36606:47;36670:131;36796:4;36670:131;:::i;:::-;36662:139;;36560:248;;;:::o;36814:419::-;;37018:2;37007:9;37003:18;36995:26;;37067:9;37061:4;37057:20;37053:1;37042:9;37038:17;37031:47;37095:131;37221:4;37095:131;:::i;:::-;37087:139;;36985:248;;;:::o;37239:419::-;;37443:2;37432:9;37428:18;37420:26;;37492:9;37486:4;37482:20;37478:1;37467:9;37463:17;37456:47;37520:131;37646:4;37520:131;:::i;:::-;37512:139;;37410:248;;;:::o;37664:419::-;;37868:2;37857:9;37853:18;37845:26;;37917:9;37911:4;37907:20;37903:1;37892:9;37888:17;37881:47;37945:131;38071:4;37945:131;:::i;:::-;37937:139;;37835:248;;;:::o;38089:419::-;;38293:2;38282:9;38278:18;38270:26;;38342:9;38336:4;38332:20;38328:1;38317:9;38313:17;38306:47;38370:131;38496:4;38370:131;:::i;:::-;38362:139;;38260:248;;;:::o;38514:419::-;;38718:2;38707:9;38703:18;38695:26;;38767:9;38761:4;38757:20;38753:1;38742:9;38738:17;38731:47;38795:131;38921:4;38795:131;:::i;:::-;38787:139;;38685:248;;;:::o;38939:419::-;;39143:2;39132:9;39128:18;39120:26;;39192:9;39186:4;39182:20;39178:1;39167:9;39163:17;39156:47;39220:131;39346:4;39220:131;:::i;:::-;39212:139;;39110:248;;;:::o;39364:419::-;;39568:2;39557:9;39553:18;39545:26;;39617:9;39611:4;39607:20;39603:1;39592:9;39588:17;39581:47;39645:131;39771:4;39645:131;:::i;:::-;39637:139;;39535:248;;;:::o;39789:419::-;;39993:2;39982:9;39978:18;39970:26;;40042:9;40036:4;40032:20;40028:1;40017:9;40013:17;40006:47;40070:131;40196:4;40070:131;:::i;:::-;40062:139;;39960:248;;;:::o;40214:419::-;;40418:2;40407:9;40403:18;40395:26;;40467:9;40461:4;40457:20;40453:1;40442:9;40438:17;40431:47;40495:131;40621:4;40495:131;:::i;:::-;40487:139;;40385:248;;;:::o;40639:419::-;;40843:2;40832:9;40828:18;40820:26;;40892:9;40886:4;40882:20;40878:1;40867:9;40863:17;40856:47;40920:131;41046:4;40920:131;:::i;:::-;40912:139;;40810:248;;;:::o;41064:419::-;;41268:2;41257:9;41253:18;41245:26;;41317:9;41311:4;41307:20;41303:1;41292:9;41288:17;41281:47;41345:131;41471:4;41345:131;:::i;:::-;41337:139;;41235:248;;;:::o;41489:419::-;;41693:2;41682:9;41678:18;41670:26;;41742:9;41736:4;41732:20;41728:1;41717:9;41713:17;41706:47;41770:131;41896:4;41770:131;:::i;:::-;41762:139;;41660:248;;;:::o;41914:419::-;;42118:2;42107:9;42103:18;42095:26;;42167:9;42161:4;42157:20;42153:1;42142:9;42138:17;42131:47;42195:131;42321:4;42195:131;:::i;:::-;42187:139;;42085:248;;;:::o;42339:222::-;;42470:2;42459:9;42455:18;42447:26;;42483:71;42551:1;42540:9;42536:17;42527:6;42483:71;:::i;:::-;42437:124;;;;:::o;42567:332::-;;42726:2;42715:9;42711:18;42703:26;;42739:71;42807:1;42796:9;42792:17;42783:6;42739:71;:::i;:::-;42820:72;42888:2;42877:9;42873:18;42864:6;42820:72;:::i;:::-;42693:206;;;;;:::o;42905:129::-;;42966:20;;:::i;:::-;42956:30;;42995:33;43023:4;43015:6;42995:33;:::i;:::-;42946:88;;;:::o;43040:75::-;;43106:2;43100:9;43090:19;;43080:35;:::o;43121:311::-;;43288:18;43280:6;43277:30;43274:2;;;43310:18;;:::i;:::-;43274:2;43360:4;43352:6;43348:17;43340:25;;43420:4;43414;43410:15;43402:23;;43203:229;;;:::o;43438:311::-;;43605:18;43597:6;43594:30;43591:2;;;43627:18;;:::i;:::-;43591:2;43677:4;43669:6;43665:17;43657:25;;43737:4;43731;43727:15;43719:23;;43520:229;;;:::o;43755:307::-;;43906:18;43898:6;43895:30;43892:2;;;43928:18;;:::i;:::-;43892:2;43966:29;43988:6;43966:29;:::i;:::-;43958:37;;44050:4;44044;44040:15;44032:23;;43821:241;;;:::o;44068:132::-;;44158:3;44150:11;;44188:4;44183:3;44179:14;44171:22;;44140:60;;;:::o;44206:114::-;;44307:5;44301:12;44291:22;;44280:40;;;:::o;44326:98::-;;44411:5;44405:12;44395:22;;44384:40;;;:::o;44430:99::-;;44516:5;44510:12;44500:22;;44489:40;;;:::o;44535:113::-;;44637:4;44632:3;44628:14;44620:22;;44610:38;;;:::o;44654:184::-;;44787:6;44782:3;44775:19;44827:4;44822:3;44818:14;44803:29;;44765:73;;;;:::o;44844:168::-;;44961:6;44956:3;44949:19;45001:4;44996:3;44992:14;44977:29;;44939:73;;;;:::o;45018:147::-;;45156:3;45141:18;;45131:34;;;;:::o;45171:169::-;;45289:6;45284:3;45277:19;45329:4;45324:3;45320:14;45305:29;;45267:73;;;;:::o;45346:305::-;;45405:20;45423:1;45405:20;:::i;:::-;45400:25;;45439:20;45457:1;45439:20;:::i;:::-;45434:25;;45593:1;45525:66;45521:74;45518:1;45515:81;45512:2;;;45599:18;;:::i;:::-;45512:2;45643:1;45640;45636:9;45629:16;;45390:261;;;;:::o;45657:185::-;;45714:20;45732:1;45714:20;:::i;:::-;45709:25;;45748:20;45766:1;45748:20;:::i;:::-;45743:25;;45787:1;45777:2;;45792:18;;:::i;:::-;45777:2;45834:1;45831;45827:9;45822:14;;45699:143;;;;:::o;45848:348::-;;45911:20;45929:1;45911:20;:::i;:::-;45906:25;;45945:20;45963:1;45945:20;:::i;:::-;45940:25;;46133:1;46065:66;46061:74;46058:1;46055:81;46050:1;46043:9;46036:17;46032:105;46029:2;;;46140:18;;:::i;:::-;46029:2;46188:1;46185;46181:9;46170:20;;45896:300;;;;:::o;46202:96::-;;46268:24;46286:5;46268:24;:::i;:::-;46257:35;;46247:51;;;:::o;46304:90::-;;46381:5;46374:13;46367:21;46356:32;;46346:48;;;:::o;46400:77::-;;46466:5;46455:16;;46445:32;;;:::o;46483:149::-;;46559:66;46552:5;46548:78;46537:89;;46527:105;;;:::o;46638:126::-;;46715:42;46708:5;46704:54;46693:65;;46683:81;;;:::o;46770:77::-;;46836:5;46825:16;;46815:32;;;:::o;46853:178::-;;46962:63;47019:5;46962:63;:::i;:::-;46949:76;;46939:92;;;:::o;47037:139::-;;47146:24;47164:5;47146:24;:::i;:::-;47133:37;;47123:53;;;:::o;47182:154::-;47266:6;47261:3;47256;47243:30;47328:1;47319:6;47314:3;47310:16;47303:27;47233:103;;;:::o;47342:307::-;47410:1;47420:113;47434:6;47431:1;47428:13;47420:113;;;47519:1;47514:3;47510:11;47504:18;47500:1;47495:3;47491:11;47484:39;47456:2;47453:1;47449:10;47444:15;;47420:113;;;47551:6;47548:1;47545:13;47542:2;;;47631:1;47622:6;47617:3;47613:16;47606:27;47542:2;47391:258;;;;:::o;47655:320::-;;47736:1;47730:4;47726:12;47716:22;;47783:1;47777:4;47773:12;47804:18;47794:2;;47860:4;47852:6;47848:17;47838:27;;47794:2;47922;47914:6;47911:14;47891:18;47888:38;47885:2;;;47941:18;;:::i;:::-;47885:2;47706:269;;;;:::o;47981:281::-;48064:27;48086:4;48064:27;:::i;:::-;48056:6;48052:40;48194:6;48182:10;48179:22;48158:18;48146:10;48143:34;48140:62;48137:2;;;48205:18;;:::i;:::-;48137:2;48245:10;48241:2;48234:22;48024:238;;;:::o;48268:233::-;;48330:24;48348:5;48330:24;:::i;:::-;48321:33;;48376:66;48369:5;48366:77;48363:2;;;48446:18;;:::i;:::-;48363:2;48493:1;48486:5;48482:13;48475:20;;48311:190;;;:::o;48507:100::-;;48575:26;48595:5;48575:26;:::i;:::-;48564:37;;48554:53;;;:::o;48613:79::-;;48681:5;48670:16;;48660:32;;;:::o;48698:94::-;;48766:20;48780:5;48766:20;:::i;:::-;48755:31;;48745:47;;;:::o;48798:180::-;48846:77;48843:1;48836:88;48943:4;48940:1;48933:15;48967:4;48964:1;48957:15;48984:180;49032:77;49029:1;49022:88;49129:4;49126:1;49119:15;49153:4;49150:1;49143:15;49170:180;49218:77;49215:1;49208:88;49315:4;49312:1;49305:15;49339:4;49336:1;49329:15;49356:180;49404:77;49401:1;49394:88;49501:4;49498:1;49491:15;49525:4;49522:1;49515:15;49542:183;;49615:1;49597:16;49594:23;49591:2;;;49653:1;49650;49647;49632:23;49675:34;49706:1;49700:8;49675:34;:::i;:::-;49668:41;;49591:2;49581:144;:::o;49731:102::-;;49823:2;49819:7;49814:2;49807:5;49803:14;49799:28;49789:38;;49779:54;;;:::o;49839:94::-;;49920:5;49916:2;49912:14;49891:35;;49881:52;;;:::o;49939:106::-;;50032:5;50027:3;50023:15;50002:36;;49992:53;;;:::o;50051:239::-;50191:34;50187:1;50179:6;50175:14;50168:58;50260:22;50255:2;50247:6;50243:15;50236:47;50157:133;:::o;50296:227::-;50436:34;50432:1;50424:6;50420:14;50413:58;50505:10;50500:2;50492:6;50488:15;50481:35;50402:121;:::o;50529:166::-;50669:18;50665:1;50657:6;50653:14;50646:42;50635:60;:::o;50701:175::-;50841:27;50837:1;50829:6;50825:14;50818:51;50807:69;:::o;50882:230::-;51022:34;51018:1;51010:6;51006:14;50999:58;51091:13;51086:2;51078:6;51074:15;51067:38;50988:124;:::o;51118:225::-;51258:34;51254:1;51246:6;51242:14;51235:58;51327:8;51322:2;51314:6;51310:15;51303:33;51224:119;:::o;51349:171::-;51489:23;51485:1;51477:6;51473:14;51466:47;51455:65;:::o;51526:223::-;51666:34;51662:1;51654:6;51650:14;51643:58;51735:6;51730:2;51722:6;51718:15;51711:31;51632:117;:::o;51755:228::-;51895:34;51891:1;51883:6;51879:14;51872:58;51964:11;51959:2;51951:6;51947:15;51940:36;51861:122;:::o;51989:163::-;52129:15;52125:1;52117:6;52113:14;52106:39;52095:57;:::o;52158:172::-;52298:24;52294:1;52286:6;52282:14;52275:48;52264:66;:::o;52336:180::-;52476:32;52472:1;52464:6;52460:14;52453:56;52442:74;:::o;52522:224::-;52662:34;52658:1;52650:6;52646:14;52639:58;52731:7;52726:2;52718:6;52714:15;52707:32;52628:118;:::o;52752:237::-;52892:34;52888:1;52880:6;52876:14;52869:58;52961:20;52956:2;52948:6;52944:15;52937:45;52858:131;:::o;52995:165::-;53135:17;53131:1;53123:6;53119:14;53112:41;53101:59;:::o;53166:222::-;53306:34;53302:1;53294:6;53290:14;53283:58;53375:5;53370:2;53362:6;53358:15;53351:30;53272:116;:::o;53394:229::-;53534:34;53530:1;53522:6;53518:14;53511:58;53603:12;53598:2;53590:6;53586:15;53579:37;53500:123;:::o;53629:175::-;53769:27;53765:1;53757:6;53753:14;53746:51;53735:69;:::o;53810:182::-;53950:34;53946:1;53938:6;53934:14;53927:58;53916:76;:::o;53998:170::-;54138:22;54134:1;54126:6;54122:14;54115:46;54104:64;:::o;54174:178::-;54314:30;54310:1;54302:6;54298:14;54291:54;54280:72;:::o;54358:220::-;54498:34;54494:1;54486:6;54482:14;54475:58;54567:3;54562:2;54554:6;54550:15;54543:28;54464:114;:::o;54584:182::-;54724:34;54720:1;54712:6;54708:14;54701:58;54690:76;:::o;54772:222::-;54912:34;54908:1;54900:6;54896:14;54889:58;54981:5;54976:2;54968:6;54964:15;54957:30;54878:116;:::o;55000:114::-;55106:8;:::o;55120:228::-;55260:34;55256:1;55248:6;55244:14;55237:58;55329:11;55324:2;55316:6;55312:15;55305:36;55226:122;:::o;55354:228::-;55494:34;55490:1;55482:6;55478:14;55471:58;55563:11;55558:2;55550:6;55546:15;55539:36;55460:122;:::o;55588:227::-;55728:34;55724:1;55716:6;55712:14;55705:58;55797:10;55792:2;55784:6;55780:15;55773:35;55694:121;:::o;55821:220::-;55961:34;55957:1;55949:6;55945:14;55938:58;56030:3;56025:2;56017:6;56013:15;56006:28;55927:114;:::o;56047:711::-;;56124:4;56106:16;56103:26;56100:2;;;56132:5;;56100:2;56161:20;;:::i;:::-;56236:1;56218:16;56214:24;56211:1;56205:4;56190:49;56269:4;56263:11;56368:16;56361:4;56353:6;56349:17;56346:39;56313:18;56305:6;56302:30;56286:113;56283:2;;;56414:5;;;;56283:2;56460:6;56454:4;56450:17;56496:3;56490:10;56523:18;56515:6;56512:30;56509:2;;;56545:5;;;;;;56509:2;56593:6;56586:4;56581:3;56577:14;56573:27;56652:1;56634:16;56630:24;56624:4;56620:35;56615:3;56612:44;56609:2;;;56659:5;;;;;;;56609:2;56676:57;56724:6;56718:4;56714:17;56706:6;56702:30;56696:4;56676:57;:::i;:::-;56749:3;56742:10;;56090:668;;;;;;;:::o;56764:122::-;56837:24;56855:5;56837:24;:::i;:::-;56830:5;56827:35;56817:2;;56876:1;56873;56866:12;56817:2;56807:79;:::o;56892:116::-;56962:21;56977:5;56962:21;:::i;:::-;56955:5;56952:32;56942:2;;56998:1;56995;56988:12;56942:2;56932:76;:::o;57014:122::-;57087:24;57105:5;57087:24;:::i;:::-;57080:5;57077:35;57067:2;;57126:1;57123;57116:12;57067:2;57057:79;:::o;57142:120::-;57214:23;57231:5;57214:23;:::i;:::-;57207:5;57204:34;57194:2;;57252:1;57249;57242:12;57194:2;57184:78;:::o;57268:122::-;57341:24;57359:5;57341:24;:::i;:::-;57334:5;57331:35;57321:2;;57380:1;57377;57370:12;57321:2;57311:79;:::o

Swarm Source

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