ETH Price: $2,964.32 (-1.60%)
Gas: 3 Gwei

Token

ichigo (ichie)
 

Overview

Max Total Supply

3,333,333,333 ichie

Holders

52

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
6,806,638.119315355718486685 ichie

Value
$0.00
0x310e0565b3d000ca4bb4c81cb548f132a35a053d
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:
ichigoichi

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// File: ichigoichie.sol





// "Ichigo Ichie" - Another Zen term that hasn't been globally recognized enough but can inspire many





// nedium:   https://medium.com/@ichigo_ichi



// Telegram: https://t.me/ichigoichiofficial



// Twitter:  https://twitter.com/Ichigoichie_ETH?t=G8Lg7D4hICbdY7PL4v1W-g&s=09







pragma solidity 0.8.15;







/**



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



    }



}







/**



 * @dev Contract module which provides a basic access control mechanism, where



 * there is an account (an owner) that can be granted exclusive access to



 * specific functions.



 *



 * By default, the owner account will be the one that deploys the contract. This



 * can later be changed with {transferOwnership}.



 *



 * This module is used through inheritance. It will make available the modifier



 * `onlyOwner`, which can be applied to your functions to restrict their use to



 * the owner.



 */



abstract contract Ownable is Context {



    address private _owner;







    event OwnershipTransferred(



        address indexed previousOwner,



        address indexed newOwner



    );







    /**



     * @dev Initializes the contract setting the deployer as the initial owner.



     */



    constructor() {



        _transferOwnership(_msgSender());



    }







    /**



     * @dev Returns the address of the current owner.



     */



    function owner() public view virtual returns (address) {



        return _owner;



    }







    /**



     * @dev Throws if called by any account other than the owner.



     */



    modifier onlyOwner() {



        require(owner() == _msgSender(), "Ownable: caller is not the owner");



        _;



    }







    /**



     * @dev Leaves the contract without owner. It will not be possible to call



     * `onlyOwner` functions anymore. Can only be called by the current owner.



     *



     * NOTE: Renouncing ownership will leave the contract without an owner,



     * thereby removing any functionality that is only available to the owner.



     */



    function renounceOwnership() public virtual onlyOwner {



        _transferOwnership(address(0));



    }







    /**



     * @dev Transfers ownership of the contract to a new account (`newOwner`).



     * Can only be called by the current owner.



     */



    function transferOwnership(address newOwner) public virtual onlyOwner {



        require(



            newOwner != address(0),



            "Ownable: new owner is the zero address"



        );



        _transferOwnership(newOwner);



    }







    /**



     * @dev Transfers ownership of the contract to a new account (`newOwner`).



     * Internal function without access restriction.



     */



    function _transferOwnership(address newOwner) internal virtual {



        address oldOwner = _owner;



        _owner = newOwner;



        emit OwnershipTransferred(oldOwner, newOwner);



    }



}







/**



 * @dev Interface of the ERC20 standard as defined in the EIP.



 */



interface IERC20 {



    /**



     * @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 `recipient`.



     *



     * Returns a boolean value indicating whether the operation succeeded.



     *



     * Emits a {Transfer} event.



     */



    function transfer(address recipient, 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 `sender` to `recipient` 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 sender,



        address recipient,



        uint256 amount



    ) external returns (bool);







    /**



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



}







/**



 * @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.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How



 * to implement supply mechanisms].



 *



 * 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}.



     *



     * The default value of {decimals} is 18. To select a different value for



     * {decimals} you should overload it.



     *



     * 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 value {ERC20} uses, unless this function is



     * 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:



     *



     * - `recipient` cannot be the zero address.



     * - the caller must have a balance of at least `amount`.



     */



    function transfer(address recipient, uint256 amount)



        public



        virtual



        override



        returns (bool)



