ETH Price: $2,806.29 (+2.32%)

Token

CHURN (CHURN PROTOCOL)
 

Overview

Max Total Supply

111,111,111 CHURN PROTOCOL

Holders

80

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
32,868.822022212852860775 CHURN PROTOCOL

Value
$0.00
0x466693a98ed9e60706b204d5ca96805edc892ff4
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:
CHURN_PROTOCOL

Compiler Version
v0.8.21+commit.d9974bed

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/utils/math/SafeMath.sol


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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts (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/token/ERC20/IERC20.sol


// 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/IERC20Metadata.sol


// 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/ERC20.sol


// 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: CHURN.sol

/**
 ▄████▄   ██░ ██  █    ██  ██▀███   ███▄    █                          
▒██▀ ▀█  ▓██░ ██▒ ██  ▓██▒▓██ ▒ ██▒ ██ ▀█   █                          
▒▓█    ▄ ▒██▀▀██░▓██  ▒██░▓██ ░▄█ ▒▓██  ▀█ ██▒                         
▒▓▓▄ ▄██▒░▓█ ░██ ▓▓█  ░██░▒██▀▀█▄  ▓██▒  ▐▌██▒                         
▒ ▓███▀ ░░▓█▒░██▓▒▒█████▓ ░██▓ ▒██▒▒██░   ▓██░                         
░ ░▒ ▒  ░ ▒ ░░▒░▒░▒▓▒ ▒ ▒ ░ ▒▓ ░▒▓░░ ▒░   ▒ ▒                          
  ░  ▒    ▒ ░▒░ ░░░▒░ ░ ░   ░▒ ░ ▒░░ ░░   ░ ▒░                         
░         ░  ░░ ░ ░░░ ░ ░   ░░   ░    ░   ░ ░                          
░ ░       ░  ░  ░   ░        ░              ░                          
░                                                                      
 ██▓███   ██▀███   ▒█████  ▄▄▄█████▓ ▒█████   ▄████▄   ▒█████   ██▓    
▓██░  ██▒▓██ ▒ ██▒▒██▒  ██▒▓  ██▒ ▓▒▒██▒  ██▒▒██▀ ▀█  ▒██▒  ██▒▓██▒    
▓██░ ██▓▒▓██ ░▄█ ▒▒██░  ██▒▒ ▓██░ ▒░▒██░  ██▒▒▓█    ▄ ▒██░  ██▒▒██░    
▒██▄█▓▒ ▒▒██▀▀█▄  ▒██   ██░░ ▓██▓ ░ ▒██   ██░▒▓▓▄ ▄██▒▒██   ██░▒██░    
▒██▒ ░  ░░██▓ ▒██▒░ ████▓▒░  ▒██▒ ░ ░ ████▓▒░▒ ▓███▀ ░░ ████▓▒░░██████▒
▒▓▒░ ░  ░░ ▒▓ ░▒▓░░ ▒░▒░▒░   ▒ ░░   ░ ▒░▒░▒░ ░ ░▒ ▒  ░░ ▒░▒░▒░ ░ ▒░▓  ░
░▒ ░       ░▒ ░ ▒░  ░ ▒ ▒░     ░      ░ ▒ ▒░   ░  ▒     ░ ▒ ▒░ ░ ░ ▒  ░
░░         ░░   ░ ░ ░ ░ ▒    ░      ░ ░ ░ ▒  ░        ░ ░ ░ ▒    ░ ░   
            ░         ░ ░               ░ ░  ░ ░          ░ ░      ░  ░
                                             ░                         

@ChurnProtocol
X: https://x.com/ChurnProtocol
URL: https://churnit.io
Founders:
@RedCandleBaad
@sivadacrypto (dev)
**/

pragma solidity ^0.8.21;




interface IUniswapV2Factory {
    function getPair(address tokenA, address tokenB) external view returns (address pair);
}

contract CHURN_PROTOCOL is ERC20, Ownable {
    using SafeMath for uint256;

    IUniswapV2Factory public constant uniswapV2Factory = IUniswapV2Factory(0x5C69bEe701ef814a2B6a3EDD4B1652CB9cc5aA6f); 
    address public uniswapV2Pair;
    address public constant WETH = 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2; 
    address public constant UNISWAP_ROUTER = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D; 
    address public irsRobber;
    address public pairManager; 

    uint256 public MAX_SUPPLY = 111111111 * 10**18; // 11,111,111 Goes to ben.eth, so consider that burned.
    uint256 public MAX_CHURN_SIZE = 111111 * 10**18;
    uint256 public JEET_FEE = 25; // Suck it jeets
    uint256 public CHURN_FEE = 2; 
    bool public churnEnabled = false;

    mapping(address => bool) public jeetDelete;
    mapping(address => bool) public touchedByGod;
    mapping(address => bool) public touchedByBiden;
    mapping(address => bool) public inRatTrap;
    


    event JeetDeleted(address indexed account);
    event JeetUndeleted(address indexed account);
    event TouchedByGod(address indexed account);
    event UntouchedByGod(address indexed account);
    event TouchedByBiden(address indexed account);
    event UntouchedByBiden(address indexed account);
    event RatTrapped(address indexed account);
    event RatReleased(address indexed account);

    constructor() ERC20("CHURN", "CHURN PROTOCOL") {
        _mint(msg.sender, MAX_SUPPLY);
        touchedByGod[address(this)] = true; 
        touchedByGod[msg.sender] = true; 
        touchedByGod[UNISWAP_ROUTER] = true; 
        touchedByBiden[msg.sender] = true; 
        touchedByBiden[address(this)] = true; 
        uniswapV2Pair = uniswapV2Factory.getPair(address(this), WETH);
        irsRobber = msg.sender;  
        pairManager = msg.sender; 
    }

    function activateChurn() public onlyOwner {
        churnEnabled = true;
        touchedByGod[UNISWAP_ROUTER] = true;
        touchedByGod[msg.sender] = true;
    }

    function _transfer(address sender, address recipient, uint256 amount) internal override {
    require(churnEnabled, "Churn is not enabled yet.");
    require(!jeetDelete[sender] && !jeetDelete[recipient], "Either sender or recipient is deleted.");
    require(sender != address(0), "ERC20: transfer from the zero address");
    require(recipient != address(0), "ERC20: transfer to the zero address");
    require(!(inRatTrap[sender] && recipient == uniswapV2Pair), "You are in the Rat Trap, prepare to die.");

    uint256 feePercent = 0;

    if (touchedByBiden[sender] || touchedByBiden[recipient]) {
        feePercent = 0;
    } else {
        if (sender == uniswapV2Pair) {
            feePercent = CHURN_FEE; 
        } else if (recipient == uniswapV2Pair) {
            feePercent = JEET_FEE; 
        }
    }

    if (!touchedByGod[recipient]) {
        if (!(touchedByBiden[sender] || touchedByBiden[recipient])) {
            require(balanceOf(recipient).add(amount) <= MAX_CHURN_SIZE, "Exceeds Max Churn Size");
        } else if (touchedByBiden[recipient]) {
            require(balanceOf(recipient).add(amount) <= MAX_CHURN_SIZE, "Exceeds Max Churn Size");
        }
    }

    uint256 feeAmount = amount.mul(feePercent).div(100);
    uint256 netAmount = amount.sub(feeAmount);

    super._transfer(sender, recipient, netAmount);
    if (feeAmount > 0) {
        super._transfer(sender, address(this), feeAmount);
    }
} 
    
    function jeetDeleteAddress(address account) public onlyOwner {
        jeetDelete[account] = true;
        emit JeetDeleted(account);
    }
    
    function jeetUndeleteAddress(address account) public onlyOwner {
        jeetDelete[account] = false;
        emit JeetUndeleted(account);
    }

    // To truly feel the love and power of God.
    function addTouchedByGod(address account) public onlyOwner {
        touchedByGod[account] = true;
        emit TouchedByGod(account);
    }

    // You have been evicted from the Grace of God, good riddance!
    function removeTouchedByGod(address account) public onlyOwner {
        touchedByGod[account] = false;
        emit UntouchedByGod(account);
    }

    // Joe Biden has blessed you with 88,000 IRS Agents at your disposal .. FJB
    function addTouchedByBiden(address account) public onlyOwner {
        touchedByBiden[account] = true;
        emit TouchedByBiden(account);
    }

    // You whispered to Joe Biden that Michelle is man and have been deported to Mexico, fortunately, the wall was never completed and you safely return.
    function removeTouchedByBiden(address account) public onlyOwner {
        touchedByBiden[account] = false;
        emit UntouchedByBiden(account);
    }

    function setFees(uint256 churnFee, uint256 jeetFee) external onlyOwner {
        CHURN_FEE = churnFee;
        JEET_FEE = jeetFee;
    }
    function setMaxChurnSize(uint256 newMaxChurnSize) public onlyOwner {
        MAX_CHURN_SIZE = newMaxChurnSize;
    }

    // With 88,000 IRS agents at your disposal, the posibilities are endless.
    function setIrsRobber(address newIrsRobber) public {
        require(msg.sender == irsRobber, "Only the current IRS Robber can set a new one.");
        irsRobber = newIrsRobber;
    }

    // Reap the rewards of your agents, well done.
    function RobTheIRS(address to) external {
        require(msg.sender == irsRobber, "Only the designated IRS Robber can rob the IRS.");
        uint256 contractBalance = balanceOf(address(this));
        require(contractBalance > 0, "No butter to withdraw");

        _transfer(address(this), to, contractBalance);
    }
    function setUniswapV2Pair(address _uniswapV2Pair) public {
        require(msg.sender == pairManager, "Not authorized");
        uniswapV2Pair = _uniswapV2Pair;
        touchedByGod[_uniswapV2Pair] = true;
        emit TouchedByGod(_uniswapV2Pair);
    }
    function setPairManager(address _newPairManager) public {
        require(msg.sender == pairManager, "Not authorized");
        pairManager = _newPairManager;
    }

    // Oof, I don't think you're getting out of this one... you going to die here
    function ratTrap(address account) public onlyOwner {
    inRatTrap[account] = true;
    emit RatTrapped(account);
    }

    // If you somehow manage to free yourself from that Rat Trap, you may go on living.
    function removeRatTrap(address account) public onlyOwner {
    inRatTrap[account] = false;
    emit RatReleased(account); 
}

}

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":"account","type":"address"}],"name":"JeetDeleted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"JeetUndeleted","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":"account","type":"address"}],"name":"RatReleased","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"RatTrapped","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"TouchedByBiden","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"TouchedByGod","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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"UntouchedByBiden","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"UntouchedByGod","type":"event"},{"inputs":[],"name":"CHURN_FEE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"JEET_FEE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_CHURN_SIZE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"RobTheIRS","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"UNISWAP_ROUTER","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WETH","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"activateChurn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addTouchedByBiden","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addTouchedByGod","outputs":[],"stateMutability":"nonpayable","type":"function"},{"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":[],"name":"churnEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"","type":"address"}],"name":"inRatTrap","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":[],"name":"irsRobber","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"jeetDelete","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"jeetDeleteAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"jeetUndeleteAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pairManager","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"ratTrap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"removeRatTrap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"removeTouchedByBiden","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"removeTouchedByGod","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"churnFee","type":"uint256"},{"internalType":"uint256","name":"jeetFee","type":"uint256"}],"name":"setFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newIrsRobber","type":"address"}],"name":"setIrsRobber","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newMaxChurnSize","type":"uint256"}],"name":"setMaxChurnSize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newPairManager","type":"address"}],"name":"setPairManager","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_uniswapV2Pair","type":"address"}],"name":"setUniswapV2Pair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"touchedByBiden","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"touchedByGod","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[],"name":"uniswapV2Factory","outputs":[{"internalType":"contract IUniswapV2Factory","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

