ETH Price: $3,133.51 (+1.05%)

Token

Chaos Coin Club (CHAOS)
 

Overview

Max Total Supply

3,222.500000000000000029 CHAOS

Holders

26

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
5 CHAOS

Value
$0.00
0xc82e29f9f180f9f582c44ef438570ee32dd6228c
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:
ChaosCoin

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
Yes with 500 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-06-21
*/

// Sources flattened with hardhat v2.14.1 https://hardhat.org

// File @openzeppelin/contracts/utils/[email protected]

// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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


// File @openzeppelin/contracts/access/[email protected]


// OpenZeppelin Contracts (last updated v4.9.0) (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 Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

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

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby disabling 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 @openzeppelin/contracts/utils/[email protected]


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

pragma solidity ^0.8.1;

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

        return account.code.length > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://consensys.net/diligence/blog/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.8.0/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 functionCallWithValue(target, data, 0, "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");
        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResultFromTarget(target, 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) {
        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResultFromTarget(target, 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) {
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResultFromTarget(target, success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling
     * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract.
     *
     * _Available since v4.8._
     */
    function verifyCallResultFromTarget(
        address target,
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        if (success) {
            if (returndata.length == 0) {
                // only check isContract if the call was successful and the return data is empty
                // otherwise we already know that it was a contract
                require(isContract(target), "Address: call to non-contract");
            }
            return returndata;
        } else {
            _revert(returndata, errorMessage);
        }
    }

    /**
     * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason or 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 {
            _revert(returndata, errorMessage);
        }
    }

    function _revert(bytes memory returndata, string memory errorMessage) private pure {
        // 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
            /// @solidity memory-safe-assembly
            assembly {
                let returndata_size := mload(returndata)
                revert(add(32, returndata), returndata_size)
            }
        } else {
            revert(errorMessage);
        }
    }
}


// File @openzeppelin/contracts/utils/escrow/[email protected]


// OpenZeppelin Contracts (last updated v4.7.0) (utils/escrow/Escrow.sol)

pragma solidity ^0.8.0;


/**
 * @title Escrow
 * @dev Base escrow contract, holds funds designated for a payee until they
 * withdraw them.
 *
 * Intended usage: This contract (and derived escrow contracts) should be a
 * standalone contract, that only interacts with the contract that instantiated
 * it. That way, it is guaranteed that all Ether will be handled according to
 * the `Escrow` rules, and there is no need to check for payable functions or
 * transfers in the inheritance tree. The contract that uses the escrow as its
 * payment method should be its owner, and provide public methods redirecting
 * to the escrow's deposit and withdraw.
 */
contract Escrow is Ownable {
    using Address for address payable;

    event Deposited(address indexed payee, uint256 weiAmount);
    event Withdrawn(address indexed payee, uint256 weiAmount);

    mapping(address => uint256) private _deposits;

    function depositsOf(address payee) public view returns (uint256) {
        return _deposits[payee];
    }

    /**
     * @dev Stores the sent amount as credit to be withdrawn.
     * @param payee The destination address of the funds.
     *
     * Emits a {Deposited} event.
     */
    function deposit(address payee) public payable virtual onlyOwner {
        uint256 amount = msg.value;
        _deposits[payee] += amount;
        emit Deposited(payee, amount);
    }

    /**
     * @dev Withdraw accumulated balance for a payee, forwarding all gas to the
     * recipient.
     *
     * WARNING: Forwarding all gas opens the door to reentrancy vulnerabilities.
     * Make sure you trust the recipient, or are either following the
     * checks-effects-interactions pattern or using {ReentrancyGuard}.
     *
     * @param payee The address whose funds will be withdrawn and transferred to.
     *
     * Emits a {Withdrawn} event.
     */
    function withdraw(address payable payee) public virtual onlyOwner {
        uint256 payment = _deposits[payee];

        _deposits[payee] = 0;

        payee.sendValue(payment);

        emit Withdrawn(payee, payment);
    }
}


// File @openzeppelin/contracts/security/[email protected]


// OpenZeppelin Contracts (last updated v4.8.0) (security/PullPayment.sol)

pragma solidity ^0.8.0;

/**
 * @dev Simple implementation of a
 * https://consensys.github.io/smart-contract-best-practices/development-recommendations/general/external-calls/#favor-pull-over-push-for-external-calls[pull-payment]
 * strategy, where the paying contract doesn't interact directly with the
 * receiver account, which must withdraw its payments itself.
 *
 * Pull-payments are often considered the best practice when it comes to sending
 * Ether, security-wise. It prevents recipients from blocking execution, and
 * eliminates reentrancy concerns.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 *
 * To use, derive from the `PullPayment` contract, and use {_asyncTransfer}
 * instead of Solidity's `transfer` function. Payees can query their due
 * payments with {payments}, and retrieve them with {withdrawPayments}.
 */
abstract contract PullPayment {
    Escrow private immutable _escrow;

    constructor() {
        _escrow = new Escrow();
    }

    /**
     * @dev Withdraw accumulated payments, forwarding all gas to the recipient.
     *
     * Note that _any_ account can call this function, not just the `payee`.
     * This means that contracts unaware of the `PullPayment` protocol can still
     * receive funds this way, by having a separate account call
     * {withdrawPayments}.
     *
     * WARNING: Forwarding all gas opens the door to reentrancy vulnerabilities.
     * Make sure you trust the recipient, or are either following the
     * checks-effects-interactions pattern or using {ReentrancyGuard}.
     *
     * @param payee Whose payments will be withdrawn.
     *
     * Causes the `escrow` to emit a {Withdrawn} event.
     */
    function withdrawPayments(address payable payee) public virtual {
        _escrow.withdraw(payee);
    }

    /**
     * @dev Returns the payments owed to an address.
     * @param dest The creditor's address.
     */
    function payments(address dest) public view returns (uint256) {
        return _escrow.depositsOf(dest);
    }

    /**
     * @dev Called by the payer to store the sent amount as credit to be pulled.
     * Funds sent in this way are stored in an intermediate {Escrow} contract, so
     * there is no danger of them being spent before withdrawal.
     *
     * @param dest The destination address of the funds.
     * @param amount The amount to transfer.
     *
     * Causes the `escrow` to emit a {Deposited} event.
     */
    function _asyncTransfer(address dest, uint256 amount) internal virtual {
        _escrow.deposit{value: amount}(dest);
    }
}


// File @openzeppelin/contracts/token/ERC20/[email protected]


// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * @dev Moves `amount` tokens from the caller's account to `to`.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transfer(address to, uint256 amount) external returns (bool);

    /**
     * @dev Returns the remaining number of tokens that `spender` will be
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * zero by default.
     *
     * This value changes when {approve} or {transferFrom} are called.
     */
    function allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     * that someone may use both the old and the new allowance by unfortunate
     * transaction ordering. One possible solution to mitigate this race
     * condition is to first reduce the spender's allowance to 0 and set the
     * desired value afterwards:
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     *
     * Emits an {Approval} event.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Moves `amount` tokens from `from` to `to` using the
     * allowance mechanism. `amount` is then deducted from the caller's
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(address from, address to, uint256 amount) external returns (bool);
}


// File @openzeppelin/contracts/token/ERC20/extensions/[email protected]


// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

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

    /**
     * @dev Returns the decimals places of the token.
     */
    function decimals() external view returns (uint8);
}


// File @openzeppelin/contracts/token/ERC20/[email protected]


// OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;



/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 *
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

    mapping(address => mapping(address => uint256)) private _allowances;

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev Returns the name of the token.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the default value returned by this function, unless
     * it's overridden.
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 18;
    }

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     * @dev See {IERC20-approve}.
     *
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

    /**
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * `subtractedValue`.
     */
    function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) {
        address owner = _msgSender();
        uint256 currentAllowance = allowance(owner, spender);
        require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero");
        unchecked {
            _approve(owner, spender, currentAllowance - subtractedValue);
        }

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(address from, address to, uint256 amount) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * the total supply.
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

        _beforeTokenTransfer(account, address(0), amount);

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(address owner, address spender, uint256 amount) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(address owner, address spender, uint256 amount) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

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

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {}
}


// File @openzeppelin/contracts/token/ERC20/extensions/[email protected]


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol)

pragma solidity ^0.8.0;


/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `amount`.
     */
    function burnFrom(address account, uint256 amount) public virtual {
        _spendAllowance(account, _msgSender(), amount);
        _burn(account, amount);
    }
}


// File @openzeppelin/contracts/utils/structs/[email protected]


// OpenZeppelin Contracts (last updated v4.9.0) (utils/structs/EnumerableSet.sol)
// This file was procedurally generated from scripts/generate/templates/EnumerableSet.js.

pragma solidity ^0.8.0;

/**
 * @dev Library for managing
 * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive
 * types.
 *
 * Sets have the following properties:
 *
 * - Elements are added, removed, and checked for existence in constant time
 * (O(1)).
 * - Elements are enumerated in O(n). No guarantees are made on the ordering.
 *
 * ```solidity
 * contract Example {
 *     // Add the library methods
 *     using EnumerableSet for EnumerableSet.AddressSet;
 *
 *     // Declare a set state variable
 *     EnumerableSet.AddressSet private mySet;
 * }
 * ```
 *
 * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`)
 * and `uint256` (`UintSet`) are supported.
 *
 * [WARNING]
 * ====
 * Trying to delete such a structure from storage will likely result in data corruption, rendering the structure
 * unusable.
 * See https://github.com/ethereum/solidity/pull/11843[ethereum/solidity#11843] for more info.
 *
 * In order to clean an EnumerableSet, you can either remove all elements one by one or create a fresh instance using an
 * array of EnumerableSet.
 * ====
 */