    {



        _transfer(_msgSender(), recipient, 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}.



     *



     * Requirements:



     *



     * - `spender` cannot be the zero address.



     */



    function approve(address spender, uint256 amount)



        public



        virtual



        override



        returns (bool)



    {



        _approve(_msgSender(), 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}.



     *



     * Requirements:



     *



     * - `sender` and `recipient` cannot be the zero address.



     * - `sender` must have a balance of at least `amount`.



     * - the caller must have allowance for ``sender``'s tokens of at least



     * `amount`.



     */



    function transferFrom(



        address sender,



        address recipient,



        uint256 amount



    ) public virtual override returns (bool) {



        _transfer(sender, recipient, amount);







        uint256 currentAllowance = _allowances[sender][_msgSender()];



        require(



            currentAllowance >= amount,



            "ERC20: transfer amount exceeds allowance"



        );



        unchecked {



            _approve(sender, _msgSender(), currentAllowance - 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)



    {



        _approve(



            _msgSender(),



            spender,



            _allowances[_msgSender()][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)



    {



        uint256 currentAllowance = _allowances[_msgSender()][spender];



        require(



            currentAllowance >= subtractedValue,



            "ERC20: decreased allowance below zero"



        );



        unchecked {



            _approve(_msgSender(), spender, currentAllowance - subtractedValue);



        }







        return true;



    }







    /**



     * @dev Moves `amount` of tokens from `sender` to `recipient`.



     *



     * 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:



     *



     * - `sender` cannot be the zero address.



     * - `recipient` cannot be the zero address.



     * - `sender` must have a balance of at least `amount`.



     */



    function _transfer(



        address sender,



        address recipient,



        uint256 amount



    ) internal virtual {



        require(sender != address(0), "ERC20: transfer from the zero address");



        require(recipient != address(0), "ERC20: transfer to the zero address");







        _beforeTokenTransfer(sender, recipient, amount);







        uint256 senderBalance = _balances[sender];



        require(



            senderBalance >= amount,



            "ERC20: transfer amount exceeds balance"



        );



        unchecked {



            _balances[sender] = senderBalance - amount;



        }



        _balances[recipient] += amount;







        emit Transfer(sender, recipient, amount);







        _afterTokenTransfer(sender, recipient, 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;



        _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;



        }



        _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 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 {}



}







/**



 * @dev Wrappers over Solidity's arithmetic operations.



 *



 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler



 * now has built in overflow checking.



 */



library SafeMath {



    /**



     * @dev Returns the addition of two unsigned integers, with an overflow flag.



     *



     * _Available since v3.4._



     */



    function tryAdd(uint256 a, uint256 b)



        internal



        pure



        returns (bool, uint256)



    {



        unchecked {



            uint256 c = a + b;



            if (c < a) return (false, 0);



            return (true, c);



        }



    }







    /**



     * @dev Returns the substraction of two unsigned integers, with an overflow flag.



     *



     * _Available since v3.4._



     */



    function trySub(uint256 a, uint256 b)



        internal



        pure



        returns (bool, uint256)



    {



        unchecked {



            if (b > a) return (false, 0);



            return (true, a - b);



        }



    }







    /**



     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.



     *



     * _Available since v3.4._



     */



    function tryMul(uint256 a, uint256 b)



        internal



        pure



        returns (bool, uint256)



    {



        unchecked {



            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the



            // benefit is lost if 'b' is also tested.



            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522



            if (a == 0) return (true, 0);



            uint256 c = a * b;



            if (c / a != b) return (false, 0);



            return (true, c);



        }



    }







    /**



     * @dev Returns the division of two unsigned integers, with a division by zero flag.



     *



     * _Available since v3.4._



     */



    function tryDiv(uint256 a, uint256 b)



        internal



        pure



        returns (bool, uint256)



    {



        unchecked {



            if (b == 0) return (false, 0);



            return (true, a / b);



        }



    }







    /**



     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.



     *



     * _Available since v3.4._



     */



    function tryMod(uint256 a, uint256 b)



        internal



        pure



        returns (bool, uint256)



    {



        unchecked {



            if (b == 0) return (false, 0);



            return (true, a % b);



        }



    }







    /**



     * @dev Returns the addition of two unsigned integers, reverting on



     * overflow.



     *



     * Counterpart to Solidity's `+` operator.



     *



     * Requirements:



     *



     * - Addition cannot overflow.



     */



    function add(uint256 a, uint256 b) internal pure returns (uint256) {



        return a + b;



    }







    /**



     * @dev Returns the subtraction of two unsigned integers, reverting on



     * overflow (when the result is negative).



     *



     * Counterpart to Solidity's `-` operator.



     *



     * Requirements:



     *



     * - Subtraction cannot overflow.



     */



    function sub(uint256 a, uint256 b) internal pure returns (uint256) {



        return a - b;



    }







    /**



     * @dev Returns the multiplication of two unsigned integers, reverting on



     * overflow.



     *



     * Counterpart to Solidity's `*` operator.



     *



     * Requirements:



     *



     * - Multiplication cannot overflow.



     */



    function mul(uint256 a, uint256 b) internal pure returns (uint256) {



        return a * b;



    }







    /**



     * @dev Returns the integer division of two unsigned integers, reverting on



     * division by zero. The result is rounded towards zero.



     *



     * Counterpart to Solidity's `/` operator.



     *



     * Requirements:



     *



     * - The divisor cannot be zero.



     */



    function div(uint256 a, uint256 b) internal pure returns (uint256) {



        return a / b;



    }







    /**



     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),



     * reverting when dividing by zero.



     *



     * Counterpart to Solidity's `%` operator. This function uses a `revert`



     * opcode (which leaves remaining gas untouched) while Solidity uses an



     * invalid opcode to revert (consuming all remaining gas).



     *



     * Requirements:



     *



     * - The divisor cannot be zero.



     */



    function mod(uint256 a, uint256 b) internal pure returns (uint256) {



        return a % b;



    }







    /**



     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on



     * overflow (when the result is negative).



     *



     * CAUTION: This function is deprecated because it requires allocating memory for the error



     * message unnecessarily. For custom revert reasons use {trySub}.



     *



     * Counterpart to Solidity's `-` operator.



     *



     * Requirements:



     *



     * - Subtraction cannot overflow.



     */



    function sub(



        uint256 a,



        uint256 b,



        string memory errorMessage



    ) internal pure returns (uint256) {



        unchecked {



            require(b <= a, errorMessage);



            return a - b;



        }



    }







    /**



     * @dev Returns the integer division of two unsigned integers, reverting with custom message on



     * division by zero. The result is rounded towards zero.



     *



     * Counterpart to Solidity's `/` operator. Note: this function uses a



     * `revert` opcode (which leaves remaining gas untouched) while Solidity



     * uses an invalid opcode to revert (consuming all remaining gas).



     *



     * Requirements:



     *



     * - The divisor cannot be zero.



     */



    function div(



        uint256 a,



        uint256 b,



        string memory errorMessage



    ) internal pure returns (uint256) {



        unchecked {



            require(b > 0, errorMessage);



            return a / b;



        }



    }







    /**



     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),



     * reverting with custom message when dividing by zero.



     *



     * CAUTION: This function is deprecated because it requires allocating memory for the error



     * message unnecessarily. For custom revert reasons use {tryMod}.



     *



     * Counterpart to Solidity's `%` operator. This function uses a `revert`



     * opcode (which leaves remaining gas untouched) while Solidity uses an



     * invalid opcode to revert (consuming all remaining gas).



     *



     * Requirements:



     *



     * - The divisor cannot be zero.



     */



    function mod(



        uint256 a,



        uint256 b,



        string memory errorMessage



    ) internal pure returns (uint256) {



        unchecked {



            require(b > 0, errorMessage);



            return a % b;



        }



    }



}







interface IUniswapV2Factory {



    event PairCreated(



        address indexed token0,



        address indexed token1,



        address pair,



        uint256



    );







    function feeTo() external view returns (address);







    function feeToSetter() external view returns (address);







    function getPair(address tokenA, address tokenB)



        external



        view



        returns (address pair);







    function allPairs(uint256) external view returns (address pair);







    function allPairsLength() external view returns (uint256);







    function createPair(address tokenA, address tokenB)



        external



        returns (address pair);







    function setFeeTo(address) external;







    function setFeeToSetter(address) external;



}







interface IUniswapV2Pair {



    event Approval(



        address indexed owner,



        address indexed spender,



        uint256 value



    );



    event Transfer(address indexed from, address indexed to, uint256 value);







    function name() external pure returns (string memory);







    function symbol() external pure returns (string memory);







    function decimals() external pure returns (uint8);







    function totalSupply() external view returns (uint256);







    function balanceOf(address owner) external view returns (uint256);







    function allowance(address owner, address spender)



        external



        view



        returns (uint256);







    function approve(address spender, uint256 value) external returns (bool);







    function transfer(address to, uint256 value) external returns (bool);







    function transferFrom(



        address from,



        address to,



        uint256 value



    ) external returns (bool);







    function DOMAIN_SEPARATOR() external view returns (bytes32);







    function PERMIT_TYPEHASH() external pure returns (bytes32);







    function nonces(address owner) external view returns (uint256);







    function permit(



        address owner,



        address spender,



        uint256 value,



        uint256 deadline,



        uint8 v,



        bytes32 r,



        bytes32 s



    ) external;







    event Mint(address indexed sender, uint256 amount0, uint256 amount1);



    event Burn(



        address indexed sender,



        uint256 amount0,



        uint256 amount1,



        address indexed to



    );



    event Swap(



        address indexed sender,



        uint256 amount0In,



        uint256 amount1In,



        uint256 amount0Out,



        uint256 amount1Out,



        address indexed to



    );



    event Sync(uint112 reserve0, uint112 reserve1);







    function MINIMUM_LIQUIDITY() external pure returns (uint256);







    function factory() external view returns (address);







    function token0() external view returns (address);







    function token1() external view returns (address);







    function getReserves()



        external



        view



        returns (



            uint112 reserve0,



            uint112 reserve1,



            uint32 blockTimestampLast



        );







    function price0CumulativeLast() external view returns (uint256);







    function price1CumulativeLast() external view returns (uint256);







    function kLast() external view returns (uint256);







    function mint(address to) external returns (uint256 liquidity);







    function burn(address to)



        external



        returns (uint256 amount0, uint256 amount1);







    function swap(



        uint256 amount0Out,



        uint256 amount1Out,



        address to,



        bytes calldata data



    ) external;







    function skim(address to) external;







    function sync() external;







    function initialize(address, address) external;



}







interface IUniswapV2Router02 {



    function factory() external pure returns (address);







    function WETH() external pure returns (address);







    function addLiquidity(



        address tokenA,



        address tokenB,



        uint256 amountADesired,



        uint256 amountBDesired,



        uint256 amountAMin,



        uint256 amountBMin,



        address to,



        uint256 deadline



    )



        external



        returns (



            uint256 amountA,



            uint256 amountB,



            uint256 liquidity



        );







    function addLiquidityETH(



        address token,



        uint256 amountTokenDesired,



        uint256 amountTokenMin,



        uint256 amountETHMin,



        address to,



        uint256 deadline



    )



        external



        payable



        returns (



            uint256 amountToken,



            uint256 amountETH,



            uint256 liquidity



        );







    function swapExactTokensForTokensSupportingFeeOnTransferTokens(



        uint256 amountIn,



        uint256 amountOutMin,



        address[] calldata path,



        address to,



        uint256 deadline



    ) external;







    function swapExactETHForTokensSupportingFeeOnTransferTokens(



        uint256 amountOutMin,



        address[] calldata path,



        address to,



        uint256 deadline



    ) external payable;







    function swapExactTokensForETHSupportingFeeOnTransferTokens(



        uint256 amountIn,



        uint256 amountOutMin,



        address[] calldata path,



        address to,



        uint256 deadline



    ) external;



}







contract ichigoichi is ERC20, Ownable {



    using SafeMath for uint256;







    IUniswapV2Router02 public immutable uniswapV2Router;



    address public immutable uniswapV2Pair;



    address public constant deadAddress = address(0xdead);







    bool private swapping;







    address public devWallet;







    uint256 public maxTransactionAmount;



    uint256 public swapTokensAtAmount;



    uint256 public maxWallet;







    bool public limitsInEffect = true;



    bool public tradingActive = false;



    bool public swapEnabled = false;







    // Anti-bot and anti-whale mappings and variables



    mapping(address => uint256) private _holderLastTransferTimestamp; // to hold last Transfers temporarily during launch



    bool public transferDelayEnabled = true;







    uint256 public buyTotalFees;



    uint256 public buyLiquidityFee;



    uint256 public buyDevFee;







    uint256 public sellTotalFees;



    uint256 public sellLiquidityFee;



    uint256 public sellDevFee;







    uint256 public tokensForLiquidity;



    uint256 public tokensForDev;







    /******************/







    // exlcude from fees and max transaction amount



    mapping(address => bool) private _isExcludedFromFees;



    mapping(address => bool) public _isExcludedMaxTransactionAmount;







    // store addresses that a automatic market maker pairs. Any transfer *to* these addresses



    // could be subject to a maximum transfer amount



    mapping(address => bool) public automatedMarketMakerPairs;







    event UpdateUniswapV2Router(



        address indexed newAddress,



        address indexed oldAddress



    );







    event ExcludeFromFees(address indexed account, bool isExcluded);







    event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value);







    event marketingWalletUpdated(



        address indexed newWallet,



        address indexed oldWallet



    );







    event devWalletUpdated(



        address indexed newWallet,



        address indexed oldWallet



    );







    event SwapAndLiquify(



        uint256 tokensSwapped,



        uint256 ethReceived,



        uint256 tokensIntoLiquidity



    );







    event AutoNukeLP();







    event ManualNukeLP();







    constructor() ERC20("ichigo", "ichie") {



        IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(



            0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D



        );







        excludeFromMaxTransaction(address(_uniswapV2Router), true);



        uniswapV2Router = _uniswapV2Router;







        uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory())



            .createPair(address(this), _uniswapV2Router.WETH());



        excludeFromMaxTransaction(address(uniswapV2Pair), true);



        _setAutomatedMarketMakerPair(address(uniswapV2Pair), true);







        uint256 _buyLiquidityFee =3;



        uint256 _buyDevFee =0;







        uint256 _sellLiquidityFee =3;



        uint256 _sellDevFee = 1;







        uint256 totalSupply = 3333333333 * 1e18;







        maxTransactionAmount = 10_000_001 * 1e18; // 1% from total supply maxTransactionAmountTxn



        maxWallet = 20_000_002 * 1e18; // 2% from total supply maxWallet



        swapTokensAtAmount = (totalSupply * 5) / 10000; // 0.05% swap wallet







        buyLiquidityFee = _buyLiquidityFee;



        buyDevFee = _buyDevFee;



        buyTotalFees = buyLiquidityFee + buyDevFee;







        sellLiquidityFee = _sellLiquidityFee;



        sellDevFee = _sellDevFee;



        sellTotalFees = sellLiquidityFee + sellDevFee;







        devWallet = owner(); // set as dev wallet







        // exclude from paying fees or having max transaction amount



        excludeFromFees(owner(), true);



        excludeFromFees(address(this), true);



        excludeFromFees(address(0xdead), true);







        excludeFromMaxTransaction(owner(), true);



        excludeFromMaxTransaction(address(this), true);



        excludeFromMaxTransaction(address(0xdead), true);







        _approve(msg.sender, address(_uniswapV2Router), type(uint256).max);







        /*



            _mint is an internal function in ERC20.sol that is only called here,



            and CANNOT be called ever again



        */



        _mint(msg.sender, totalSupply);



    }







    receive() external payable {}







    // once enabled, can never be turned off



    function enableTrading() external onlyOwner {



        tradingActive = true;



        swapEnabled = true;



    }







    // remove limits after token is stable



    function removeLimits() external onlyOwner returns (bool) {



        limitsInEffect = false;



        return true;



    }







    // disable Transfer delay - cannot be reenabled



    function disableTransferDelay() external onlyOwner returns (bool) {



        transferDelayEnabled = false;



        return true;



    }







    // change the minimum amount of tokens to sell from fees



    function updateSwapTokensAtAmount(uint256 newAmount)



        external



        onlyOwner



        returns (bool)



    {



        require(



            newAmount >= (totalSupply() * 1) / 100000,



            "Swap amount cannot be lower than 0.001% total supply."



        );



        require(



            newAmount <= (totalSupply() * 5) / 1000,



            "Swap amount cannot be higher than 0.5% total supply."



        );



        swapTokensAtAmount = newAmount;



        return true;



    }







    function updateMaxTxnAmount(uint256 newNum) external onlyOwner {



        require(



            newNum >= ((totalSupply() * 1) / 1000) / 1e18,



            "Cannot set maxTransactionAmount lower than 0.1%"



        );



        maxTransactionAmount = newNum * (10**18);



    }







    function updateMaxWalletAmount(uint256 newNum) external onlyOwner {



        require(



            newNum >= ((totalSupply() * 5) / 1000) / 1e18,



            "Cannot set maxWallet lower than 0.5%"



        );



        maxWallet = newNum * (10**18);



    }







    function excludeFromMaxTransaction(address updAds, bool isEx)



        public



        onlyOwner



    {



        _isExcludedMaxTransactionAmount[updAds] = isEx;



    }







    // only use to disable contract sales if absolutely necessary (emergency use only)



    function updateSwapEnabled(bool enabled) external onlyOwner {



        swapEnabled = enabled;



    }







    function updateBuyFees(uint256 _liquidityFee, uint256 _devFee)



        external



        onlyOwner



    {



        buyLiquidityFee = _liquidityFee;



        buyDevFee = _devFee;



        buyTotalFees = buyLiquidityFee + buyDevFee;



        require(buyTotalFees <= 10, "Must keep fees at 10% or less");



    }







    function updateSellFees(uint256 _liquidityFee, uint256 _devFee)



        external



        onlyOwner



    {



        sellLiquidityFee = _liquidityFee;



        sellDevFee = _devFee;



        sellTotalFees = sellLiquidityFee + sellDevFee;



        require(sellTotalFees <= 15, "Must keep fees at 15% or less");



    }







    function excludeFromFees(address account, bool excluded) public onlyOwner {



        _isExcludedFromFees[account] = excluded;



        emit ExcludeFromFees(account, excluded);



    }







    function setAutomatedMarketMakerPair(address pair, bool value)



        public



        onlyOwner



    {



        require(



            pair != uniswapV2Pair,



            "The pair cannot be removed from automatedMarketMakerPairs"



        );







        _setAutomatedMarketMakerPair(pair, value);



    }







    function _setAutomatedMarketMakerPair(address pair, bool value) private {



        automatedMarketMakerPairs[pair] = value;







        emit SetAutomatedMarketMakerPair(pair, value);



    }







    function updateDevWallet(address newWallet) external onlyOwner {



        emit devWalletUpdated(newWallet, devWallet);



        devWallet = newWallet;



    }







    function isExcludedFromFees(address account) public view returns (bool) {



        return _isExcludedFromFees[account];



    }







    event BoughtEarly(address indexed sniper);







    function _transfer(



        address from,



        address to,



        uint256 amount



    ) internal override {



        require(from != address(0), "ERC20: transfer from the zero address");



        require(to != address(0), "ERC20: transfer to the zero address");







        if (amount == 0) {



            super._transfer(from, to, 0);



            return;



        }







        if (limitsInEffect) {



            if (



                from != owner() &&



                to != owner() &&



                to != address(0) &&



                to != address(0xdead) &&



                !swapping



            ) {



                if (!tradingActive) {



                    require(



                        _isExcludedFromFees[from] || _isExcludedFromFees[to],



                        "Trading is not active."



                    );



                }







                // at launch if the transfer delay is enabled, ensure the block timestamps for purchasers is set -- during launch.



                if (transferDelayEnabled) {



                    if (



                        to != owner() &&



                        to != address(uniswapV2Router) &&



                        to != address(uniswapV2Pair)



                    ) {



                        require(



                            _holderLastTransferTimestamp[tx.origin] <



                                block.number,



                            "_transfer:: Transfer Delay enabled.  Only one purchase per block allowed."



                        );



                        _holderLastTransferTimestamp[tx.origin] = block.number;



                    }



                }







                //when buy



                if (



                    automatedMarketMakerPairs[from] &&



                    !_isExcludedMaxTransactionAmount[to]



                ) {



                    require(



                        amount <= maxTransactionAmount,



                        "Buy transfer amount exceeds the maxTransactionAmount."



                    );



                    require(



                        amount + balanceOf(to) <= maxWallet,



                        "Max wallet exceeded"



                    );



                }



                //when sell



                else if (



                    automatedMarketMakerPairs[to] &&



                    !_isExcludedMaxTransactionAmount[from]



                ) {



                    require(



                        amount <= maxTransactionAmount,



                        "Sell transfer amount exceeds the maxTransactionAmount."



                    );



                } else if (!_isExcludedMaxTransactionAmount[to]) {



                    require(



                        amount + balanceOf(to) <= maxWallet,



                        "Max wallet exceeded"



                    );



                }



            }



        }







        uint256 contractTokenBalance = balanceOf(address(this));







        bool canSwap = contractTokenBalance >= swapTokensAtAmount;







        if (



            canSwap &&



            swapEnabled &&



            !swapping &&



            !automatedMarketMakerPairs[from] &&



            !_isExcludedFromFees[from] &&



            !_isExcludedFromFees[to]



        ) {



            swapping = true;







            swapBack();







            swapping = false;



        }







        bool takeFee = !swapping;







        // if any account belongs to _isExcludedFromFee account then remove the fee



        if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) {



            takeFee = false;



        }







        uint256 fees = 0;



        // only take fees on buys/sells, do not take on wallet transfers



        if (takeFee) {



            // on sell



            if (automatedMarketMakerPairs[to] && sellTotalFees > 0) {



                fees = amount.mul(sellTotalFees).div(100);



                tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees;



                tokensForDev += (fees * sellDevFee) / sellTotalFees;



            }



            // on buy



            else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) {



                fees = amount.mul(buyTotalFees).div(100);



                tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees;



                tokensForDev += (fees * buyDevFee) / buyTotalFees;



            }







            if (fees > 0) {



                super._transfer(from, address(this), fees);



            }







            amount -= fees;



        }







        super._transfer(from, to, amount);



    }







    function swapTokensForEth(uint256 tokenAmount) private {



        // generate the uniswap pair path of token -> weth



        address[] memory path = new address[](2);



        path[0] = address(this);



        path[1] = uniswapV2Router.WETH();







        _approve(address(this), address(uniswapV2Router), tokenAmount);







        // make the swap



        uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(



            tokenAmount,



            0, // accept any amount of ETH



            path,



            address(this),



            block.timestamp



        );



    }







    function addLiquidity(uint256 tokenAmount, uint256 ethAmount) private {



        // approve token transfer to cover all possible scenarios



        _approve(address(this), address(uniswapV2Router), tokenAmount);







        // add the liquidity



        uniswapV2Router.addLiquidityETH{value: ethAmount}(



            address(this),



            tokenAmount,



            0, // slippage is unavoidable



            0, // slippage is unavoidable



            deadAddress,



            block.timestamp



        );



    }







    function swapBack() private {



        uint256 contractBalance = balanceOf(address(this));



        uint256 totalTokensToSwap = tokensForLiquidity + tokensForDev;



        bool success;







        if (contractBalance == 0 || totalTokensToSwap == 0) {



            return;



        }







        if (contractBalance > swapTokensAtAmount * 20) {



            contractBalance = swapTokensAtAmount * 20;



        }







        // Halve the amount of liquidity tokens



        uint256 liquidityTokens = (contractBalance * tokensForLiquidity) /



            totalTokensToSwap /



            2;



        uint256 amountToSwapForETH = contractBalance.sub(liquidityTokens);







        uint256 initialETHBalance = address(this).balance;







        swapTokensForEth(amountToSwapForETH);







        uint256 ethBalance = address(this).balance.sub(initialETHBalance);







        uint256 ethForDev = ethBalance.mul(tokensForDev).div(totalTokensToSwap);







        uint256 ethForLiquidity = ethBalance - ethForDev;







        tokensForLiquidity = 0;



        tokensForDev = 0;







        if (liquidityTokens > 0 && ethForLiquidity > 0) {



            addLiquidity(liquidityTokens, ethForLiquidity);



            emit SwapAndLiquify(



                amountToSwapForETH,



                ethForLiquidity,



                tokensForLiquidity



            );



        }







        (success, ) = address(devWallet).call{value: address(this).balance}("");



    }



}

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":[],"name":"AutoNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sniper","type":"address"}],"name":"BoughtEarly","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[],"name":"ManualNukeLP","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":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","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":"newAddress","type":"address"},{"indexed":true,"internalType":"address","name":"oldAddress","type":"address"}],"name":"UpdateUniswapV2Router","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"devWalletUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"newWallet","type":"address"},{"indexed":true,"internalType":"address","name":"oldWallet","type":"address"}],"name":"marketingWalletUpdated","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"disableTransferDelay","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"transferDelayEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","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":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"updateDevWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_liquidityFee","type":"uint256"},{"internalType":"uint256","name":"_devFee","type":"uint256"}],"name":"updateSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newAmount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]

60c06040526001600a60006101000a81548160ff0219169083151502179055506000600a60016101000a81548160ff0219169083151502179055506000600a60026101000a81548160ff0219169083151502179055506001600c60006101000a81548160ff0219169083151502179055503480156200007d57600080fd5b506040518060400160405280600681526020017f69636869676f00000000000000000000000000000000000000000000000000008152506040518060400160405280600581526020017f69636869650000000000000000000000000000000000000000000000000000008152508160039081620000fb919062000ec9565b5080600490816200010d919062000ec9565b50505062000130620001246200053f60201b60201c565b6200054760201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d90506200015c8160016200060d60201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620001dc573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200020291906200101a565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200026a573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200029091906200101a565b6040518363ffffffff1660e01b8152600401620002af9291906200105d565b6020604051808303816000875af1158015620002cf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002f591906200101a565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200033d60a05160016200060d60201b60201c565b6200035260a0516001620006f760201b60201c565b6000600390506000806003905060006001905060006b0ac544ca1016c3e47834000090506a08459523f4b7fbf16400006007819055506a108b2a47e96ff7e2c80000600981905550612710600582620003ac9190620010b9565b620003b8919062001149565b60088190555084600e8190555083600f81905550600f54600e54620003de919062001181565b600d81905550826011819055508160128190555060125460115462000404919062001181565b6010819055506200041a6200079860201b60201c565b600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506200047c6200046e6200079860201b60201c565b6001620007c260201b60201c565b6200048f306001620007c260201b60201c565b620004a461dead6001620007c260201b60201c565b620004c6620004b86200079860201b60201c565b60016200060d60201b60201c565b620004d93060016200060d60201b60201c565b620004ee61dead60016200060d60201b60201c565b6200052133877fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff620008fc60201b60201c565b62000533338262000acd60201b60201c565b5050505050506200146b565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200061d6200053f60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620006436200079860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200069c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000693906200123f565b60405180910390fd5b80601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b620007d26200053f60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620007f86200079860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000851576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000848906200123f565b60405180910390fd5b80601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051620008f091906200127e565b60405180910390a25050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036200096e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009659062001311565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620009e0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009d790620013a9565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405162000ac09190620013dc565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000b3f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000b369062001449565b60405180910390fd5b62000b536000838362000c4560201b60201c565b806002600082825462000b67919062001181565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000bbe919062001181565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000c259190620013dc565b60405180910390a362000c416000838362000c4a60201b60201c565b5050565b505050565b505050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000cd157607f821691505b60208210810362000ce75762000ce662000c89565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000d517fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000d12565b62000d5d868362000d12565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000daa62000da462000d9e8462000d75565b62000d7f565b62000d75565b9050919050565b6000819050919050565b62000dc68362000d89565b62000dde62000dd58262000db1565b84845462000d1f565b825550505050565b600090565b62000df562000de6565b62000e0281848462000dbb565b505050565b5b8181101562000e2a5762000e1e60008262000deb565b60018101905062000e08565b5050565b601f82111562000e795762000e438162000ced565b62000e4e8462000d02565b8101602085101562000e5e578190505b62000e7662000e6d8562000d02565b83018262000e07565b50505b505050565b600082821c905092915050565b600062000e9e6000198460080262000e7e565b1980831691505092915050565b600062000eb9838362000e8b565b9150826002028217905092915050565b62000ed48262000c4f565b67ffffffffffffffff81111562000ef05762000eef62000c5a565b5b62000efc825462000cb8565b62000f0982828562000e2e565b600060209050601f83116001811462000f41576000841562000f2c578287015190505b62000f38858262000eab565b86555062000fa8565b601f19841662000f518662000ced565b60005b8281101562000f7b5784890151825560018201915060208501945060208101905062000f54565b8683101562000f9b578489015162000f97601f89168262000e8b565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000fe28262000fb5565b9050919050565b62000ff48162000fd5565b81146200100057600080fd5b50565b600081519050620010148162000fe9565b92915050565b60006020828403121562001033576200103262000fb0565b5b6000620010438482850162001003565b91505092915050565b620010578162000fd5565b82525050565b60006040820190506200107460008301856200104c565b6200108360208301846200104c565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620010c68262000d75565b9150620010d38362000d75565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156200110f576200110e6200108a565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000620011568262000d75565b9150620011638362000d75565b9250826200117657620011756200111a565b5b828204905092915050565b60006200118e8262000d75565b91506200119b8362000d75565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620011d357620011d26200108a565b5b828201905092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062001227602083620011de565b91506200123482620011ef565b602082019050919050565b600060208201905081810360008301526200125a8162001218565b9050919050565b60008115159050919050565b620012788162001261565b82525050565b60006020820190506200129560008301846200126d565b92915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000620012f9602483620011de565b915062001306826200129b565b604082019050919050565b600060208201905081810360008301526200132c81620012ea565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600062001391602283620011de565b91506200139e8262001333565b604082019050919050565b60006020820190508181036000830152620013c48162001382565b9050919050565b620013d68162000d75565b82525050565b6000602082019050620013f36000830184620013cb565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062001431601f83620011de565b91506200143e82620013f9565b602082019050919050565b60006020820190508181036000830152620014648162001422565b9050919050565b60805160a051614c4c620014c960003960008181611171015281816117f3015261253f015260008181610d3f015281816124e7015281816134990152818161357a015281816135a10152818161363d01526136640152614c4c6000f3fe6080604052600436106102b25760003560e01c80638da5cb5b11610175578063c0246668116100dc578063dd62ed3e11610095578063f11a24d31161006f578063f11a24d314610ad9578063f2fde38b14610b04578063f637434214610b2d578063f8b45b0514610b58576102b9565b8063dd62ed3e14610a46578063e2f4560514610a83578063e884f26014610aae576102b9565b8063c024666814610936578063c18bc1951461095f578063c876d0b914610988578063c8c8ebe4146109b3578063d257b34f146109de578063d85ba06314610a1b576102b9565b80639fccce321161012e5780639fccce32146107fe578063a0d82dc514610829578063a457c2d714610854578063a9059cbb14610891578063b62496f5146108ce578063bbc0c7421461090b576102b9565b80638da5cb5b146107005780638ea5220f1461072b578063924de9b71461075657806395d89b411461077f5780639a7a23d6146107aa5780639c3b4fdc146107d3576102b9565b806339509351116102195780636ddd1713116101d25780636ddd17131461061657806370a0823114610641578063715018a61461067e578063751039fc146106955780637571336a146106c05780638a8c523c146106e9576102b9565b806339509351146104f257806349bd5a5e1461052f5780634a62bb651461055a5780634fbee1931461058557806366ca9b83146105c25780636a486a8e146105eb576102b9565b80631816467f1161026b5780631816467f146103e25780631a8145bb1461040b578063203e727e1461043657806323b872dd1461045f57806327c8f8351461049c578063313ce567146104c7576102b9565b806302dbd8f8146102be57806306fdde03146102e7578063095ea7b31461031257806310d5de531461034f5780631694505e1461038c57806318160ddd146103b7576102b9565b366102b957005b600080fd5b3480156102ca57600080fd5b506102e560048036038101906102e0919061374e565b610b83565b005b3480156102f357600080fd5b506102fc610c6d565b6040516103099190613827565b60405180910390f35b34801561031e57600080fd5b50610339600480360381019061033491906138a7565b610cff565b6040516103469190613902565b60405180910390f35b34801561035b57600080fd5b506103766004803603810190610371919061391d565b610d1d565b6040516103839190613902565b60405180910390f35b34801561039857600080fd5b506103a1610d3d565b6040516103ae91906139a9565b60405180910390f35b3480156103c357600080fd5b506103cc610d61565b6040516103d991906139d3565b60405180910390f35b3480156103ee57600080fd5b506104096004803603810190610404919061391d565b610d6b565b005b34801561041757600080fd5b50610420610ea7565b60405161042d91906139d3565b60405180910390f35b34801561044257600080fd5b5061045d600480360381019061045891906139ee565b610ead565b005b34801561046b57600080fd5b5061048660048036038101906104819190613a1b565b610fbc565b6040516104939190613902565b60405180910390f35b3480156104a857600080fd5b506104b16110b4565b6040516104be9190613a7d565b60405180910390f35b3480156104d357600080fd5b506104dc6110ba565b6040516104e99190613ab4565b60405180910390f35b3480156104fe57600080fd5b50610519600480360381019061051491906138a7565b6110c3565b6040516105269190613902565b60405180910390f35b34801561053b57600080fd5b5061054461116f565b6040516105519190613a7d565b60405180910390f35b34801561056657600080fd5b5061056f611193565b60405161057c9190613902565b60405180910390f35b34801561059157600080fd5b506105ac60048036038101906105a7919061391d565b6111a6565b6040516105b99190613902565b60405180910390f35b3480156105ce57600080fd5b506105e960048036038101906105e4919061374e565b6111fc565b005b3480156105f757600080fd5b506106006112e6565b60405161060d91906139d3565b60405180910390f35b34801561062257600080fd5b5061062b6112ec565b6040516106389190613902565b60405180910390f35b34801561064d57600080fd5b506106686004803603810190610663919061391d565b6112ff565b60405161067591906139d3565b60405180910390f35b34801561068a57600080fd5b50610693611347565b005b3480156106a157600080fd5b506106aa6113cf565b6040516106b79190613902565b60405180910390f35b3480156106cc57600080fd5b506106e760048036038101906106e29190613afb565b61146f565b005b3480156106f557600080fd5b506106fe611546565b005b34801561070c57600080fd5b506107156115fa565b6040516107229190613a7d565b60405180910390f35b34801561073757600080fd5b50610740611624565b60405161074d9190613a7d565b60405180910390f35b34801561076257600080fd5b5061077d60048036038101906107789190613b3b565b61164a565b005b34801561078b57600080fd5b506107946116e3565b6040516107a19190613827565b60405180910390f35b3480156107b657600080fd5b506107d160048036038101906107cc9190613afb565b611775565b005b3480156107df57600080fd5b506107e861188d565b6040516107f591906139d3565b60405180910390f35b34801561080a57600080fd5b50610813611893565b60405161082091906139d3565b60405180910390f35b34801561083557600080fd5b5061083e611899565b60405161084b91906139d3565b60405180910390f35b34801561086057600080fd5b5061087b600480360381019061087691906138a7565b61189f565b6040516108889190613902565b60405180910390f35b34801561089d57600080fd5b506108b860048036038101906108b391906138a7565b61198a565b6040516108c59190613902565b60405180910390f35b3480156108da57600080fd5b506108f560048036038101906108f0919061391d565b6119a8565b6040516109029190613902565b60405180910390f35b34801561091757600080fd5b506109206119c8565b60405161092d9190613902565b60405180910390f35b34801561094257600080fd5b5061095d60048036038101906109589190613afb565b6119db565b005b34801561096b57600080fd5b50610986600480360381019061098191906139ee565b611b00565b005b34801561099457600080fd5b5061099d611c0f565b6040516109aa9190613902565b60405180910390f35b3480156109bf57600080fd5b506109c8611c22565b6040516109d591906139d3565b60405180910390f35b3480156109ea57600080fd5b50610a056004803603810190610a0091906139ee565b611c28565b604051610a129190613902565b60405180910390f35b348015610a2757600080fd5b50610a30611d7d565b604051610a3d91906139d3565b60405180910390f35b348015610a5257600080fd5b50610a6d6004803603810190610a689190613b68565b611d83565b604051610a7a91906139d3565b60405180910390f35b348015610a8f57600080fd5b50610a98611e0a565b604051610aa591906139d3565b60405180910390f35b348015610aba57600080fd5b50610ac3611e10565b604051610ad09190613902565b60405180910390f35b348015610ae557600080fd5b50610aee611eb0565b604051610afb91906139d3565b60405180910390f35b348015610b1057600080fd5b50610b2b6004803603810190610b26919061391d565b611eb6565b005b348015610b3957600080fd5b50610b42611fad565b604051610b4f91906139d3565b60405180910390f35b348015610b6457600080fd5b50610b6d611fb3565b604051610b7a91906139d3565b60405180910390f35b610b8b611fb9565b73ffffffffffffffffffffffffffffffffffffffff16610ba96115fa565b73ffffffffffffffffffffffffffffffffffffffff1614610bff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf690613bf4565b60405180910390fd5b8160118190555080601281905550601254601154610c1d9190613c43565b601081905550600f6010541115610c69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6090613ce5565b60405180910390fd5b5050565b606060038054610c7c90613d34565b80601f0160208091040260200160405190810160405280929190818152602001828054610ca890613d34565b8015610cf55780601f10610cca57610100808354040283529160200191610cf5565b820191906000526020600020905b815481529060010190602001808311610cd857829003601f168201915b5050505050905090565b6000610d13610d0c611fb9565b8484611fc1565b6001905092915050565b60166020528060005260406000206000915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b610d73611fb9565b73ffffffffffffffffffffffffffffffffffffffff16610d916115fa565b73ffffffffffffffffffffffffffffffffffffffff1614610de7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dde90613bf4565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60135481565b610eb5611fb9565b73ffffffffffffffffffffffffffffffffffffffff16610ed36115fa565b73ffffffffffffffffffffffffffffffffffffffff1614610f29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2090613bf4565b60405180910390fd5b670de0b6b3a76400006103e86001610f3f610d61565b610f499190613d65565b610f539190613dee565b610f5d9190613dee565b811015610f9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9690613e91565b60405180910390fd5b670de0b6b3a764000081610fb39190613d65565b60078190555050565b6000610fc984848461218a565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000611014611fb9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611094576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108b90613f23565b60405180910390fd5b6110a8856110a0611fb9565b858403611fc1565b60019150509392505050565b61dead81565b60006012905090565b60006111656110d0611fb9565b8484600160006110de611fb9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546111609190613c43565b611fc1565b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600a60009054906101000a900460ff1681565b6000601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b611204611fb9565b73ffffffffffffffffffffffffffffffffffffffff166112226115fa565b73ffffffffffffffffffffffffffffffffffffffff1614611278576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126f90613bf4565b60405180910390fd5b81600e8190555080600f81905550600f54600e546112969190613c43565b600d81905550600a600d5411156112e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d990613f8f565b60405180910390fd5b5050565b60105481565b600a60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61134f611fb9565b73ffffffffffffffffffffffffffffffffffffffff1661136d6115fa565b73ffffffffffffffffffffffffffffffffffffffff16146113c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ba90613bf4565b60405180910390fd5b6113cd6000612dbb565b565b60006113d9611fb9565b73ffffffffffffffffffffffffffffffffffffffff166113f76115fa565b73ffffffffffffffffffffffffffffffffffffffff161461144d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144490613bf4565b60405180910390fd5b6000600a60006101000a81548160ff0219169083151502179055506001905090565b611477611fb9565b73ffffffffffffffffffffffffffffffffffffffff166114956115fa565b73ffffffffffffffffffffffffffffffffffffffff16146114eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e290613bf4565b60405180910390fd5b80601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b61154e611fb9565b73ffffffffffffffffffffffffffffffffffffffff1661156c6115fa565b73ffffffffffffffffffffffffffffffffffffffff16146115c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b990613bf4565b60405180910390fd5b6001600a60016101000a81548160ff0219169083151502179055506001600a60026101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611652611fb9565b73ffffffffffffffffffffffffffffffffffffffff166116706115fa565b73ffffffffffffffffffffffffffffffffffffffff16146116c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116bd90613bf4565b60405180910390fd5b80600a60026101000a81548160ff02191690831515021790555050565b6060600480546116f290613d34565b80601f016020809104026020016040519081016040528092919081815260200182805461171e90613d34565b801561176b5780601f106117405761010080835404028352916020019161176b565b820191906000526020600020905b81548152906001019060200180831161174e57829003601f168201915b5050505050905090565b61177d611fb9565b73ffffffffffffffffffffffffffffffffffffffff1661179b6115fa565b73ffffffffffffffffffffffffffffffffffffffff16146117f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e890613bf4565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361187f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187690614021565b60405180910390fd5b6118898282612e81565b5050565b600f5481565b60145481565b60125481565b600080600160006118ae611fb9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561196b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611962906140b3565b60405180910390fd5b61197f611976611fb9565b85858403611fc1565b600191505092915050565b600061199e611997611fb9565b848461218a565b6001905092915050565b60176020528060005260406000206000915054906101000a900460ff1681565b600a60019054906101000a900460ff1681565b6119e3611fb9565b73ffffffffffffffffffffffffffffffffffffffff16611a016115fa565b73ffffffffffffffffffffffffffffffffffffffff1614611a57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4e90613bf4565b60405180910390fd5b80601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611af49190613902565b60405180910390a25050565b611b08611fb9565b73ffffffffffffffffffffffffffffffffffffffff16611b266115fa565b73ffffffffffffffffffffffffffffffffffffffff1614611b7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7390613bf4565b60405180910390fd5b670de0b6b3a76400006103e86005611b92610d61565b611b9c9190613d65565b611ba69190613dee565b611bb09190613dee565b811015611bf2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be990614145565b60405180910390fd5b670de0b6b3a764000081611c069190613d65565b60098190555050565b600c60009054906101000a900460ff1681565b60075481565b6000611c32611fb9565b73ffffffffffffffffffffffffffffffffffffffff16611c506115fa565b73ffffffffffffffffffffffffffffffffffffffff1614611ca6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9d90613bf4565b60405180910390fd5b620186a06001611cb4610d61565b611cbe9190613d65565b611cc89190613dee565b821015611d0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d01906141d7565b60405180910390fd5b6103e86005611d17610d61565b611d219190613d65565b611d2b9190613dee565b821115611d6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6490614269565b60405180910390fd5b8160088190555060019050919050565b600d5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60085481565b6000611e1a611fb9565b73ffffffffffffffffffffffffffffffffffffffff16611e386115fa565b73ffffffffffffffffffffffffffffffffffffffff1614611e8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8590613bf4565b60405180910390fd5b6000600c60006101000a81548160ff0219169083151502179055506001905090565b600e5481565b611ebe611fb9565b73ffffffffffffffffffffffffffffffffffffffff16611edc6115fa565b73ffffffffffffffffffffffffffffffffffffffff1614611f32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2990613bf4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611fa1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f98906142fb565b60405180910390fd5b611faa81612dbb565b50565b60115481565b60095481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612030576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120279061438d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361209f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120969061441f565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161217d91906139d3565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036121f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f0906144b1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612268576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225f90614543565b60405180910390fd5b600081036122815761227c83836000612f22565b612db6565b600a60009054906101000a900460ff16156129445761229e6115fa565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561230c57506122dc6115fa565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156123455750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561237f575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156123985750600560149054906101000a900460ff16155b1561294357600a60019054906101000a900460ff1661249257601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806124525750601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612491576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612488906145af565b60405180910390fd5b5b600c60009054906101000a900460ff161561265a576124af6115fa565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415801561253657507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561258e57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156126595743600b60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612614576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161260b90614667565b60405180910390fd5b43600b60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156126fd5750601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156127a457600754811115612747576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161273e906146f9565b60405180910390fd5b600954612753836112ff565b8261275e9190613c43565b111561279f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161279690614765565b60405180910390fd5b612942565b601760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156128475750601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561289657600754811115612891576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612888906147f7565b60405180910390fd5b612941565b601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612940576009546128f3836112ff565b826128fe9190613c43565b111561293f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161293690614765565b60405180910390fd5b5b5b5b5b5b600061294f306112ff565b9050600060085482101590508080156129745750600a60029054906101000a900460ff165b801561298d5750600560149054906101000a900460ff16155b80156129e35750601760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612a395750601560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612a8f5750601560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612ad3576001600560146101000a81548160ff021916908315150217905550612ab76131a1565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612b895750601560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612b9357600090505b60008115612da657601760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612bf657506000601054115b15612c9057612c236064612c15601054886133ae90919063ffffffff16565b6133c490919063ffffffff16565b905060105460115482612c369190613d65565b612c409190613dee565b60136000828254612c519190613c43565b9250508190555060105460125482612c699190613d65565b612c739190613dee565b60146000828254612c849190613c43565b92505081905550612d82565b601760008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612ceb57506000600d54115b15612d8157612d186064612d0a600d54886133ae90919063ffffffff16565b6133c490919063ffffffff16565b9050600d54600e5482612d2b9190613d65565b612d359190613dee565b60136000828254612d469190613c43565b92505081905550600d54600f5482612d5e9190613d65565b612d689190613dee565b60146000828254612d799190613c43565b925050819055505b5b6000811115612d9757612d96873083612f22565b5b8085612da39190614817565b94505b612db1878787612f22565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612f91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f88906144b1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613000576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ff790614543565b60405180910390fd5b61300b8383836133da565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613091576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613088906148bd565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546131249190613c43565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161318891906139d3565b60405180910390a361319b8484846133df565b50505050565b60006131ac306112ff565b905060006014546013546131c09190613c43565b90506000808314806131d25750600082145b156131df575050506133ac565b60146008546131ee9190613d65565b8311156132075760146008546132049190613d65565b92505b60006002836013548661321a9190613d65565b6132249190613dee565b61322e9190613dee565b9050600061324582866133e490919063ffffffff16565b90506000479050613255826133fa565b600061326a82476133e490919063ffffffff16565b9050600061329587613287601454856133ae90919063ffffffff16565b6133c490919063ffffffff16565b9050600081836132a59190614817565b9050600060138190555060006014819055506000861180156132c75750600081115b15613314576132d68682613637565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb561858260135460405161330b939291906148dd565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161335a90614945565b60006040518083038185875af1925050503d8060008114613397576040519150601f19603f3d011682016040523d82523d6000602084013e61339c565b606091505b5050809750505050505050505050505b565b600081836133bc9190613d65565b905092915050565b600081836133d29190613dee565b905092915050565b505050565b505050565b600081836133f29190614817565b905092915050565b6000600267ffffffffffffffff8111156134175761341661495a565b5b6040519080825280602002602001820160405280156134455781602001602082028036833780820191505090505b509050308160008151811061345d5761345c614989565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613502573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061352691906149cd565b8160018151811061353a57613539614989565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061359f307f000000000000000000000000000000000000000000000000000000000000000084611fc1565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613601959493929190614af3565b600060405180830381600087803b15801561361b57600080fd5b505af115801561362f573d6000803e3d6000fd5b505050505050565b613662307f000000000000000000000000000000000000000000000000000000000000000084611fc1565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b81526004016136c996959493929190614b4d565b60606040518083038185885af11580156136e7573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061370c9190614bc3565b5050505050565b600080fd5b6000819050919050565b61372b81613718565b811461373657600080fd5b50565b60008135905061374881613722565b92915050565b6000806040838503121561376557613764613713565b5b600061377385828601613739565b925050602061378485828601613739565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b838110156137c85780820151818401526020810190506137ad565b838111156137d7576000848401525b50505050565b6000601f19601f8301169050919050565b60006137f98261378e565b6138038185613799565b93506138138185602086016137aa565b61381c816137dd565b840191505092915050565b6000602082019050818103600083015261384181846137ee565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061387482613849565b9050919050565b61388481613869565b811461388f57600080fd5b50565b6000813590506138a18161387b565b92915050565b600080604083850312156138be576138bd613713565b5b60006138cc85828601613892565b92505060206138dd85828601613739565b9150509250929050565b60008115159050919050565b6138fc816138e7565b82525050565b600060208201905061391760008301846138f3565b92915050565b60006020828403121561393357613932613713565b5b600061394184828501613892565b91505092915050565b6000819050919050565b600061396f61396a61396584613849565b61394a565b613849565b9050919050565b600061398182613954565b9050919050565b600061399382613976565b9050919050565b6139a381613988565b82525050565b60006020820190506139be600083018461399a565b92915050565b6139cd81613718565b82525050565b60006020820190506139e860008301846139c4565b92915050565b600060208284031215613a0457613a03613713565b5b6000613a1284828501613739565b91505092915050565b600080600060608486031215613a3457613a33613713565b5b6000613a4286828701613892565b9350506020613a5386828701613892565b9250506040613a6486828701613739565b9150509250925092565b613a7781613869565b82525050565b6000602082019050613a926000830184613a6e565b92915050565b600060ff82169050919050565b613aae81613a98565b82525050565b6000602082019050613ac96000830184613aa5565b92915050565b613ad8816138e7565b8114613ae357600080fd5b50565b600081359050613af581613acf565b92915050565b60008060408385031215613b1257613b11613713565b5b6000613b2085828601613892565b9250506020613b3185828601613ae6565b9150509250929050565b600060208284031215613b5157613b50613713565b5b6000613b5f84828501613ae6565b91505092915050565b60008060408385031215613b7f57613b7e613713565b5b6000613b8d85828601613892565b9250506020613b9e85828601613892565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613bde602083613799565b9150613be982613ba8565b602082019050919050565b60006020820190508181036000830152613c0d81613bd1565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613c4e82613718565b9150613c5983613718565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613c8e57613c8d613c14565b5b828201905092915050565b7f4d757374206b656570206665657320617420313525206f72206c657373000000600082015250565b6000613ccf601d83613799565b9150613cda82613c99565b602082019050919050565b60006020820190508181036000830152613cfe81613cc2565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613d4c57607f821691505b602082108103613d5f57613d5e613d05565b5b50919050565b6000613d7082613718565b9150613d7b83613718565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613db457613db3613c14565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613df982613718565b9150613e0483613718565b925082613e1457613e13613dbf565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b6000613e7b602f83613799565b9150613e8682613e1f565b604082019050919050565b60006020820190508181036000830152613eaa81613e6e565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000613f0d602883613799565b9150613f1882613eb1565b604082019050919050565b60006020820190508181036000830152613f3c81613f00565b9050919050565b7f4d757374206b656570206665657320617420313025206f72206c657373000000600082015250565b6000613f79601d83613799565b9150613f8482613f43565b602082019050919050565b60006020820190508181036000830152613fa881613f6c565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b600061400b603983613799565b915061401682613faf565b604082019050919050565b6000602082019050818103600083015261403a81613ffe565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061409d602583613799565b91506140a882614041565b604082019050919050565b600060208201905081810360008301526140cc81614090565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b600061412f602483613799565b915061413a826140d3565b604082019050919050565b6000602082019050818103600083015261415e81614122565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b60006141c1603583613799565b91506141cc82614165565b604082019050919050565b600060208201905081810360008301526141f0816141b4565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000614253603483613799565b915061425e826141f7565b604082019050919050565b6000602082019050818103600083015261428281614246565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006142e5602683613799565b91506142f082614289565b604082019050919050565b60006020820190508181036000830152614314816142d8565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614377602483613799565b91506143828261431b565b604082019050919050565b600060208201905081810360008301526143a68161436a565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614409602283613799565b9150614414826143ad565b604082019050919050565b60006020820190508181036000830152614438816143fc565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061449b602583613799565b91506144a68261443f565b604082019050919050565b600060208201905081810360008301526144ca8161448e565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061452d602383613799565b9150614538826144d1565b604082019050919050565b6000602082019050818103600083015261455c81614520565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000614599601683613799565b91506145a482614563565b602082019050919050565b600060208201905081810360008301526145c88161458c565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b6000614651604983613799565b915061465c826145cf565b606082019050919050565b6000602082019050818103600083015261468081614644565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b60006146e3603583613799565b91506146ee82614687565b604082019050919050565b60006020820190508181036000830152614712816146d6565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b600061474f601383613799565b915061475a82614719565b602082019050919050565b6000602082019050818103600083015261477e81614742565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b60006147e1603683613799565b91506147ec82614785565b604082019050919050565b60006020820190508181036000830152614810816147d4565b9050919050565b600061482282613718565b915061482d83613718565b9250828210156148405761483f613c14565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006148a7602683613799565b91506148b28261484b565b604082019050919050565b600060208201905081810360008301526148d68161489a565b9050919050565b60006060820190506148f260008301866139c4565b6148ff60208301856139c4565b61490c60408301846139c4565b949350505050565b600081905092915050565b50565b600061492f600083614914565b915061493a8261491f565b600082019050919050565b600061495082614922565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000815190506149c78161387b565b92915050565b6000602082840312156149e3576149e2613713565b5b60006149f1848285016149b8565b91505092915050565b6000819050919050565b6000614a1f614a1a614a15846149fa565b61394a565b613718565b9050919050565b614a2f81614a04565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b614a6a81613869565b82525050565b6000614a7c8383614a61565b60208301905092915050565b6000602082019050919050565b6000614aa082614a35565b614aaa8185614a40565b9350614ab583614a51565b8060005b83811015614ae6578151614acd8882614a70565b9750614ad883614a88565b925050600181019050614ab9565b5085935050505092915050565b600060a082019050614b0860008301886139c4565b614b156020830187614a26565b8181036040830152614b278186614a95565b9050614b366060830185613a6e565b614b4360808301846139c4565b9695505050505050565b600060c082019050614b626000830189613a6e565b614b6f60208301886139c4565b614b7c6040830187614a26565b614b896060830186614a26565b614b966080830185613a6e565b614ba360a08301846139c4565b979650505050505050565b600081519050614bbd81613722565b92915050565b600080600060608486031215614bdc57614bdb613713565b5b6000614bea86828701614bae565b9350506020614bfb86828701614bae565b9250506040614c0c86828701614bae565b915050925092509256fea26469706673582212208c2f9a950022ad222418a6912c241e3ed08098eba971c67fd5a30082bc416b9d64736f6c634300080f0033

Deployed Bytecode

0x6080604052600436106102b25760003560e01c80638da5cb5b11610175578063c0246668116100dc578063dd62ed3e11610095578063f11a24d31161006f578063f11a24d314610ad9578063f2fde38b14610b04578063f637434214610b2d578063f8b45b0514610b58576102b9565b8063dd62ed3e14610a46578063e2f4560514610a83578063e884f26014610aae576102b9565b8063c024666814610936578063c18bc1951461095f578063c876d0b914610988578063c8c8ebe4146109b3578063d257b34f146109de578063d85ba06314610a1b576102b9565b80639fccce321161012e5780639fccce32146107fe578063a0d82dc514610829578063a457c2d714610854578063a9059cbb14610891578063b62496f5146108ce578063bbc0c7421461090b576102b9565b80638da5cb5b146107005780638ea5220f1461072b578063924de9b71461075657806395d89b411461077f5780639a7a23d6146107aa5780639c3b4fdc146107d3576102b9565b806339509351116102195780636ddd1713116101d25780636ddd17131461061657806370a0823114610641578063715018a61461067e578063751039fc146106955780637571336a146106c05780638a8c523c146106e9576102b9565b806339509351146104f257806349bd5a5e1461052f5780634a62bb651461055a5780634fbee1931461058557806366ca9b83146105c25780636a486a8e146105eb576102b9565b80631816467f1161026b5780631816467f146103e25780631a8145bb1461040b578063203e727e1461043657806323b872dd1461045f57806327c8f8351461049c578063313ce567146104c7576102b9565b806302dbd8f8146102be57806306fdde03146102e7578063095ea7b31461031257806310d5de531461034f5780631694505e1461038c57806318160ddd146103b7576102b9565b366102b957005b600080fd5b3480156102ca57600080fd5b506102e560048036038101906102e0919061374e565b610b83565b005b3480156102f357600080fd5b506102fc610c6d565b6040516103099190613827565b60405180910390f35b34801561031e57600080fd5b50610339600480360381019061033491906138a7565b610cff565b6040516103469190613902565b60405180910390f35b34801561035b57600080fd5b506103766004803603810190610371919061391d565b610d1d565b6040516103839190613902565b60405180910390f35b34801561039857600080fd5b506103a1610d3d565b6040516103ae91906139a9565b60405180910390f35b3480156103c357600080fd5b506103cc610d61565b6040516103d991906139d3565b60405180910390f35b3480156103ee57600080fd5b506104096004803603810190610404919061391d565b610d6b565b005b34801561041757600080fd5b50610420610ea7565b60405161042d91906139d3565b60405180910390f35b34801561044257600080fd5b5061045d600480360381019061045891906139ee565b610ead565b005b34801561046b57600080fd5b5061048660048036038101906104819190613a1b565b610fbc565b6040516104939190613902565b60405180910390f35b3480156104a857600080fd5b506104b16110b4565b6040516104be9190613a7d565b60405180910390f35b3480156104d357600080fd5b506104dc6110ba565b6040516104e99190613ab4565b60405180910390f35b3480156104fe57600080fd5b50610519600480360381019061051491906138a7565b6110c3565b6040516105269190613902565b60405180910390f35b34801561053b57600080fd5b5061054461116f565b6040516105519190613a7d565b60405180910390f35b34801561056657600080fd5b5061056f611193565b60405161057c9190613902565b60405180910390f35b34801561059157600080fd5b506105ac60048036038101906105a7919061391d565b6111a6565b6040516105b99190613902565b60405180910390f35b3480156105ce57600080fd5b506105e960048036038101906105e4919061374e565b6111fc565b005b3480156105f757600080fd5b506106006112e6565b60405161060d91906139d3565b60405180910390f35b34801561062257600080fd5b5061062b6112ec565b6040516106389190613902565b60405180910390f35b34801561064d57600080fd5b506106686004803603810190610663919061391d565b6112ff565b60405161067591906139d3565b60405180910390f35b34801561068a57600080fd5b50610693611347565b005b3480156106a157600080fd5b506106aa6113cf565b6040516106b79190613902565b60405180910390f35b3480156106cc57600080fd5b506106e760048036038101906106e29190613afb565b61146f565b005b3480156106f557600080fd5b506106fe611546565b005b34801561070c57600080fd5b506107156115fa565b6040516107229190613a7d565b60405180910390f35b34801561073757600080fd5b50610740611624565b60405161074d9190613a7d565b60405180910390f35b34801561076257600080fd5b5061077d60048036038101906107789190613b3b565b61164a565b005b34801561078b57600080fd5b506107946116e3565b6040516107a19190613827565b60405180910390f35b3480156107b657600080fd5b506107d160048036038101906107cc9190613afb565b611775565b005b3480156107df57600080fd5b506107e861188d565b6040516107f591906139d3565b60405180910390f35b34801561080a57600080fd5b50610813611893565b60405161082091906139d3565b60405180910390f35b34801561083557600080fd5b5061083e611899565b60405161084b91906139d3565b60405180910390f35b34801561086057600080fd5b5061087b600480360381019061087691906138a7565b61189f565b6040516108889190613902565b60405180910390f35b34801561089d57600080fd5b506108b860048036038101906108b391906138a7565b61198a565b6040516108c59190613902565b60405180910390f35b3480156108da57600080fd5b506108f560048036038101906108f0919061391d565b6119a8565b6040516109029190613902565b60405180910390f35b34801561091757600080fd5b506109206119c8565b60405161092d9190613902565b60405180910390f35b34801561094257600080fd5b5061095d60048036038101906109589190613afb565b6119db565b005b34801561096b57600080fd5b50610986600480360381019061098191906139ee565b611b00565b005b34801561099457600080fd5b5061099d611c0f565b6040516109aa9190613902565b60405180910390f35b3480156109bf57600080fd5b506109c8611c22565b6040516109d591906139d3565b60405180910390f35b3480156109ea57600080fd5b50610a056004803603810190610a0091906139ee565b611c28565b604051610a129190613902565b60405180910390f35b348015610a2757600080fd5b50610a30611d7d565b604051610a3d91906139d3565b60405180910390f35b348015610a5257600080fd5b50610a6d6004803603810190610a689190613b68565b611d83565b604051610a7a91906139d3565b60405180910390f35b348015610a8f57600080fd5b50610a98611e0a565b604051610aa591906139d3565b60405180910390f35b348015610aba57600080fd5b50610ac3611e10565b604051610ad09190613902565b60405180910390f35b348015610ae557600080fd5b50610aee611eb0565b604051610afb91906139d3565b60405180910390f35b348015610b1057600080fd5b50610b2b6004803603810190610b26919061391d565b611eb6565b005b348015610b3957600080fd5b50610b42611fad565b604051610b4f91906139d3565b60405180910390f35b348015610b6457600080fd5b50610b6d611fb3565b604051610b7a91906139d3565b60405180910390f35b610b8b611fb9565b73ffffffffffffffffffffffffffffffffffffffff16610ba96115fa565b73ffffffffffffffffffffffffffffffffffffffff1614610bff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf690613bf4565b60405180910390fd5b8160118190555080601281905550601254601154610c1d9190613c43565b601081905550600f6010541115610c69576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6090613ce5565b60405180910390fd5b5050565b606060038054610c7c90613d34565b80601f0160208091040260200160405190810160405280929190818152602001828054610ca890613d34565b8015610cf55780601f10610cca57610100808354040283529160200191610cf5565b820191906000526020600020905b815481529060010190602001808311610cd857829003601f168201915b5050505050905090565b6000610d13610d0c611fb9565b8484611fc1565b6001905092915050565b60166020528060005260406000206000915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b610d73611fb9565b73ffffffffffffffffffffffffffffffffffffffff16610d916115fa565b73ffffffffffffffffffffffffffffffffffffffff1614610de7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dde90613bf4565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f90b8024c4923d3873ff5b9fcb43d0360d4b9217fa41225d07ba379993552e74360405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60135481565b610eb5611fb9565b73ffffffffffffffffffffffffffffffffffffffff16610ed36115fa565b73ffffffffffffffffffffffffffffffffffffffff1614610f29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2090613bf4565b60405180910390fd5b670de0b6b3a76400006103e86001610f3f610d61565b610f499190613d65565b610f539190613dee565b610f5d9190613dee565b811015610f9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9690613e91565b60405180910390fd5b670de0b6b3a764000081610fb39190613d65565b60078190555050565b6000610fc984848461218a565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000611014611fb9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015611094576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108b90613f23565b60405180910390fd5b6110a8856110a0611fb9565b858403611fc1565b60019150509392505050565b61dead81565b60006012905090565b60006111656110d0611fb9565b8484600160006110de611fb9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546111609190613c43565b611fc1565b6001905092915050565b7f000000000000000000000000e4ce706711a10c42d63164289ba8ef6b93e8c22481565b600a60009054906101000a900460ff1681565b6000601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b611204611fb9565b73ffffffffffffffffffffffffffffffffffffffff166112226115fa565b73ffffffffffffffffffffffffffffffffffffffff1614611278576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126f90613bf4565b60405180910390fd5b81600e8190555080600f81905550600f54600e546112969190613c43565b600d81905550600a600d5411156112e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d990613f8f565b60405180910390fd5b5050565b60105481565b600a60029054906101000a900460ff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61134f611fb9565b73ffffffffffffffffffffffffffffffffffffffff1661136d6115fa565b73ffffffffffffffffffffffffffffffffffffffff16146113c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ba90613bf4565b60405180910390fd5b6113cd6000612dbb565b565b60006113d9611fb9565b73ffffffffffffffffffffffffffffffffffffffff166113f76115fa565b73ffffffffffffffffffffffffffffffffffffffff161461144d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144490613bf4565b60405180910390fd5b6000600a60006101000a81548160ff0219169083151502179055506001905090565b611477611fb9565b73ffffffffffffffffffffffffffffffffffffffff166114956115fa565b73ffffffffffffffffffffffffffffffffffffffff16146114eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114e290613bf4565b60405180910390fd5b80601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b61154e611fb9565b73ffffffffffffffffffffffffffffffffffffffff1661156c6115fa565b73ffffffffffffffffffffffffffffffffffffffff16146115c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b990613bf4565b60405180910390fd5b6001600a60016101000a81548160ff0219169083151502179055506001600a60026101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611652611fb9565b73ffffffffffffffffffffffffffffffffffffffff166116706115fa565b73ffffffffffffffffffffffffffffffffffffffff16146116c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116bd90613bf4565b60405180910390fd5b80600a60026101000a81548160ff02191690831515021790555050565b6060600480546116f290613d34565b80601f016020809104026020016040519081016040528092919081815260200182805461171e90613d34565b801561176b5780601f106117405761010080835404028352916020019161176b565b820191906000526020600020905b81548152906001019060200180831161174e57829003601f168201915b5050505050905090565b61177d611fb9565b73ffffffffffffffffffffffffffffffffffffffff1661179b6115fa565b73ffffffffffffffffffffffffffffffffffffffff16146117f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e890613bf4565b60405180910390fd5b7f000000000000000000000000e4ce706711a10c42d63164289ba8ef6b93e8c22473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361187f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187690614021565b60405180910390fd5b6118898282612e81565b5050565b600f5481565b60145481565b60125481565b600080600160006118ae611fb9565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561196b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611962906140b3565b60405180910390fd5b61197f611976611fb9565b85858403611fc1565b600191505092915050565b600061199e611997611fb9565b848461218a565b6001905092915050565b60176020528060005260406000206000915054906101000a900460ff1681565b600a60019054906101000a900460ff1681565b6119e3611fb9565b73ffffffffffffffffffffffffffffffffffffffff16611a016115fa565b73ffffffffffffffffffffffffffffffffffffffff1614611a57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4e90613bf4565b60405180910390fd5b80601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051611af49190613902565b60405180910390a25050565b611b08611fb9565b73ffffffffffffffffffffffffffffffffffffffff16611b266115fa565b73ffffffffffffffffffffffffffffffffffffffff1614611b7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b7390613bf4565b60405180910390fd5b670de0b6b3a76400006103e86005611b92610d61565b611b9c9190613d65565b611ba69190613dee565b611bb09190613dee565b811015611bf2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be990614145565b60405180910390fd5b670de0b6b3a764000081611c069190613d65565b60098190555050565b600c60009054906101000a900460ff1681565b60075481565b6000611c32611fb9565b73ffffffffffffffffffffffffffffffffffffffff16611c506115fa565b73ffffffffffffffffffffffffffffffffffffffff1614611ca6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c9d90613bf4565b60405180910390fd5b620186a06001611cb4610d61565b611cbe9190613d65565b611cc89190613dee565b821015611d0a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d01906141d7565b60405180910390fd5b6103e86005611d17610d61565b611d219190613d65565b611d2b9190613dee565b821115611d6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6490614269565b60405180910390fd5b8160088190555060019050919050565b600d5481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60085481565b6000611e1a611fb9565b73ffffffffffffffffffffffffffffffffffffffff16611e386115fa565b73ffffffffffffffffffffffffffffffffffffffff1614611e8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e8590613bf4565b60405180910390fd5b6000600c60006101000a81548160ff0219169083151502179055506001905090565b600e5481565b611ebe611fb9565b73ffffffffffffffffffffffffffffffffffffffff16611edc6115fa565b73ffffffffffffffffffffffffffffffffffffffff1614611f32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f2990613bf4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611fa1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f98906142fb565b60405180910390fd5b611faa81612dbb565b50565b60115481565b60095481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612030576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120279061438d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361209f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120969061441f565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161217d91906139d3565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036121f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121f0906144b1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612268576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225f90614543565b60405180910390fd5b600081036122815761227c83836000612f22565b612db6565b600a60009054906101000a900460ff16156129445761229e6115fa565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561230c57506122dc6115fa565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156123455750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561237f575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156123985750600560149054906101000a900460ff16155b1561294357600a60019054906101000a900460ff1661249257601560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806124525750601560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b612491576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612488906145af565b60405180910390fd5b5b600c60009054906101000a900460ff161561265a576124af6115fa565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415801561253657507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561258e57507f000000000000000000000000e4ce706711a10c42d63164289ba8ef6b93e8c22473ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b156126595743600b60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205410612614576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161260b90614667565b60405180910390fd5b43600b60003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b5b601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156126fd5750601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156127a457600754811115612747576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161273e906146f9565b60405180910390fd5b600954612753836112ff565b8261275e9190613c43565b111561279f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161279690614765565b60405180910390fd5b612942565b601760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156128475750601660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1561289657600754811115612891576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612888906147f7565b60405180910390fd5b612941565b601660008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16612940576009546128f3836112ff565b826128fe9190613c43565b111561293f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161293690614765565b60405180910390fd5b5b5b5b5b5b600061294f306112ff565b9050600060085482101590508080156129745750600a60029054906101000a900460ff165b801561298d5750600560149054906101000a900460ff16155b80156129e35750601760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612a395750601560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015612a8f5750601560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612ad3576001600560146101000a81548160ff021916908315150217905550612ab76131a1565b6000600560146101000a81548160ff0219169083151502179055505b6000600560149054906101000a900460ff16159050601560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680612b895750601560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15612b9357600090505b60008115612da657601760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612bf657506000601054115b15612c9057612c236064612c15601054886133ae90919063ffffffff16565b6133c490919063ffffffff16565b905060105460115482612c369190613d65565b612c409190613dee565b60136000828254612c519190613c43565b9250508190555060105460125482612c699190613d65565b612c739190613dee565b60146000828254612c849190613c43565b92505081905550612d82565b601760008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015612ceb57506000600d54115b15612d8157612d186064612d0a600d54886133ae90919063ffffffff16565b6133c490919063ffffffff16565b9050600d54600e5482612d2b9190613d65565b612d359190613dee565b60136000828254612d469190613c43565b92505081905550600d54600f5482612d5e9190613d65565b612d689190613dee565b60146000828254612d799190613c43565b925050819055505b5b6000811115612d9757612d96873083612f22565b5b8085612da39190614817565b94505b612db1878787612f22565b505050505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b80601760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612f91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f88906144b1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603613000576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ff790614543565b60405180910390fd5b61300b8383836133da565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015613091576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613088906148bd565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546131249190613c43565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161318891906139d3565b60405180910390a361319b8484846133df565b50505050565b60006131ac306112ff565b905060006014546013546131c09190613c43565b90506000808314806131d25750600082145b156131df575050506133ac565b60146008546131ee9190613d65565b8311156132075760146008546132049190613d65565b92505b60006002836013548661321a9190613d65565b6132249190613dee565b61322e9190613dee565b9050600061324582866133e490919063ffffffff16565b90506000479050613255826133fa565b600061326a82476133e490919063ffffffff16565b9050600061329587613287601454856133ae90919063ffffffff16565b6133c490919063ffffffff16565b9050600081836132a59190614817565b9050600060138190555060006014819055506000861180156132c75750600081115b15613314576132d68682613637565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb561858260135460405161330b939291906148dd565b60405180910390a15b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff164760405161335a90614945565b60006040518083038185875af1925050503d8060008114613397576040519150601f19603f3d011682016040523d82523d6000602084013e61339c565b606091505b5050809750505050505050505050505b565b600081836133bc9190613d65565b905092915050565b600081836133d29190613dee565b905092915050565b505050565b505050565b600081836133f29190614817565b905092915050565b6000600267ffffffffffffffff8111156134175761341661495a565b5b6040519080825280602002602001820160405280156134455781602001602082028036833780820191505090505b509050308160008151811061345d5761345c614989565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015613502573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061352691906149cd565b8160018151811061353a57613539614989565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061359f307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611fc1565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401613601959493929190614af3565b600060405180830381600087803b15801561361b57600080fd5b505af115801561362f573d6000803e3d6000fd5b505050505050565b613662307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84611fc1565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008061dead426040518863ffffffff1660e01b81526004016136c996959493929190614b4d565b60606040518083038185885af11580156136e7573d6000803e3d6000fd5b50505050506040513d601f19601f8201168201806040525081019061370c9190614bc3565b5050505050565b600080fd5b6000819050919050565b61372b81613718565b811461373657600080fd5b50565b60008135905061374881613722565b92915050565b6000806040838503121561376557613764613713565b5b600061377385828601613739565b925050602061378485828601613739565b9150509250929050565b600081519050919050565b600082825260208201905092915050565b60005b838110156137c85780820151818401526020810190506137ad565b838111156137d7576000848401525b50505050565b6000601f19601f8301169050919050565b60006137f98261378e565b6138038185613799565b93506138138185602086016137aa565b61381c816137dd565b840191505092915050565b6000602082019050818103600083015261384181846137ee565b905092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061387482613849565b9050919050565b61388481613869565b811461388f57600080fd5b50565b6000813590506138a18161387b565b92915050565b600080604083850312156138be576138bd613713565b5b60006138cc85828601613892565b92505060206138dd85828601613739565b9150509250929050565b60008115159050919050565b6138fc816138e7565b82525050565b600060208201905061391760008301846138f3565b92915050565b60006020828403121561393357613932613713565b5b600061394184828501613892565b91505092915050565b6000819050919050565b600061396f61396a61396584613849565b61394a565b613849565b9050919050565b600061398182613954565b9050919050565b600061399382613976565b9050919050565b6139a381613988565b82525050565b60006020820190506139be600083018461399a565b92915050565b6139cd81613718565b82525050565b60006020820190506139e860008301846139c4565b92915050565b600060208284031215613a0457613a03613713565b5b6000613a1284828501613739565b91505092915050565b600080600060608486031215613a3457613a33613713565b5b6000613a4286828701613892565b9350506020613a5386828701613892565b9250506040613a6486828701613739565b9150509250925092565b613a7781613869565b82525050565b6000602082019050613a926000830184613a6e565b92915050565b600060ff82169050919050565b613aae81613a98565b82525050565b6000602082019050613ac96000830184613aa5565b92915050565b613ad8816138e7565b8114613ae357600080fd5b50565b600081359050613af581613acf565b92915050565b60008060408385031215613b1257613b11613713565b5b6000613b2085828601613892565b9250506020613b3185828601613ae6565b9150509250929050565b600060208284031215613b5157613b50613713565b5b6000613b5f84828501613ae6565b91505092915050565b60008060408385031215613b7f57613b7e613713565b5b6000613b8d85828601613892565b9250506020613b9e85828601613892565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613bde602083613799565b9150613be982613ba8565b602082019050919050565b60006020820190508181036000830152613c0d81613bd1565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000613c4e82613718565b9150613c5983613718565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613c8e57613c8d613c14565b5b828201905092915050565b7f4d757374206b656570206665657320617420313525206f72206c657373000000600082015250565b6000613ccf601d83613799565b9150613cda82613c99565b602082019050919050565b60006020820190508181036000830152613cfe81613cc2565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680613d4c57607f821691505b602082108103613d5f57613d5e613d05565b5b50919050565b6000613d7082613718565b9150613d7b83613718565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613db457613db3613c14565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000613df982613718565b9150613e0483613718565b925082613e1457613e13613dbf565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b6000613e7b602f83613799565b9150613e8682613e1f565b604082019050919050565b60006020820190508181036000830152613eaa81613e6e565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000613f0d602883613799565b9150613f1882613eb1565b604082019050919050565b60006020820190508181036000830152613f3c81613f00565b9050919050565b7f4d757374206b656570206665657320617420313025206f72206c657373000000600082015250565b6000613f79601d83613799565b9150613f8482613f43565b602082019050919050565b60006020820190508181036000830152613fa881613f6c565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b600061400b603983613799565b915061401682613faf565b604082019050919050565b6000602082019050818103600083015261403a81613ffe565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061409d602583613799565b91506140a882614041565b604082019050919050565b600060208201905081810360008301526140cc81614090565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b600061412f602483613799565b915061413a826140d3565b604082019050919050565b6000602082019050818103600083015261415e81614122565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206c6f776572207468616e60008201527f20302e3030312520746f74616c20737570706c792e0000000000000000000000602082015250565b60006141c1603583613799565b91506141cc82614165565b604082019050919050565b600060208201905081810360008301526141f0816141b4565b9050919050565b7f5377617020616d6f756e742063616e6e6f74206265206869676865722074686160008201527f6e20302e352520746f74616c20737570706c792e000000000000000000000000602082015250565b6000614253603483613799565b915061425e826141f7565b604082019050919050565b6000602082019050818103600083015261428281614246565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006142e5602683613799565b91506142f082614289565b604082019050919050565b60006020820190508181036000830152614314816142d8565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000614377602483613799565b91506143828261431b565b604082019050919050565b600060208201905081810360008301526143a68161436a565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000614409602283613799565b9150614414826143ad565b604082019050919050565b60006020820190508181036000830152614438816143fc565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b600061449b602583613799565b91506144a68261443f565b604082019050919050565b600060208201905081810360008301526144ca8161448e565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061452d602383613799565b9150614538826144d1565b604082019050919050565b6000602082019050818103600083015261455c81614520565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000614599601683613799565b91506145a482614563565b602082019050919050565b600060208201905081810360008301526145c88161458c565b9050919050565b7f5f7472616e736665723a3a205472616e736665722044656c617920656e61626c60008201527f65642e20204f6e6c79206f6e652070757263686173652070657220626c6f636b60208201527f20616c6c6f7765642e0000000000000000000000000000000000000000000000604082015250565b6000614651604983613799565b915061465c826145cf565b606082019050919050565b6000602082019050818103600083015261468081614644565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b60006146e3603583613799565b91506146ee82614687565b604082019050919050565b60006020820190508181036000830152614712816146d6565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b600061474f601383613799565b915061475a82614719565b602082019050919050565b6000602082019050818103600083015261477e81614742565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b60006147e1603683613799565b91506147ec82614785565b604082019050919050565b60006020820190508181036000830152614810816147d4565b9050919050565b600061482282613718565b915061482d83613718565b9250828210156148405761483f613c14565b5b828203905092915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006148a7602683613799565b91506148b28261484b565b604082019050919050565b600060208201905081810360008301526148d68161489a565b9050919050565b60006060820190506148f260008301866139c4565b6148ff60208301856139c4565b61490c60408301846139c4565b949350505050565b600081905092915050565b50565b600061492f600083614914565b915061493a8261491f565b600082019050919050565b600061495082614922565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000815190506149c78161387b565b92915050565b6000602082840312156149e3576149e2613713565b5b60006149f1848285016149b8565b91505092915050565b6000819050919050565b6000614a1f614a1a614a15846149fa565b61394a565b613718565b9050919050565b614a2f81614a04565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b614a6a81613869565b82525050565b6000614a7c8383614a61565b60208301905092915050565b6000602082019050919050565b6000614aa082614a35565b614aaa8185614a40565b9350614ab583614a51565b8060005b83811015614ae6578151614acd8882614a70565b9750614ad883614a88565b925050600181019050614ab9565b5085935050505092915050565b600060a082019050614b0860008301886139c4565b614b156020830187614a26565b8181036040830152614b278186614a95565b9050614b366060830185613a6e565b614b4360808301846139c4565b9695505050505050565b600060c082019050614b626000830189613a6e565b614b6f60208301886139c4565b614b7c6040830187614a26565b614b896060830186614a26565b614b966080830185613a6e565b614ba360a08301846139c4565b979650505050505050565b600081519050614bbd81613722565b92915050565b600080600060608486031215614bdc57614bdb613713565b5b6000614bea86828701614bae565b9350506020614bfb86828701614bae565b9250506040614c0c86828701614bae565b915050925092509256fea26469706673582212208c2f9a950022ad222418a6912c241e3ed08098eba971c67fd5a30082bc416b9d64736f6c634300080f0033

Deployed Bytecode Sourcemap

37658:17754:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45427:364;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10481:112;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13311:258;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39082:63;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37756:51;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11793:120;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46647:175;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38824:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43964:311;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14141:631;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37871:53;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11593:105;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15265:363;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37820:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38171:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46842:138;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45050:357;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38693:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38263:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12006:225;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3149:115;;;;;;;;;;;;;:::i;:::-;;42898:139;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44607:197;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42698:130;;;;;;;;;;;;;:::i;:::-;;2384:99;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37987:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44918:112;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10748:116;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46031:364;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38648:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38870:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38778:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;16227:572;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12504:264;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39327:57;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38217:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45811:200;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44295:292;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38505:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38032:35;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43357:587;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38565:27;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12861:249;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38080:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43116:153;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38605:30;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3455:274;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38734:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38126:24;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45427:364;2663:12;:10;:12::i;:::-;2652:23;;:7;:5;:7::i;:::-;:23;;;2644:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45587:13:::1;45568:16;:32;;;;45630:7;45617:10;:20;;;;45689:10;;45670:16;;:29;;;;:::i;:::-;45654:13;:45;;;;45741:2;45724:13;;:19;;45716:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;45427:364:::0;;:::o;10481:112::-;10535:13;10574:5;10567:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10481:112;:::o;13311:258::-;13454:4;13488:39;13497:12;:10;:12::i;:::-;13511:7;13520:6;13488:8;:39::i;:::-;13551:4;13544:11;;13311:258;;;;:::o;39082:63::-;;;;;;;;;;;;;;;;;;;;;;:::o;37756:51::-;;;:::o;11793:120::-;11854:7;11887:12;;11880:19;;11793:120;:::o;46647:175::-;2663:12;:10;:12::i;:::-;2652:23;;:7;:5;:7::i;:::-;:23;;;2644:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46760:9:::1;;;;;;;;;;;46732:38;;46749:9;46732:38;;;;;;;;;;;;46799:9;46787;;:21;;;;;;;;;;;;;;;;;;46647:175:::0;:::o;38824:33::-;;;;:::o;43964:311::-;2663:12;:10;:12::i;:::-;2652:23;;:7;:5;:7::i;:::-;:23;;;2644:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44113:4:::1;44105;44100:1;44084:13;:11;:13::i;:::-;:17;;;;:::i;:::-;44083:26;;;;:::i;:::-;44082:35;;;;:::i;:::-;44072:6;:45;;44044:160;;;;;;;;;;;;:::i;:::-;;;;;;;;;44254:6;44244;:17;;;;:::i;:::-;44221:20;:40;;;;43964:311:::0;:::o;14141:631::-;14305:4;14328:36;14338:6;14346:9;14357:6;14328:9;:36::i;:::-;14389:24;14416:11;:19;14428:6;14416:19;;;;;;;;;;;;;;;:33;14436:12;:10;:12::i;:::-;14416:33;;;;;;;;;;;;;;;;14389:60;;14514:6;14494:16;:26;;14466:134;;;;;;;;;;;;:::i;:::-;;;;;;;;;14648:57;14657:6;14665:12;:10;:12::i;:::-;14698:6;14679:16;:25;14648:8;:57::i;:::-;14754:4;14747:11;;;14141:631;;;;;:::o;37871:53::-;37917:6;37871:53;:::o;11593:105::-;11651:5;11682:2;11675:9;;11593:105;:::o;15265:363::-;15398:4;15432:154;15461:12;:10;:12::i;:::-;15494:7;15559:10;15522:11;:25;15534:12;:10;:12::i;:::-;15522:25;;;;;;;;;;;;;;;:34;15548:7;15522:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;15432:8;:154::i;:::-;15610:4;15603:11;;15265:363;;;;:::o;37820:38::-;;;:::o;38171:33::-;;;;;;;;;;;;;:::o;46842:138::-;46908:4;46938:19;:28;46958:7;46938:28;;;;;;;;;;;;;;;;;;;;;;;;;46931:35;;46842:138;;;:::o;45050:357::-;2663:12;:10;:12::i;:::-;2652:23;;:7;:5;:7::i;:::-;:23;;;2644:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45208:13:::1;45190:15;:31;;;;45250:7;45238:9;:19;;;;45307:9;;45289:15;;:27;;;;:::i;:::-;45274:12;:42;;;;45357:2;45341:12;;:18;;45333:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;45050:357:::0;;:::o;38693:28::-;;;;:::o;38263:31::-;;;;;;;;;;;;;:::o;12006:225::-;12155:7;12199:9;:18;12209:7;12199:18;;;;;;;;;;;;;;;;12192:25;;12006:225;;;:::o;3149:115::-;2663:12;:10;:12::i;:::-;2652:23;;:7;:5;:7::i;:::-;:23;;;2644:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3220:30:::1;3247:1;3220:18;:30::i;:::-;3149:115::o:0;42898:139::-;42950:4;2663:12;:10;:12::i;:::-;2652:23;;:7;:5;:7::i;:::-;:23;;;2644:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42990:5:::1;42973:14;;:22;;;;;;;;;;;;;;;;;;43019:4;43012:11;;42898:139:::0;:::o;44607:197::-;2663:12;:10;:12::i;:::-;2652:23;;:7;:5;:7::i;:::-;:23;;;2644:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44786:4:::1;44744:31;:39;44776:6;44744:39;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;44607:197:::0;;:::o;42698:130::-;2663:12;:10;:12::i;:::-;2652:23;;:7;:5;:7::i;:::-;:23;;;2644:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42775:4:::1;42759:13;;:20;;;;;;;;;;;;;;;;;;42810:4;42796:11;;:18;;;;;;;;;;;;;;;;;;42698:130::o:0;2384:99::-;2430:7;2463:6;;;;;;;;;;;2456:13;;2384:99;:::o;37987:24::-;;;;;;;;;;;;;:::o;44918:112::-;2663:12;:10;:12::i;:::-;2652:23;;:7;:5;:7::i;:::-;:23;;;2644:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45009:7:::1;44995:11;;:21;;;;;;;;;;;;;;;;;;44918:112:::0;:::o;10748:116::-;10804:13;10843:7;10836:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10748:116;:::o;46031:364::-;2663:12;:10;:12::i;:::-;2652:23;;:7;:5;:7::i;:::-;:23;;;2644:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;46205:13:::1;46197:21;;:4;:21;;::::0;46169:146:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;46340:41;46369:4;46375:5;46340:28;:41::i;:::-;46031:364:::0;;:::o;38648:24::-;;;;:::o;38870:27::-;;;;:::o;38778:25::-;;;;:::o;16227:572::-;16365:4;16399:24;16426:11;:25;16438:12;:10;:12::i;:::-;16426:25;;;;;;;;;;;;;;;:34;16452:7;16426:34;;;;;;;;;;;;;;;;16399:61;;16525:15;16505:16;:35;;16477:140;;;;;;;;;;;;:::i;:::-;;;;;;;;;16665:67;16674:12;:10;:12::i;:::-;16688:7;16716:15;16697:16;:34;16665:8;:67::i;:::-;16781:4;16774:11;;;16227:572;;;;:::o;12504:264::-;12650:4;12684:42;12694:12;:10;:12::i;:::-;12708:9;12719:6;12684:9;:42::i;:::-;12750:4;12743:11;;12504:264;;;;:::o;39327:57::-;;;;;;;;;;;;;;;;;;;;;;:::o;38217:33::-;;;;;;;;;;;;;:::o;45811:200::-;2663:12;:10;:12::i;:::-;2652:23;;:7;:5;:7::i;:::-;:23;;;2644:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;45933:8:::1;45902:19;:28;45922:7;45902:28;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;45979:7;45963:34;;;45988:8;45963:34;;;;;;:::i;:::-;;;;;;;;45811:200:::0;;:::o;44295:292::-;2663:12;:10;:12::i;:::-;2652:23;;:7;:5;:7::i;:::-;:23;;;2644:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;44447:4:::1;44439;44434:1;44418:13;:11;:13::i;:::-;:17;;;;:::i;:::-;44417:26;;;;:::i;:::-;44416:35;;;;:::i;:::-;44406:6;:45;;44378:149;;;;;;;;;;;;:::i;:::-;;;;;;;;;44566:6;44556;:17;;;;:::i;:::-;44544:9;:29;;;;44295:292:::0;:::o;38505:39::-;;;;;;;;;;;;;:::o;38032:35::-;;;;:::o;43357:587::-;43483:4;2663:12;:10;:12::i;:::-;2652:23;;:7;:5;:7::i;:::-;:23;;;2644:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43580:6:::1;43575:1;43559:13;:11;:13::i;:::-;:17;;;;:::i;:::-;43558:28;;;;:::i;:::-;43545:9;:41;;43517:162;;;;;;;;;;;;:::i;:::-;;;;;;;;;43759:4;43754:1;43738:13;:11;:13::i;:::-;:17;;;;:::i;:::-;43737:26;;;;:::i;:::-;43724:9;:39;;43696:159;;;;;;;;;;;;:::i;:::-;;;;;;;;;43893:9;43872:18;:30;;;;43926:4;43919:11;;43357:587:::0;;;:::o;38565:27::-;;;;:::o;12861:249::-;13025:7;13069:11;:18;13081:5;13069:18;;;;;;;;;;;;;;;:27;13088:7;13069:27;;;;;;;;;;;;;;;;13062:34;;12861:249;;;;:::o;38080:33::-;;;;:::o;43116:153::-;43176:4;2663:12;:10;:12::i;:::-;2652:23;;:7;:5;:7::i;:::-;:23;;;2644:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43222:5:::1;43199:20;;:28;;;;;;;;;;;;;;;;;;43251:4;43244:11;;43116:153:::0;:::o;38605:30::-;;;;:::o;3455:274::-;2663:12;:10;:12::i;:::-;2652:23;;:7;:5;:7::i;:::-;:23;;;2644:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3590:1:::1;3570:22;;:8;:22;;::::0;3542:128:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3687:28;3706:8;3687:18;:28::i;:::-;3455:274:::0;:::o;38734:31::-;;;;:::o;38126:24::-;;;;:::o;992:110::-;1045:7;1078:10;1071:17;;992:110;:::o;20725:440::-;20908:1;20891:19;;:5;:19;;;20883:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20995:1;20976:21;;:7;:21;;;20968:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;21091:6;21061:11;:18;21073:5;21061:18;;;;;;;;;;;;;;;:27;21080:7;21061:27;;;;;;;;;;;;;;;:36;;;;21135:7;21119:32;;21128:5;21119:32;;;21144:6;21119:32;;;;;;:::i;:::-;;;;;;;;20725:440;;;:::o;47062:5311::-;47240:1;47224:18;;:4;:18;;;47216:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;47323:1;47309:16;;:2;:16;;;47301:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;47404:1;47394:6;:11;47390:111;;47428:28;47444:4;47450:2;47454:1;47428:15;:28::i;:::-;47477:7;;47390:111;47529:14;;;;;;;;;;;47525:2853;;;47602:7;:5;:7::i;:::-;47594:15;;:4;:15;;;;:55;;;;;47642:7;:5;:7::i;:::-;47636:13;;:2;:13;;;;47594:55;:98;;;;;47690:1;47676:16;;:2;:16;;;;47594:98;:146;;;;;47733:6;47719:21;;:2;:21;;;;47594:146;:182;;;;;47768:8;;;;;;;;;;;47767:9;47594:182;47566:2795;;;47828:13;;;;;;;;;;;47823:253;;47912:19;:25;47932:4;47912:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;47941:19;:23;47961:2;47941:23;;;;;;;;;;;;;;;;;;;;;;;;;47912:52;47872:178;;;;;;;;;;;;:::i;:::-;;;;;;;;;47823:253;48250:20;;;;;;;;;;;48246:719;;;48343:7;:5;:7::i;:::-;48337:13;;:2;:13;;;;:78;;;;;48399:15;48385:30;;:2;:30;;;;48337:78;:141;;;;;48464:13;48450:28;;:2;:28;;;;48337:141;48301:639;;;48666:12;48585:28;:39;48614:9;48585:39;;;;;;;;;;;;;;;;:93;48541:282;;;;;;;;;;;;:::i;:::-;;;;;;;;;48898:12;48856:28;:39;48885:9;48856:39;;;;;;;;;;;;;;;:54;;;;48301:639;48246:719;49063:25;:31;49089:4;49063:31;;;;;;;;;;;;;;;;;;;;;;;;;:98;;;;;49126:31;:35;49158:2;49126:35;;;;;;;;;;;;;;;;;;;;;;;;;49125:36;49063:98;49031:1309;;;49266:20;;49256:6;:30;;49216:187;;;;;;;;;;;;:::i;:::-;;;;;;;;;49498:9;;49481:13;49491:2;49481:9;:13::i;:::-;49472:6;:22;;;;:::i;:::-;:35;;49432:158;;;;;;;;;;;;:::i;:::-;;;;;;;;;49031:1309;;;49712:25;:29;49738:2;49712:29;;;;;;;;;;;;;;;;;;;;;;;;;:98;;;;;49773:31;:37;49805:4;49773:37;;;;;;;;;;;;;;;;;;;;;;;;;49772:38;49712:98;49680:660;;;49915:20;;49905:6;:30;;49865:188;;;;;;;;;;;;:::i;:::-;;;;;;;;;49680:660;;;50090:31;:35;50122:2;50090:35;;;;;;;;;;;;;;;;;;;;;;;;;50085:255;;50222:9;;50205:13;50215:2;50205:9;:13::i;:::-;50196:6;:22;;;;:::i;:::-;:35;;50156:158;;;;;;;;;;;;:::i;:::-;;;;;;;;;50085:255;49680:660;49031:1309;47566:2795;47525:2853;50402:28;50433:24;50451:4;50433:9;:24::i;:::-;50402:55;;50482:12;50521:18;;50497:20;:42;;50482:57;;50588:7;:41;;;;;50618:11;;;;;;;;;;;50588:41;:73;;;;;50653:8;;;;;;;;;;;50652:9;50588:73;:128;;;;;50685:25;:31;50711:4;50685:31;;;;;;;;;;;;;;;;;;;;;;;;;50684:32;50588:128;:177;;;;;50740:19;:25;50760:4;50740:25;;;;;;;;;;;;;;;;;;;;;;;;;50739:26;50588:177;:224;;;;;50789:19;:23;50809:2;50789:23;;;;;;;;;;;;;;;;;;;;;;;;;50788:24;50588:224;50564:404;;;50862:4;50851:8;;:15;;;;;;;;;;;;;;;;;;50895:10;:8;:10::i;:::-;50945:5;50934:8;;:16;;;;;;;;;;;;;;;;;;50564:404;50992:12;51008:8;;;;;;;;;;;51007:9;50992:24;;51136:19;:25;51156:4;51136:25;;;;;;;;;;;;;;;;;;;;;;;;;:52;;;;51165:19;:23;51185:2;51165:23;;;;;;;;;;;;;;;;;;;;;;;;;51136:52;51132:112;;;51221:5;51211:15;;51132:112;51268:12;51385:7;51381:921;;;51449:25;:29;51475:2;51449:29;;;;;;;;;;;;;;;;;;;;;;;;;:50;;;;;51498:1;51482:13;;:17;51449:50;51445:666;;;51533:34;51563:3;51533:25;51544:13;;51533:6;:10;;:25;;;;:::i;:::-;:29;;:34;;;;:::i;:::-;51526:41;;51642:13;;51622:16;;51615:4;:23;;;;:::i;:::-;51614:41;;;;:::i;:::-;51592:18;;:63;;;;;;;:::i;:::-;;;;;;;;51718:13;;51704:10;;51697:4;:17;;;;:::i;:::-;51696:35;;;;:::i;:::-;51680:12;;:51;;;;;;;:::i;:::-;;;;;;;;51445:666;;;51811:25;:31;51837:4;51811:31;;;;;;;;;;;;;;;;;;;;;;;;;:51;;;;;51861:1;51846:12;;:16;51811:51;51807:304;;;51896:33;51925:3;51896:24;51907:12;;51896:6;:10;;:24;;;;:::i;:::-;:28;;:33;;;;:::i;:::-;51889:40;;52003:12;;51984:15;;51977:4;:22;;;;:::i;:::-;51976:39;;;;:::i;:::-;51954:18;;:61;;;;;;;:::i;:::-;;;;;;;;52077:12;;52064:9;;52057:4;:16;;;;:::i;:::-;52056:33;;;;:::i;:::-;52040:12;;:49;;;;;;;:::i;:::-;;;;;;;;51807:304;51445:666;52150:1;52143:4;:8;52139:103;;;52178:42;52194:4;52208;52215;52178:15;:42::i;:::-;52139:103;52280:4;52270:14;;;;;:::i;:::-;;;51381:921;52326:33;52342:4;52348:2;52352:6;52326:15;:33::i;:::-;47199:5174;;;;47062:5311;;;;:::o;3925:215::-;4005:16;4024:6;;;;;;;;;;;4005:25;;4056:8;4047:6;;:17;;;;;;;;;;;;;;;;;;4117:8;4086:40;;4107:8;4086:40;;;;;;;;;;;;3988:152;3925:215;:::o;46415:212::-;46538:5;46504:25;:31;46530:4;46504:31;;;;;;;;;;;;;;;;:39;;;;;;;;;;;;;;;;;;46607:5;46573:40;;46601:4;46573:40;;;;;;;;;;;;46415:212;;:::o;17385:908::-;17573:1;17555:20;;:6;:20;;;17547:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;17663:1;17642:23;;:9;:23;;;17634:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;17730:47;17751:6;17759:9;17770:6;17730:20;:47::i;:::-;17802:21;17826:9;:17;17836:6;17826:17;;;;;;;;;;;;;;;;17802:41;;17905:6;17888:13;:23;;17860:129;;;;;;;;;;;;:::i;:::-;;;;;;;;;18073:6;18057:13;:22;18037:9;:17;18047:6;18037:17;;;;;;;;;;;;;;;:42;;;;18137:6;18113:9;:20;18123:9;18113:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;18190:9;18173:35;;18182:6;18173:35;;;18201:6;18173:35;;;;;;:::i;:::-;;;;;;;;18233:46;18253:6;18261:9;18272:6;18233:19;:46::i;:::-;17530:763;17385:908;;;:::o;53713:1690::-;53758:23;53784:24;53802:4;53784:9;:24::i;:::-;53758:50;;53825:25;53874:12;;53853:18;;:33;;;;:::i;:::-;53825:61;;53903:12;53963:1;53944:15;:20;:46;;;;53989:1;53968:17;:22;53944:46;53940:97;;;54013:7;;;;;53940:97;54104:2;54083:18;;:23;;;;:::i;:::-;54065:15;:41;54061:127;;;54168:2;54147:18;;:23;;;;:::i;:::-;54129:41;;54061:127;54267:23;54392:1;54353:17;54312:18;;54294:15;:36;;;;:::i;:::-;54293:77;;;;:::i;:::-;:100;;;;:::i;:::-;54267:126;;54410:26;54439:36;54459:15;54439;:19;;:36;;;;:::i;:::-;54410:65;;54500:25;54528:21;54500:49;;54574:36;54591:18;54574:16;:36::i;:::-;54635:18;54656:44;54682:17;54656:21;:25;;:44;;;;:::i;:::-;54635:65;;54725:17;54745:51;54778:17;54745:28;54760:12;;54745:10;:14;;:28;;;;:::i;:::-;:32;;:51;;;;:::i;:::-;54725:71;;54821:23;54860:9;54847:10;:22;;;;:::i;:::-;54821:48;;54915:1;54894:18;:22;;;;54948:1;54933:12;:16;;;;54996:1;54978:15;:19;:42;;;;;55019:1;55001:15;:19;54978:42;54974:320;;;55043:46;55056:15;55073;55043:12;:46::i;:::-;55115:161;55154:18;55197:15;55237:18;;55115:161;;;;;;;;:::i;:::-;;;;;;;;54974:320;55340:9;;;;;;;;;;;55332:23;;55363:21;55332:57;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55318:71;;;;;53741:1662;;;;;;;;;53713:1690;:::o;27121:110::-;27179:7;27216:1;27212;:5;;;;:::i;:::-;27205:12;;27121:110;;;;:::o;27604:::-;27662:7;27699:1;27695;:5;;;;:::i;:::-;27688:12;;27604:110;;;;:::o;21861:149::-;;;;:::o;22710:148::-;;;;:::o;26680:110::-;26738:7;26775:1;26771;:5;;;;:::i;:::-;26764:12;;26680:110;;;;:::o;52393:685::-;52531:21;52569:1;52555:16;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52531:40;;52606:4;52588;52593:1;52588:7;;;;;;;;:::i;:::-;;;;;;;:23;;;;;;;;;;;52638:15;:20;;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;52628:4;52633:1;52628:7;;;;;;;;:::i;:::-;;;;;;;:32;;;;;;;;;;;52685:62;52702:4;52717:15;52735:11;52685:8;:62::i;:::-;52804:15;:66;;;52891:11;52923:1;52973:4;53006;53032:15;52804:260;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;52448:630;52393:685;:::o;53098:595::-;53258:62;53275:4;53290:15;53308:11;53258:8;:62::i;:::-;53381:15;:31;;;53420:9;53459:4;53485:11;53517:1;53566;37917:6;53647:15;53381:298;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;53098:595;;:::o;88:117:1:-;197:1;194;187:12;334:77;371:7;400:5;389:16;;334:77;;;:::o;417:122::-;490:24;508:5;490:24;:::i;:::-;483:5;480:35;470:63;;529:1;526;519:12;470:63;417:122;:::o;545:139::-;591:5;629:6;616:20;607:29;;645:33;672:5;645:33;:::i;:::-;545:139;;;;:::o;690:474::-;758:6;766;815:2;803:9;794:7;790:23;786:32;783:119;;;821:79;;:::i;:::-;783:119;941:1;966:53;1011:7;1002:6;991:9;987:22;966:53;:::i;:::-;956:63;;912:117;1068:2;1094:53;1139:7;1130:6;1119:9;1115:22;1094:53;:::i;:::-;1084:63;;1039:118;690:474;;;;;:::o;1170:99::-;1222:6;1256:5;1250:12;1240:22;;1170:99;;;:::o;1275:169::-;1359:11;1393:6;1388:3;1381:19;1433:4;1428:3;1424:14;1409:29;;1275:169;;;;:::o;1450:307::-;1518:1;1528:113;1542:6;1539:1;1536:13;1528:113;;;1627:1;1622:3;1618:11;1612:18;1608:1;1603:3;1599:11;1592:39;1564:2;1561:1;1557:10;1552:15;;1528:113;;;1659:6;1656:1;1653:13;1650:101;;;1739:1;1730:6;1725:3;1721:16;1714:27;1650:101;1499:258;1450:307;;;:::o;1763:102::-;1804:6;1855:2;1851:7;1846:2;1839:5;1835:14;1831:28;1821:38;;1763:102;;;:::o;1871:364::-;1959:3;1987:39;2020:5;1987:39;:::i;:::-;2042:71;2106:6;2101:3;2042:71;:::i;:::-;2035:78;;2122:52;2167:6;2162:3;2155:4;2148:5;2144:16;2122:52;:::i;:::-;2199:29;2221:6;2199:29;:::i;:::-;2194:3;2190:39;2183:46;;1963:272;1871:364;;;;:::o;2241:313::-;2354:4;2392:2;2381:9;2377:18;2369:26;;2441:9;2435:4;2431:20;2427:1;2416:9;2412:17;2405:47;2469:78;2542:4;2533:6;2469:78;:::i;:::-;2461:86;;2241:313;;;;:::o;2560:126::-;2597:7;2637:42;2630:5;2626:54;2615:65;;2560:126;;;:::o;2692:96::-;2729:7;2758:24;2776:5;2758:24;:::i;:::-;2747:35;;2692:96;;;:::o;2794:122::-;2867:24;2885:5;2867:24;:::i;:::-;2860:5;2857:35;2847:63;;2906:1;2903;2896:12;2847:63;2794:122;:::o;2922:139::-;2968:5;3006:6;2993:20;2984:29;;3022:33;3049:5;3022:33;:::i;:::-;2922:139;;;;:::o;3067:474::-;3135:6;3143;3192:2;3180:9;3171:7;3167:23;3163:32;3160:119;;;3198:79;;:::i;:::-;3160:119;3318:1;3343:53;3388:7;3379:6;3368:9;3364:22;3343:53;:::i;:::-;3333:63;;3289:117;3445:2;3471:53;3516:7;3507:6;3496:9;3492:22;3471:53;:::i;:::-;3461:63;;3416:118;3067:474;;;;;:::o;3547:90::-;3581:7;3624:5;3617:13;3610:21;3599:32;;3547:90;;;:::o;3643:109::-;3724:21;3739:5;3724:21;:::i;:::-;3719:3;3712:34;3643:109;;:::o;3758:210::-;3845:4;3883:2;3872:9;3868:18;3860:26;;3896:65;3958:1;3947:9;3943:17;3934:6;3896:65;:::i;:::-;3758:210;;;;:::o;3974:329::-;4033:6;4082:2;4070:9;4061:7;4057:23;4053:32;4050:119;;;4088:79;;:::i;:::-;4050:119;4208:1;4233:53;4278:7;4269:6;4258:9;4254:22;4233:53;:::i;:::-;4223:63;;4179:117;3974:329;;;;:::o;4309:60::-;4337:3;4358:5;4351:12;;4309:60;;;:::o;4375:142::-;4425:9;4458:53;4476:34;4485:24;4503:5;4485:24;:::i;:::-;4476:34;:::i;:::-;4458:53;:::i;:::-;4445:66;;4375:142;;;:::o;4523:126::-;4573:9;4606:37;4637:5;4606:37;:::i;:::-;4593:50;;4523:126;;;:::o;4655:153::-;4732:9;4765:37;4796:5;4765:37;:::i;:::-;4752:50;;4655:153;;;:::o;4814:185::-;4928:64;4986:5;4928:64;:::i;:::-;4923:3;4916:77;4814:185;;:::o;5005:276::-;5125:4;5163:2;5152:9;5148:18;5140:26;;5176:98;5271:1;5260:9;5256:17;5247:6;5176:98;:::i;:::-;5005:276;;;;:::o;5287:118::-;5374:24;5392:5;5374:24;:::i;:::-;5369:3;5362:37;5287:118;;:::o;5411:222::-;5504:4;5542:2;5531:9;5527:18;5519:26;;5555:71;5623:1;5612:9;5608:17;5599:6;5555:71;:::i;:::-;5411:222;;;;:::o;5639:329::-;5698:6;5747:2;5735:9;5726:7;5722:23;5718:32;5715:119;;;5753:79;;:::i;:::-;5715:119;5873:1;5898:53;5943:7;5934:6;5923:9;5919:22;5898:53;:::i;:::-;5888:63;;5844:117;5639:329;;;;:::o;5974:619::-;6051:6;6059;6067;6116:2;6104:9;6095:7;6091:23;6087:32;6084:119;;;6122:79;;:::i;:::-;6084:119;6242:1;6267:53;6312:7;6303:6;6292:9;6288:22;6267:53;:::i;:::-;6257:63;;6213:117;6369:2;6395:53;6440:7;6431:6;6420:9;6416:22;6395:53;:::i;:::-;6385:63;;6340:118;6497:2;6523:53;6568:7;6559:6;6548:9;6544:22;6523:53;:::i;:::-;6513:63;;6468:118;5974:619;;;;;:::o;6599:118::-;6686:24;6704:5;6686:24;:::i;:::-;6681:3;6674:37;6599:118;;:::o;6723:222::-;6816:4;6854:2;6843:9;6839:18;6831:26;;6867:71;6935:1;6924:9;6920:17;6911:6;6867:71;:::i;:::-;6723:222;;;;:::o;6951:86::-;6986:7;7026:4;7019:5;7015:16;7004:27;;6951:86;;;:::o;7043:112::-;7126:22;7142:5;7126:22;:::i;:::-;7121:3;7114:35;7043:112;;:::o;7161:214::-;7250:4;7288:2;7277:9;7273:18;7265:26;;7301:67;7365:1;7354:9;7350:17;7341:6;7301:67;:::i;:::-;7161:214;;;;:::o;7381:116::-;7451:21;7466:5;7451:21;:::i;:::-;7444:5;7441:32;7431:60;;7487:1;7484;7477:12;7431:60;7381:116;:::o;7503:133::-;7546:5;7584:6;7571:20;7562:29;;7600:30;7624:5;7600:30;:::i;:::-;7503:133;;;;:::o;7642:468::-;7707:6;7715;7764:2;7752:9;7743:7;7739:23;7735:32;7732:119;;;7770:79;;:::i;:::-;7732:119;7890:1;7915:53;7960:7;7951:6;7940:9;7936:22;7915:53;:::i;:::-;7905:63;;7861:117;8017:2;8043:50;8085:7;8076:6;8065:9;8061:22;8043:50;:::i;:::-;8033:60;;7988:115;7642:468;;;;;:::o;8116:323::-;8172:6;8221:2;8209:9;8200:7;8196:23;8192:32;8189:119;;;8227:79;;:::i;:::-;8189:119;8347:1;8372:50;8414:7;8405:6;8394:9;8390:22;8372:50;:::i;:::-;8362:60;;8318:114;8116:323;;;;:::o;8445:474::-;8513:6;8521;8570:2;8558:9;8549:7;8545:23;8541:32;8538:119;;;8576:79;;:::i;:::-;8538:119;8696:1;8721:53;8766:7;8757:6;8746:9;8742:22;8721:53;:::i;:::-;8711:63;;8667:117;8823:2;8849:53;8894:7;8885:6;8874:9;8870:22;8849:53;:::i;:::-;8839:63;;8794:118;8445:474;;;;;:::o;8925:182::-;9065:34;9061:1;9053:6;9049:14;9042:58;8925:182;:::o;9113:366::-;9255:3;9276:67;9340:2;9335:3;9276:67;:::i;:::-;9269:74;;9352:93;9441:3;9352:93;:::i;:::-;9470:2;9465:3;9461:12;9454:19;;9113:366;;;:::o;9485:419::-;9651:4;9689:2;9678:9;9674:18;9666:26;;9738:9;9732:4;9728:20;9724:1;9713:9;9709:17;9702:47;9766:131;9892:4;9766:131;:::i;:::-;9758:139;;9485:419;;;:::o;9910:180::-;9958:77;9955:1;9948:88;10055:4;10052:1;10045:15;10079:4;10076:1;10069:15;10096:305;10136:3;10155:20;10173:1;10155:20;:::i;:::-;10150:25;;10189:20;10207:1;10189:20;:::i;:::-;10184:25;;10343:1;10275:66;10271:74;10268:1;10265:81;10262:107;;;10349:18;;:::i;:::-;10262:107;10393:1;10390;10386:9;10379:16;;10096:305;;;;:::o;10407:179::-;10547:31;10543:1;10535:6;10531:14;10524:55;10407:179;:::o;10592:366::-;10734:3;10755:67;10819:2;10814:3;10755:67;:::i;:::-;10748:74;;10831:93;10920:3;10831:93;:::i;:::-;10949:2;10944:3;10940:12;10933:19;;10592:366;;;:::o;10964:419::-;11130:4;11168:2;11157:9;11153:18;11145:26;;11217:9;11211:4;11207:20;11203:1;11192:9;11188:17;11181:47;11245:131;11371:4;11245:131;:::i;:::-;11237:139;;10964:419;;;:::o;11389:180::-;11437:77;11434:1;11427:88;11534:4;11531:1;11524:15;11558:4;11555:1;11548:15;11575:320;11619:6;11656:1;11650:4;11646:12;11636:22;;11703:1;11697:4;11693:12;11724:18;11714:81;;11780:4;11772:6;11768:17;11758:27;;11714:81;11842:2;11834:6;11831:14;11811:18;11808:38;11805:84;;11861:18;;:::i;:::-;11805:84;11626:269;11575:320;;;:::o;11901:348::-;11941:7;11964:20;11982:1;11964:20;:::i;:::-;11959:25;;11998:20;12016:1;11998:20;:::i;:::-;11993:25;;12186:1;12118:66;12114:74;12111:1;12108:81;12103:1;12096:9;12089:17;12085:105;12082:131;;;12193:18;;:::i;:::-;12082:131;12241:1;12238;12234:9;12223:20;;11901:348;;;;:::o;12255:180::-;12303:77;12300:1;12293:88;12400:4;12397:1;12390:15;12424:4;12421:1;12414:15;12441:185;12481:1;12498:20;12516:1;12498:20;:::i;:::-;12493:25;;12532:20;12550:1;12532:20;:::i;:::-;12527:25;;12571:1;12561:35;;12576:18;;:::i;:::-;12561:35;12618:1;12615;12611:9;12606:14;;12441:185;;;;:::o;12632:234::-;12772:34;12768:1;12760:6;12756:14;12749:58;12841:17;12836:2;12828:6;12824:15;12817:42;12632:234;:::o;12872:366::-;13014:3;13035:67;13099:2;13094:3;13035:67;:::i;:::-;13028:74;;13111:93;13200:3;13111:93;:::i;:::-;13229:2;13224:3;13220:12;13213:19;;12872:366;;;:::o;13244:419::-;13410:4;13448:2;13437:9;13433:18;13425:26;;13497:9;13491:4;13487:20;13483:1;13472:9;13468:17;13461:47;13525:131;13651:4;13525:131;:::i;:::-;13517:139;;13244:419;;;:::o;13669:227::-;13809:34;13805:1;13797:6;13793:14;13786:58;13878:10;13873:2;13865:6;13861:15;13854:35;13669:227;:::o;13902:366::-;14044:3;14065:67;14129:2;14124:3;14065:67;:::i;:::-;14058:74;;14141:93;14230:3;14141:93;:::i;:::-;14259:2;14254:3;14250:12;14243:19;;13902:366;;;:::o;14274:419::-;14440:4;14478:2;14467:9;14463:18;14455:26;;14527:9;14521:4;14517:20;14513:1;14502:9;14498:17;14491:47;14555:131;14681:4;14555:131;:::i;:::-;14547:139;;14274:419;;;:::o;14699:179::-;14839:31;14835:1;14827:6;14823:14;14816:55;14699:179;:::o;14884:366::-;15026:3;15047:67;15111:2;15106:3;15047:67;:::i;:::-;15040:74;;15123:93;15212:3;15123:93;:::i;:::-;15241:2;15236:3;15232:12;15225:19;;14884:366;;;:::o;15256:419::-;15422:4;15460:2;15449:9;15445:18;15437:26;;15509:9;15503:4;15499:20;15495:1;15484:9;15480:17;15473:47;15537:131;15663:4;15537:131;:::i;:::-;15529:139;;15256:419;;;:::o;15681:244::-;15821:34;15817:1;15809:6;15805:14;15798:58;15890:27;15885:2;15877:6;15873:15;15866:52;15681:244;:::o;15931:366::-;16073:3;16094:67;16158:2;16153:3;16094:67;:::i;:::-;16087:74;;16170:93;16259:3;16170:93;:::i;:::-;16288:2;16283:3;16279:12;16272:19;;15931:366;;;:::o;16303:419::-;16469:4;16507:2;16496:9;16492:18;16484:26;;16556:9;16550:4;16546:20;16542:1;16531:9;16527:17;16520:47;16584:131;16710:4;16584:131;:::i;:::-;16576:139;;16303:419;;;:::o;16728:224::-;16868:34;16864:1;16856:6;16852:14;16845:58;16937:7;16932:2;16924:6;16920:15;16913:32;16728:224;:::o;16958:366::-;17100:3;17121:67;17185:2;17180:3;17121:67;:::i;:::-;17114:74;;17197:93;17286:3;17197:93;:::i;:::-;17315:2;17310:3;17306:12;17299:19;;16958:366;;;:::o;17330:419::-;17496:4;17534:2;17523:9;17519:18;17511:26;;17583:9;17577:4;17573:20;17569:1;17558:9;17554:17;17547:47;17611:131;17737:4;17611:131;:::i;:::-;17603:139;;17330:419;;;:::o;17755:223::-;17895:34;17891:1;17883:6;17879:14;17872:58;17964:6;17959:2;17951:6;17947:15;17940:31;17755:223;:::o;17984:366::-;18126:3;18147:67;18211:2;18206:3;18147:67;:::i;:::-;18140:74;;18223:93;18312:3;18223:93;:::i;:::-;18341:2;18336:3;18332:12;18325:19;;17984:366;;;:::o;18356:419::-;18522:4;18560:2;18549:9;18545:18;18537:26;;18609:9;18603:4;18599:20;18595:1;18584:9;18580:17;18573:47;18637:131;18763:4;18637:131;:::i;:::-;18629:139;;18356:419;;;:::o;18781:240::-;18921:34;18917:1;18909:6;18905:14;18898:58;18990:23;18985:2;18977:6;18973:15;18966:48;18781:240;:::o;19027:366::-;19169:3;19190:67;19254:2;19249:3;19190:67;:::i;:::-;19183:74;;19266:93;19355:3;19266:93;:::i;:::-;19384:2;19379:3;19375:12;19368:19;;19027:366;;;:::o;19399:419::-;19565:4;19603:2;19592:9;19588:18;19580:26;;19652:9;19646:4;19642:20;19638:1;19627:9;19623:17;19616:47;19680:131;19806:4;19680:131;:::i;:::-;19672:139;;19399:419;;;:::o;19824:239::-;19964:34;19960:1;19952:6;19948:14;19941:58;20033:22;20028:2;20020:6;20016:15;20009:47;19824:239;:::o;20069:366::-;20211:3;20232:67;20296:2;20291:3;20232:67;:::i;:::-;20225:74;;20308:93;20397:3;20308:93;:::i;:::-;20426:2;20421:3;20417:12;20410:19;;20069:366;;;:::o;20441:419::-;20607:4;20645:2;20634:9;20630:18;20622:26;;20694:9;20688:4;20684:20;20680:1;20669:9;20665:17;20658:47;20722:131;20848:4;20722:131;:::i;:::-;20714:139;;20441:419;;;:::o;20866:225::-;21006:34;21002:1;20994:6;20990:14;20983:58;21075:8;21070:2;21062:6;21058:15;21051:33;20866:225;:::o;21097:366::-;21239:3;21260:67;21324:2;21319:3;21260:67;:::i;:::-;21253:74;;21336:93;21425:3;21336:93;:::i;:::-;21454:2;21449:3;21445:12;21438:19;;21097:366;;;:::o;21469:419::-;21635:4;21673:2;21662:9;21658:18;21650:26;;21722:9;21716:4;21712:20;21708:1;21697:9;21693:17;21686:47;21750:131;21876:4;21750:131;:::i;:::-;21742:139;;21469:419;;;:::o;21894:223::-;22034:34;22030:1;22022:6;22018:14;22011:58;22103:6;22098:2;22090:6;22086:15;22079:31;21894:223;:::o;22123:366::-;22265:3;22286:67;22350:2;22345:3;22286:67;:::i;:::-;22279:74;;22362:93;22451:3;22362:93;:::i;:::-;22480:2;22475:3;22471:12;22464:19;;22123:366;;;:::o;22495:419::-;22661:4;22699:2;22688:9;22684:18;22676:26;;22748:9;22742:4;22738:20;22734:1;22723:9;22719:17;22712:47;22776:131;22902:4;22776:131;:::i;:::-;22768:139;;22495:419;;;:::o;22920:221::-;23060:34;23056:1;23048:6;23044:14;23037:58;23129:4;23124:2;23116:6;23112:15;23105:29;22920:221;:::o;23147:366::-;23289:3;23310:67;23374:2;23369:3;23310:67;:::i;:::-;23303:74;;23386:93;23475:3;23386:93;:::i;:::-;23504:2;23499:3;23495:12;23488:19;;23147:366;;;:::o;23519:419::-;23685:4;23723:2;23712:9;23708:18;23700:26;;23772:9;23766:4;23762:20;23758:1;23747:9;23743:17;23736:47;23800:131;23926:4;23800:131;:::i;:::-;23792:139;;23519:419;;;:::o;23944:224::-;24084:34;24080:1;24072:6;24068:14;24061:58;24153:7;24148:2;24140:6;24136:15;24129:32;23944:224;:::o;24174:366::-;24316:3;24337:67;24401:2;24396:3;24337:67;:::i;:::-;24330:74;;24413:93;24502:3;24413:93;:::i;:::-;24531:2;24526:3;24522:12;24515:19;;24174:366;;;:::o;24546:419::-;24712:4;24750:2;24739:9;24735:18;24727:26;;24799:9;24793:4;24789:20;24785:1;24774:9;24770:17;24763:47;24827:131;24953:4;24827:131;:::i;:::-;24819:139;;24546:419;;;:::o;24971:222::-;25111:34;25107:1;25099:6;25095:14;25088:58;25180:5;25175:2;25167:6;25163:15;25156:30;24971:222;:::o;25199:366::-;25341:3;25362:67;25426:2;25421:3;25362:67;:::i;:::-;25355:74;;25438:93;25527:3;25438:93;:::i;:::-;25556:2;25551:3;25547:12;25540:19;;25199:366;;;:::o;25571:419::-;25737:4;25775:2;25764:9;25760:18;25752:26;;25824:9;25818:4;25814:20;25810:1;25799:9;25795:17;25788:47;25852:131;25978:4;25852:131;:::i;:::-;25844:139;;25571:419;;;:::o;25996:172::-;26136:24;26132:1;26124:6;26120:14;26113:48;25996:172;:::o;26174:366::-;26316:3;26337:67;26401:2;26396:3;26337:67;:::i;:::-;26330:74;;26413:93;26502:3;26413:93;:::i;:::-;26531:2;26526:3;26522:12;26515:19;;26174:366;;;:::o;26546:419::-;26712:4;26750:2;26739:9;26735:18;26727:26;;26799:9;26793:4;26789:20;26785:1;26774:9;26770:17;26763:47;26827:131;26953:4;26827:131;:::i;:::-;26819:139;;26546:419;;;:::o;26971:297::-;27111:34;27107:1;27099:6;27095:14;27088:58;27180:34;27175:2;27167:6;27163:15;27156:59;27249:11;27244:2;27236:6;27232:15;27225:36;26971:297;:::o;27274:366::-;27416:3;27437:67;27501:2;27496:3;27437:67;:::i;:::-;27430:74;;27513:93;27602:3;27513:93;:::i;:::-;27631:2;27626:3;27622:12;27615:19;;27274:366;;;:::o;27646:419::-;27812:4;27850:2;27839:9;27835:18;27827:26;;27899:9;27893:4;27889:20;27885:1;27874:9;27870:17;27863:47;27927:131;28053:4;27927:131;:::i;:::-;27919:139;;27646:419;;;:::o;28071:240::-;28211:34;28207:1;28199:6;28195:14;28188:58;28280:23;28275:2;28267:6;28263:15;28256:48;28071:240;:::o;28317:366::-;28459:3;28480:67;28544:2;28539:3;28480:67;:::i;:::-;28473:74;;28556:93;28645:3;28556:93;:::i;:::-;28674:2;28669:3;28665:12;28658:19;;28317:366;;;:::o;28689:419::-;28855:4;28893:2;28882:9;28878:18;28870:26;;28942:9;28936:4;28932:20;28928:1;28917:9;28913:17;28906:47;28970:131;29096:4;28970:131;:::i;:::-;28962:139;;28689:419;;;:::o;29114:169::-;29254:21;29250:1;29242:6;29238:14;29231:45;29114:169;:::o;29289:366::-;29431:3;29452:67;29516:2;29511:3;29452:67;:::i;:::-;29445:74;;29528:93;29617:3;29528:93;:::i;:::-;29646:2;29641:3;29637:12;29630:19;;29289:366;;;:::o;29661:419::-;29827:4;29865:2;29854:9;29850:18;29842:26;;29914:9;29908:4;29904:20;29900:1;29889:9;29885:17;29878:47;29942:131;30068:4;29942:131;:::i;:::-;29934:139;;29661:419;;;:::o;30086:241::-;30226:34;30222:1;30214:6;30210:14;30203:58;30295:24;30290:2;30282:6;30278:15;30271:49;30086:241;:::o;30333:366::-;30475:3;30496:67;30560:2;30555:3;30496:67;:::i;:::-;30489:74;;30572:93;30661:3;30572:93;:::i;:::-;30690:2;30685:3;30681:12;30674:19;;30333:366;;;:::o;30705:419::-;30871:4;30909:2;30898:9;30894:18;30886:26;;30958:9;30952:4;30948:20;30944:1;30933:9;30929:17;30922:47;30986:131;31112:4;30986:131;:::i;:::-;30978:139;;30705:419;;;:::o;31130:191::-;31170:4;31190:20;31208:1;31190:20;:::i;:::-;31185:25;;31224:20;31242:1;31224:20;:::i;:::-;31219:25;;31263:1;31260;31257:8;31254:34;;;31268:18;;:::i;:::-;31254:34;31313:1;31310;31306:9;31298:17;;31130:191;;;;:::o;31327:225::-;31467:34;31463:1;31455:6;31451:14;31444:58;31536:8;31531:2;31523:6;31519:15;31512:33;31327:225;:::o;31558:366::-;31700:3;31721:67;31785:2;31780:3;31721:67;:::i;:::-;31714:74;;31797:93;31886:3;31797:93;:::i;:::-;31915:2;31910:3;31906:12;31899:19;;31558:366;;;:::o;31930:419::-;32096:4;32134:2;32123:9;32119:18;32111:26;;32183:9;32177:4;32173:20;32169:1;32158:9;32154:17;32147:47;32211:131;32337:4;32211:131;:::i;:::-;32203:139;;31930:419;;;:::o;32355:442::-;32504:4;32542:2;32531:9;32527:18;32519:26;;32555:71;32623:1;32612:9;32608:17;32599:6;32555:71;:::i;:::-;32636:72;32704:2;32693:9;32689:18;32680:6;32636:72;:::i;:::-;32718;32786:2;32775:9;32771:18;32762:6;32718:72;:::i;:::-;32355:442;;;;;;:::o;32803:147::-;32904:11;32941:3;32926:18;;32803:147;;;;:::o;32956:114::-;;:::o;33076:398::-;33235:3;33256:83;33337:1;33332:3;33256:83;:::i;:::-;33249:90;;33348:93;33437:3;33348:93;:::i;:::-;33466:1;33461:3;33457:11;33450:18;;33076:398;;;:::o;33480:379::-;33664:3;33686:147;33829:3;33686:147;:::i;:::-;33679:154;;33850:3;33843:10;;33480:379;;;:::o;33865:180::-;33913:77;33910:1;33903:88;34010:4;34007:1;34000:15;34034:4;34031:1;34024:15;34051:180;34099:77;34096:1;34089:88;34196:4;34193:1;34186:15;34220:4;34217:1;34210:15;34237:143;34294:5;34325:6;34319:13;34310:22;;34341:33;34368:5;34341:33;:::i;:::-;34237:143;;;;:::o;34386:351::-;34456:6;34505:2;34493:9;34484:7;34480:23;34476:32;34473:119;;;34511:79;;:::i;:::-;34473:119;34631:1;34656:64;34712:7;34703:6;34692:9;34688:22;34656:64;:::i;:::-;34646:74;;34602:128;34386:351;;;;:::o;34743:85::-;34788:7;34817:5;34806:16;;34743:85;;;:::o;34834:158::-;34892:9;34925:61;34943:42;34952:32;34978:5;34952:32;:::i;:::-;34943:42;:::i;:::-;34925:61;:::i;:::-;34912:74;;34834:158;;;:::o;34998:147::-;35093:45;35132:5;35093:45;:::i;:::-;35088:3;35081:58;34998:147;;:::o;35151:114::-;35218:6;35252:5;35246:12;35236:22;;35151:114;;;:::o;35271:184::-;35370:11;35404:6;35399:3;35392:19;35444:4;35439:3;35435:14;35420:29;;35271:184;;;;:::o;35461:132::-;35528:4;35551:3;35543:11;;35581:4;35576:3;35572:14;35564:22;;35461:132;;;:::o;35599:108::-;35676:24;35694:5;35676:24;:::i;:::-;35671:3;35664:37;35599:108;;:::o;35713:179::-;35782:10;35803:46;35845:3;35837:6;35803:46;:::i;:::-;35881:4;35876:3;35872:14;35858:28;;35713:179;;;;:::o;35898:113::-;35968:4;36000;35995:3;35991:14;35983:22;;35898:113;;;:::o;36047:732::-;36166:3;36195:54;36243:5;36195:54;:::i;:::-;36265:86;36344:6;36339:3;36265:86;:::i;:::-;36258:93;;36375:56;36425:5;36375:56;:::i;:::-;36454:7;36485:1;36470:284;36495:6;36492:1;36489:13;36470:284;;;36571:6;36565:13;36598:63;36657:3;36642:13;36598:63;:::i;:::-;36591:70;;36684:60;36737:6;36684:60;:::i;:::-;36674:70;;36530:224;36517:1;36514;36510:9;36505:14;;36470:284;;;36474:14;36770:3;36763:10;;36171:608;;;36047:732;;;;:::o;36785:831::-;37048:4;37086:3;37075:9;37071:19;37063:27;;37100:71;37168:1;37157:9;37153:17;37144:6;37100:71;:::i;:::-;37181:80;37257:2;37246:9;37242:18;37233:6;37181:80;:::i;:::-;37308:9;37302:4;37298:20;37293:2;37282:9;37278:18;37271:48;37336:108;37439:4;37430:6;37336:108;:::i;:::-;37328:116;;37454:72;37522:2;37511:9;37507:18;37498:6;37454:72;:::i;:::-;37536:73;37604:3;37593:9;37589:19;37580:6;37536:73;:::i;:::-;36785:831;;;;;;;;:::o;37622:807::-;37871:4;37909:3;37898:9;37894:19;37886:27;;37923:71;37991:1;37980:9;37976:17;37967:6;37923:71;:::i;:::-;38004:72;38072:2;38061:9;38057:18;38048:6;38004:72;:::i;:::-;38086:80;38162:2;38151:9;38147:18;38138:6;38086:80;:::i;:::-;38176;38252:2;38241:9;38237:18;38228:6;38176:80;:::i;:::-;38266:73;38334:3;38323:9;38319:19;38310:6;38266:73;:::i;:::-;38349;38417:3;38406:9;38402:19;38393:6;38349:73;:::i;:::-;37622:807;;;;;;;;;:::o;38435:143::-;38492:5;38523:6;38517:13;38508:22;;38539:33;38566:5;38539:33;:::i;:::-;38435:143;;;;:::o;38584:663::-;38672:6;38680;38688;38737:2;38725:9;38716:7;38712:23;38708:32;38705:119;;;38743:79;;:::i;:::-;38705:119;38863:1;38888:64;38944:7;38935:6;38924:9;38920:22;38888:64;:::i;:::-;38878:74;;38834:128;39001:2;39027:64;39083:7;39074:6;39063:9;39059:22;39027:64;:::i;:::-;39017:74;;38972:129;39140:2;39166:64;39222:7;39213:6;39202:9;39198:22;39166:64;:::i;:::-;39156:74;;39111:129;38584:663;;;;;:::o

Swarm Source

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