60806040526a5be8b1658c6bb9eabc000060095569178756e190b11bbc0000600a556019600b556002600c555f600d5f6101000a81548160ff02191690831515021790555034801562000050575f80fd5b506040518060400160405280600581526020017f434855524e0000000000000000000000000000000000000000000000000000008152506040518060400160405280600e81526020017f434855524e2050524f544f434f4c0000000000000000000000000000000000008152508160039081620000ce9190620008dd565b508060049081620000e09190620008dd565b50505062000103620000f76200044060201b60201c565b6200044760201b60201c565b62000117336009546200050a60201b60201c565b6001600f5f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506001600f5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506001600f5f737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160105f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550600160105f3073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f73ffffffffffffffffffffffffffffffffffffffff1663e6a439053073c02aaa39b223fe8d0a0e5c4f27ead9083c756cc26040518363ffffffff1660e01b81526004016200033992919062000a04565b602060405180830381865afa15801562000355573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200037b919062000a62565b60065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503360075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503360085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000ba3565b5f33905090565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200057b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005729062000af0565b60405180910390fd5b6200058e5f83836200066f60201b60201c565b8060025f828254620005a1919062000b3d565b92505081905550805f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000650919062000b88565b60405180910390a36200066b5f83836200067460201b60201c565b5050565b505050565b505050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680620006f557607f821691505b6020821081036200070b576200070a620006b0565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026200076f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000732565b6200077b868362000732565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f620007c5620007bf620007b98462000793565b6200079c565b62000793565b9050919050565b5f819050919050565b620007e083620007a5565b620007f8620007ef82620007cc565b8484546200073e565b825550505050565b5f90565b6200080e62000800565b6200081b818484620007d5565b505050565b5b818110156200084257620008365f8262000804565b60018101905062000821565b5050565b601f82111562000891576200085b8162000711565b620008668462000723565b8101602085101562000876578190505b6200088e620008858562000723565b83018262000820565b50505b505050565b5f82821c905092915050565b5f620008b35f198460080262000896565b1980831691505092915050565b5f620008cd8383620008a2565b9150826002028217905092915050565b620008e88262000679565b67ffffffffffffffff81111562000904576200090362000683565b5b620009108254620006dd565b6200091d82828562000846565b5f60209050601f83116001811462000953575f84156200093e578287015190505b6200094a8582620008c0565b865550620009b9565b601f198416620009638662000711565b5f5b828110156200098c5784890151825560018201915060208501945060208101905062000965565b86831015620009ac5784890151620009a8601f891682620008a2565b8355505b6001600288020188555050505b505050505050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f620009ec82620009c1565b9050919050565b620009fe81620009e0565b82525050565b5f60408201905062000a195f830185620009f3565b62000a286020830184620009f3565b9392505050565b5f80fd5b62000a3e81620009e0565b811462000a49575f80fd5b50565b5f8151905062000a5c8162000a33565b92915050565b5f6020828403121562000a7a5762000a7962000a2f565b5b5f62000a898482850162000a4c565b91505092915050565b5f82825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f62000ad8601f8362000a92565b915062000ae58262000aa2565b602082019050919050565b5f6020820190508181035f83015262000b098162000aca565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f62000b498262000793565b915062000b568362000793565b925082820190508082111562000b715762000b7062000b10565b5b92915050565b62000b828162000793565b82525050565b5f60208201905062000b9d5f83018462000b77565b92915050565b6132898062000bb15f395ff3fe608060405234801561000f575f80fd5b5060043610610272575f3560e01c80638acb152d1161014f578063c4e6594d116100c1578063d9c1e62011610085578063d9c1e6201461074e578063dd62ed3e1461077e578063e50ad677146107ae578063e9e7c2ce146107ca578063ef638bf5146107e6578063f2fde38b1461080257610272565b8063c4e6594d146106aa578063c547e34d146106da578063d1d3c357146106f6578063d499484614610712578063d82649201461073057610272565b8063a29a608911610113578063a29a6089146105d6578063a457c2d7146105f2578063a9059cbb14610622578063aa588a8214610652578063ad5c464814610670578063c2f971111461068e57610272565b80638acb152d146105425780638da5cb5b146105605780638decedc21461057e578063912a32051461059a57806395d89b41146105b857610272565b80633b74f6ad116101e85780635b534d33116101ac5780635b534d33146104985780635c4b1e6e146104b457806370a08231146104d0578063715018a6146105005780638433ce961461050a57806386d00d1b1461052657610272565b80633b74f6ad146103f25780633c48b5f41461040e57806349bd5a5e1461042c578063581cc9291461044a57806359d0f7131461047a57610272565b80631ac7b6201161023a5780631ac7b6201461032e57806323b872dd1461034c5780632dee00651461037c578063313ce5671461038657806332cb6b0c146103a457806339509351146103c257610272565b8063015970ef1461027657806306fdde03146102a6578063095ea7b3146102c45780630b78f9c0146102f457806318160ddd14610310575b5f80fd5b610290600480360381019061028b91906124d3565b61081e565b60405161029d9190612518565b60405180910390f35b6102ae61083b565b6040516102bb91906125bb565b60405180910390f35b6102de60048036038101906102d9919061260e565b6108cb565b6040516102eb9190612518565b60405180910390f35b61030e6004803603810190610309919061264c565b6108ed565b005b610318610907565b6040516103259190612699565b60405180910390f35b610336610910565b6040516103439190612699565b60405180910390f35b610366600480360381019061036191906126b2565b610916565b6040516103739190612518565b60405180910390f35b610384610944565b005b61038e610a26565b60405161039b919061271d565b60405180910390f35b6103ac610a2e565b6040516103b99190612699565b60405180910390f35b6103dc60048036038101906103d7919061260e565b610a34565b6040516103e99190612518565b60405180910390f35b61040c600480360381019061040791906124d3565b610a6a565b005b610416610b3c565b6040516104239190612518565b60405180910390f35b610434610b4e565b6040516104419190612745565b60405180910390f35b610464600480360381019061045f91906124d3565b610b73565b6040516104719190612518565b60405180910390f35b610482610b90565b60405161048f91906127b9565b60405180910390f35b6104b260048036038101906104ad91906124d3565b610ba8565b005b6104ce60048036038101906104c991906124d3565b610c4b565b005b6104ea60048036038101906104e591906124d3565b610ced565b6040516104f79190612699565b60405180910390f35b610508610d32565b005b610524600480360381019061051f91906124d3565b610d45565b005b610540600480360381019061053b91906124d3565b610de8565b005b61054a610e8a565b6040516105579190612745565b60405180910390f35b610568610eaf565b6040516105759190612745565b60405180910390f35b610598600480360381019061059391906124d3565b610ed7565b005b6105a2610f79565b6040516105af9190612699565b60405180910390f35b6105c0610f7f565b6040516105cd91906125bb565b60405180910390f35b6105f060048036038101906105eb91906124d3565b61100f565b005b61060c6004803603810190610607919061260e565b611179565b6040516106199190612518565b60405180910390f35b61063c6004803603810190610637919061260e565b6111ee565b6040516106499190612518565b60405180910390f35b61065a611210565b6040516106679190612745565b60405180910390f35b610678611235565b6040516106859190612745565b60405180910390f35b6106a860048036038101906106a391906127d2565b61124d565b005b6106c460048036038101906106bf91906124d3565b61125f565b6040516106d19190612518565b60405180910390f35b6106f460048036038101906106ef91906124d3565b61127c565b005b610710600480360381019061070b91906124d3565b61131e565b005b61071a6113c1565b6040516107279190612699565b60405180910390f35b6107386113c7565b6040516107459190612745565b60405180910390f35b610768600480360381019061076391906124d3565b6113df565b6040516107759190612518565b60405180910390f35b610798600480360381019061079391906127fd565b6113fc565b6040516107a59190612699565b60405180910390f35b6107c860048036038101906107c391906124d3565b61147e565b005b6107e460048036038101906107df91906124d3565b611550565b005b61080060048036038101906107fb91906124d3565b6115f3565b005b61081c600480360381019061081791906124d3565b6116df565b005b6010602052805f5260405f205f915054906101000a900460ff1681565b60606003805461084a90612868565b80601f016020809104026020016040519081016040528092919081815260200182805461087690612868565b80156108c15780601f10610898576101008083540402835291602001916108c1565b820191905f5260205f20905b8154815290600101906020018083116108a457829003601f168201915b5050505050905090565b5f806108d5611761565b90506108e2818585611768565b600191505092915050565b6108f561192b565b81600c8190555080600b819055505050565b5f600254905090565b600b5481565b5f80610920611761565b905061092d8582856119a9565b610938858585611a34565b60019150509392505050565b61094c61192b565b6001600d5f6101000a81548160ff0219169083151502179055506001600f5f737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506001600f5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550565b5f6012905090565b60095481565b5f80610a3e611761565b9050610a5f818585610a5085896113fc565b610a5a91906128c5565b611768565b600191505092915050565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610af9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af090612942565b60405180910390fd5b8060085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600d5f9054906101000a900460ff1681565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600f602052805f5260405f205f915054906101000a900460ff1681565b735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f81565b610bb061192b565b600160105f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167f25258e5fcee0fd1d311feb4c0a773423ef9daf16214c5be13d84eee8400835da60405160405180910390a250565b610c5361192b565b5f60115f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167f88223d25b06991a93ced798e18bf7babbc262ba29a90d71425ae4fcb25964bdc60405160405180910390a250565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610d3a61192b565b610d435f6120e8565b565b610d4d61192b565b6001600e5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167f4e173d2a53aaeddf36d1c606ae4e6b54714a5fadbcad6bc47fb94a30907196bf60405160405180910390a250565b610df061192b565b5f600f5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167f9ac7906184b39e467e91e7580944a7134ba5e897e398edd29a870380a94614f160405160405180910390a250565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610edf61192b565b5f60105f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167faa558bf0696ec848eb0501e9db8cacc1ccb481b48e6df4c0ede58cdc8ea550cd60405160405180910390a250565b600a5481565b606060048054610f8e90612868565b80601f0160208091040260200160405190810160405280929190818152602001828054610fba90612868565b80156110055780601f10610fdc57610100808354040283529160200191611005565b820191905f5260205f20905b815481529060010190602001808311610fe857829003601f168201915b5050505050905090565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461109e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109590612942565b60405180910390fd5b8060065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600f5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167f7fa62dbecfeb8e7ba4a5bde57c04b89b3fa1b20a5a78b9b97446867e87bac44060405160405180910390a250565b5f80611183611761565b90505f61119082866113fc565b9050838110156111d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111cc906129d0565b60405180910390fd5b6111e28286868403611768565b60019250505092915050565b5f806111f8611761565b9050611205818585611a34565b600191505092915050565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b73c02aaa39b223fe8d0a0e5c4f27ead9083c756cc281565b61125561192b565b80600a8190555050565b6011602052805f5260405f205f915054906101000a900460ff1681565b61128461192b565b5f600e5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167f043c07b6417f2815a7281cbe5e531a76a117d0f155f912061d6c3f7df72b972760405160405180910390a250565b61132661192b565b600160115f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167f8d7b4cfe6a3d57a6b43c050c8d1d1e2cb3fa60b34bee2dc2b5c5add2da06b39660405160405180910390a250565b600c5481565b737a250d5630b4cf539739df2c5dacb4c659f2488d81565b600e602052805f5260405f205f915054906101000a900460ff1681565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461150d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150490612a5e565b60405180910390fd5b8060075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61155861192b565b6001600f5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167f7fa62dbecfeb8e7ba4a5bde57c04b89b3fa1b20a5a78b9b97446867e87bac44060405160405180910390a250565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611682576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167990612aec565b60405180910390fd5b5f61168c30610ced565b90505f81116116d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c790612b54565b60405180910390fd5b6116db308383611a34565b5050565b6116e761192b565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611755576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174c90612be2565b60405180910390fd5b61175e816120e8565b50565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036117d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117cd90612c70565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611844576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183b90612cfe565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161191e9190612699565b60405180910390a3505050565b611933611761565b73ffffffffffffffffffffffffffffffffffffffff16611951610eaf565b73ffffffffffffffffffffffffffffffffffffffff16146119a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199e90612d66565b60405180910390fd5b565b5f6119b484846113fc565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611a2e5781811015611a20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1790612dce565b60405180910390fd5b611a2d8484848403611768565b5b50505050565b600d5f9054906101000a900460ff16611a82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7990612e36565b60405180910390fd5b600e5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16158015611b205750600e5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b611b5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5690612ec4565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611bcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc490612f52565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611c3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3290612fe0565b60405180910390fd5b60115f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015611cdd575060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b15611d1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d149061306e565b60405180910390fd5b5f60105f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680611db9575060105f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b15611dc6575f9050611e80565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611e2457600c549050611e7f565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611e7e57600b5490505b5b5b600f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff166120825760105f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680611f69575060105f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b611fd157600a54611f8b83611f7d86610ced565b6121ab90919063ffffffff16565b1115611fcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc3906130d6565b60405180910390fd5b612081565b60105f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161561208057600a5461203e8361203086610ced565b6121ab90919063ffffffff16565b111561207f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612076906130d6565b60405180910390fd5b5b5b5b5f6120a9606461209b84866121c090919063ffffffff16565b6121d590919063ffffffff16565b90505f6120bf82856121ea90919063ffffffff16565b90506120cc8686836121ff565b5f8211156120e0576120df8630846121ff565b5b505050505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f81836121b891906128c5565b905092915050565b5f81836121cd91906130f4565b905092915050565b5f81836121e29190613162565b905092915050565b5f81836121f79190613192565b905092915050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361226d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226490612f52565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036122db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122d290612fe0565b60405180910390fd5b6122e683838361246b565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015612369576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236090613235565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516124529190612699565b60405180910390a3612465848484612470565b50505050565b505050565b505050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6124a282612479565b9050919050565b6124b281612498565b81146124bc575f80fd5b50565b5f813590506124cd816124a9565b92915050565b5f602082840312156124e8576124e7612475565b5b5f6124f5848285016124bf565b91505092915050565b5f8115159050919050565b612512816124fe565b82525050565b5f60208201905061252b5f830184612509565b92915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b8381101561256857808201518184015260208101905061254d565b5f8484015250505050565b5f601f19601f8301169050919050565b5f61258d82612531565b612597818561253b565b93506125a781856020860161254b565b6125b081612573565b840191505092915050565b5f6020820190508181035f8301526125d38184612583565b905092915050565b5f819050919050565b6125ed816125db565b81146125f7575f80fd5b50565b5f81359050612608816125e4565b92915050565b5f806040838503121561262457612623612475565b5b5f612631858286016124bf565b9250506020612642858286016125fa565b9150509250929050565b5f806040838503121561266257612661612475565b5b5f61266f858286016125fa565b9250506020612680858286016125fa565b9150509250929050565b612693816125db565b82525050565b5f6020820190506126ac5f83018461268a565b92915050565b5f805f606084860312156126c9576126c8612475565b5b5f6126d6868287016124bf565b93505060206126e7868287016124bf565b92505060406126f8868287016125fa565b9150509250925092565b5f60ff82169050919050565b61271781612702565b82525050565b5f6020820190506127305f83018461270e565b92915050565b61273f81612498565b82525050565b5f6020820190506127585f830184612736565b92915050565b5f819050919050565b5f61278161277c61277784612479565b61275e565b612479565b9050919050565b5f61279282612767565b9050919050565b5f6127a382612788565b9050919050565b6127b381612799565b82525050565b5f6020820190506127cc5f8301846127aa565b92915050565b5f602082840312156127e7576127e6612475565b5b5f6127f4848285016125fa565b91505092915050565b5f806040838503121561281357612812612475565b5b5f612820858286016124bf565b9250506020612831858286016124bf565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061287f57607f821691505b6020821081036128925761289161283b565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6128cf826125db565b91506128da836125db565b92508282019050808211156128f2576128f1612898565b5b92915050565b7f4e6f7420617574686f72697a65640000000000000000000000000000000000005f82015250565b5f61292c600e8361253b565b9150612937826128f8565b602082019050919050565b5f6020820190508181035f83015261295981612920565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f6129ba60258361253b565b91506129c582612960565b604082019050919050565b5f6020820190508181035f8301526129e7816129ae565b9050919050565b7f4f6e6c79207468652063757272656e742049525320526f626265722063616e205f8201527f7365742061206e6577206f6e652e000000000000000000000000000000000000602082015250565b5f612a48602e8361253b565b9150612a53826129ee565b604082019050919050565b5f6020820190508181035f830152612a7581612a3c565b9050919050565b7f4f6e6c79207468652064657369676e617465642049525320526f6262657220635f8201527f616e20726f6220746865204952532e0000000000000000000000000000000000602082015250565b5f612ad6602f8361253b565b9150612ae182612a7c565b604082019050919050565b5f6020820190508181035f830152612b0381612aca565b9050919050565b7f4e6f2062757474657220746f20776974686472617700000000000000000000005f82015250565b5f612b3e60158361253b565b9150612b4982612b0a565b602082019050919050565b5f6020820190508181035f830152612b6b81612b32565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f612bcc60268361253b565b9150612bd782612b72565b604082019050919050565b5f6020820190508181035f830152612bf981612bc0565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f612c5a60248361253b565b9150612c6582612c00565b604082019050919050565b5f6020820190508181035f830152612c8781612c4e565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f612ce860228361253b565b9150612cf382612c8e565b604082019050919050565b5f6020820190508181035f830152612d1581612cdc565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f612d5060208361253b565b9150612d5b82612d1c565b602082019050919050565b5f6020820190508181035f830152612d7d81612d44565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f612db8601d8361253b565b9150612dc382612d84565b602082019050919050565b5f6020820190508181035f830152612de581612dac565b9050919050565b7f436875726e206973206e6f7420656e61626c6564207965742e000000000000005f82015250565b5f612e2060198361253b565b9150612e2b82612dec565b602082019050919050565b5f6020820190508181035f830152612e4d81612e14565b9050919050565b7f4569746865722073656e646572206f7220726563697069656e742069732064655f8201527f6c657465642e0000000000000000000000000000000000000000000000000000602082015250565b5f612eae60268361253b565b9150612eb982612e54565b604082019050919050565b5f6020820190508181035f830152612edb81612ea2565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f612f3c60258361253b565b9150612f4782612ee2565b604082019050919050565b5f6020820190508181035f830152612f6981612f30565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f612fca60238361253b565b9150612fd582612f70565b604082019050919050565b5f6020820190508181035f830152612ff781612fbe565b9050919050565b7f596f752061726520696e207468652052617420547261702c20707265706172655f8201527f20746f206469652e000000000000000000000000000000000000000000000000602082015250565b5f61305860288361253b565b915061306382612ffe565b604082019050919050565b5f6020820190508181035f8301526130858161304c565b9050919050565b7f45786365656473204d617820436875726e2053697a65000000000000000000005f82015250565b5f6130c060168361253b565b91506130cb8261308c565b602082019050919050565b5f6020820190508181035f8301526130ed816130b4565b9050919050565b5f6130fe826125db565b9150613109836125db565b9250828202613117816125db565b9150828204841483151761312e5761312d612898565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61316c826125db565b9150613177836125db565b92508261318757613186613135565b5b828204905092915050565b5f61319c826125db565b91506131a7836125db565b92508282039050818111156131bf576131be612898565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f61321f60268361253b565b915061322a826131c5565b604082019050919050565b5f6020820190508181035f83015261324c81613213565b905091905056fea2646970667358221220e29291e25e7f9de9a6cc701037dad17a0714432d6111f1f7a392dff87aec620364736f6c63430008150033