library EnumerableSet {
    // To implement this library for multiple types with as little code
    // repetition as possible, we write it in terms of a generic Set type with
    // bytes32 values.
    // The Set implementation uses private functions, and user-facing
    // implementations (such as AddressSet) are just wrappers around the
    // underlying Set.
    // This means that we can only create new EnumerableSets for types that fit
    // in bytes32.

    struct Set {
        // Storage of set values
        bytes32[] _values;
        // Position of the value in the `values` array, plus 1 because index 0
        // means a value is not in the set.
        mapping(bytes32 => uint256) _indexes;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function _add(Set storage set, bytes32 value) private returns (bool) {
        if (!_contains(set, value)) {
            set._values.push(value);
            // The value is stored at length-1, but we add 1 to all indexes
            // and use 0 as a sentinel value
            set._indexes[value] = set._values.length;
            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function _remove(Set storage set, bytes32 value) private returns (bool) {
        // We read and store the value's index to prevent multiple reads from the same storage slot
        uint256 valueIndex = set._indexes[value];

        if (valueIndex != 0) {
            // Equivalent to contains(set, value)
            // To delete an element from the _values array in O(1), we swap the element to delete with the last one in
            // the array, and then remove the last element (sometimes called as 'swap and pop').
            // This modifies the order of the array, as noted in {at}.

            uint256 toDeleteIndex = valueIndex - 1;
            uint256 lastIndex = set._values.length - 1;

            if (lastIndex != toDeleteIndex) {
                bytes32 lastValue = set._values[lastIndex];

                // Move the last value to the index where the value to delete is
                set._values[toDeleteIndex] = lastValue;
                // Update the index for the moved value
                set._indexes[lastValue] = valueIndex; // Replace lastValue's index to valueIndex
            }

            // Delete the slot where the moved value was stored
            set._values.pop();

            // Delete the index for the deleted slot
            delete set._indexes[value];

            return true;
        } else {
            return false;
        }
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function _contains(Set storage set, bytes32 value) private view returns (bool) {
        return set._indexes[value] != 0;
    }

    /**
     * @dev Returns the number of values on the set. O(1).
     */
    function _length(Set storage set) private view returns (uint256) {
        return set._values.length;
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function _at(Set storage set, uint256 index) private view returns (bytes32) {
        return set._values[index];
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function _values(Set storage set) private view returns (bytes32[] memory) {
        return set._values;
    }

    // Bytes32Set

    struct Bytes32Set {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _add(set._inner, value);
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(Bytes32Set storage set, bytes32 value) internal returns (bool) {
        return _remove(set._inner, value);
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(Bytes32Set storage set, bytes32 value) internal view returns (bool) {
        return _contains(set._inner, value);
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(Bytes32Set storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(Bytes32Set storage set, uint256 index) internal view returns (bytes32) {
        return _at(set._inner, index);
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function values(Bytes32Set storage set) internal view returns (bytes32[] memory) {
        bytes32[] memory store = _values(set._inner);
        bytes32[] memory result;

        /// @solidity memory-safe-assembly
        assembly {
            result := store
        }

        return result;
    }

    // AddressSet

    struct AddressSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(AddressSet storage set, address value) internal returns (bool) {
        return _add(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(AddressSet storage set, address value) internal returns (bool) {
        return _remove(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(AddressSet storage set, address value) internal view returns (bool) {
        return _contains(set._inner, bytes32(uint256(uint160(value))));
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(AddressSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(AddressSet storage set, uint256 index) internal view returns (address) {
        return address(uint160(uint256(_at(set._inner, index))));
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function values(AddressSet storage set) internal view returns (address[] memory) {
        bytes32[] memory store = _values(set._inner);
        address[] memory result;

        /// @solidity memory-safe-assembly
        assembly {
            result := store
        }

        return result;
    }

    // UintSet

    struct UintSet {
        Set _inner;
    }

    /**
     * @dev Add a value to a set. O(1).
     *
     * Returns true if the value was added to the set, that is if it was not
     * already present.
     */
    function add(UintSet storage set, uint256 value) internal returns (bool) {
        return _add(set._inner, bytes32(value));
    }

    /**
     * @dev Removes a value from a set. O(1).
     *
     * Returns true if the value was removed from the set, that is if it was
     * present.
     */
    function remove(UintSet storage set, uint256 value) internal returns (bool) {
        return _remove(set._inner, bytes32(value));
    }

    /**
     * @dev Returns true if the value is in the set. O(1).
     */
    function contains(UintSet storage set, uint256 value) internal view returns (bool) {
        return _contains(set._inner, bytes32(value));
    }

    /**
     * @dev Returns the number of values in the set. O(1).
     */
    function length(UintSet storage set) internal view returns (uint256) {
        return _length(set._inner);
    }

    /**
     * @dev Returns the value stored at position `index` in the set. O(1).
     *
     * Note that there are no guarantees on the ordering of values inside the
     * array, and it may change when more values are added or removed.
     *
     * Requirements:
     *
     * - `index` must be strictly less than {length}.
     */
    function at(UintSet storage set, uint256 index) internal view returns (uint256) {
        return uint256(_at(set._inner, index));
    }

    /**
     * @dev Return the entire set in an array
     *
     * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed
     * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that
     * this function has an unbounded cost, and using it as part of a state-changing function may render the function
     * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block.
     */
    function values(UintSet storage set) internal view returns (uint256[] memory) {
        bytes32[] memory store = _values(set._inner);
        uint256[] memory result;

        /// @solidity memory-safe-assembly
        assembly {
            result := store
        }

        return result;
    }
}


// File contracts/ChaosCoin.sol


pragma solidity ^0.8.0;
contract ChaosCoin is ERC20, PullPayment, ERC20Burnable, Ownable {

    address public contractOwner;         

    IERC20 public tokenAddress;
    // (Eth * numerator) / denominator = Chaos
    uint256 nativeXChangeNumerator =1000;
    uint256 nativeXChangeDenominator =1;

    // (Token * numerator) / denominator = Chaos
    uint256 tokenXChangeNumerator = 1900;
    uint256 tokenXChangeDenominator = 1000000;

    bool mintable = true;
    bool mintable2 = true;
    
    uint256 tier1 = 50000000000000000;
    uint256 tier2 =100000000000000000;
    uint256 tier3 =200000000000000000;
    uint256 tier4 =500000000000000000;
    uint256 tier5 =1000000000000000000;

   
    uint256 tier1c = 50000000000000000000;
    uint256 tier2c =100000000000000000000;
    uint256 tier3c =200000000000000000000;
    uint256 tier4c =500000000000000000000;
    uint256 tier5c =1000000000000000000000;


bool internal chaosLock;

modifier chaosGuard() {
     require(!chaosLock);
     chaosLock = true;
      _;
      chaosLock= false;
  }

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

    constructor() ERC20("Chaos Coin Club", "CHAOS") {
        contractOwner = msg.sender;       // address of the token owner        
        // mint 1 ETH worth of tokens to deployer
        _mint(msg.sender, (nativeXChangeNumerator*10**18)/nativeXChangeDenominator);
    }


    function chaosUnlock() external onlyOwner callerIsUser chaosGuard {
        chaosLock = false;
    }

    function checkChaosLock() public view returns (bool) {
      return chaosLock;
    }


    function setMintable(bool newState) external onlyOwner callerIsUser {
        mintable = newState;
    }
    function setMintable2(bool newState) external onlyOwner callerIsUser {
        mintable2 = newState;
    }

    function setStartingTier(uint256 _newTier1) external onlyOwner callerIsUser {
        tier1 = _newTier1;
        tier2 = _newTier1*2;
        tier3 = _newTier1*4;
        tier4 = _newTier1*10;
        tier5 = _newTier1*20;
    }

    function setTokenStartingTier(uint256 _newTier1) external onlyOwner callerIsUser {

        tier1c = _newTier1;
        tier2c = _newTier1*2;
        tier3c = _newTier1*4;
        tier4c = _newTier1*10;
        tier5c = _newTier1*20;
    }


    function setNativeXChangeNumerator(uint256 _newNumerator) external onlyOwner callerIsUser {
        nativeXChangeNumerator = _newNumerator;
    }

    function setNativeXChangeDenominator(uint256 _newDenominator) external onlyOwner callerIsUser {
        nativeXChangeDenominator = _newDenominator;
    }

    function setTokenXChangeNumerator(uint256 _newNumerator) external onlyOwner callerIsUser {
        tokenXChangeNumerator = _newNumerator;
    }

    function setTokenXChangeDenominator(uint256 _newDenominator) external onlyOwner callerIsUser {
        tokenXChangeDenominator = _newDenominator;
    }

    function mint(address to, uint256 value) 
        public 
        onlyOwner
        callerIsUser 
        returns (bool)
    {
        require(mintable == true, "Minting is not currently Enabled");
        _mint(to, value*10**18);
        return true;
    }


    // this function is called when someone sends ether to the 
    // token contract
    receive() external payable callerIsUser {        
        require(mintable == true, "Minting is not currently Enabled");
        // msg.value (in Wei) is the ether sent to the 
        // token contract
        // msg.sender is the account that sends the ether to the 
        // token contract
        // chaosAmount is the amount of ChaosCoins bought by the sender
        uint256 chaosOut = 0;
        uint256 chaosAmount = (msg.value * nativeXChangeNumerator)/nativeXChangeDenominator;

        if (msg.value > tier1-1 && msg.value < tier2)
        {
            chaosAmount = (chaosAmount *105)/100;
        }
        else if (msg.value > tier2-1 && msg.value < tier3)
        {
            chaosAmount = (chaosAmount *11)/10;
        }
        else if (msg.value > tier3-1 && msg.value < tier4)
        {
            chaosAmount = (chaosAmount *12)/10;
        }
        else if (msg.value > tier4-1 && msg.value < tier5)
        {
            chaosAmount = (chaosAmount *13)/10;
        }
        else if (msg.value > tier5-1)
        {
            chaosAmount = (chaosAmount *14)/10;
        }


        // send the ether earned to the token owner
        payable(contractOwner).transfer(msg.value);
        chaosOut = chaosAmount;
 
        _mint(msg.sender, chaosOut);
        
    }


    function withdrawPayments(address payable payee) public override onlyOwner callerIsUser {
        super.withdrawPayments(payee);
    }

    function setContractOwner(address _newContractOwner) public onlyOwner callerIsUser {
        contractOwner = _newContractOwner;
    }

   
     /// mint with other Token
     function mintExactChaosFromToken(uint256 exactChaos) public chaosGuard callerIsUser {
        require(mintable2 == true, "Minting with ERC20 is not currently Enabled");
        require(exactChaos > 0, "mintExactChaosFromToken exactChaos must be greater than Zero");        
        uint256 chaosOut = 0;

        uint256 otherTokenAmount = (exactChaos * tokenXChangeDenominator)/tokenXChangeNumerator;
        
        
        if (exactChaos > tier1c-1 && exactChaos < tier2c)
        {
            otherTokenAmount = (otherTokenAmount *100)/105;
        }
        else if (exactChaos > tier2c-1 && exactChaos < tier3c)
        {
            otherTokenAmount = (otherTokenAmount *10)/11;
        }
        else if (exactChaos > tier3c-1 && exactChaos < tier4c)
        {
            otherTokenAmount = (otherTokenAmount *10)/12;
        }
        else if (exactChaos > tier4c-1 && exactChaos < tier5c)
        {
            otherTokenAmount = (otherTokenAmount *10)/13;
        }
        else if (exactChaos > tier5c-1)
        {
            otherTokenAmount = (otherTokenAmount *10)/14;
        }

        tokenAddress.transferFrom(msg.sender, address(this), otherTokenAmount);
        chaosOut = exactChaos;

        _mint(msg.sender, chaosOut);

    }


    function withdrawPurchaseToken() public onlyOwner chaosGuard callerIsUser {
        tokenAddress.transfer(contractOwner, tokenAddress.balanceOf(address(this)));
    }

    function setPurchaseTokenAddress(address _newAddress) external onlyOwner callerIsUser {
        tokenAddress = IERC20(_newAddress);
    }

}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"chaosUnlock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"checkChaosLock","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"mint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"exactChaos","type":"uint256"}],"name":"mintExactChaosFromToken","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":[{"internalType":"address","name":"dest","type":"address"}],"name":"payments","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newContractOwner","type":"address"}],"name":"setContractOwner","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"newState","type":"bool"}],"name":"setMintable","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"newState","type":"bool"}],"name":"setMintable2","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newDenominator","type":"uint256"}],"name":"setNativeXChangeDenominator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newNumerator","type":"uint256"}],"name":"setNativeXChangeNumerator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newAddress","type":"address"}],"name":"setPurchaseTokenAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newTier1","type":"uint256"}],"name":"setStartingTier","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newTier1","type":"uint256"}],"name":"setTokenStartingTier","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newDenominator","type":"uint256"}],"name":"setTokenXChangeDenominator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newNumerator","type":"uint256"}],"name":"setTokenXChangeNumerator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenAddress","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"payee","type":"address"}],"name":"withdrawPayments","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawPurchaseToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60a06040526103e8600855600160095561076c600a55620f4240600b55600c805461ffff191661010117905566b1a2bc2ec50000600d5567016345785d8a0000600e556702c68af0bb140000600f556706f05b59d3b20000601055670de0b6b3a76400006011556802b5e3af16b188000060125568056bc75e2d63100000601355680ad78ebc5ac6200000601455681b1ae4d6e2ef500000601555683635c9adc5dea00000601655348015620000b457600080fd5b506040518060400160405280600f81526020016e21b430b7b99021b7b4b71021b63ab160891b815250604051806040016040528060058152602001644348414f5360d81b81525081600390816200010c91906200037e565b5060046200011b82826200037e565b5050506040516200012c90620002cc565b604051809103906000f08015801562000149573d6000803e3d6000fd5b506001600160a01b03166080526200016133620001af565b600680546001600160a01b03191633908117909155600954600854620001a99291906200019790670de0b6b3a764000062000460565b620001a3919062000480565b62000201565b620004b9565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6001600160a01b0382166200025c5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060026000828254620002709190620004a3565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b6105a9806200217683390190565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200030557607f821691505b6020821081036200032657634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620002c757600081815260208120601f850160051c81016020861015620003555750805b601f850160051c820191505b81811015620003765782815560010162000361565b505050505050565b81516001600160401b038111156200039a576200039a620002da565b620003b281620003ab8454620002f0565b846200032c565b602080601f831160018114620003ea5760008415620003d15750858301515b600019600386901b1c1916600185901b17855562000376565b600085815260208120601f198616915b828110156200041b57888601518255948401946001909101908401620003fa565b50858210156200043a5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b80820281158282048414176200047a576200047a6200044a565b92915050565b6000826200049e57634e487b7160e01b600052601260045260246000fd5b500490565b808201808211156200047a576200047a6200044a565b608051611c9a620004dc6000396000818161114c01526117e60152611c9a6000f3fe6080604052600436106102085760003560e01c80637e8c397611610118578063a9059cbb116100a0578063e2982c211161006f578063e2982c21146107f6578063e5dd6b9114610816578063ec6acafa1461082b578063edce5d631461084b578063f2fde38b1461086b57600080fd5b8063a9059cbb14610750578063c192df1b14610770578063ce606ee014610790578063dd62ed3e146107b057600080fd5b80639ac38d68116100e75780639ac38d68146106b05780639d76ea58146106d05780639ffa2e4f146106f0578063a34d42b814610710578063a457c2d71461073057600080fd5b80637e8c3976146106345780638da5cb5b1461064957806395d89b411461067b5780639ab5f0ad1461069057600080fd5b8063395093511161019b578063565215e11161016a578063565215e11461059157806370a08231146105b1578063715018a6146105e7578063720ee791146105fc57806379cc67901461061457600080fd5b806339509351146105115780633dcf4c811461053157806340c10f191461055157806342966c681461057157600080fd5b8063285d70d4116101d7578063285d70d414610495578063298489d2146104b5578063313ce567146104d557806331b3eb94146104f157600080fd5b806306fdde03146103fb578063095ea7b31461042657806318160ddd1461045657806323b872dd1461047557600080fd5b366103f6573233146102355760405162461bcd60e51b815260040161022c906119c9565b60405180910390fd5b600c5460ff16151560011461028c5760405162461bcd60e51b815260206004820181905260248201527f4d696e74696e67206973206e6f742063757272656e746c7920456e61626c6564604482015260640161022c565b600080600954600854346102a09190611a24565b6102aa9190611a3b565b90506001600d546102bb9190611a5d565b341180156102ca5750600e5434105b156102ed5760646102dc826069611a24565b6102e69190611a3b565b90506103ad565b6001600e546102fc9190611a5d565b3411801561030b5750600f5434105b1561031d57600a6102dc82600b611a24565b6001600f5461032c9190611a5d565b3411801561033b575060105434105b1561034d57600a6102dc82600c611a24565b600160105461035c9190611a5d565b3411801561036b575060115434105b1561037d57600a6102dc82600d611a24565b600160115461038c9190611a5d565b3411156103ad57600a6103a082600e611a24565b6103aa9190611a3b565b90505b6006546040516001600160a01b03909116903480156108fc02916000818181858888f193505050501580156103e6573d6000803e3d6000fd5b508091506103f4338361088b565b005b600080fd5b34801561040757600080fd5b5061041061094b565b60405161041d9190611a70565b60405180910390f35b34801561043257600080fd5b50610446610441366004611ad3565b6109dd565b604051901515815260200161041d565b34801561046257600080fd5b506002545b60405190815260200161041d565b34801561048157600080fd5b50610446610490366004611aff565b6109f7565b3480156104a157600080fd5b506103f46104b0366004611b4e565b610a1b565b3480156104c157600080fd5b506103f46104d0366004611b72565b610a55565b3480156104e157600080fd5b506040516012815260200161041d565b3480156104fd57600080fd5b506103f461050c366004611b72565b610a9e565b34801561051d57600080fd5b5061044661052c366004611ad3565b610ad1565b34801561053d57600080fd5b506103f461054c366004611b8f565b610b10565b34801561055d57600080fd5b5061044661056c366004611ad3565b610dec565b34801561057d57600080fd5b506103f461058c366004611b8f565b610e90565b34801561059d57600080fd5b506103f46105ac366004611b4e565b610e9a565b3480156105bd57600080fd5b506104676105cc366004611b72565b6001600160a01b031660009081526020819052604090205490565b3480156105f357600080fd5b506103f4610edb565b34801561060857600080fd5b5060175460ff16610446565b34801561062057600080fd5b506103f461062f366004611ad3565b610eef565b34801561064057600080fd5b506103f4610f04565b34801561065557600080fd5b506005546001600160a01b03165b6040516001600160a01b03909116815260200161041d565b34801561068757600080fd5b50610410610f47565b34801561069c57600080fd5b506103f46106ab366004611b8f565b610f56565b3480156106bc57600080fd5b506103f46106cb366004611b8f565b610f82565b3480156106dc57600080fd5b50600754610663906001600160a01b031681565b3480156106fc57600080fd5b506103f461070b366004611b8f565b610fe9565b34801561071c57600080fd5b506103f461072b366004611b72565b611015565b34801561073c57600080fd5b5061044661074b366004611ad3565b61105e565b34801561075c57600080fd5b5061044661076b366004611ad3565b6110f0565b34801561077c57600080fd5b506103f461078b366004611b8f565b6110fe565b34801561079c57600080fd5b50600654610663906001600160a01b031681565b3480156107bc57600080fd5b506104676107cb366004611ba8565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561080257600080fd5b50610467610811366004611b72565b61112a565b34801561082257600080fd5b506103f46111b9565b34801561083757600080fd5b506103f4610846366004611b8f565b61130a565b34801561085757600080fd5b506103f4610866366004611b8f565b611336565b34801561087757600080fd5b506103f4610886366004611b72565b61139d565b6001600160a01b0382166108e15760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640161022c565b80600260008282546108f39190611be1565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35b5050565b60606003805461095a90611bf4565b80601f016020809104026020016040519081016040528092919081815260200182805461098690611bf4565b80156109d35780601f106109a8576101008083540402835291602001916109d3565b820191906000526020600020905b8154815290600101906020018083116109b657829003601f168201915b5050505050905090565b6000336109eb818585611413565b60019150505b92915050565b600033610a05858285611537565b610a108585856115c9565b506001949350505050565b610a2361176d565b323314610a425760405162461bcd60e51b815260040161022c906119c9565b600c805460ff1916911515919091179055565b610a5d61176d565b323314610a7c5760405162461bcd60e51b815260040161022c906119c9565b600780546001600160a01b0319166001600160a01b0392909216919091179055565b610aa661176d565b323314610ac55760405162461bcd60e51b815260040161022c906119c9565b610ace816117c7565b50565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091906109eb9082908690610b0b908790611be1565b611413565b60175460ff1615610b2057600080fd5b6017805460ff19166001179055323314610b4c5760405162461bcd60e51b815260040161022c906119c9565b600c5460ff610100909104161515600114610bbd5760405162461bcd60e51b815260206004820152602b60248201527f4d696e74696e672077697468204552433230206973206e6f742063757272656e60448201526a1d1b1e48115b98589b195960aa1b606482015260840161022c565b60008111610c335760405162461bcd60e51b815260206004820152603c60248201527f6d696e7445786163744368616f7346726f6d546f6b656e20657861637443686160448201527f6f73206d7573742062652067726561746572207468616e205a65726f00000000606482015260840161022c565b600080600a54600b5484610c479190611a24565b610c519190611a3b565b90506001601254610c629190611a5d565b83118015610c71575060135483105b15610c94576069610c83826064611a24565b610c8d9190611a3b565b9050610d54565b6001601354610ca39190611a5d565b83118015610cb2575060145483105b15610cc457600b610c8382600a611a24565b6001601454610cd39190611a5d565b83118015610ce2575060155483105b15610cf457600c610c8382600a611a24565b6001601554610d039190611a5d565b83118015610d12575060165483105b15610d2457600d610c8382600a611a24565b6001601654610d339190611a5d565b831115610d5457600e610d4782600a611a24565b610d519190611a3b565b90505b6007546040516323b872dd60e01b8152336004820152306024820152604481018390526001600160a01b03909116906323b872dd906064016020604051808303816000875af1158015610dab573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dcf9190611c2e565b50829150610ddd338361088b565b50506017805460ff1916905550565b6000610df661176d565b323314610e155760405162461bcd60e51b815260040161022c906119c9565b600c5460ff161515600114610e6c5760405162461bcd60e51b815260206004820181905260248201527f4d696e74696e67206973206e6f742063757272656e746c7920456e61626c6564604482015260640161022c565b610e8783610e8284670de0b6b3a7640000611a24565b61088b565b50600192915050565b610ace3382611845565b610ea261176d565b323314610ec15760405162461bcd60e51b815260040161022c906119c9565b600c80549115156101000261ff0019909216919091179055565b610ee361176d565b610eed6000611977565b565b610efa823383611537565b6109478282611845565b610f0c61176d565b323314610f2b5760405162461bcd60e51b815260040161022c906119c9565b60175460ff1615610f3b57600080fd5b6017805460ff19169055565b60606004805461095a90611bf4565b610f5e61176d565b323314610f7d5760405162461bcd60e51b815260040161022c906119c9565b600955565b610f8a61176d565b323314610fa95760405162461bcd60e51b815260040161022c906119c9565b6012819055610fb9816002611a24565b601355610fc7816004611a24565b601455610fd581600a611a24565b601555610fe3816014611a24565b60165550565b610ff161176d565b3233146110105760405162461bcd60e51b815260040161022c906119c9565b600a55565b61101d61176d565b32331461103c5760405162461bcd60e51b815260040161022c906119c9565b600680546001600160a01b0319166001600160a01b0392909216919091179055565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909190838110156110e35760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161022c565b610a108286868403611413565b6000336109eb8185856115c9565b61110661176d565b3233146111255760405162461bcd60e51b815260040161022c906119c9565b600b55565b6040516371d4ed8d60e11b81526001600160a01b0382811660048301526000917f00000000000000000000000000000000000000000000000000000000000000009091169063e3a9db1a90602401602060405180830381865afa158015611195573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109f19190611c4b565b6111c161176d565b60175460ff16156111d157600080fd5b6017805460ff191660011790553233146111fd5760405162461bcd60e51b815260040161022c906119c9565b6007546006546040516370a0823160e01b81523060048201526001600160a01b039283169263a9059cbb92169083906370a0823190602401602060405180830381865afa158015611252573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112769190611c4b565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303816000875af11580156112d9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112fd9190611c2e565b506017805460ff19169055565b61131261176d565b3233146113315760405162461bcd60e51b815260040161022c906119c9565b600855565b61133e61176d565b32331461135d5760405162461bcd60e51b815260040161022c906119c9565b600d81905561136d816002611a24565b600e5561137b816004611a24565b600f5561138981600a611a24565b601055611397816014611a24565b60115550565b6113a561176d565b6001600160a01b03811661140a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161022c565b610ace81611977565b6001600160a01b0383166114755760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161022c565b6001600160a01b0382166114d65760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161022c565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383811660009081526001602090815260408083209386168352929052205460001981146115c357818110156115b65760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161022c565b6115c38484848403611413565b50505050565b6001600160a01b03831661162d5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161022c565b6001600160a01b03821661168f5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161022c565b6001600160a01b038316600090815260208190526040902054818110156117075760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161022c565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36115c3565b6005546001600160a01b03163314610eed5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161022c565b6040516351cff8d960e01b81526001600160a01b0382811660048301527f000000000000000000000000000000000000000000000000000000000000000016906351cff8d990602401600060405180830381600087803b15801561182a57600080fd5b505af115801561183e573d6000803e3d6000fd5b5050505050565b6001600160a01b0382166118a55760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b606482015260840161022c565b6001600160a01b038216600090815260208190526040902054818110156119195760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b606482015260840161022c565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60208082526025908201527f4572726f723a205468652063616c6c657220697320616e6f7468657220636f6e6040820152641d1c9858dd60da1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b80820281158282048414176109f1576109f1611a0e565b600082611a5857634e487b7160e01b600052601260045260246000fd5b500490565b818103818111156109f1576109f1611a0e565b600060208083528351808285015260005b81811015611a9d57858101830151858201604001528201611a81565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610ace57600080fd5b60008060408385031215611ae657600080fd5b8235611af181611abe565b946020939093013593505050565b600080600060608486031215611b1457600080fd5b8335611b1f81611abe565b92506020840135611b2f81611abe565b929592945050506040919091013590565b8015158114610ace57600080fd5b600060208284031215611b6057600080fd5b8135611b6b81611b40565b9392505050565b600060208284031215611b8457600080fd5b8135611b6b81611abe565b600060208284031215611ba157600080fd5b5035919050565b60008060408385031215611bbb57600080fd5b8235611bc681611abe565b91506020830135611bd681611abe565b809150509250929050565b808201808211156109f1576109f1611a0e565b600181811c90821680611c0857607f821691505b602082108103611c2857634e487b7160e01b600052602260045260246000fd5b50919050565b600060208284031215611c4057600080fd5b8151611b6b81611b40565b600060208284031215611c5d57600080fd5b505191905056fea26469706673582212209edc51c139bcb0f2353cf5e99afc948174d29ce2e277ce84c6292021c19b0aa464736f6c63430008120033608060405234801561001057600080fd5b5061001a3361001f565b61006f565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b61052b8061007e6000396000f3fe6080604052600436106100655760003560e01c8063e3a9db1a11610043578063e3a9db1a146100ce578063f2fde38b14610112578063f340fa011461013257600080fd5b806351cff8d91461006a578063715018a61461008c5780638da5cb5b146100a1575b600080fd5b34801561007657600080fd5b5061008a6100853660046104aa565b610145565b005b34801561009857600080fd5b5061008a6101bc565b3480156100ad57600080fd5b506000546040516001600160a01b0390911681526020015b60405180910390f35b3480156100da57600080fd5b506101046100e93660046104aa565b6001600160a01b031660009081526001602052604090205490565b6040519081526020016100c5565b34801561011e57600080fd5b5061008a61012d3660046104aa565b6101d0565b61008a6101403660046104aa565b61024e565b61014d6102c0565b6001600160a01b0381166000818152600160205260408120805491905590610175908261031a565b816001600160a01b03167f7084f5476618d8e60b11ef0d7d3f06914655adb8793e28ff7f018d4c76d505d5826040516101b091815260200190565b60405180910390a25050565b6101c46102c0565b6101ce6000610438565b565b6101d86102c0565b6001600160a01b0381166102425760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084015b60405180910390fd5b61024b81610438565b50565b6102566102c0565b6001600160a01b0381166000908152600160205260408120805434928392916102809084906104ce565b90915550506040518181526001600160a01b038316907f2da466a7b24304f47e87fa2e1e5a81b9831ce54fec19055ce277ca2f39ba42c4906020016101b0565b6000546001600160a01b031633146101ce5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610239565b8047101561036a5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e63650000006044820152606401610239565b6000826001600160a01b03168260405160006040518083038185875af1925050503d80600081146103b7576040519150601f19603f3d011682016040523d82523d6000602084013e6103bc565b606091505b50509050806104335760405162461bcd60e51b815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d617920686176652072657665727465640000000000006064820152608401610239565b505050565b600080546001600160a01b0383811673ffffffffffffffffffffffffffffffffffffffff19831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038116811461024b57600080fd5b6000602082840312156104bc57600080fd5b81356104c781610495565b9392505050565b808201808211156104ef57634e487b7160e01b600052601160045260246000fd5b9291505056fea2646970667358221220908684117741395e55723776332d53795ade5d3b0ab8d12fd39be853b87e59a264736f6c63430008120033

Deployed Bytecode

0x6080604052600436106102085760003560e01c80637e8c397611610118578063a9059cbb116100a0578063e2982c211161006f578063e2982c21146107f6578063e5dd6b9114610816578063ec6acafa1461082b578063edce5d631461084b578063f2fde38b1461086b57600080fd5b8063a9059cbb14610750578063c192df1b14610770578063ce606ee014610790578063dd62ed3e146107b057600080fd5b80639ac38d68116100e75780639ac38d68146106b05780639d76ea58146106d05780639ffa2e4f146106f0578063a34d42b814610710578063a457c2d71461073057600080fd5b80637e8c3976146106345780638da5cb5b1461064957806395d89b411461067b5780639ab5f0ad1461069057600080fd5b8063395093511161019b578063565215e11161016a578063565215e11461059157806370a08231146105b1578063715018a6146105e7578063720ee791146105fc57806379cc67901461061457600080fd5b806339509351146105115780633dcf4c811461053157806340c10f191461055157806342966c681461057157600080fd5b8063285d70d4116101d7578063285d70d414610495578063298489d2146104b5578063313ce567146104d557806331b3eb94146104f157600080fd5b806306fdde03146103fb578063095ea7b31461042657806318160ddd1461045657806323b872dd1461047557600080fd5b366103f6573233146102355760405162461bcd60e51b815260040161022c906119c9565b60405180910390fd5b600c5460ff16151560011461028c5760405162461bcd60e51b815260206004820181905260248201527f4d696e74696e67206973206e6f742063757272656e746c7920456e61626c6564604482015260640161022c565b600080600954600854346102a09190611a24565b6102aa9190611a3b565b90506001600d546102bb9190611a5d565b341180156102ca5750600e5434105b156102ed5760646102dc826069611a24565b6102e69190611a3b565b90506103ad565b6001600e546102fc9190611a5d565b3411801561030b5750600f5434105b1561031d57600a6102dc82600b611a24565b6001600f5461032c9190611a5d565b3411801561033b575060105434105b1561034d57600a6102dc82600c611a24565b600160105461035c9190611a5d565b3411801561036b575060115434105b1561037d57600a6102dc82600d611a24565b600160115461038c9190611a5d565b3411156103ad57600a6103a082600e611a24565b6103aa9190611a3b565b90505b6006546040516001600160a01b03909116903480156108fc02916000818181858888f193505050501580156103e6573d6000803e3d6000fd5b508091506103f4338361088b565b005b600080fd5b34801561040757600080fd5b5061041061094b565b60405161041d9190611a70565b60405180910390f35b34801561043257600080fd5b50610446610441366004611ad3565b6109dd565b604051901515815260200161041d565b34801561046257600080fd5b506002545b60405190815260200161041d565b34801561048157600080fd5b50610446610490366004611aff565b6109f7565b3480156104a157600080fd5b506103f46104b0366004611b4e565b610a1b565b3480156104c157600080fd5b506103f46104d0366004611b72565b610a55565b3480156104e157600080fd5b506040516012815260200161041d565b3480156104fd57600080fd5b506103f461050c366004611b72565b610a9e565b34801561051d57600080fd5b5061044661052c366004611ad3565b610ad1565b34801561053d57600080fd5b506103f461054c366004611b8f565b610b10565b34801561055d57600080fd5b5061044661056c366004611ad3565b610dec565b34801561057d57600080fd5b506103f461058c366004611b8f565b610e90565b34801561059d57600080fd5b506103f46105ac366004611b4e565b610e9a565b3480156105bd57600080fd5b506104676105cc366004611b72565b6001600160a01b031660009081526020819052604090205490565b3480156105f357600080fd5b506103f4610edb565b34801561060857600080fd5b5060175460ff16610446565b34801561062057600080fd5b506103f461062f366004611ad3565b610eef565b34801561064057600080fd5b506103f4610f04565b34801561065557600080fd5b506005546001600160a01b03165b6040516001600160a01b03909116815260200161041d565b34801561068757600080fd5b50610410610f47565b34801561069c57600080fd5b506103f46106ab366004611b8f565b610f56565b3480156106bc57600080fd5b506103f46106cb366004611b8f565b610f82565b3480156106dc57600080fd5b50600754610663906001600160a01b031681565b3480156106fc57600080fd5b506103f461070b366004611b8f565b610fe9565b34801561071c57600080fd5b506103f461072b366004611b72565b611015565b34801561073c57600080fd5b5061044661074b366004611ad3565b61105e565b34801561075c57600080fd5b5061044661076b366004611ad3565b6110f0565b34801561077c57600080fd5b506103f461078b366004611b8f565b6110fe565b34801561079c57600080fd5b50600654610663906001600160a01b031681565b3480156107bc57600080fd5b506104676107cb366004611ba8565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b34801561080257600080fd5b50610467610811366004611b72565b61112a565b34801561082257600080fd5b506103f46111b9565b34801561083757600080fd5b506103f4610846366004611b8f565b61130a565b34801561085757600080fd5b506103f4610866366004611b8f565b611336565b34801561087757600080fd5b506103f4610886366004611b72565b61139d565b6001600160a01b0382166108e15760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640161022c565b80600260008282546108f39190611be1565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35b5050565b60606003805461095a90611bf4565b80601f016020809104026020016040519081016040528092919081815260200182805461098690611bf4565b80156109d35780601f106109a8576101008083540402835291602001916109d3565b820191906000526020600020905b8154815290600101906020018083116109b657829003601f168201915b5050505050905090565b6000336109eb818585611413565b60019150505b92915050565b600033610a05858285611537565b610a108585856115c9565b506001949350505050565b610a2361176d565b323314610a425760405162461bcd60e51b815260040161022c906119c9565b600c805460ff1916911515919091179055565b610a5d61176d565b323314610a7c5760405162461bcd60e51b815260040161022c906119c9565b600780546001600160a01b0319166001600160a01b0392909216919091179055565b610aa661176d565b323314610ac55760405162461bcd60e51b815260040161022c906119c9565b610ace816117c7565b50565b3360008181526001602090815260408083206001600160a01b03871684529091528120549091906109eb9082908690610b0b908790611be1565b611413565b60175460ff1615610b2057600080fd5b6017805460ff19166001179055323314610b4c5760405162461bcd60e51b815260040161022c906119c9565b600c5460ff610100909104161515600114610bbd5760405162461bcd60e51b815260206004820152602b60248201527f4d696e74696e672077697468204552433230206973206e6f742063757272656e60448201526a1d1b1e48115b98589b195960aa1b606482015260840161022c565b60008111610c335760405162461bcd60e51b815260206004820152603c60248201527f6d696e7445786163744368616f7346726f6d546f6b656e20657861637443686160448201527f6f73206d7573742062652067726561746572207468616e205a65726f00000000606482015260840161022c565b600080600a54600b5484610c479190611a24565b610c519190611a3b565b90506001601254610c629190611a5d565b83118015610c71575060135483105b15610c94576069610c83826064611a24565b610c8d9190611a3b565b9050610d54565b6001601354610ca39190611a5d565b83118015610cb2575060145483105b15610cc457600b610c8382600a611a24565b6001601454610cd39190611a5d565b83118015610ce2575060155483105b15610cf457600c610c8382600a611a24565b6001601554610d039190611a5d565b83118015610d12575060165483105b15610d2457600d610c8382600a611a24565b6001601654610d339190611a5d565b831115610d5457600e610d4782600a611a24565b610d519190611a3b565b90505b6007546040516323b872dd60e01b8152336004820152306024820152604481018390526001600160a01b03909116906323b872dd906064016020604051808303816000875af1158015610dab573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dcf9190611c2e565b50829150610ddd338361088b565b50506017805460ff1916905550565b6000610df661176d565b323314610e155760405162461bcd60e51b815260040161022c906119c9565b600c5460ff161515600114610e6c5760405162461bcd60e51b815260206004820181905260248201527f4d696e74696e67206973206e6f742063757272656e746c7920456e61626c6564604482015260640161022c565b610e8783610e8284670de0b6b3a7640000611a24565b61088b565b50600192915050565b610ace3382611845565b610ea261176d565b323314610ec15760405162461bcd60e51b815260040161022c906119c9565b600c80549115156101000261ff0019909216919091179055565b610ee361176d565b610eed6000611977565b565b610efa823383611537565b6109478282611845565b610f0c61176d565b323314610f2b5760405162461bcd60e51b815260040161022c906119c9565b60175460ff1615610f3b57600080fd5b6017805460ff19169055565b60606004805461095a90611bf4565b610f5e61176d565b323314610f7d5760405162461bcd60e51b815260040161022c906119c9565b600955565b610f8a61176d565b323314610fa95760405162461bcd60e51b815260040161022c906119c9565b6012819055610fb9816002611a24565b601355610fc7816004611a24565b601455610fd581600a611a24565b601555610fe3816014611a24565b60165550565b610ff161176d565b3233146110105760405162461bcd60e51b815260040161022c906119c9565b600a55565b61101d61176d565b32331461103c5760405162461bcd60e51b815260040161022c906119c9565b600680546001600160a01b0319166001600160a01b0392909216919091179055565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909190838110156110e35760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b606482015260840161022c565b610a108286868403611413565b6000336109eb8185856115c9565b61110661176d565b3233146111255760405162461bcd60e51b815260040161022c906119c9565b600b55565b6040516371d4ed8d60e11b81526001600160a01b0382811660048301526000917f000000000000000000000000f56010b2bad3e538dee0963d12649a12af65fc5a9091169063e3a9db1a90602401602060405180830381865afa158015611195573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906109f19190611c4b565b6111c161176d565b60175460ff16156111d157600080fd5b6017805460ff191660011790553233146111fd5760405162461bcd60e51b815260040161022c906119c9565b6007546006546040516370a0823160e01b81523060048201526001600160a01b039283169263a9059cbb92169083906370a0823190602401602060405180830381865afa158015611252573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112769190611c4b565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b1681526001600160a01b03909216600483015260248201526044016020604051808303816000875af11580156112d9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112fd9190611c2e565b506017805460ff19169055565b61131261176d565b3233146113315760405162461bcd60e51b815260040161022c906119c9565b600855565b61133e61176d565b32331461135d5760405162461bcd60e51b815260040161022c906119c9565b600d81905561136d816002611a24565b600e5561137b816004611a24565b600f5561138981600a611a24565b601055611397816014611a24565b60115550565b6113a561176d565b6001600160a01b03811661140a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161022c565b610ace81611977565b6001600160a01b0383166114755760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161022c565b6001600160a01b0382166114d65760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161022c565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b0383811660009081526001602090815260408083209386168352929052205460001981146115c357818110156115b65760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161022c565b6115c38484848403611413565b50505050565b6001600160a01b03831661162d5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161022c565b6001600160a01b03821661168f5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161022c565b6001600160a01b038316600090815260208190526040902054818110156117075760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161022c565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a36115c3565b6005546001600160a01b03163314610eed5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161022c565b6040516351cff8d960e01b81526001600160a01b0382811660048301527f000000000000000000000000f56010b2bad3e538dee0963d12649a12af65fc5a16906351cff8d990602401600060405180830381600087803b15801561182a57600080fd5b505af115801561183e573d6000803e3d6000fd5b5050505050565b6001600160a01b0382166118a55760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b606482015260840161022c565b6001600160a01b038216600090815260208190526040902054818110156119195760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b606482015260840161022c565b6001600160a01b0383166000818152602081815260408083208686039055600280548790039055518581529192917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a3505050565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60208082526025908201527f4572726f723a205468652063616c6c657220697320616e6f7468657220636f6e6040820152641d1c9858dd60da1b606082015260800190565b634e487b7160e01b600052601160045260246000fd5b80820281158282048414176109f1576109f1611a0e565b600082611a5857634e487b7160e01b600052601260045260246000fd5b500490565b818103818111156109f1576109f1611a0e565b600060208083528351808285015260005b81811015611a9d57858101830151858201604001528201611a81565b506000604082860101526040601f19601f8301168501019250505092915050565b6001600160a01b0381168114610ace57600080fd5b60008060408385031215611ae657600080fd5b8235611af181611abe565b946020939093013593505050565b600080600060608486031215611b1457600080fd5b8335611b1f81611abe565b92506020840135611b2f81611abe565b929592945050506040919091013590565b8015158114610ace57600080fd5b600060208284031215611b6057600080fd5b8135611b6b81611b40565b9392505050565b600060208284031215611b8457600080fd5b8135611b6b81611abe565b600060208284031215611ba157600080fd5b5035919050565b60008060408385031215611bbb57600080fd5b8235611bc681611abe565b91506020830135611bd681611abe565b809150509250929050565b808201808211156109f1576109f1611a0e565b600181811c90821680611c0857607f821691505b602082108103611c2857634e487b7160e01b600052602260045260246000fd5b50919050565b600060208284031215611c4057600080fd5b8151611b6b81611b40565b600060208284031215611c5d57600080fd5b505191905056fea26469706673582212209edc51c139bcb0f2353cf5e99afc948174d29ce2e277ce84c6292021c19b0aa464736f6c63430008120033

Deployed Bytecode Sourcemap

49944:6690:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51050:9;51063:10;51050:23;51042:73;;;;-1:-1:-1;;;51042:73:0;;;;;;;:::i;:::-;;;;;;;;;53416:8:::1;::::0;::::1;;:16;;:8:::0;:16:::1;53408:61;;;::::0;-1:-1:-1;;;53408:61:0;;622:2:1;53408:61:0::1;::::0;::::1;604:21:1::0;;;641:18;;;634:30;700:34;680:18;;;673:62;752:18;;53408:61:0::1;420:356:1::0;53408:61:0::1;53731:16;53762:19:::0;53821:24:::1;;53797:22;;53785:9;:34;;;;:::i;:::-;53784:61;;;;:::i;:::-;53762:83;;53880:1;53874:5;;:7;;;;:::i;:::-;53862:9;:19;:40;;;;;53897:5;;53885:9;:17;53862:40;53858:621;;;53961:3;53943:16;:11:::0;53956:3:::1;53943:16;:::i;:::-;53942:22;;;;:::i;:::-;53928:36;;53858:621;;;54013:1;54007:5;;:7;;;;:::i;:::-;53995:9;:19;:40;;;;;54030:5;;54018:9;:17;53995:40;53991:488;;;54093:2;54076:15;:11:::0;54089:2:::1;54076:15;:::i;53991:488::-;54144:1;54138:5;;:7;;;;:::i;:::-;54126:9;:19;:40;;;;;54161:5;;54149:9;:17;54126:40;54122:357;;;54224:2;54207:15;:11:::0;54220:2:::1;54207:15;:::i;54122:357::-;54275:1;54269:5;;:7;;;;:::i;:::-;54257:9;:19;:40;;;;;54292:5;;54280:9;:17;54257:40;54253:226;;;54355:2;54338:15;:11:::0;54351:2:::1;54338:15;:::i;54253:226::-;54406:1;54400:5;;:7;;;;:::i;:::-;54388:9;:19;54384:95;;;54465:2;54448:15;:11:::0;54461:2:::1;54448:15;:::i;:::-;54447:20;;;;:::i;:::-;54433:34;;54384:95;54554:13;::::0;54546:42:::1;::::0;-1:-1:-1;;;;;54554:13:0;;::::1;::::0;54578:9:::1;54546:42:::0;::::1;;;::::0;54554:13:::1;54546:42:::0;54554:13;54546:42;54578:9;54554:13;54546:42;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;54610:11;54599:22;;54635:27;54641:10;54653:8;54635:5;:27::i;:::-;53389:1291:::0;49944:6690;;;;24332:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26692:201;;;;;;;;;;-1:-1:-1;26692:201:0;;;;;:::i;:::-;;:::i;:::-;;;2638:14:1;;2631:22;2613:41;;2601:2;2586:18;26692:201:0;2473:187:1;25461:108:0;;;;;;;;;;-1:-1:-1;25549:12:0;;25461:108;;;2811:25:1;;;2799:2;2784:18;25461:108:0;2665:177:1;27473:261:0;;;;;;;;;;-1:-1:-1;27473:261:0;;;;;:::i;:::-;;:::i;51627:106::-;;;;;;;;;;-1:-1:-1;51627:106:0;;;;;:::i;:::-;;:::i;56490:139::-;;;;;;;;;;-1:-1:-1;56490:139:0;;;;;:::i;:::-;;:::i;25303:93::-;;;;;;;;;;-1:-1:-1;25303:93:0;;25386:2;4071:36:1;;4059:2;4044:18;25303:93:0;3929:184:1;54690:136:0;;;;;;;;;;-1:-1:-1;54690:136:0;;;;;:::i;:::-;;:::i;28143:238::-;;;;;;;;;;-1:-1:-1;28143:238:0;;;;;:::i;:::-;;:::i;55015:1289::-;;;;;;;;;;-1:-1:-1;55015:1289:0;;;;;:::i;:::-;;:::i;52985:266::-;;;;;;;;;;-1:-1:-1;52985:266:0;;;;;:::i;:::-;;:::i;35914:91::-;;;;;;;;;;-1:-1:-1;35914:91:0;;;;;:::i;:::-;;:::i;51739:108::-;;;;;;;;;;-1:-1:-1;51739:108:0;;;;;:::i;:::-;;:::i;25632:127::-;;;;;;;;;;-1:-1:-1;25632:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;25733:18:0;25706:7;25733:18;;;;;;;;;;;;25632:127;2877:103;;;;;;;;;;;;;:::i;51531:86::-;;;;;;;;;;-1:-1:-1;51600:9:0;;;;51531:86;;36324:164;;;;;;;;;;-1:-1:-1;36324:164:0;;;;;:::i;:::-;;:::i;51421:102::-;;;;;;;;;;;;;:::i;2236:87::-;;;;;;;;;;-1:-1:-1;2309:6:0;;-1:-1:-1;;;;;2309:6:0;2236:87;;;-1:-1:-1;;;;;4727:55:1;;;4709:74;;4697:2;4682:18;2236:87:0;4563:226:1;24551:104:0;;;;;;;;;;;;;:::i;52508:155::-;;;;;;;;;;-1:-1:-1;52508:155:0;;;;;:::i;:::-;;:::i;52097:246::-;;;;;;;;;;-1:-1:-1;52097:246:0;;;;;:::i;:::-;;:::i;50064:26::-;;;;;;;;;;-1:-1:-1;50064:26:0;;;;-1:-1:-1;;;;;50064:26:0;;;52671:145;;;;;;;;;;-1:-1:-1;52671:145:0;;;;;:::i;:::-;;:::i;54834:135::-;;;;;;;;;;-1:-1:-1;54834:135:0;;;;;:::i;:::-;;:::i;28884:436::-;;;;;;;;;;-1:-1:-1;28884:436:0;;;;;:::i;:::-;;:::i;25965:193::-;;;;;;;;;;-1:-1:-1;25965:193:0;;;;;:::i;:::-;;:::i;52824:153::-;;;;;;;;;;-1:-1:-1;52824:153:0;;;;;:::i;:::-;;:::i;50018:28::-;;;;;;;;;;-1:-1:-1;50018:28:0;;;;-1:-1:-1;;;;;50018:28:0;;;26221:151;;;;;;;;;;-1:-1:-1;26221:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;26337:18:0;;;26310:7;26337:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;26221:151;17905:112;;;;;;;;;;-1:-1:-1;17905:112:0;;;;;:::i;:::-;;:::i;56314:168::-;;;;;;;;;;;;;:::i;52353:147::-;;;;;;;;;;-1:-1:-1;52353:147:0;;;;;:::i;:::-;;:::i;51855:234::-;;;;;;;;;;-1:-1:-1;51855:234:0;;;;;:::i;:::-;;:::i;3135:201::-;;;;;;;;;;-1:-1:-1;3135:201:0;;;;;:::i;:::-;;:::i;30883:548::-;-1:-1:-1;;;;;30967:21:0;;30959:65;;;;-1:-1:-1;;;30959:65:0;;5634:2:1;30959:65:0;;;5616:21:1;5673:2;5653:18;;;5646:30;5712:33;5692:18;;;5685:61;5763:18;;30959:65:0;5432:355:1;30959:65:0;31115:6;31099:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;31270:18:0;;:9;:18;;;;;;;;;;;:28;;;;;;31325:37;2811:25:1;;;31325:37:0;;2784:18:1;31325:37:0;;;;;;;31375:48;30883:548;;:::o;24332:100::-;24386:13;24419:5;24412:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24332:100;:::o;26692:201::-;26775:4;861:10;26831:32;861:10;26847:7;26856:6;26831:8;:32::i;:::-;26881:4;26874:11;;;26692:201;;;;;:::o;27473:261::-;27570:4;861:10;27628:38;27644:4;861:10;27659:6;27628:15;:38::i;:::-;27677:27;27687:4;27693:2;27697:6;27677:9;:27::i;:::-;-1:-1:-1;27722:4:0;;27473:261;-1:-1:-1;;;;27473:261:0:o;51627:106::-;2122:13;:11;:13::i;:::-;51050:9:::1;51063:10;51050:23;51042:73;;;;-1:-1:-1::0;;;51042:73:0::1;;;;;;;:::i;:::-;51706:8:::2;:19:::0;;-1:-1:-1;;51706:19:0::2;::::0;::::2;;::::0;;;::::2;::::0;;51627:106::o;56490:139::-;2122:13;:11;:13::i;:::-;51050:9:::1;51063:10;51050:23;51042:73;;;;-1:-1:-1::0;;;51042:73:0::1;;;;;;;:::i;:::-;56587:12:::2;:34:::0;;-1:-1:-1;;;;;;56587:34:0::2;-1:-1:-1::0;;;;;56587:34:0;;;::::2;::::0;;;::::2;::::0;;56490:139::o;54690:136::-;2122:13;:11;:13::i;:::-;51050:9:::1;51063:10;51050:23;51042:73;;;;-1:-1:-1::0;;;51042:73:0::1;;;;;;;:::i;:::-;54789:29:::2;54812:5;54789:22;:29::i;:::-;54690:136:::0;:::o;28143:238::-;861:10;28231:4;26337:18;;;:11;:18;;;;;;;;-1:-1:-1;;;;;26337:27:0;;;;;;;;;;28231:4;;861:10;28287:64;;861:10;;26337:27;;28312:38;;28340:10;;28312:38;:::i;:::-;28287:8;:64::i;55015:1289::-;50932:9;;;;50931:10;50923:19;;;;;;50950:9;:16;;-1:-1:-1;;50950:16:0;50962:4;50950:16;;;51050:9:::1;51063:10;51050:23;51042:73;;;;-1:-1:-1::0;;;51042:73:0::1;;;;;;;:::i;:::-;55118:9:::2;::::0;::::2;;::::0;;::::2;;:17;;:9;:17;55110:73;;;::::0;-1:-1:-1;;;55110:73:0;;6509:2:1;55110:73:0::2;::::0;::::2;6491:21:1::0;6548:2;6528:18;;;6521:30;6587:34;6567:18;;;6560:62;-1:-1:-1;;;6638:18:1;;;6631:41;6689:19;;55110:73:0::2;6307:407:1::0;55110:73:0::2;55215:1;55202:10;:14;55194:87;;;::::0;-1:-1:-1;;;55194:87:0;;6921:2:1;55194:87:0::2;::::0;::::2;6903:21:1::0;6960:2;6940:18;;;6933:30;6999:34;6979:18;;;6972:62;7070:30;7050:18;;;7043:58;7118:19;;55194:87:0::2;6719:424:1::0;55194:87:0::2;55300:16;55333:24:::0;55399:21:::2;;55374:23;;55361:10;:36;;;;:::i;:::-;55360:60;;;;:::i;:::-;55333:87;;55475:1;55468:6;;:8;;;;:::i;:::-;55455:10;:21;:44;;;;;55493:6;;55480:10;:19;55455:44;55451:689;;;55568:3;55545:21;:16:::0;55563:3:::2;55545:21;:::i;:::-;55544:27;;;;:::i;:::-;55525:46;;55451:689;;;55622:1;55615:6;;:8;;;;:::i;:::-;55602:10;:21;:44;;;;;55640:6;;55627:10;:19;55602:44;55598:542;;;55714:2;55692:20;:16:::0;55710:2:::2;55692:20;:::i;55598:542::-;55767:1;55760:6;;:8;;;;:::i;:::-;55747:10;:21;:44;;;;;55785:6;;55772:10;:19;55747:44;55743:397;;;55859:2;55837:20;:16:::0;55855:2:::2;55837:20;:::i;55743:397::-;55912:1;55905:6;;:8;;;;:::i;:::-;55892:10;:21;:44;;;;;55930:6;;55917:10;:19;55892:44;55888:252;;;56004:2;55982:20;:16:::0;56000:2:::2;55982:20;:::i;55888:252::-;56057:1;56050:6;;:8;;;;:::i;:::-;56037:10;:21;56033:107;;;56126:2;56104:20;:16:::0;56122:2:::2;56104:20;:::i;:::-;56103:25;;;;:::i;:::-;56084:44;;56033:107;56152:12;::::0;:70:::2;::::0;-1:-1:-1;;;56152:70:0;;56178:10:::2;56152:70;::::0;::::2;7411:34:1::0;56198:4:0::2;7461:18:1::0;;;7454:43;7513:18;;;7506:34;;;-1:-1:-1;;;;;56152:12:0;;::::2;::::0;:25:::2;::::0;7323:18:1;;56152:70:0::2;;;;;;;;;;;;;;;;;;::::0;::::2;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;56244:10;56233:21;;56267:27;56273:10;56285:8;56267:5;:27::i;:::-;-1:-1:-1::0;;50985:9:0;:16;;-1:-1:-1;;50985:16:0;;;-1:-1:-1;55015:1289:0:o;52985:266::-;53104:4;2122:13;:11;:13::i;:::-;51050:9:::1;51063:10;51050:23;51042:73;;;;-1:-1:-1::0;;;51042:73:0::1;;;;;;;:::i;:::-;53134:8:::2;::::0;::::2;;:16;;:8:::0;:16:::2;53126:61;;;::::0;-1:-1:-1;;;53126:61:0;;622:2:1;53126:61:0::2;::::0;::::2;604:21:1::0;;;641:18;;;634:30;700:34;680:18;;;673:62;752:18;;53126:61:0::2;420:356:1::0;53126:61:0::2;53198:23;53204:2:::0;53208:12:::2;:5:::0;53214:6:::2;53208:12;:::i;:::-;53198:5;:23::i;:::-;-1:-1:-1::0;53239:4:0::2;52985:266:::0;;;;:::o;35914:91::-;35970:27;861:10;35990:6;35970:5;:27::i;51739:108::-;2122:13;:11;:13::i;:::-;51050:9:::1;51063:10;51050:23;51042:73;;;;-1:-1:-1::0;;;51042:73:0::1;;;;;;;:::i;:::-;51819:9:::2;:20:::0;;;::::2;;;;-1:-1:-1::0;;51819:20:0;;::::2;::::0;;;::::2;::::0;;51739:108::o;2877:103::-;2122:13;:11;:13::i;:::-;2942:30:::1;2969:1;2942:18;:30::i;:::-;2877:103::o:0;36324:164::-;36401:46;36417:7;861:10;36440:6;36401:15;:46::i;:::-;36458:22;36464:7;36473:6;36458:5;:22::i;51421:102::-;2122:13;:11;:13::i;:::-;51050:9:::1;51063:10;51050:23;51042:73;;;;-1:-1:-1::0;;;51042:73:0::1;;;;;;;:::i;:::-;50932:9:::2;::::0;::::2;;50931:10;50923:19;;;::::0;::::2;;50950:9;:16:::0;;-1:-1:-1;;50950:16:0::2;51498:17:::0;;51421:102::o;24551:104::-;24607:13;24640:7;24633:14;;;;;:::i;52508:155::-;2122:13;:11;:13::i;:::-;51050:9:::1;51063:10;51050:23;51042:73;;;;-1:-1:-1::0;;;51042:73:0::1;;;;;;;:::i;:::-;52613:24:::2;:42:::0;52508:155::o;52097:246::-;2122:13;:11;:13::i;:::-;51050:9:::1;51063:10;51050:23;51042:73;;;;-1:-1:-1::0;;;51042:73:0::1;;;;;;;:::i;:::-;52191:6:::2;:18:::0;;;52229:11:::2;52200:9:::0;52239:1:::2;52229:11;:::i;:::-;52220:6;:20:::0;52260:11:::2;:9:::0;52270:1:::2;52260:11;:::i;:::-;52251:6;:20:::0;52291:12:::2;:9:::0;52301:2:::2;52291:12;:::i;:::-;52282:6;:21:::0;52323:12:::2;:9:::0;52333:2:::2;52323:12;:::i;:::-;52314:6;:21:::0;-1:-1:-1;52097:246:0:o;52671:145::-;2122:13;:11;:13::i;:::-;51050:9:::1;51063:10;51050:23;51042:73;;;;-1:-1:-1::0;;;51042:73:0::1;;;;;;;:::i;:::-;52771:21:::2;:37:::0;52671:145::o;54834:135::-;2122:13;:11;:13::i;:::-;51050:9:::1;51063:10;51050:23;51042:73;;;;-1:-1:-1::0;;;51042:73:0::1;;;;;;;:::i;:::-;54928:13:::2;:33:::0;;-1:-1:-1;;;;;;54928:33:0::2;-1:-1:-1::0;;;;;54928:33:0;;;::::2;::::0;;;::::2;::::0;;54834:135::o;28884:436::-;861:10;28977:4;26337:18;;;:11;:18;;;;;;;;-1:-1:-1;;;;;26337:27:0;;;;;;;;;;28977:4;;861:10;29124:15;29104:16;:35;;29096:85;;;;-1:-1:-1;;;29096:85:0;;8003:2:1;29096:85:0;;;7985:21:1;8042:2;8022:18;;;8015:30;8081:34;8061:18;;;8054:62;-1:-1:-1;;;8132:18:1;;;8125:35;8177:19;;29096:85:0;7801:401:1;29096:85:0;29217:60;29226:5;29233:7;29261:15;29242:16;:34;29217:8;:60::i;25965:193::-;26044:4;861:10;26100:28;861:10;26117:2;26121:6;26100:9;:28::i;52824:153::-;2122:13;:11;:13::i;:::-;51050:9:::1;51063:10;51050:23;51042:73;;;;-1:-1:-1::0;;;51042:73:0::1;;;;;;;:::i;:::-;52928:23:::2;:41:::0;52824:153::o;17905:112::-;17985:24;;-1:-1:-1;;;17985:24:0;;-1:-1:-1;;;;;4727:55:1;;;17985:24:0;;;4709:74:1;17958:7:0;;17985;:18;;;;;;4682::1;;17985:24:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;56314:168::-;2122:13;:11;:13::i;:::-;50932:9:::1;::::0;::::1;;50931:10;50923:19;;;::::0;::::1;;50950:9;:16:::0;;-1:-1:-1;;50950:16:0::1;50962:4;50950:16;::::0;;51050:9:::2;51063:10;51050:23;51042:73;;;;-1:-1:-1::0;;;51042:73:0::2;;;;;;;:::i;:::-;56399:12:::3;::::0;56421:13:::3;::::0;56436:37:::3;::::0;-1:-1:-1;;;56436:37:0;;56467:4:::3;56436:37;::::0;::::3;4709:74:1::0;-1:-1:-1;;;;;56399:12:0;;::::3;::::0;:21:::3;::::0;56421:13:::3;::::0;56399:12;;56436:22:::3;::::0;4682:18:1;;56436:37:0::3;;;;;;;;;;;;;;;;;::::0;::::3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;56399:75;::::0;;::::3;::::0;;;;;;-1:-1:-1;;;;;8588:55:1;;;56399:75:0::3;::::0;::::3;8570:74:1::0;8660:18;;;8653:34;8543:18;;56399:75:0::3;;;;;;;;;;;;;;;;;;::::0;::::3;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;50985:9:0::1;:16:::0;;-1:-1:-1;;50985:16:0::1;::::0;;56314:168::o;52353:147::-;2122:13;:11;:13::i;:::-;51050:9:::1;51063:10;51050:23;51042:73;;;;-1:-1:-1::0;;;51042:73:0::1;;;;;;;:::i;:::-;52454:22:::2;:38:::0;52353:147::o;51855:234::-;2122:13;:11;:13::i;:::-;51050:9:::1;51063:10;51050:23;51042:73;;;;-1:-1:-1::0;;;51042:73:0::1;;;;;;;:::i;:::-;51942:5:::2;:17:::0;;;51978:11:::2;51950:9:::0;51988:1:::2;51978:11;:::i;:::-;51970:5;:19:::0;52008:11:::2;:9:::0;52018:1:::2;52008:11;:::i;:::-;52000:5;:19:::0;52038:12:::2;:9:::0;52048:2:::2;52038:12;:::i;:::-;52030:5;:20:::0;52069:12:::2;:9:::0;52079:2:::2;52069:12;:::i;:::-;52061:5;:20:::0;-1:-1:-1;51855:234:0:o;3135:201::-;2122:13;:11;:13::i;:::-;-1:-1:-1;;;;;3224:22:0;::::1;3216:73;;;::::0;-1:-1:-1;;;3216:73:0;;8900:2:1;3216:73:0::1;::::0;::::1;8882:21:1::0;8939:2;8919:18;;;8912:30;8978:34;8958:18;;;8951:62;-1:-1:-1;;;9029:18:1;;;9022:36;9075:19;;3216:73:0::1;8698:402:1::0;3216:73:0::1;3300:28;3319:8;3300:18;:28::i;32877:346::-:0;-1:-1:-1;;;;;32979:19:0;;32971:68;;;;-1:-1:-1;;;32971:68:0;;9307:2:1;32971:68:0;;;9289:21:1;9346:2;9326:18;;;9319:30;9385:34;9365:18;;;9358:62;-1:-1:-1;;;9436:18:1;;;9429:34;9480:19;;32971:68:0;9105:400:1;32971:68:0;-1:-1:-1;;;;;33058:21:0;;33050:68;;;;-1:-1:-1;;;33050:68:0;;9712:2:1;33050:68:0;;;9694:21:1;9751:2;9731:18;;;9724:30;9790:34;9770:18;;;9763:62;-1:-1:-1;;;9841:18:1;;;9834:32;9883:19;;33050:68:0;9510:398:1;33050:68:0;-1:-1:-1;;;;;33131:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;33183:32;;2811:25:1;;;33183:32:0;;2784:18:1;33183:32:0;;;;;;;32877:346;;;:::o;33514:419::-;-1:-1:-1;;;;;26337:18:0;;;33615:24;26337:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;-1:-1:-1;;33682:37:0;;33678:248;;33764:6;33744:16;:26;;33736:68;;;;-1:-1:-1;;;33736:68:0;;10115:2:1;33736:68:0;;;10097:21:1;10154:2;10134:18;;;10127:30;10193:31;10173:18;;;10166:59;10242:18;;33736:68:0;9913:353:1;33736:68:0;33848:51;33857:5;33864:7;33892:6;33873:16;:25;33848:8;:51::i;:::-;33604:329;33514:419;;;:::o;29790:806::-;-1:-1:-1;;;;;29887:18:0;;29879:68;;;;-1:-1:-1;;;29879:68:0;;10473:2:1;29879:68:0;;;10455:21:1;10512:2;10492:18;;;10485:30;10551:34;10531:18;;;10524:62;-1:-1:-1;;;10602:18:1;;;10595:35;10647:19;;29879:68:0;10271:401:1;29879:68:0;-1:-1:-1;;;;;29966:16:0;;29958:64;;;;-1:-1:-1;;;29958:64:0;;10879:2:1;29958:64:0;;;10861:21:1;10918:2;10898:18;;;10891:30;10957:34;10937:18;;;10930:62;-1:-1:-1;;;11008:18:1;;;11001:33;11051:19;;29958:64:0;10677:399:1;29958:64:0;-1:-1:-1;;;;;30108:15:0;;30086:19;30108:15;;;;;;;;;;;30142:21;;;;30134:72;;;;-1:-1:-1;;;30134:72:0;;11283:2:1;30134:72:0;;;11265:21:1;11322:2;11302:18;;;11295:30;11361:34;11341:18;;;11334:62;-1:-1:-1;;;11412:18:1;;;11405:36;11458:19;;30134:72:0;11081:402:1;30134:72:0;-1:-1:-1;;;;;30242:15:0;;;:9;:15;;;;;;;;;;;30260:20;;;30242:38;;30460:13;;;;;;;;;;:23;;;;;;30512:26;;2811:25:1;;;30460:13:0;;30512:26;;2784:18:1;30512:26:0;;;;;;;30551:37;34533:91;2401:132;2309:6;;-1:-1:-1;;;;;2309:6:0;861:10;2465:23;2457:68;;;;-1:-1:-1;;;2457:68:0;;11690:2:1;2457:68:0;;;11672:21:1;;;11709:18;;;11702:30;11768:34;11748:18;;;11741:62;11820:18;;2457:68:0;11488:356:1;17675:106:0;17750:23;;-1:-1:-1;;;17750:23:0;;-1:-1:-1;;;;;4727:55:1;;;17750:23:0;;;4709:74:1;17750:7:0;:16;;;;4682:18:1;;17750:23:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17675:106;:::o;31764:675::-;-1:-1:-1;;;;;31848:21:0;;31840:67;;;;-1:-1:-1;;;31840:67:0;;12298:2:1;31840:67:0;;;12280:21:1;12337:2;12317:18;;;12310:30;12376:34;12356:18;;;12349:62;-1:-1:-1;;;12427:18:1;;;12420:31;12468:19;;31840:67:0;12096:397:1;31840:67:0;-1:-1:-1;;;;;32007:18:0;;31982:22;32007:18;;;;;;;;;;;32044:24;;;;32036:71;;;;-1:-1:-1;;;32036:71:0;;12700:2:1;32036:71:0;;;12682:21:1;12739:2;12719:18;;;12712:30;12778:34;12758:18;;;12751:62;-1:-1:-1;;;12829:18:1;;;12822:32;12871:19;;32036:71:0;12498:398:1;32036:71:0;-1:-1:-1;;;;;32143:18:0;;:9;:18;;;;;;;;;;;32164:23;;;32143:44;;32282:12;:22;;;;;;;32333:37;2811:25:1;;;32143:9:0;;:18;32333:37;;2784:18:1;32333:37:0;;;;;;;34533:91;;;:::o;3496:191::-;3589:6;;;-1:-1:-1;;;;;3606:17:0;;;-1:-1:-1;;;;;;3606:17:0;;;;;;;3639:40;;3589:6;;;3606:17;3589:6;;3639:40;;3570:16;;3639:40;3559:128;3496:191;:::o;14:401:1:-;216:2;198:21;;;255:2;235:18;;;228:30;294:34;289:2;274:18;;267:62;-1:-1:-1;;;360:2:1;345:18;;338:35;405:3;390:19;;14:401::o;781:127::-;842:10;837:3;833:20;830:1;823:31;873:4;870:1;863:15;897:4;894:1;887:15;913:168;986:9;;;1017;;1034:15;;;1028:22;;1014:37;1004:71;;1055:18;;:::i;1086:217::-;1126:1;1152;1142:132;;1196:10;1191:3;1187:20;1184:1;1177:31;1231:4;1228:1;1221:15;1259:4;1256:1;1249:15;1142:132;-1:-1:-1;1288:9:1;;1086:217::o;1308:128::-;1375:9;;;1396:11;;;1393:37;;;1410:18;;:::i;1441:548::-;1553:4;1582:2;1611;1600:9;1593:21;1643:6;1637:13;1686:6;1681:2;1670:9;1666:18;1659:34;1711:1;1721:140;1735:6;1732:1;1729:13;1721:140;;;1830:14;;;1826:23;;1820:30;1796:17;;;1815:2;1792:26;1785:66;1750:10;;1721:140;;;1725:3;1910:1;1905:2;1896:6;1885:9;1881:22;1877:31;1870:42;1980:2;1973;1969:7;1964:2;1956:6;1952:15;1948:29;1937:9;1933:45;1929:54;1921:62;;;;1441:548;;;;:::o;1994:154::-;-1:-1:-1;;;;;2073:5:1;2069:54;2062:5;2059:65;2049:93;;2138:1;2135;2128:12;2153:315;2221:6;2229;2282:2;2270:9;2261:7;2257:23;2253:32;2250:52;;;2298:1;2295;2288:12;2250:52;2337:9;2324:23;2356:31;2381:5;2356:31;:::i;:::-;2406:5;2458:2;2443:18;;;;2430:32;;-1:-1:-1;;;2153:315:1:o;2847:456::-;2924:6;2932;2940;2993:2;2981:9;2972:7;2968:23;2964:32;2961:52;;;3009:1;3006;2999:12;2961:52;3048:9;3035:23;3067:31;3092:5;3067:31;:::i;:::-;3117:5;-1:-1:-1;3174:2:1;3159:18;;3146:32;3187:33;3146:32;3187:33;:::i;:::-;2847:456;;3239:7;;-1:-1:-1;;;3293:2:1;3278:18;;;;3265:32;;2847:456::o;3308:118::-;3394:5;3387:13;3380:21;3373:5;3370:32;3360:60;;3416:1;3413;3406:12;3431:241;3487:6;3540:2;3528:9;3519:7;3515:23;3511:32;3508:52;;;3556:1;3553;3546:12;3508:52;3595:9;3582:23;3614:28;3636:5;3614:28;:::i;:::-;3661:5;3431:241;-1:-1:-1;;;3431:241:1:o;3677:247::-;3736:6;3789:2;3777:9;3768:7;3764:23;3760:32;3757:52;;;3805:1;3802;3795:12;3757:52;3844:9;3831:23;3863:31;3888:5;3863:31;:::i;4378:180::-;4437:6;4490:2;4478:9;4469:7;4465:23;4461:32;4458:52;;;4506:1;4503;4496:12;4458:52;-1:-1:-1;4529:23:1;;4378:180;-1:-1:-1;4378:180:1:o;5039:388::-;5107:6;5115;5168:2;5156:9;5147:7;5143:23;5139:32;5136:52;;;5184:1;5181;5174:12;5136:52;5223:9;5210:23;5242:31;5267:5;5242:31;:::i;:::-;5292:5;-1:-1:-1;5349:2:1;5334:18;;5321:32;5362:33;5321:32;5362:33;:::i;:::-;5414:7;5404:17;;;5039:388;;;;;:::o;5792:125::-;5857:9;;;5878:10;;;5875:36;;;5891:18;;:::i;5922:380::-;6001:1;5997:12;;;;6044;;;6065:61;;6119:4;6111:6;6107:17;6097:27;;6065:61;6172:2;6164:6;6161:14;6141:18;6138:38;6135:161;;6218:10;6213:3;6209:20;6206:1;6199:31;6253:4;6250:1;6243:15;6281:4;6278:1;6271:15;6135:161;;5922:380;;;:::o;7551:245::-;7618:6;7671:2;7659:9;7650:7;7646:23;7642:32;7639:52;;;7687:1;7684;7677:12;7639:52;7719:9;7713:16;7738:28;7760:5;7738:28;:::i;8207:184::-;8277:6;8330:2;8318:9;8309:7;8305:23;8301:32;8298:52;;;8346:1;8343;8336:12;8298:52;-1:-1:-1;8369:16:1;;8207:184;-1:-1:-1;8207:184:1:o

Swarm Source

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