Deployed Bytecode

0x608060405234801561000f575f80fd5b5060043610610272575f3560e01c80638acb152d1161014f578063c4e6594d116100c1578063d9c1e62011610085578063d9c1e6201461074e578063dd62ed3e1461077e578063e50ad677146107ae578063e9e7c2ce146107ca578063ef638bf5146107e6578063f2fde38b1461080257610272565b8063c4e6594d146106aa578063c547e34d146106da578063d1d3c357146106f6578063d499484614610712578063d82649201461073057610272565b8063a29a608911610113578063a29a6089146105d6578063a457c2d7146105f2578063a9059cbb14610622578063aa588a8214610652578063ad5c464814610670578063c2f971111461068e57610272565b80638acb152d146105425780638da5cb5b146105605780638decedc21461057e578063912a32051461059a57806395d89b41146105b857610272565b80633b74f6ad116101e85780635b534d33116101ac5780635b534d33146104985780635c4b1e6e146104b457806370a08231146104d0578063715018a6146105005780638433ce961461050a57806386d00d1b1461052657610272565b80633b74f6ad146103f25780633c48b5f41461040e57806349bd5a5e1461042c578063581cc9291461044a57806359d0f7131461047a57610272565b80631ac7b6201161023a5780631ac7b6201461032e57806323b872dd1461034c5780632dee00651461037c578063313ce5671461038657806332cb6b0c146103a457806339509351146103c257610272565b8063015970ef1461027657806306fdde03146102a6578063095ea7b3146102c45780630b78f9c0146102f457806318160ddd14610310575b5f80fd5b610290600480360381019061028b91906124d3565b61081e565b60405161029d9190612518565b60405180910390f35b6102ae61083b565b6040516102bb91906125bb565b60405180910390f35b6102de60048036038101906102d9919061260e565b6108cb565b6040516102eb9190612518565b60405180910390f35b61030e6004803603810190610309919061264c565b6108ed565b005b610318610907565b6040516103259190612699565b60405180910390f35b610336610910565b6040516103439190612699565b60405180910390f35b610366600480360381019061036191906126b2565b610916565b6040516103739190612518565b60405180910390f35b610384610944565b005b61038e610a26565b60405161039b919061271d565b60405180910390f35b6103ac610a2e565b6040516103b99190612699565b60405180910390f35b6103dc60048036038101906103d7919061260e565b610a34565b6040516103e99190612518565b60405180910390f35b61040c600480360381019061040791906124d3565b610a6a565b005b610416610b3c565b6040516104239190612518565b60405180910390f35b610434610b4e565b6040516104419190612745565b60405180910390f35b610464600480360381019061045f91906124d3565b610b73565b6040516104719190612518565b60405180910390f35b610482610b90565b60405161048f91906127b9565b60405180910390f35b6104b260048036038101906104ad91906124d3565b610ba8565b005b6104ce60048036038101906104c991906124d3565b610c4b565b005b6104ea60048036038101906104e591906124d3565b610ced565b6040516104f79190612699565b60405180910390f35b610508610d32565b005b610524600480360381019061051f91906124d3565b610d45565b005b610540600480360381019061053b91906124d3565b610de8565b005b61054a610e8a565b6040516105579190612745565b60405180910390f35b610568610eaf565b6040516105759190612745565b60405180910390f35b610598600480360381019061059391906124d3565b610ed7565b005b6105a2610f79565b6040516105af9190612699565b60405180910390f35b6105c0610f7f565b6040516105cd91906125bb565b60405180910390f35b6105f060048036038101906105eb91906124d3565b61100f565b005b61060c6004803603810190610607919061260e565b611179565b6040516106199190612518565b60405180910390f35b61063c6004803603810190610637919061260e565b6111ee565b6040516106499190612518565b60405180910390f35b61065a611210565b6040516106679190612745565b60405180910390f35b610678611235565b6040516106859190612745565b60405180910390f35b6106a860048036038101906106a391906127d2565b61124d565b005b6106c460048036038101906106bf91906124d3565b61125f565b6040516106d19190612518565b60405180910390f35b6106f460048036038101906106ef91906124d3565b61127c565b005b610710600480360381019061070b91906124d3565b61131e565b005b61071a6113c1565b6040516107279190612699565b60405180910390f35b6107386113c7565b6040516107459190612745565b60405180910390f35b610768600480360381019061076391906124d3565b6113df565b6040516107759190612518565b60405180910390f35b610798600480360381019061079391906127fd565b6113fc565b6040516107a59190612699565b60405180910390f35b6107c860048036038101906107c391906124d3565b61147e565b005b6107e460048036038101906107df91906124d3565b611550565b005b61080060048036038101906107fb91906124d3565b6115f3565b005b61081c600480360381019061081791906124d3565b6116df565b005b6010602052805f5260405f205f915054906101000a900460ff1681565b60606003805461084a90612868565b80601f016020809104026020016040519081016040528092919081815260200182805461087690612868565b80156108c15780601f10610898576101008083540402835291602001916108c1565b820191905f5260205f20905b8154815290600101906020018083116108a457829003601f168201915b5050505050905090565b5f806108d5611761565b90506108e2818585611768565b600191505092915050565b6108f561192b565b81600c8190555080600b819055505050565b5f600254905090565b600b5481565b5f80610920611761565b905061092d8582856119a9565b610938858585611a34565b60019150509392505050565b61094c61192b565b6001600d5f6101000a81548160ff0219169083151502179055506001600f5f737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506001600f5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550565b5f6012905090565b60095481565b5f80610a3e611761565b9050610a5f818585610a5085896113fc565b610a5a91906128c5565b611768565b600191505092915050565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610af9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610af090612942565b60405180910390fd5b8060085f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600d5f9054906101000a900460ff1681565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600f602052805f5260405f205f915054906101000a900460ff1681565b735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f81565b610bb061192b565b600160105f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167f25258e5fcee0fd1d311feb4c0a773423ef9daf16214c5be13d84eee8400835da60405160405180910390a250565b610c5361192b565b5f60115f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167f88223d25b06991a93ced798e18bf7babbc262ba29a90d71425ae4fcb25964bdc60405160405180910390a250565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610d3a61192b565b610d435f6120e8565b565b610d4d61192b565b6001600e5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167f4e173d2a53aaeddf36d1c606ae4e6b54714a5fadbcad6bc47fb94a30907196bf60405160405180910390a250565b610df061192b565b5f600f5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167f9ac7906184b39e467e91e7580944a7134ba5e897e398edd29a870380a94614f160405160405180910390a250565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610edf61192b565b5f60105f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167faa558bf0696ec848eb0501e9db8cacc1ccb481b48e6df4c0ede58cdc8ea550cd60405160405180910390a250565b600a5481565b606060048054610f8e90612868565b80601f0160208091040260200160405190810160405280929190818152602001828054610fba90612868565b80156110055780601f10610fdc57610100808354040283529160200191611005565b820191905f5260205f20905b815481529060010190602001808311610fe857829003601f168201915b5050505050905090565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461109e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109590612942565b60405180910390fd5b8060065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600f5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167f7fa62dbecfeb8e7ba4a5bde57c04b89b3fa1b20a5a78b9b97446867e87bac44060405160405180910390a250565b5f80611183611761565b90505f61119082866113fc565b9050838110156111d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111cc906129d0565b60405180910390fd5b6111e28286868403611768565b60019250505092915050565b5f806111f8611761565b9050611205818585611a34565b600191505092915050565b60085f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b73c02aaa39b223fe8d0a0e5c4f27ead9083c756cc281565b61125561192b565b80600a8190555050565b6011602052805f5260405f205f915054906101000a900460ff1681565b61128461192b565b5f600e5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167f043c07b6417f2815a7281cbe5e531a76a117d0f155f912061d6c3f7df72b972760405160405180910390a250565b61132661192b565b600160115f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167f8d7b4cfe6a3d57a6b43c050c8d1d1e2cb3fa60b34bee2dc2b5c5add2da06b39660405160405180910390a250565b600c5481565b737a250d5630b4cf539739df2c5dacb4c659f2488d81565b600e602052805f5260405f205f915054906101000a900460ff1681565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461150d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150490612a5e565b60405180910390fd5b8060075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61155861192b565b6001600f5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508073ffffffffffffffffffffffffffffffffffffffff167f7fa62dbecfeb8e7ba4a5bde57c04b89b3fa1b20a5a78b9b97446867e87bac44060405160405180910390a250565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611682576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167990612aec565b60405180910390fd5b5f61168c30610ced565b90505f81116116d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116c790612b54565b60405180910390fd5b6116db308383611a34565b5050565b6116e761192b565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611755576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174c90612be2565b60405180910390fd5b61175e816120e8565b50565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036117d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117cd90612c70565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611844576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183b90612cfe565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161191e9190612699565b60405180910390a3505050565b611933611761565b73ffffffffffffffffffffffffffffffffffffffff16611951610eaf565b73ffffffffffffffffffffffffffffffffffffffff16146119a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161199e90612d66565b60405180910390fd5b565b5f6119b484846113fc565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611a2e5781811015611a20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a1790612dce565b60405180910390fd5b611a2d8484848403611768565b5b50505050565b600d5f9054906101000a900460ff16611a82576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7990612e36565b60405180910390fd5b600e5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16158015611b205750600e5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b611b5f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5690612ec4565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611bcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc490612f52565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611c3b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3290612fe0565b60405180910390fd5b60115f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015611cdd575060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b15611d1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d149061306e565b60405180910390fd5b5f60105f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680611db9575060105f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b15611dc6575f9050611e80565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611e2457600c549050611e7f565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611e7e57600b5490505b5b5b600f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff166120825760105f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680611f69575060105f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b611fd157600a54611f8b83611f7d86610ced565b6121ab90919063ffffffff16565b1115611fcc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc3906130d6565b60405180910390fd5b612081565b60105f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161561208057600a5461203e8361203086610ced565b6121ab90919063ffffffff16565b111561207f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612076906130d6565b60405180910390fd5b5b5b5b5f6120a9606461209b84866121c090919063ffffffff16565b6121d590919063ffffffff16565b90505f6120bf82856121ea90919063ffffffff16565b90506120cc8686836121ff565b5f8211156120e0576120df8630846121ff565b5b505050505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508160055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f81836121b891906128c5565b905092915050565b5f81836121cd91906130f4565b905092915050565b5f81836121e29190613162565b905092915050565b5f81836121f79190613192565b905092915050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361226d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226490612f52565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036122db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122d290612fe0565b60405180910390fd5b6122e683838361246b565b5f805f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015612369576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161236090613235565b60405180910390fd5b8181035f808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516124529190612699565b60405180910390a3612465848484612470565b50505050565b505050565b505050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6124a282612479565b9050919050565b6124b281612498565b81146124bc575f80fd5b50565b5f813590506124cd816124a9565b92915050565b5f602082840312156124e8576124e7612475565b5b5f6124f5848285016124bf565b91505092915050565b5f8115159050919050565b612512816124fe565b82525050565b5f60208201905061252b5f830184612509565b92915050565b5f81519050919050565b5f82825260208201905092915050565b5f5b8381101561256857808201518184015260208101905061254d565b5f8484015250505050565b5f601f19601f8301169050919050565b5f61258d82612531565b612597818561253b565b93506125a781856020860161254b565b6125b081612573565b840191505092915050565b5f6020820190508181035f8301526125d38184612583565b905092915050565b5f819050919050565b6125ed816125db565b81146125f7575f80fd5b50565b5f81359050612608816125e4565b92915050565b5f806040838503121561262457612623612475565b5b5f612631858286016124bf565b9250506020612642858286016125fa565b9150509250929050565b5f806040838503121561266257612661612475565b5b5f61266f858286016125fa565b9250506020612680858286016125fa565b9150509250929050565b612693816125db565b82525050565b5f6020820190506126ac5f83018461268a565b92915050565b5f805f606084860312156126c9576126c8612475565b5b5f6126d6868287016124bf565b93505060206126e7868287016124bf565b92505060406126f8868287016125fa565b9150509250925092565b5f60ff82169050919050565b61271781612702565b82525050565b5f6020820190506127305f83018461270e565b92915050565b61273f81612498565b82525050565b5f6020820190506127585f830184612736565b92915050565b5f819050919050565b5f61278161277c61277784612479565b61275e565b612479565b9050919050565b5f61279282612767565b9050919050565b5f6127a382612788565b9050919050565b6127b381612799565b82525050565b5f6020820190506127cc5f8301846127aa565b92915050565b5f602082840312156127e7576127e6612475565b5b5f6127f4848285016125fa565b91505092915050565b5f806040838503121561281357612812612475565b5b5f612820858286016124bf565b9250506020612831858286016124bf565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061287f57607f821691505b6020821081036128925761289161283b565b5b50919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6128cf826125db565b91506128da836125db565b92508282019050808211156128f2576128f1612898565b5b92915050565b7f4e6f7420617574686f72697a65640000000000000000000000000000000000005f82015250565b5f61292c600e8361253b565b9150612937826128f8565b602082019050919050565b5f6020820190508181035f83015261295981612920565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f6129ba60258361253b565b91506129c582612960565b604082019050919050565b5f6020820190508181035f8301526129e7816129ae565b9050919050565b7f4f6e6c79207468652063757272656e742049525320526f626265722063616e205f8201527f7365742061206e6577206f6e652e000000000000000000000000000000000000602082015250565b5f612a48602e8361253b565b9150612a53826129ee565b604082019050919050565b5f6020820190508181035f830152612a7581612a3c565b9050919050565b7f4f6e6c79207468652064657369676e617465642049525320526f6262657220635f8201527f616e20726f6220746865204952532e0000000000000000000000000000000000602082015250565b5f612ad6602f8361253b565b9150612ae182612a7c565b604082019050919050565b5f6020820190508181035f830152612b0381612aca565b9050919050565b7f4e6f2062757474657220746f20776974686472617700000000000000000000005f82015250565b5f612b3e60158361253b565b9150612b4982612b0a565b602082019050919050565b5f6020820190508181035f830152612b6b81612b32565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f612bcc60268361253b565b9150612bd782612b72565b604082019050919050565b5f6020820190508181035f830152612bf981612bc0565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f612c5a60248361253b565b9150612c6582612c00565b604082019050919050565b5f6020820190508181035f830152612c8781612c4e565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f612ce860228361253b565b9150612cf382612c8e565b604082019050919050565b5f6020820190508181035f830152612d1581612cdc565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f612d5060208361253b565b9150612d5b82612d1c565b602082019050919050565b5f6020820190508181035f830152612d7d81612d44565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000005f82015250565b5f612db8601d8361253b565b9150612dc382612d84565b602082019050919050565b5f6020820190508181035f830152612de581612dac565b9050919050565b7f436875726e206973206e6f7420656e61626c6564207965742e000000000000005f82015250565b5f612e2060198361253b565b9150612e2b82612dec565b602082019050919050565b5f6020820190508181035f830152612e4d81612e14565b9050919050565b7f4569746865722073656e646572206f7220726563697069656e742069732064655f8201527f6c657465642e0000000000000000000000000000000000000000000000000000602082015250565b5f612eae60268361253b565b9150612eb982612e54565b604082019050919050565b5f6020820190508181035f830152612edb81612ea2565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f612f3c60258361253b565b9150612f4782612ee2565b604082019050919050565b5f6020820190508181035f830152612f6981612f30565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f612fca60238361253b565b9150612fd582612f70565b604082019050919050565b5f6020820190508181035f830152612ff781612fbe565b9050919050565b7f596f752061726520696e207468652052617420547261702c20707265706172655f8201527f20746f206469652e000000000000000000000000000000000000000000000000602082015250565b5f61305860288361253b565b915061306382612ffe565b604082019050919050565b5f6020820190508181035f8301526130858161304c565b9050919050565b7f45786365656473204d617820436875726e2053697a65000000000000000000005f82015250565b5f6130c060168361253b565b91506130cb8261308c565b602082019050919050565b5f6020820190508181035f8301526130ed816130b4565b9050919050565b5f6130fe826125db565b9150613109836125db565b9250828202613117816125db565b9150828204841483151761312e5761312d612898565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61316c826125db565b9150613177836125db565b92508261318757613186613135565b5b828204905092915050565b5f61319c826125db565b91506131a7836125db565b92508282039050818111156131bf576131be612898565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f61321f60268361253b565b915061322a826131c5565b604082019050919050565b5f6020820190508181035f83015261324c81613213565b905091905056fea2646970667358221220e29291e25e7f9de9a6cc701037dad17a0714432d6111f1f7a392dff87aec620364736f6c63430008150033

Deployed Bytecode Sourcemap

30278:6614:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31150:46;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16286:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18646:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35090:139;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17415:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30921:28;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19427:261;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32143:168;;;:::i;:::-;;17257:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30758:46;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20097:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36283:167;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31009:32;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30484:28;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31099:44;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30362:114;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34615:149;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36760:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17586;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9741:103;;;:::i;:::-;;33800:142;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34377:149;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30691:24;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9100:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34927:155;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30867:47;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16505:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36018:259;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20838:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17919:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30722:26;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30519:73;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35235:118;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31203:41;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;33954:147;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;36541:122;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30973:28;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30600:83;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31050:42;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18175:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;35440:187;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34158:143;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35687:325;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9999:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;31150:46;;;;;;;;;;;;;;;;;;;;;;:::o;16286:100::-;16340:13;16373:5;16366:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16286:100;:::o;18646:201::-;18729:4;18746:13;18762:12;:10;:12::i;:::-;18746:28;;18785:32;18794:5;18801:7;18810:6;18785:8;:32::i;:::-;18835:4;18828:11;;;18646:201;;;;:::o;35090:139::-;8986:13;:11;:13::i;:::-;35184:8:::1;35172:9;:20;;;;35214:7;35203:8;:18;;;;35090:139:::0;;:::o;17415:108::-;17476:7;17503:12;;17496:19;;17415:108;:::o;30921:28::-;;;;:::o;19427:261::-;19524:4;19541:15;19559:12;:10;:12::i;:::-;19541:30;;19582:38;19598:4;19604:7;19613:6;19582:15;:38::i;:::-;19631:27;19641:4;19647:2;19651:6;19631:9;:27::i;:::-;19676:4;19669:11;;;19427:261;;;;;:::o;32143:168::-;8986:13;:11;:13::i;:::-;32211:4:::1;32196:12;;:19;;;;;;;;;;;;;;;;;;32257:4;32226:12;:28;30641:42;32226:28;;;;;;;;;;;;;;;;:35;;;;;;;;;;;;;;;;;;32299:4;32272:12;:24;32285:10;32272:24;;;;;;;;;;;;;;;;:31;;;;;;;;;;;;;;;;;;32143:168::o:0;17257:93::-;17315:5;17340:2;17333:9;;17257:93;:::o;30758:46::-;;;;:::o;20097:238::-;20185:4;20202:13;20218:12;:10;:12::i;:::-;20202:28;;20241:64;20250:5;20257:7;20294:10;20266:25;20276:5;20283:7;20266:9;:25::i;:::-;:38;;;;:::i;:::-;20241:8;:64::i;:::-;20323:4;20316:11;;;20097:238;;;;:::o;36283:167::-;36372:11;;;;;;;;;;;36358:25;;:10;:25;;;36350:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;36427:15;36413:11;;:29;;;;;;;;;;;;;;;;;;36283:167;:::o;31009:32::-;;;;;;;;;;;;;:::o;30484:28::-;;;;;;;;;;;;;:::o;31099:44::-;;;;;;;;;;;;;;;;;;;;;;:::o;30362:114::-;30433:42;30362:114;:::o;34615:149::-;8986:13;:11;:13::i;:::-;34713:4:::1;34687:14;:23;34702:7;34687:23;;;;;;;;;;;;;;;;:30;;;;;;;;;;;;;;;;;;34748:7;34733:23;;;;;;;;;;;;34615:149:::0;:::o;36760:127::-;8986:13;:11;:13::i;:::-;36845:5:::1;36824:9;:18;36834:7;36824:18;;;;;;;;;;;;;;;;:26;;;;;;;;;;;;;;;;;;36874:7;36862:20;;;;;;;;;;;;36760:127:::0;:::o;17586:::-;17660:7;17687:9;:18;17697:7;17687:18;;;;;;;;;;;;;;;;17680:25;;17586:127;;;:::o;9741:103::-;8986:13;:11;:13::i;:::-;9806:30:::1;9833:1;9806:18;:30::i;:::-;9741:103::o:0;33800:142::-;8986:13;:11;:13::i;:::-;33894:4:::1;33872:10;:19;33883:7;33872:19;;;;;;;;;;;;;;;;:26;;;;;;;;;;;;;;;;;;33926:7;33914:20;;;;;;;;;;;;33800:142:::0;:::o;34377:149::-;8986:13;:11;:13::i;:::-;34474:5:::1;34450:12;:21;34463:7;34450:21;;;;;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;34510:7;34495:23;;;;;;;;;;;;34377:149:::0;:::o;30691:24::-;;;;;;;;;;;;;:::o;9100:87::-;9146:7;9173:6;;;;;;;;;;;9166:13;;9100:87;:::o;34927:155::-;8986:13;:11;:13::i;:::-;35028:5:::1;35002:14;:23;35017:7;35002:23;;;;;;;;;;;;;;;;:31;;;;;;;;;;;;;;;;;;35066:7;35049:25;;;;;;;;;;;;34927:155:::0;:::o;30867:47::-;;;;:::o;16505:104::-;16561:13;16594:7;16587:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16505:104;:::o;36018:259::-;36108:11;;;;;;;;;;;36094:25;;:10;:25;;;36086:52;;;;;;;;;;;;:::i;:::-;;;;;;;;;36165:14;36149:13;;:30;;;;;;;;;;;;;;;;;;36221:4;36190:12;:28;36203:14;36190:28;;;;;;;;;;;;;;;;:35;;;;;;;;;;;;;;;;;;36254:14;36241:28;;;;;;;;;;;;36018:259;:::o;20838:436::-;20931:4;20948:13;20964:12;:10;:12::i;:::-;20948:28;;20987:24;21014:25;21024:5;21031:7;21014:9;:25::i;:::-;20987:52;;21078:15;21058:16;:35;;21050:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;21171:60;21180:5;21187:7;21215:15;21196:16;:34;21171:8;:60::i;:::-;21262:4;21255:11;;;;20838:436;;;;:::o;17919:193::-;17998:4;18015:13;18031:12;:10;:12::i;:::-;18015:28;;18054;18064:5;18071:2;18075:6;18054:9;:28::i;:::-;18100:4;18093:11;;;17919:193;;;;:::o;30722:26::-;;;;;;;;;;;;;:::o;30519:73::-;30550:42;30519:73;:::o;35235:118::-;8986:13;:11;:13::i;:::-;35330:15:::1;35313:14;:32;;;;35235:118:::0;:::o;31203:41::-;;;;;;;;;;;;;;;;;;;;;;:::o;33954:147::-;8986:13;:11;:13::i;:::-;34050:5:::1;34028:10;:19;34039:7;34028:19;;;;;;;;;;;;;;;;:27;;;;;;;;;;;;;;;;;;34085:7;34071:22;;;;;;;;;;;;33954:147:::0;:::o;36541:122::-;8986:13;:11;:13::i;:::-;36620:4:::1;36599:9;:18;36609:7;36599:18;;;;;;;;;;;;;;;;:25;;;;;;;;;;;;;;;;;;36647:7;36636:19;;;;;;;;;;;;36541:122:::0;:::o;30973:28::-;;;;:::o;30600:83::-;30641:42;30600:83;:::o;31050:42::-;;;;;;;;;;;;;;;;;;;;;;:::o;18175:151::-;18264:7;18291:11;:18;18303:5;18291:18;;;;;;;;;;;;;;;:27;18310:7;18291:27;;;;;;;;;;;;;;;;18284:34;;18175:151;;;;:::o;35440:187::-;35524:9;;;;;;;;;;;35510:23;;:10;:23;;;35502:82;;;;;;;;;;;;:::i;:::-;;;;;;;;;35607:12;35595:9;;:24;;;;;;;;;;;;;;;;;;35440:187;:::o;34158:143::-;8986:13;:11;:13::i;:::-;34252:4:::1;34228:12;:21;34241:7;34228:21;;;;;;;;;;;;;;;;:28;;;;;;;;;;;;;;;;;;34285:7;34272:21;;;;;;;;;;;;34158:143:::0;:::o;35687:325::-;35760:9;;;;;;;;;;;35746:23;;:10;:23;;;35738:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;35832:23;35858:24;35876:4;35858:9;:24::i;:::-;35832:50;;35919:1;35901:15;:19;35893:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;35959:45;35977:4;35984:2;35988:15;35959:9;:45::i;:::-;35727:285;35687:325;:::o;9999:201::-;8986:13;:11;:13::i;:::-;10108:1:::1;10088:22;;:8;:22;;::::0;10080:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;10164:28;10183:8;10164:18;:28::i;:::-;9999:201:::0;:::o;7651:98::-;7704:7;7731:10;7724:17;;7651:98;:::o;24831:346::-;24950:1;24933:19;;:5;:19;;;24925:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;25031:1;25012:21;;:7;:21;;;25004:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;25115:6;25085:11;:18;25097:5;25085:18;;;;;;;;;;;;;;;:27;25104:7;25085:27;;;;;;;;;;;;;;;:36;;;;25153:7;25137:32;;25146:5;25137:32;;;25162:6;25137:32;;;;;;:::i;:::-;;;;;;;;24831:346;;;:::o;9265:132::-;9340:12;:10;:12::i;:::-;9329:23;;:7;:5;:7::i;:::-;:23;;;9321:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;9265:132::o;25468:419::-;25569:24;25596:25;25606:5;25613:7;25596:9;:25::i;:::-;25569:52;;25656:17;25636:16;:37;25632:248;;25718:6;25698:16;:26;;25690:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;25802:51;25811:5;25818:7;25846:6;25827:16;:25;25802:8;:51::i;:::-;25632:248;25558:329;25468:419;;;:::o;32319:1468::-;32422:12;;;;;;;;;;;32414:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;32480:10;:18;32491:6;32480:18;;;;;;;;;;;;;;;;;;;;;;;;;32479:19;:45;;;;;32503:10;:21;32514:9;32503:21;;;;;;;;;;;;;;;;;;;;;;;;;32502:22;32479:45;32471:96;;;;;;;;;;;;:::i;:::-;;;;;;;;;32600:1;32582:20;;:6;:20;;;32574:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;32680:1;32659:23;;:9;:23;;;32651:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;32739:9;:17;32749:6;32739:17;;;;;;;;;;;;;;;;;;;;;;;;;:47;;;;;32773:13;;;;;;;;;;;32760:26;;:9;:26;;;32739:47;32737:50;32729:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;32841:18;32876:14;:22;32891:6;32876:22;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;32902:14;:25;32917:9;32902:25;;;;;;;;;;;;;;;;;;;;;;;;;32876:51;32872:280;;;32953:1;32940:14;;32872:280;;;32993:13;;;;;;;;;;;32983:23;;:6;:23;;;32979:166;;33036:9;;33023:22;;32979:166;;;33081:13;;;;;;;;;;;33068:26;;:9;:26;;;33064:81;;33124:8;;33111:21;;33064:81;32979:166;32872:280;33165:12;:23;33178:9;33165:23;;;;;;;;;;;;;;;;;;;;;;;;;33160:369;;33207:14;:22;33222:6;33207:22;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;33233:14;:25;33248:9;33233:25;;;;;;;;;;;;;;;;;;;;;;;;;33207:51;33201:321;;33320:14;;33284:32;33309:6;33284:20;33294:9;33284;:20::i;:::-;:24;;:32;;;;:::i;:::-;:50;;33276:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;33201:321;;;33383:14;:25;33398:9;33383:25;;;;;;;;;;;;;;;;;;;;;;;;;33379:143;;;33469:14;;33433:32;33458:6;33433:20;33443:9;33433;:20::i;:::-;:24;;:32;;;;:::i;:::-;:50;;33425:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;33379:143;33201:321;33160:369;33537:17;33557:31;33584:3;33557:22;33568:10;33557:6;:10;;:22;;;;:::i;:::-;:26;;:31;;;;:::i;:::-;33537:51;;33595:17;33615:21;33626:9;33615:6;:10;;:21;;;;:::i;:::-;33595:41;;33645:45;33661:6;33669:9;33680;33645:15;:45::i;:::-;33713:1;33701:9;:13;33697:87;;;33727:49;33743:6;33759:4;33766:9;33727:15;:49::i;:::-;33697:87;32407:1380;;;32319:1468;;;:::o;10360:191::-;10434:16;10453:6;;;;;;;;;;;10434:25;;10479:8;10470:6;;:17;;;;;;;;;;;;;;;;;;10534:8;10503:40;;10524:8;10503:40;;;;;;;;;;;;10423:128;10360:191;:::o;2909:98::-;2967:7;2998:1;2994;:5;;;;:::i;:::-;2987:12;;2909:98;;;;:::o;3647:::-;3705:7;3736:1;3732;:5;;;;:::i;:::-;3725:12;;3647:98;;;;:::o;4046:::-;4104:7;4135:1;4131;:5;;;;:::i;:::-;4124:12;;4046:98;;;;:::o;3290:::-;3348:7;3379:1;3375;:5;;;;:::i;:::-;3368:12;;3290:98;;;;:::o;21744:806::-;21857:1;21841:18;;:4;:18;;;21833:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;21934:1;21920:16;;:2;:16;;;21912:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;21989:38;22010:4;22016:2;22020:6;21989:20;:38::i;:::-;22040:19;22062:9;:15;22072:4;22062:15;;;;;;;;;;;;;;;;22040:37;;22111:6;22096:11;:21;;22088:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;22228:6;22214:11;:20;22196:9;:15;22206:4;22196:15;;;;;;;;;;;;;;;:38;;;;22431:6;22414:9;:13;22424:2;22414:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;22481:2;22466:26;;22475:4;22466:26;;;22485:6;22466:26;;;;;;:::i;:::-;;;;;;;;22505:37;22525:4;22531:2;22535:6;22505:19;:37::i;:::-;21822:728;21744:806;;;:::o;26487:91::-;;;;:::o;27182:90::-;;;;:::o;88:117:1:-;197:1;194;187:12;334:126;371:7;411:42;404:5;400:54;389:65;;334:126;;;:::o;466:96::-;503:7;532:24;550:5;532:24;:::i;:::-;521:35;;466:96;;;:::o;568:122::-;641:24;659:5;641:24;:::i;:::-;634:5;631:35;621:63;;680:1;677;670:12;621:63;568:122;:::o;696:139::-;742:5;780:6;767:20;758:29;;796:33;823:5;796:33;:::i;:::-;696:139;;;;:::o;841:329::-;900:6;949:2;937:9;928:7;924:23;920:32;917:119;;;955:79;;:::i;:::-;917:119;1075:1;1100:53;1145:7;1136:6;1125:9;1121:22;1100:53;:::i;:::-;1090:63;;1046:117;841:329;;;;:::o;1176:90::-;1210:7;1253:5;1246:13;1239:21;1228:32;;1176:90;;;:::o;1272:109::-;1353:21;1368:5;1353:21;:::i;:::-;1348:3;1341:34;1272:109;;:::o;1387:210::-;1474:4;1512:2;1501:9;1497:18;1489:26;;1525:65;1587:1;1576:9;1572:17;1563:6;1525:65;:::i;:::-;1387:210;;;;:::o;1603:99::-;1655:6;1689:5;1683:12;1673:22;;1603:99;;;:::o;1708:169::-;1792:11;1826:6;1821:3;1814:19;1866:4;1861:3;1857:14;1842:29;;1708:169;;;;:::o;1883:246::-;1964:1;1974:113;1988:6;1985:1;1982:13;1974:113;;;2073:1;2068:3;2064:11;2058:18;2054:1;2049:3;2045:11;2038:39;2010:2;2007:1;2003:10;1998:15;;1974:113;;;2121:1;2112:6;2107:3;2103:16;2096:27;1945:184;1883:246;;;:::o;2135:102::-;2176:6;2227:2;2223:7;2218:2;2211:5;2207:14;2203:28;2193:38;;2135:102;;;:::o;2243:377::-;2331:3;2359:39;2392:5;2359:39;:::i;:::-;2414:71;2478:6;2473:3;2414:71;:::i;:::-;2407:78;;2494:65;2552:6;2547:3;2540:4;2533:5;2529:16;2494:65;:::i;:::-;2584:29;2606:6;2584:29;:::i;:::-;2579:3;2575:39;2568:46;;2335:285;2243:377;;;;:::o;2626:313::-;2739:4;2777:2;2766:9;2762:18;2754:26;;2826:9;2820:4;2816:20;2812:1;2801:9;2797:17;2790:47;2854:78;2927:4;2918:6;2854:78;:::i;:::-;2846:86;;2626:313;;;;:::o;2945:77::-;2982:7;3011:5;3000:16;;2945:77;;;:::o;3028:122::-;3101:24;3119:5;3101:24;:::i;:::-;3094:5;3091:35;3081:63;;3140:1;3137;3130:12;3081:63;3028:122;:::o;3156:139::-;3202:5;3240:6;3227:20;3218:29;;3256:33;3283:5;3256:33;:::i;:::-;3156:139;;;;:::o;3301:474::-;3369:6;3377;3426:2;3414:9;3405:7;3401:23;3397:32;3394:119;;;3432:79;;:::i;:::-;3394:119;3552:1;3577:53;3622:7;3613:6;3602:9;3598:22;3577:53;:::i;:::-;3567:63;;3523:117;3679:2;3705:53;3750:7;3741:6;3730:9;3726:22;3705:53;:::i;:::-;3695:63;;3650:118;3301:474;;;;;:::o;3781:::-;3849:6;3857;3906:2;3894:9;3885:7;3881:23;3877:32;3874:119;;;3912:79;;:::i;:::-;3874:119;4032:1;4057:53;4102:7;4093:6;4082:9;4078:22;4057:53;:::i;:::-;4047:63;;4003:117;4159:2;4185:53;4230:7;4221:6;4210:9;4206:22;4185:53;:::i;:::-;4175:63;;4130:118;3781:474;;;;;:::o;4261:118::-;4348:24;4366:5;4348:24;:::i;:::-;4343:3;4336:37;4261:118;;:::o;4385:222::-;4478:4;4516:2;4505:9;4501:18;4493:26;;4529:71;4597:1;4586:9;4582:17;4573:6;4529:71;:::i;:::-;4385:222;;;;:::o;4613:619::-;4690:6;4698;4706;4755:2;4743:9;4734:7;4730:23;4726:32;4723:119;;;4761:79;;:::i;:::-;4723:119;4881:1;4906:53;4951:7;4942:6;4931:9;4927:22;4906:53;:::i;:::-;4896:63;;4852:117;5008:2;5034:53;5079:7;5070:6;5059:9;5055:22;5034:53;:::i;:::-;5024:63;;4979:118;5136:2;5162:53;5207:7;5198:6;5187:9;5183:22;5162:53;:::i;:::-;5152:63;;5107:118;4613:619;;;;;:::o;5238:86::-;5273:7;5313:4;5306:5;5302:16;5291:27;;5238:86;;;:::o;5330:112::-;5413:22;5429:5;5413:22;:::i;:::-;5408:3;5401:35;5330:112;;:::o;5448:214::-;5537:4;5575:2;5564:9;5560:18;5552:26;;5588:67;5652:1;5641:9;5637:17;5628:6;5588:67;:::i;:::-;5448:214;;;;:::o;5668:118::-;5755:24;5773:5;5755:24;:::i;:::-;5750:3;5743:37;5668:118;;:::o;5792:222::-;5885:4;5923:2;5912:9;5908:18;5900:26;;5936:71;6004:1;5993:9;5989:17;5980:6;5936:71;:::i;:::-;5792:222;;;;:::o;6020:60::-;6048:3;6069:5;6062:12;;6020:60;;;:::o;6086:142::-;6136:9;6169:53;6187:34;6196:24;6214:5;6196:24;:::i;:::-;6187:34;:::i;:::-;6169:53;:::i;:::-;6156:66;;6086:142;;;:::o;6234:126::-;6284:9;6317:37;6348:5;6317:37;:::i;:::-;6304:50;;6234:126;;;:::o;6366:152::-;6442:9;6475:37;6506:5;6475:37;:::i;:::-;6462:50;;6366:152;;;:::o;6524:183::-;6637:63;6694:5;6637:63;:::i;:::-;6632:3;6625:76;6524:183;;:::o;6713:274::-;6832:4;6870:2;6859:9;6855:18;6847:26;;6883:97;6977:1;6966:9;6962:17;6953:6;6883:97;:::i;:::-;6713:274;;;;:::o;6993:329::-;7052:6;7101:2;7089:9;7080:7;7076:23;7072:32;7069:119;;;7107:79;;:::i;:::-;7069:119;7227:1;7252:53;7297:7;7288:6;7277:9;7273:22;7252:53;:::i;:::-;7242:63;;7198:117;6993:329;;;;:::o;7328:474::-;7396:6;7404;7453:2;7441:9;7432:7;7428:23;7424:32;7421:119;;;7459:79;;:::i;:::-;7421:119;7579:1;7604:53;7649:7;7640:6;7629:9;7625:22;7604:53;:::i;:::-;7594:63;;7550:117;7706:2;7732:53;7777:7;7768:6;7757:9;7753:22;7732:53;:::i;:::-;7722:63;;7677:118;7328:474;;;;;:::o;7808:180::-;7856:77;7853:1;7846:88;7953:4;7950:1;7943:15;7977:4;7974:1;7967:15;7994:320;8038:6;8075:1;8069:4;8065:12;8055:22;;8122:1;8116:4;8112:12;8143:18;8133:81;;8199:4;8191:6;8187:17;8177:27;;8133:81;8261:2;8253:6;8250:14;8230:18;8227:38;8224:84;;8280:18;;:::i;:::-;8224:84;8045:269;7994:320;;;:::o;8320:180::-;8368:77;8365:1;8358:88;8465:4;8462:1;8455:15;8489:4;8486:1;8479:15;8506:191;8546:3;8565:20;8583:1;8565:20;:::i;:::-;8560:25;;8599:20;8617:1;8599:20;:::i;:::-;8594:25;;8642:1;8639;8635:9;8628:16;;8663:3;8660:1;8657:10;8654:36;;;8670:18;;:::i;:::-;8654:36;8506:191;;;;:::o;8703:164::-;8843:16;8839:1;8831:6;8827:14;8820:40;8703:164;:::o;8873:366::-;9015:3;9036:67;9100:2;9095:3;9036:67;:::i;:::-;9029:74;;9112:93;9201:3;9112:93;:::i;:::-;9230:2;9225:3;9221:12;9214:19;;8873:366;;;:::o;9245:419::-;9411:4;9449:2;9438:9;9434:18;9426:26;;9498:9;9492:4;9488:20;9484:1;9473:9;9469:17;9462:47;9526:131;9652:4;9526:131;:::i;:::-;9518:139;;9245:419;;;:::o;9670:224::-;9810:34;9806:1;9798:6;9794:14;9787:58;9879:7;9874:2;9866:6;9862:15;9855:32;9670:224;:::o;9900:366::-;10042:3;10063:67;10127:2;10122:3;10063:67;:::i;:::-;10056:74;;10139:93;10228:3;10139:93;:::i;:::-;10257:2;10252:3;10248:12;10241:19;;9900:366;;;:::o;10272:419::-;10438:4;10476:2;10465:9;10461:18;10453:26;;10525:9;10519:4;10515:20;10511:1;10500:9;10496:17;10489:47;10553:131;10679:4;10553:131;:::i;:::-;10545:139;;10272:419;;;:::o;10697:233::-;10837:34;10833:1;10825:6;10821:14;10814:58;10906:16;10901:2;10893:6;10889:15;10882:41;10697:233;:::o;10936:366::-;11078:3;11099:67;11163:2;11158:3;11099:67;:::i;:::-;11092:74;;11175:93;11264:3;11175:93;:::i;:::-;11293:2;11288:3;11284:12;11277:19;;10936:366;;;:::o;11308:419::-;11474:4;11512:2;11501:9;11497:18;11489:26;;11561:9;11555:4;11551:20;11547:1;11536:9;11532:17;11525:47;11589:131;11715:4;11589:131;:::i;:::-;11581:139;;11308:419;;;:::o;11733:234::-;11873:34;11869:1;11861:6;11857:14;11850:58;11942:17;11937:2;11929:6;11925:15;11918:42;11733:234;:::o;11973:366::-;12115:3;12136:67;12200:2;12195:3;12136:67;:::i;:::-;12129:74;;12212:93;12301:3;12212:93;:::i;:::-;12330:2;12325:3;12321:12;12314:19;;11973:366;;;:::o;12345:419::-;12511:4;12549:2;12538:9;12534:18;12526:26;;12598:9;12592:4;12588:20;12584:1;12573:9;12569:17;12562:47;12626:131;12752:4;12626:131;:::i;:::-;12618:139;;12345:419;;;:::o;12770:171::-;12910:23;12906:1;12898:6;12894:14;12887:47;12770:171;:::o;12947:366::-;13089:3;13110:67;13174:2;13169:3;13110:67;:::i;:::-;13103:74;;13186:93;13275:3;13186:93;:::i;:::-;13304:2;13299:3;13295:12;13288:19;;12947:366;;;:::o;13319:419::-;13485:4;13523:2;13512:9;13508:18;13500:26;;13572:9;13566:4;13562:20;13558:1;13547:9;13543:17;13536:47;13600:131;13726:4;13600:131;:::i;:::-;13592:139;;13319:419;;;:::o;13744:225::-;13884:34;13880:1;13872:6;13868:14;13861:58;13953:8;13948:2;13940:6;13936:15;13929:33;13744:225;:::o;13975:366::-;14117:3;14138:67;14202:2;14197:3;14138:67;:::i;:::-;14131:74;;14214:93;14303:3;14214:93;:::i;:::-;14332:2;14327:3;14323:12;14316:19;;13975:366;;;:::o;14347:419::-;14513:4;14551:2;14540:9;14536:18;14528:26;;14600:9;14594:4;14590:20;14586:1;14575:9;14571:17;14564:47;14628:131;14754:4;14628:131;:::i;:::-;14620:139;;14347:419;;;:::o;14772:223::-;14912:34;14908:1;14900:6;14896:14;14889:58;14981:6;14976:2;14968:6;14964:15;14957:31;14772:223;:::o;15001:366::-;15143:3;15164:67;15228:2;15223:3;15164:67;:::i;:::-;15157:74;;15240:93;15329:3;15240:93;:::i;:::-;15358:2;15353:3;15349:12;15342:19;;15001:366;;;:::o;15373:419::-;15539:4;15577:2;15566:9;15562:18;15554:26;;15626:9;15620:4;15616:20;15612:1;15601:9;15597:17;15590:47;15654:131;15780:4;15654:131;:::i;:::-;15646:139;;15373:419;;;:::o;15798:221::-;15938:34;15934:1;15926:6;15922:14;15915:58;16007:4;16002:2;15994:6;15990:15;15983:29;15798:221;:::o;16025:366::-;16167:3;16188:67;16252:2;16247:3;16188:67;:::i;:::-;16181:74;;16264:93;16353:3;16264:93;:::i;:::-;16382:2;16377:3;16373:12;16366:19;;16025:366;;;:::o;16397:419::-;16563:4;16601:2;16590:9;16586:18;16578:26;;16650:9;16644:4;16640:20;16636:1;16625:9;16621:17;16614:47;16678:131;16804:4;16678:131;:::i;:::-;16670:139;;16397:419;;;:::o;16822:182::-;16962:34;16958:1;16950:6;16946:14;16939:58;16822:182;:::o;17010:366::-;17152:3;17173:67;17237:2;17232:3;17173:67;:::i;:::-;17166:74;;17249:93;17338:3;17249:93;:::i;:::-;17367:2;17362:3;17358:12;17351:19;;17010:366;;;:::o;17382:419::-;17548:4;17586:2;17575:9;17571:18;17563:26;;17635:9;17629:4;17625:20;17621:1;17610:9;17606:17;17599:47;17663:131;17789:4;17663:131;:::i;:::-;17655:139;;17382:419;;;:::o;17807:179::-;17947:31;17943:1;17935:6;17931:14;17924:55;17807:179;:::o;17992:366::-;18134:3;18155:67;18219:2;18214:3;18155:67;:::i;:::-;18148:74;;18231:93;18320:3;18231:93;:::i;:::-;18349:2;18344:3;18340:12;18333:19;;17992:366;;;:::o;18364:419::-;18530:4;18568:2;18557:9;18553:18;18545:26;;18617:9;18611:4;18607:20;18603:1;18592:9;18588:17;18581:47;18645:131;18771:4;18645:131;:::i;:::-;18637:139;;18364:419;;;:::o;18789:175::-;18929:27;18925:1;18917:6;18913:14;18906:51;18789:175;:::o;18970:366::-;19112:3;19133:67;19197:2;19192:3;19133:67;:::i;:::-;19126:74;;19209:93;19298:3;19209:93;:::i;:::-;19327:2;19322:3;19318:12;19311:19;;18970:366;;;:::o;19342:419::-;19508:4;19546:2;19535:9;19531:18;19523:26;;19595:9;19589:4;19585:20;19581:1;19570:9;19566:17;19559:47;19623:131;19749:4;19623:131;:::i;:::-;19615:139;;19342:419;;;:::o;19767:225::-;19907:34;19903:1;19895:6;19891:14;19884:58;19976:8;19971:2;19963:6;19959:15;19952:33;19767:225;:::o;19998:366::-;20140:3;20161:67;20225:2;20220:3;20161:67;:::i;:::-;20154:74;;20237:93;20326:3;20237:93;:::i;:::-;20355:2;20350:3;20346:12;20339:19;;19998:366;;;:::o;20370:419::-;20536:4;20574:2;20563:9;20559:18;20551:26;;20623:9;20617:4;20613:20;20609:1;20598:9;20594:17;20587:47;20651:131;20777:4;20651:131;:::i;:::-;20643:139;;20370:419;;;:::o;20795:224::-;20935:34;20931:1;20923:6;20919:14;20912:58;21004:7;20999:2;20991:6;20987:15;20980:32;20795:224;:::o;21025:366::-;21167:3;21188:67;21252:2;21247:3;21188:67;:::i;:::-;21181:74;;21264:93;21353:3;21264:93;:::i;:::-;21382:2;21377:3;21373:12;21366:19;;21025:366;;;:::o;21397:419::-;21563:4;21601:2;21590:9;21586:18;21578:26;;21650:9;21644:4;21640:20;21636:1;21625:9;21621:17;21614:47;21678:131;21804:4;21678:131;:::i;:::-;21670:139;;21397:419;;;:::o;21822:222::-;21962:34;21958:1;21950:6;21946:14;21939:58;22031:5;22026:2;22018:6;22014:15;22007:30;21822:222;:::o;22050:366::-;22192:3;22213:67;22277:2;22272:3;22213:67;:::i;:::-;22206:74;;22289:93;22378:3;22289:93;:::i;:::-;22407:2;22402:3;22398:12;22391:19;;22050:366;;;:::o;22422:419::-;22588:4;22626:2;22615:9;22611:18;22603:26;;22675:9;22669:4;22665:20;22661:1;22650:9;22646:17;22639:47;22703:131;22829:4;22703:131;:::i;:::-;22695:139;;22422:419;;;:::o;22847:227::-;22987:34;22983:1;22975:6;22971:14;22964:58;23056:10;23051:2;23043:6;23039:15;23032:35;22847:227;:::o;23080:366::-;23222:3;23243:67;23307:2;23302:3;23243:67;:::i;:::-;23236:74;;23319:93;23408:3;23319:93;:::i;:::-;23437:2;23432:3;23428:12;23421:19;;23080:366;;;:::o;23452:419::-;23618:4;23656:2;23645:9;23641:18;23633:26;;23705:9;23699:4;23695:20;23691:1;23680:9;23676:17;23669:47;23733:131;23859:4;23733:131;:::i;:::-;23725:139;;23452:419;;;:::o;23877:172::-;24017:24;24013:1;24005:6;24001:14;23994:48;23877:172;:::o;24055:366::-;24197:3;24218:67;24282:2;24277:3;24218:67;:::i;:::-;24211:74;;24294:93;24383:3;24294:93;:::i;:::-;24412:2;24407:3;24403:12;24396:19;;24055:366;;;:::o;24427:419::-;24593:4;24631:2;24620:9;24616:18;24608:26;;24680:9;24674:4;24670:20;24666:1;24655:9;24651:17;24644:47;24708:131;24834:4;24708:131;:::i;:::-;24700:139;;24427:419;;;:::o;24852:410::-;24892:7;24915:20;24933:1;24915:20;:::i;:::-;24910:25;;24949:20;24967:1;24949:20;:::i;:::-;24944:25;;25004:1;25001;24997:9;25026:30;25044:11;25026:30;:::i;:::-;25015:41;;25205:1;25196:7;25192:15;25189:1;25186:22;25166:1;25159:9;25139:83;25116:139;;25235:18;;:::i;:::-;25116:139;24900:362;24852:410;;;;:::o;25268:180::-;25316:77;25313:1;25306:88;25413:4;25410:1;25403:15;25437:4;25434:1;25427:15;25454:185;25494:1;25511:20;25529:1;25511:20;:::i;:::-;25506:25;;25545:20;25563:1;25545:20;:::i;:::-;25540:25;;25584:1;25574:35;;25589:18;;:::i;:::-;25574:35;25631:1;25628;25624:9;25619:14;;25454:185;;;;:::o;25645:194::-;25685:4;25705:20;25723:1;25705:20;:::i;:::-;25700:25;;25739:20;25757:1;25739:20;:::i;:::-;25734:25;;25783:1;25780;25776:9;25768:17;;25807:1;25801:4;25798:11;25795:37;;;25812:18;;:::i;:::-;25795:37;25645:194;;;;:::o;25845:225::-;25985:34;25981:1;25973:6;25969:14;25962:58;26054:8;26049:2;26041:6;26037:15;26030:33;25845:225;:::o;26076:366::-;26218:3;26239:67;26303:2;26298:3;26239:67;:::i;:::-;26232:74;;26315:93;26404:3;26315:93;:::i;:::-;26433:2;26428:3;26424:12;26417:19;;26076:366;;;:::o;26448:419::-;26614:4;26652:2;26641:9;26637:18;26629:26;;26701:9;26695:4;26691:20;26687:1;26676:9;26672:17;26665:47;26729:131;26855:4;26729:131;:::i;:::-;26721:139;;26448:419;;;:::o

Swarm Source

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