ETH Price: $3,169.25 (+2.29%)

Token

Eternal Throne of Holders (E.T.H.)
 

Overview

Max Total Supply

1,000 E.T.H.

Holders

290

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
4 E.T.H.

Value
$0.00
0xdec64ff1d5033e47a8dacf19144a9bfe55cd3b9e
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0x0000050E...FdcAa284A
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
EternalThroneofHolders

Compiler Version
v0.8.27+commit.40a35a09

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-11-09
*/

/**
 * @title Eternal Throne of Holders
 * @dev E.T.H. is an advanced ERC20 token with NFT-inspired attributes and dynamic functionality, designed to enhance holder engagement and reward mechanisms. 
 *
 * ## Key Features:
 * 
 * ### 1. NFT-Style Attributes
 * Each token holder can be randomly assigned unique attributes such as hat type, eye color, background, rarity, clothing, accessory, strength, agility, intelligence, and luck. 
 * These attributes are assigned automatically upon a buy transaction, adding a collectible and unique quality to each holder's balance.
 * 
 * ### 2. Customizable Transaction and Holding Limits
 * The token allows flexible control over transaction and holding limits:
 *   - **Max Holding Amount**: Initially set to 0.169% of the total supply (1000 tokens), with the ability to adjust as needed.
 *   - **Max Transaction Amount**: Begins at the same 0.169% of total supply and gradually increases each block by a calculated increment of 0.03% * 1.69 until either `limited` is set to `false` or it reaches the total supply.
 *   - **Individual Limit Settings**: Each setting for maximum/minimum holding and transaction amounts can be configured individually for greater control.
 * 
 *
 * ### 3. Reward System - "Eternal Throne of Holders"
 * Based on specific attribute conditions, top holders may receive unique rewards. For example, a reward could be given if the holder's "luck" and "rarity" attributes are above a certain threshold.
 * Additionally, a special function allows the owner to reward the top holder manually with an additional token as an incentive for significant engagement.
 * 
 * ### 4. Flexible Initialization and Management
 * The owner can set various parameters through individual functions rather than one all-encompassing rule, making configuration easy and modular:
 *   - `setLimited`, `setUniswapV2Pair`, `setMaxHoldingAmount`, `setMinHoldingAmount`
 * 
 * ### 5. Token Burn and Minting
 * - **Burn**: Token holders can burn tokens to reduce supply.
 * - **Reward Minting**: The owner can mint tokens as rewards for certain holders meeting defined attribute conditions.
 * 
 * ### Technical Details:
 * - **Total Supply**: 1000 tokens (with 18 decimals).
 * - **Initial Max Holding and Transaction Limit**: Set at 0.169% of total supply, with incremental max transaction growth.
 * - **Attribute Assignment**: Each holder receives random attributes between 1-9999 upon a buy transaction.
 * 
 * This contract blends traditional token mechanics with collectible NFT-like characteristics, offering a hybrid experience with advanced features for engagement, control, and rewards.
 */

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

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

pragma solidity ^0.8.0;

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

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


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


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

pragma solidity ^0.8.0;

/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

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

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

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


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


// OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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


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


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

pragma solidity ^0.8.0;

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

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

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


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


// OpenZeppelin Contracts v4.4.0 (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;



/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.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 {}
}






pragma solidity ^0.8.0;



contract EternalThroneofHolders is Ownable, ERC20 {
    bool public limited;
    uint256 public totalSupplyAmount = 1000 * 10 ** 18; // Total supply set to 1000 tokens with 18 decimals
    uint256 public maxHoldingAmount;
    uint256 public minHoldingAmount;
    uint256 public maxTxAmount;
    uint256 public initialMaxTxPercent = 169; // Representing 0.169%
    uint256 public incrementPercent = 3; // Representing 0.03%
    uint256 public incrementFactor = 169; // Factor for increasing max tx
    address public uniswapV2Pair;
    mapping(address => bool) public blacklists;

    // NFT-like attributes for the token
    string public hatType;
    string public eyeColor;
    string public background;
    string public rarity;
    string public clothing;
    string public accessory;
    uint256 public strength;
    uint256 public agility;
    uint256 public intelligence;
    uint256 public luck;

    // Mapping to store attributes for each holder
    struct HolderAttributes {
        uint256 hatType;
        uint256 eyeColor;
        uint256 background;
        uint256 rarity;
        uint256 clothing;
        uint256 accessory;
        uint256 strength;
        uint256 agility;
        uint256 intelligence;
        uint256 luck;
    }

    mapping(address => HolderAttributes) private holderAttributes;

    constructor() ERC20("Eternal Throne of Holders", "E.T.H.") {
        _mint(msg.sender, totalSupplyAmount);
        maxHoldingAmount = (totalSupplyAmount * initialMaxTxPercent) / 100000; // Initialize maxHoldingAmount to 0.169% of total supply
        maxTxAmount = maxHoldingAmount;
    }

    function blacklist(address _address, bool _isBlacklisting) external onlyOwner {
        blacklists[_address] = _isBlacklisting;
    }

    // Individual setter functions to replace setRule
    function setLimited(bool _limited) external onlyOwner {
        limited = _limited;
    }

    function setUniswapV2Pair(address _uniswapV2Pair) external onlyOwner {
        uniswapV2Pair = _uniswapV2Pair;
    }

    function setMaxHoldingAmount(uint256 _maxHoldingAmount) external onlyOwner {
        maxHoldingAmount = _maxHoldingAmount;
    }

    function setMinHoldingAmount(uint256 _minHoldingAmount) external onlyOwner {
        minHoldingAmount = _minHoldingAmount;
    }

    function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual override {
        require(!blacklists[to] && !blacklists[from], "Blacklisted");

        // Update maxTxAmount with a cap based on total supply and limited status
        if (limited && maxTxAmount < totalSupply()) {
            maxTxAmount += (maxTxAmount * incrementPercent * incrementFactor) / 10000000;
            if (maxTxAmount >= totalSupply()) {
                maxTxAmount = totalSupply();
            }
        }

        if (uniswapV2Pair == address(0)) {
            require(from == owner() || to == owner(), "Trading not started");
            return;
        }

        if (limited && from == uniswapV2Pair) {
            require(super.balanceOf(to) + amount <= maxHoldingAmount && super.balanceOf(to) + amount >= minHoldingAmount, "Holding limit exceeded");
            require(amount <= maxTxAmount, "Max transaction limit exceeded");

            // Assign random attributes to the buyer
            _assignRandomAttributes(to);

            // Check and distribute rewards based on assigned attributes
          
        }
    }

    function burn(uint256 value) external {
        _burn(msg.sender, value);
    }

    // NFT/Hybrid Reward Mechanism
    function rewardTopHolder(address topHolder) external onlyOwner {
        require(balanceOf(topHolder) > 0, "No tokens held by address");
        _mint(topHolder, 1 * 10 ** decimals()); // Mint 1 token as a reward
    }

    // Randomly assign attributes to a holder
    function _assignRandomAttributes(address holder) private {
        holderAttributes[holder] = HolderAttributes(
            _randomAttribute(1, 9999), // hatType
            _randomAttribute(1, 9999), // eyeColor
            _randomAttribute(1, 9999), // background
            _randomAttribute(1, 9999), // rarity
            _randomAttribute(1, 9999), // clothing
            _randomAttribute(1, 9999), // accessory
            _randomAttribute(1, 9999), // strength
            _randomAttribute(1, 9999), // agility
            _randomAttribute(1, 9999), // intelligence
            _randomAttribute(1, 9999)  // luck
        );
    }

    // Generate a pseudo-random number within a range
   function _randomAttribute(uint256 min, uint256 max) private view returns (uint256) {
    return uint256(keccak256(abi.encodePacked(block.timestamp, block.prevrandao, msg.sender))) % (max - min + 1) + min;
    }


    // Check the holder's attributes and reward if specific conditions are met
    function _rewardHolder(address holder) external onlyOwner {
        HolderAttributes memory attrs = holderAttributes[holder];

        // Define reward condition, e.g., if luck > 9000 and rarity > 9000
        if (attrs.luck > 9000 && attrs.rarity > 9000) {
            _mint(holder, 1 * 10 ** decimals()); // Mint 1 token as a reward
        }
    }

    // Read function to return the attributes of a specific holder
    function getHolderAttributes(address holder) external view returns (HolderAttributes memory) {
        return holderAttributes[holder];
    }

    // Set functions for each NFT-like attribute
    function setHatType(string memory _hatType) external onlyOwner { hatType = _hatType; }
    function setEyeColor(string memory _eyeColor) external onlyOwner { eyeColor = _eyeColor; }
    function setBackground(string memory _background) external onlyOwner { background = _background; }
    function setRarity(string memory _rarity) external onlyOwner { rarity = _rarity; }
    function setClothing(string memory _clothing) external onlyOwner { clothing = _clothing; }
    function setAccessory(string memory _accessory) external onlyOwner { accessory = _accessory; }
    function setStrength(uint256 _strength) external onlyOwner { strength = _strength; }
    function setAgility(uint256 _agility) external onlyOwner { agility = _agility; }
    function setIntelligence(uint256 _intelligence) external onlyOwner { intelligence = _intelligence; }
    function setLuck(uint256 _luck) external onlyOwner { luck = _luck; }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"holder","type":"address"}],"name":"_rewardHolder","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"accessory","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"agility","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[],"name":"background","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_isBlacklisting","type":"bool"}],"name":"blacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"blacklists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"clothing","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"eyeColor","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"holder","type":"address"}],"name":"getHolderAttributes","outputs":[{"components":[{"internalType":"uint256","name":"hatType","type":"uint256"},{"internalType":"uint256","name":"eyeColor","type":"uint256"},{"internalType":"uint256","name":"background","type":"uint256"},{"internalType":"uint256","name":"rarity","type":"uint256"},{"internalType":"uint256","name":"clothing","type":"uint256"},{"internalType":"uint256","name":"accessory","type":"uint256"},{"internalType":"uint256","name":"strength","type":"uint256"},{"internalType":"uint256","name":"agility","type":"uint256"},{"internalType":"uint256","name":"intelligence","type":"uint256"},{"internalType":"uint256","name":"luck","type":"uint256"}],"internalType":"struct EternalThroneofHolders.HolderAttributes","name":"","type":"tuple"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hatType","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"incrementFactor","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"incrementPercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"initialMaxTxPercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"intelligence","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limited","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"luck","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxHoldingAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minHoldingAmount","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":"rarity","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"topHolder","type":"address"}],"name":"rewardTopHolder","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_accessory","type":"string"}],"name":"setAccessory","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_agility","type":"uint256"}],"name":"setAgility","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_background","type":"string"}],"name":"setBackground","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_clothing","type":"string"}],"name":"setClothing","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_eyeColor","type":"string"}],"name":"setEyeColor","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hatType","type":"string"}],"name":"setHatType","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_intelligence","type":"uint256"}],"name":"setIntelligence","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_limited","type":"bool"}],"name":"setLimited","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_luck","type":"uint256"}],"name":"setLuck","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxHoldingAmount","type":"uint256"}],"name":"setMaxHoldingAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_minHoldingAmount","type":"uint256"}],"name":"setMinHoldingAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_rarity","type":"string"}],"name":"setRarity","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_strength","type":"uint256"}],"name":"setStrength","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_uniswapV2Pair","type":"address"}],"name":"setUniswapV2Pair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"strength","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":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupplyAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[{"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"}]

6080604052683635c9adc5dea0000060075560a9600b556003600c5560a9600d5534801561002b575f5ffd5b506040518060400160405280601981526020017f457465726e616c205468726f6e65206f6620486f6c64657273000000000000008152506040518060400160405280600681526020017f452e542e482e00000000000000000000000000000000000000000000000000008152506100b46100a961011a60201b60201c565b61012160201b60201c565b81600490816100c39190610bde565b5080600590816100d39190610bde565b5050506100e8336007546101e260201b60201c565b620186a0600b546007546100fc9190610cda565b6101069190610d48565b600881905550600854600a8190555061111f565b5f33905090565b5f5f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610250576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161024790610dd2565b60405180910390fd5b6102615f838361034660201b60201c565b8060035f8282546102729190610df0565b925050819055508060015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546102c59190610df0565b925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516103299190610e32565b60405180910390a36103425f838361072260201b60201c565b5050565b600f5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff161580156103e45750600f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b610423576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161041a90610e95565b60405180910390fd5b60065f9054906101000a900460ff16801561044c575061044761072760201b60201c565b600a54105b156104bf5762989680600d54600c54600a546104689190610cda565b6104729190610cda565b61047c9190610d48565b600a5f82825461048c9190610df0565b925050819055506104a161072760201b60201c565b600a54106104be576104b761072760201b60201c565b600a819055505b5b5f73ffffffffffffffffffffffffffffffffffffffff16600e5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036105d65761052161073060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480610592575061056361073060201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b6105d1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105c890610efd565b60405180910390fd5b61071d565b60065f9054906101000a900460ff16801561063d5750600e5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b1561071c57600854816106558461075760201b60201c565b61065f9190610df0565b1115801561068857506009548161067b8461075760201b60201c565b6106859190610df0565b10155b6106c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106be90610f65565b60405180910390fd5b600a5481111561070c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161070390610fcd565b60405180910390fd5b61071b8261079d60201b60201c565b5b5b505050565b505050565b5f600354905090565b5f5f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b6040518061014001604052806107bc600161270f61093e60201b60201c565b81526020016107d4600161270f61093e60201b60201c565b81526020016107ec600161270f61093e60201b60201c565b8152602001610804600161270f61093e60201b60201c565b815260200161081c600161270f61093e60201b60201c565b8152602001610834600161270f61093e60201b60201c565b815260200161084c600161270f61093e60201b60201c565b8152602001610864600161270f61093e60201b60201c565b815260200161087c600161270f61093e60201b60201c565b8152602001610894600161270f61093e60201b60201c565b815250601a5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f820151815f01556020820151816001015560408201518160020155606082015181600301556080820151816004015560a0820151816005015560c0820151816006015560e082015181600701556101008201518160080155610120820151816009015590505050565b5f826001848461094e9190610feb565b6109589190610df0565b42443360405160200161096d939291906110b3565b604051602081830303815290604052805190602001205f1c61098f91906110ef565b6109999190610df0565b905092915050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680610a1c57607f821691505b602082108103610a2f57610a2e6109d8565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302610a917fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82610a56565b610a9b8683610a56565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f610adf610ada610ad584610ab3565b610abc565b610ab3565b9050919050565b5f819050919050565b610af883610ac5565b610b0c610b0482610ae6565b848454610a62565b825550505050565b5f5f905090565b610b23610b14565b610b2e818484610aef565b505050565b5b81811015610b5157610b465f82610b1b565b600181019050610b34565b5050565b601f821115610b9657610b6781610a35565b610b7084610a47565b81016020851015610b7f578190505b610b93610b8b85610a47565b830182610b33565b50505b505050565b5f82821c905092915050565b5f610bb65f1984600802610b9b565b1980831691505092915050565b5f610bce8383610ba7565b9150826002028217905092915050565b610be7826109a1565b67ffffffffffffffff811115610c0057610bff6109ab565b5b610c0a8254610a05565b610c15828285610b55565b5f60209050601f831160018114610c46575f8415610c34578287015190505b610c3e8582610bc3565b865550610ca5565b601f198416610c5486610a35565b5f5b82811015610c7b57848901518255600182019150602085019450602081019050610c56565b86831015610c985784890151610c94601f891682610ba7565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f610ce482610ab3565b9150610cef83610ab3565b9250828202610cfd81610ab3565b91508282048414831517610d1457610d13610cad565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f610d5282610ab3565b9150610d5d83610ab3565b925082610d6d57610d6c610d1b565b5b828204905092915050565b5f82825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f610dbc601f83610d78565b9150610dc782610d88565b602082019050919050565b5f6020820190508181035f830152610de981610db0565b9050919050565b5f610dfa82610ab3565b9150610e0583610ab3565b9250828201905080821115610e1d57610e1c610cad565b5b92915050565b610e2c81610ab3565b82525050565b5f602082019050610e455f830184610e23565b92915050565b7f426c61636b6c69737465640000000000000000000000000000000000000000005f82015250565b5f610e7f600b83610d78565b9150610e8a82610e4b565b602082019050919050565b5f6020820190508181035f830152610eac81610e73565b9050919050565b7f54726164696e67206e6f742073746172746564000000000000000000000000005f82015250565b5f610ee7601383610d78565b9150610ef282610eb3565b602082019050919050565b5f6020820190508181035f830152610f1481610edb565b9050919050565b7f486f6c64696e67206c696d6974206578636565646564000000000000000000005f82015250565b5f610f4f601683610d78565b9150610f5a82610f1b565b602082019050919050565b5f6020820190508181035f830152610f7c81610f43565b9050919050565b7f4d6178207472616e73616374696f6e206c696d697420657863656564656400005f82015250565b5f610fb7601e83610d78565b9150610fc282610f83565b602082019050919050565b5f6020820190508181035f830152610fe481610fab565b9050919050565b5f610ff582610ab3565b915061100083610ab3565b925082820390508181111561101857611017610cad565b5b92915050565b5f819050919050565b61103861103382610ab3565b61101e565b82525050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6110678261103e565b9050919050565b5f8160601b9050919050565b5f6110848261106e565b9050919050565b5f6110958261107a565b9050919050565b6110ad6110a88261105d565b61108b565b82525050565b5f6110be8286611027565b6020820191506110ce8285611027565b6020820191506110de828461109c565b601482019150819050949350505050565b5f6110f982610ab3565b915061110483610ab3565b92508261111457611113610d1b565b5b828206905092915050565b6142a38061112c5f395ff3fe608060405234801561000f575f5ffd5b5060043610610325575f3560e01c80637b76455d116101b6578063a774f34e11610102578063bded89fb116100a0578063f2fde38b1161007a578063f2fde38b14610953578063f828f50b1461096f578063fcefc01f1461098d578063fef21f0f146109a957610325565b8063bded89fb146108e9578063bdf30d8f14610905578063dd62ed3e1461092357610325565b8063a9059cbb116100dc578063a9059cbb1461084f578063a9aaa5a51461087f578063b06d759d1461089d578063b4674ec8146108b957610325565b8063a774f34e146107f7578063a895ed2114610815578063a8a75dbc1461083357610325565b80638c0b5e221161016f5780639a25e328116101495780639a25e328146107715780639dceb9851461078f578063a29a6089146107ab578063a457c2d7146107c757610325565b80638c0b5e22146107175780638da5cb5b1461073557806395d89b411461075357610325565b80637b76455d146106695780637e3e5733146106875780637e7849ff146106a3578063847ee48c146106bf578063860a32ec146106db57806389f9a1d3146106f957610325565b806339e12e2f1161027557806349bd5a5e1161022e57806357ac40c41161020857806357ac40c4146105f55780635d1c31711461061157806370a082311461062f578063715018a61461065f57610325565b806349bd5a5e1461059b57806350942ab9146105b957806355b6c288146105d757610325565b806339e12e2f146104f15780633d27862e1461050d5780633d4433821461052b578063404e51291461054757806342966c681461056357806343ff87d11461057f57610325565b8063222cbad4116102e25780632e267bff116102bc5780632e267bff14610469578063313ce5671461048757806339509351146104a557806339abdee1146104d557610325565b8063222cbad4146103ff578063227313961461041d57806323b872dd1461043957610325565b806306fdde031461032957806309143f2314610347578063095ea7b31461036357806316c021291461039357806318160ddd146103c35780631ab99e12146103e1575b5f5ffd5b6103316109c7565b60405161033e9190612e32565b60405180910390f35b610361600480360381019061035c9190612e96565b610a57565b005b61037d60048036038101906103789190612f1b565b610add565b60405161038a9190612f73565b60405180910390f35b6103ad60048036038101906103a89190612f8c565b610afa565b6040516103ba9190612f73565b60405180910390f35b6103cb610b17565b6040516103d89190612fc6565b60405180910390f35b6103e9610b20565b6040516103f69190612fc6565b60405180910390f35b610407610b26565b6040516104149190612e32565b60405180910390f35b61043760048036038101906104329190613009565b610bb2565b005b610453600480360381019061044e9190613034565b610c4a565b6040516104609190612f73565b60405180910390f35b610471610d3c565b60405161047e9190612fc6565b60405180910390f35b61048f610d42565b60405161049c919061309f565b60405180910390f35b6104bf60048036038101906104ba9190612f1b565b610d4a565b6040516104cc9190612f73565b60405180910390f35b6104ef60048036038101906104ea9190612e96565b610df1565b005b61050b600480360381019061050691906131e4565b610e77565b005b610515610f06565b6040516105229190612fc6565b60405180910390f35b61054560048036038101906105409190612e96565b610f0c565b005b610561600480360381019061055c919061322b565b610f92565b005b61057d60048036038101906105789190612e96565b611066565b005b610599600480360381019061059491906131e4565b611073565b005b6105a3611102565b6040516105b09190613278565b60405180910390f35b6105c1611127565b6040516105ce9190612fc6565b60405180910390f35b6105df61112d565b6040516105ec9190612fc6565b60405180910390f35b61060f600480360381019061060a91906131e4565b611133565b005b6106196111c2565b6040516106269190612fc6565b60405180910390f35b61064960048036038101906106449190612f8c565b6111c8565b6040516106569190612fc6565b60405180910390f35b61066761120e565b005b610671611295565b60405161067e9190612fc6565b60405180910390f35b6106a1600480360381019061069c91906131e4565b61129b565b005b6106bd60048036038101906106b89190612e96565b61132a565b005b6106d960048036038101906106d49190612f8c565b6113b0565b005b6106e3611529565b6040516106f09190612f73565b60405180910390f35b61070161153b565b60405161070e9190612fc6565b60405180910390f35b61071f611541565b60405161072c9190612fc6565b60405180910390f35b61073d611547565b60405161074a9190613278565b60405180910390f35b61075b61156e565b6040516107689190612e32565b60405180910390f35b6107796115fe565b6040516107869190612fc6565b60405180910390f35b6107a960048036038101906107a491906131e4565b611604565b005b6107c560048036038101906107c09190612f8c565b611693565b005b6107e160048036038101906107dc9190612f1b565b611752565b6040516107ee9190612f73565b60405180910390f35b6107ff611838565b60405161080c9190612e32565b60405180910390f35b61081d6118c4565b60405161082a9190612e32565b60405180910390f35b61084d600480360381019061084891906131e4565b611950565b005b61086960048036038101906108649190612f1b565b6119df565b6040516108769190612f73565b60405180910390f35b6108876119fc565b6040516108949190612e32565b60405180910390f35b6108b760048036038101906108b29190612e96565b611a88565b005b6108d360048036038101906108ce9190612f8c565b611b0e565b6040516108e0919061336a565b60405180910390f35b61090360048036038101906108fe9190612e96565b611bc9565b005b61090d611c4f565b60405161091a9190612e32565b60405180910390f35b61093d60048036038101906109389190613384565b611cdb565b60405161094a9190612fc6565b60405180910390f35b61096d60048036038101906109689190612f8c565b611d5d565b005b610977611e53565b6040516109849190612fc6565b60405180910390f35b6109a760048036038101906109a29190612f8c565b611e59565b005b6109b1611f4b565b6040516109be9190612e32565b60405180910390f35b6060600480546109d6906133ef565b80601f0160208091040260200160405190810160405280929190818152602001828054610a02906133ef565b8015610a4d5780601f10610a2457610100808354040283529160200191610a4d565b820191905f5260205f20905b815481529060010190602001808311610a3057829003601f168201915b5050505050905090565b610a5f611fd7565b73ffffffffffffffffffffffffffffffffffffffff16610a7d611547565b73ffffffffffffffffffffffffffffffffffffffff1614610ad3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aca90613469565b60405180910390fd5b8060098190555050565b5f610af0610ae9611fd7565b8484611fde565b6001905092915050565b600f602052805f5260405f205f915054906101000a900460ff1681565b5f600354905090565b60095481565b60148054610b33906133ef565b80601f0160208091040260200160405190810160405280929190818152602001828054610b5f906133ef565b8015610baa5780601f10610b8157610100808354040283529160200191610baa565b820191905f5260205f20905b815481529060010190602001808311610b8d57829003601f168201915b505050505081565b610bba611fd7565b73ffffffffffffffffffffffffffffffffffffffff16610bd8611547565b73ffffffffffffffffffffffffffffffffffffffff1614610c2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2590613469565b60405180910390fd5b8060065f6101000a81548160ff02191690831515021790555050565b5f610c568484846121a1565b5f60025f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f610c9d611fd7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905082811015610d1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d13906134f7565b60405180910390fd5b610d3085610d28611fd7565b858403611fde565b60019150509392505050565b600b5481565b5f6012905090565b5f610de7610d56611fd7565b848460025f610d63611fd7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054610de29190613542565b611fde565b6001905092915050565b610df9611fd7565b73ffffffffffffffffffffffffffffffffffffffff16610e17611547565b73ffffffffffffffffffffffffffffffffffffffff1614610e6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6490613469565b60405180910390fd5b8060188190555050565b610e7f611fd7565b73ffffffffffffffffffffffffffffffffffffffff16610e9d611547565b73ffffffffffffffffffffffffffffffffffffffff1614610ef3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eea90613469565b60405180910390fd5b8060129081610f029190613715565b5050565b60185481565b610f14611fd7565b73ffffffffffffffffffffffffffffffffffffffff16610f32611547565b73ffffffffffffffffffffffffffffffffffffffff1614610f88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7f90613469565b60405180910390fd5b8060198190555050565b610f9a611fd7565b73ffffffffffffffffffffffffffffffffffffffff16610fb8611547565b73ffffffffffffffffffffffffffffffffffffffff161461100e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100590613469565b60405180910390fd5b80600f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b6110703382612419565b50565b61107b611fd7565b73ffffffffffffffffffffffffffffffffffffffff16611099611547565b73ffffffffffffffffffffffffffffffffffffffff16146110ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e690613469565b60405180910390fd5b80601590816110fe9190613715565b5050565b600e5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60175481565b60165481565b61113b611fd7565b73ffffffffffffffffffffffffffffffffffffffff16611159611547565b73ffffffffffffffffffffffffffffffffffffffff16146111af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a690613469565b60405180910390fd5b80601090816111be9190613715565b5050565b60195481565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b611216611fd7565b73ffffffffffffffffffffffffffffffffffffffff16611234611547565b73ffffffffffffffffffffffffffffffffffffffff161461128a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128190613469565b60405180910390fd5b6112935f6125e7565b565b600c5481565b6112a3611fd7565b73ffffffffffffffffffffffffffffffffffffffff166112c1611547565b73ffffffffffffffffffffffffffffffffffffffff1614611317576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130e90613469565b60405180910390fd5b80601490816113269190613715565b5050565b611332611fd7565b73ffffffffffffffffffffffffffffffffffffffff16611350611547565b73ffffffffffffffffffffffffffffffffffffffff16146113a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139d90613469565b60405180910390fd5b8060168190555050565b6113b8611fd7565b73ffffffffffffffffffffffffffffffffffffffff166113d6611547565b73ffffffffffffffffffffffffffffffffffffffff161461142c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142390613469565b60405180910390fd5b5f601a5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20604051806101400160405290815f8201548152602001600182015481526020016002820154815260200160038201548152602001600482015481526020016005820154815260200160068201548152602001600782015481526020016008820154815260200160098201548152505090506123288161012001511180156114f657506123288160600151115b156115255761152482611507610d42565b600a6115139190613913565b600161151f919061395d565b6126a8565b5b5050565b60065f9054906101000a900460ff1681565b60085481565b600a5481565b5f5f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606005805461157d906133ef565b80601f01602080910402602001604051908101604052809291908181526020018280546115a9906133ef565b80156115f45780601f106115cb576101008083540402835291602001916115f4565b820191905f5260205f20905b8154815290600101906020018083116115d757829003601f168201915b5050505050905090565b600d5481565b61160c611fd7565b73ffffffffffffffffffffffffffffffffffffffff1661162a611547565b73ffffffffffffffffffffffffffffffffffffffff1614611680576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167790613469565b60405180910390fd5b806011908161168f9190613715565b5050565b61169b611fd7565b73ffffffffffffffffffffffffffffffffffffffff166116b9611547565b73ffffffffffffffffffffffffffffffffffffffff161461170f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170690613469565b60405180910390fd5b80600e5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b5f5f60025f61175f611fd7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905082811015611819576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181090613a0e565b60405180910390fd5b61182d611824611fd7565b85858403611fde565b600191505092915050565b60118054611845906133ef565b80601f0160208091040260200160405190810160405280929190818152602001828054611871906133ef565b80156118bc5780601f10611893576101008083540402835291602001916118bc565b820191905f5260205f20905b81548152906001019060200180831161189f57829003601f168201915b505050505081565b601280546118d1906133ef565b80601f01602080910402602001604051908101604052809291908181526020018280546118fd906133ef565b80156119485780601f1061191f57610100808354040283529160200191611948565b820191905f5260205f20905b81548152906001019060200180831161192b57829003601f168201915b505050505081565b611958611fd7565b73ffffffffffffffffffffffffffffffffffffffff16611976611547565b73ffffffffffffffffffffffffffffffffffffffff16146119cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c390613469565b60405180910390fd5b80601390816119db9190613715565b5050565b5f6119f26119eb611fd7565b84846121a1565b6001905092915050565b60108054611a09906133ef565b80601f0160208091040260200160405190810160405280929190818152602001828054611a35906133ef565b8015611a805780601f10611a5757610100808354040283529160200191611a80565b820191905f5260205f20905b815481529060010190602001808311611a6357829003601f168201915b505050505081565b611a90611fd7565b73ffffffffffffffffffffffffffffffffffffffff16611aae611547565b73ffffffffffffffffffffffffffffffffffffffff1614611b04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611afb90613469565b60405180910390fd5b8060178190555050565b611b16612d79565b601a5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20604051806101400160405290815f820154815260200160018201548152602001600282015481526020016003820154815260200160048201548152602001600582015481526020016006820154815260200160078201548152602001600882015481526020016009820154815250509050919050565b611bd1611fd7565b73ffffffffffffffffffffffffffffffffffffffff16611bef611547565b73ffffffffffffffffffffffffffffffffffffffff1614611c45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3c90613469565b60405180910390fd5b8060088190555050565b60158054611c5c906133ef565b80601f0160208091040260200160405190810160405280929190818152602001828054611c88906133ef565b8015611cd35780601f10611caa57610100808354040283529160200191611cd3565b820191905f5260205f20905b815481529060010190602001808311611cb657829003601f168201915b505050505081565b5f60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b611d65611fd7565b73ffffffffffffffffffffffffffffffffffffffff16611d83611547565b73ffffffffffffffffffffffffffffffffffffffff1614611dd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd090613469565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611e47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3e90613a9c565b60405180910390fd5b611e50816125e7565b50565b60075481565b611e61611fd7565b73ffffffffffffffffffffffffffffffffffffffff16611e7f611547565b73ffffffffffffffffffffffffffffffffffffffff1614611ed5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ecc90613469565b60405180910390fd5b5f611edf826111c8565b11611f1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1690613b04565b60405180910390fd5b611f4881611f2b610d42565b600a611f379190613913565b6001611f43919061395d565b6126a8565b50565b60138054611f58906133ef565b80601f0160208091040260200160405190810160405280929190818152602001828054611f84906133ef565b8015611fcf5780601f10611fa657610100808354040283529160200191611fcf565b820191905f5260205f20905b815481529060010190602001808311611fb257829003601f168201915b505050505081565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361204c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204390613b92565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036120ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b190613c20565b60405180910390fd5b8060025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516121949190612fc6565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361220f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220690613cae565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361227d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161227490613d3c565b60405180910390fd5b612288838383612800565b5f60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101561230c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230390613dca565b60405180910390fd5b81810360015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825461239c9190613542565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516124009190612fc6565b60405180910390a3612413848484612bac565b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612487576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161247e90613e58565b60405180910390fd5b612492825f83612800565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015612516576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161250d90613ee6565b60405180910390fd5b81810360015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160035f82825461256b9190613f04565b925050819055505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516125cf9190612fc6565b60405180910390a36125e2835f84612bac565b505050565b5f5f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612716576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161270d90613f81565b60405180910390fd5b6127215f8383612800565b8060035f8282546127329190613542565b925050819055508060015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546127859190613542565b925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516127e99190612fc6565b60405180910390a36127fc5f8383612bac565b5050565b600f5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615801561289e5750600f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b6128dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128d490613fe9565b60405180910390fd5b60065f9054906101000a900460ff16801561290057506128fb610b17565b600a54105b156129675762989680600d54600c54600a5461291c919061395d565b612926919061395d565b6129309190614034565b600a5f8282546129409190613542565b9250508190555061294f610b17565b600a54106129665761295f610b17565b600a819055505b5b5f73ffffffffffffffffffffffffffffffffffffffff16600e5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603612a72576129c3611547565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480612a2e57506129ff611547565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b612a6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a64906140ae565b60405180910390fd5b612ba7565b60065f9054906101000a900460ff168015612ad95750600e5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b15612ba65760085481612aeb846111c8565b612af59190613542565b11158015612b18575060095481612b0b846111c8565b612b159190613542565b10155b612b57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b4e90614116565b60405180910390fd5b600a54811115612b9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b939061417e565b60405180910390fd5b612ba582612bb1565b5b5b505050565b505050565b604051806101400160405280612bca600161270f612d16565b8152602001612bdc600161270f612d16565b8152602001612bee600161270f612d16565b8152602001612c00600161270f612d16565b8152602001612c12600161270f612d16565b8152602001612c24600161270f612d16565b8152602001612c36600161270f612d16565b8152602001612c48600161270f612d16565b8152602001612c5a600161270f612d16565b8152602001612c6c600161270f612d16565b815250601a5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f820151815f01556020820151816001015560408201518160020155606082015181600301556080820151816004015560a0820151816005015560c0820151816006015560e082015181600701556101008201518160080155610120820151816009015590505050565b5f8260018484612d269190613f04565b612d309190613542565b424433604051602001612d4593929190614201565b604051602081830303815290604052805190602001205f1c612d67919061423d565b612d719190613542565b905092915050565b6040518061014001604052805f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f81525090565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f612e0482612dc2565b612e0e8185612dcc565b9350612e1e818560208601612ddc565b612e2781612dea565b840191505092915050565b5f6020820190508181035f830152612e4a8184612dfa565b905092915050565b5f604051905090565b5f5ffd5b5f5ffd5b5f819050919050565b612e7581612e63565b8114612e7f575f5ffd5b50565b5f81359050612e9081612e6c565b92915050565b5f60208284031215612eab57612eaa612e5b565b5b5f612eb884828501612e82565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f612eea82612ec1565b9050919050565b612efa81612ee0565b8114612f04575f5ffd5b50565b5f81359050612f1581612ef1565b92915050565b5f5f60408385031215612f3157612f30612e5b565b5b5f612f3e85828601612f07565b9250506020612f4f85828601612e82565b9150509250929050565b5f8115159050919050565b612f6d81612f59565b82525050565b5f602082019050612f865f830184612f64565b92915050565b5f60208284031215612fa157612fa0612e5b565b5b5f612fae84828501612f07565b91505092915050565b612fc081612e63565b82525050565b5f602082019050612fd95f830184612fb7565b92915050565b612fe881612f59565b8114612ff2575f5ffd5b50565b5f8135905061300381612fdf565b92915050565b5f6020828403121561301e5761301d612e5b565b5b5f61302b84828501612ff5565b91505092915050565b5f5f5f6060848603121561304b5761304a612e5b565b5b5f61305886828701612f07565b935050602061306986828701612f07565b925050604061307a86828701612e82565b9150509250925092565b5f60ff82169050919050565b61309981613084565b82525050565b5f6020820190506130b25f830184613090565b92915050565b5f5ffd5b5f5ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b6130f682612dea565b810181811067ffffffffffffffff82111715613115576131146130c0565b5b80604052505050565b5f613127612e52565b905061313382826130ed565b919050565b5f67ffffffffffffffff821115613152576131516130c0565b5b61315b82612dea565b9050602081019050919050565b828183375f83830152505050565b5f61318861318384613138565b61311e565b9050828152602081018484840111156131a4576131a36130bc565b5b6131af848285613168565b509392505050565b5f82601f8301126131cb576131ca6130b8565b5b81356131db848260208601613176565b91505092915050565b5f602082840312156131f9576131f8612e5b565b5b5f82013567ffffffffffffffff81111561321657613215612e5f565b5b613222848285016131b7565b91505092915050565b5f5f6040838503121561324157613240612e5b565b5b5f61324e85828601612f07565b925050602061325f85828601612ff5565b9150509250929050565b61327281612ee0565b82525050565b5f60208201905061328b5f830184613269565b92915050565b61329a81612e63565b82525050565b61014082015f8201516132b55f850182613291565b5060208201516132c86020850182613291565b5060408201516132db6040850182613291565b5060608201516132ee6060850182613291565b5060808201516133016080850182613291565b5060a082015161331460a0850182613291565b5060c082015161332760c0850182613291565b5060e082015161333a60e0850182613291565b5061010082015161334f610100850182613291565b50610120820151613364610120850182613291565b50505050565b5f6101408201905061337e5f8301846132a0565b92915050565b5f5f6040838503121561339a57613399612e5b565b5b5f6133a785828601612f07565b92505060206133b885828601612f07565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061340657607f821691505b602082108103613419576134186133c2565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f613453602083612dcc565b915061345e8261341f565b602082019050919050565b5f6020820190508181035f83015261348081613447565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320615f8201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b5f6134e1602883612dcc565b91506134ec82613487565b604082019050919050565b5f6020820190508181035f83015261350e816134d5565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61354c82612e63565b915061355783612e63565b925082820190508082111561356f5761356e613515565b5b92915050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026135d17fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613596565b6135db8683613596565b95508019841693508086168417925050509392505050565b5f819050919050565b5f61361661361161360c84612e63565b6135f3565b612e63565b9050919050565b5f819050919050565b61362f836135fc565b61364361363b8261361d565b8484546135a2565b825550505050565b5f5f905090565b61365a61364b565b613665818484613626565b505050565b5b818110156136885761367d5f82613652565b60018101905061366b565b5050565b601f8211156136cd5761369e81613575565b6136a784613587565b810160208510156136b6578190505b6136ca6136c285613587565b83018261366a565b50505b505050565b5f82821c905092915050565b5f6136ed5f19846008026136d2565b1980831691505092915050565b5f61370583836136de565b9150826002028217905092915050565b61371e82612dc2565b67ffffffffffffffff811115613737576137366130c0565b5b61374182546133ef565b61374c82828561368c565b5f60209050601f83116001811461377d575f841561376b578287015190505b61377585826136fa565b8655506137dc565b601f19841661378b86613575565b5f5b828110156137b25784890151825560018201915060208501945060208101905061378d565b868310156137cf57848901516137cb601f8916826136de565b8355505b6001600288020188555050505b505050505050565b5f8160011c9050919050565b5f5f8291508390505b60018511156138395780860481111561381557613814613515565b5b60018516156138245780820291505b8081029050613832856137e4565b94506137f9565b94509492505050565b5f82613851576001905061390c565b8161385e575f905061390c565b8160018114613874576002811461387e576138ad565b600191505061390c565b60ff8411156138905761388f613515565b5b8360020a9150848211156138a7576138a6613515565b5b5061390c565b5060208310610133831016604e8410600b84101617156138e25782820a9050838111156138dd576138dc613515565b5b61390c565b6138ef84848460016137f0565b9250905081840481111561390657613905613515565b5b81810290505b9392505050565b5f61391d82612e63565b915061392883613084565b92506139557fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484613842565b905092915050565b5f61396782612e63565b915061397283612e63565b925082820261398081612e63565b9150828204841483151761399757613996613515565b5b5092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f6139f8602583612dcc565b9150613a038261399e565b604082019050919050565b5f6020820190508181035f830152613a25816139ec565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f613a86602683612dcc565b9150613a9182613a2c565b604082019050919050565b5f6020820190508181035f830152613ab381613a7a565b9050919050565b7f4e6f20746f6b656e732068656c642062792061646472657373000000000000005f82015250565b5f613aee601983612dcc565b9150613af982613aba565b602082019050919050565b5f6020820190508181035f830152613b1b81613ae2565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f613b7c602483612dcc565b9150613b8782613b22565b604082019050919050565b5f6020820190508181035f830152613ba981613b70565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f613c0a602283612dcc565b9150613c1582613bb0565b604082019050919050565b5f6020820190508181035f830152613c3781613bfe565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f613c98602583612dcc565b9150613ca382613c3e565b604082019050919050565b5f6020820190508181035f830152613cc581613c8c565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f613d26602383612dcc565b9150613d3182613ccc565b604082019050919050565b5f6020820190508181035f830152613d5381613d1a565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f613db4602683612dcc565b9150613dbf82613d5a565b604082019050919050565b5f6020820190508181035f830152613de181613da8565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f206164647265735f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f613e42602183612dcc565b9150613e4d82613de8565b604082019050919050565b5f6020820190508181035f830152613e6f81613e36565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e5f8201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b5f613ed0602283612dcc565b9150613edb82613e76565b604082019050919050565b5f6020820190508181035f830152613efd81613ec4565b9050919050565b5f613f0e82612e63565b9150613f1983612e63565b9250828203905081811115613f3157613f30613515565b5b92915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f613f6b601f83612dcc565b9150613f7682613f37565b602082019050919050565b5f6020820190508181035f830152613f9881613f5f565b9050919050565b7f426c61636b6c69737465640000000000000000000000000000000000000000005f82015250565b5f613fd3600b83612dcc565b9150613fde82613f9f565b602082019050919050565b5f6020820190508181035f83015261400081613fc7565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61403e82612e63565b915061404983612e63565b92508261405957614058614007565b5b828204905092915050565b7f54726164696e67206e6f742073746172746564000000000000000000000000005f82015250565b5f614098601383612dcc565b91506140a382614064565b602082019050919050565b5f6020820190508181035f8301526140c58161408c565b9050919050565b7f486f6c64696e67206c696d6974206578636565646564000000000000000000005f82015250565b5f614100601683612dcc565b915061410b826140cc565b602082019050919050565b5f6020820190508181035f83015261412d816140f4565b9050919050565b7f4d6178207472616e73616374696f6e206c696d697420657863656564656400005f82015250565b5f614168601e83612dcc565b915061417382614134565b602082019050919050565b5f6020820190508181035f8301526141958161415c565b9050919050565b5f819050919050565b6141b66141b182612e63565b61419c565b82525050565b5f8160601b9050919050565b5f6141d2826141bc565b9050919050565b5f6141e3826141c8565b9050919050565b6141fb6141f682612ee0565b6141d9565b82525050565b5f61420c82866141a5565b60208201915061421c82856141a5565b60208201915061422c82846141ea565b601482019150819050949350505050565b5f61424782612e63565b915061425283612e63565b92508261426257614261614007565b5b82820690509291505056fea26469706673582212208067afcb4e2e2b92383f7a21503a11da778a2b583f93728b8d754b6d588d726464736f6c634300081b0033

Deployed Bytecode

0x608060405234801561000f575f5ffd5b5060043610610325575f3560e01c80637b76455d116101b6578063a774f34e11610102578063bded89fb116100a0578063f2fde38b1161007a578063f2fde38b14610953578063f828f50b1461096f578063fcefc01f1461098d578063fef21f0f146109a957610325565b8063bded89fb146108e9578063bdf30d8f14610905578063dd62ed3e1461092357610325565b8063a9059cbb116100dc578063a9059cbb1461084f578063a9aaa5a51461087f578063b06d759d1461089d578063b4674ec8146108b957610325565b8063a774f34e146107f7578063a895ed2114610815578063a8a75dbc1461083357610325565b80638c0b5e221161016f5780639a25e328116101495780639a25e328146107715780639dceb9851461078f578063a29a6089146107ab578063a457c2d7146107c757610325565b80638c0b5e22146107175780638da5cb5b1461073557806395d89b411461075357610325565b80637b76455d146106695780637e3e5733146106875780637e7849ff146106a3578063847ee48c146106bf578063860a32ec146106db57806389f9a1d3146106f957610325565b806339e12e2f1161027557806349bd5a5e1161022e57806357ac40c41161020857806357ac40c4146105f55780635d1c31711461061157806370a082311461062f578063715018a61461065f57610325565b806349bd5a5e1461059b57806350942ab9146105b957806355b6c288146105d757610325565b806339e12e2f146104f15780633d27862e1461050d5780633d4433821461052b578063404e51291461054757806342966c681461056357806343ff87d11461057f57610325565b8063222cbad4116102e25780632e267bff116102bc5780632e267bff14610469578063313ce5671461048757806339509351146104a557806339abdee1146104d557610325565b8063222cbad4146103ff578063227313961461041d57806323b872dd1461043957610325565b806306fdde031461032957806309143f2314610347578063095ea7b31461036357806316c021291461039357806318160ddd146103c35780631ab99e12146103e1575b5f5ffd5b6103316109c7565b60405161033e9190612e32565b60405180910390f35b610361600480360381019061035c9190612e96565b610a57565b005b61037d60048036038101906103789190612f1b565b610add565b60405161038a9190612f73565b60405180910390f35b6103ad60048036038101906103a89190612f8c565b610afa565b6040516103ba9190612f73565b60405180910390f35b6103cb610b17565b6040516103d89190612fc6565b60405180910390f35b6103e9610b20565b6040516103f69190612fc6565b60405180910390f35b610407610b26565b6040516104149190612e32565b60405180910390f35b61043760048036038101906104329190613009565b610bb2565b005b610453600480360381019061044e9190613034565b610c4a565b6040516104609190612f73565b60405180910390f35b610471610d3c565b60405161047e9190612fc6565b60405180910390f35b61048f610d42565b60405161049c919061309f565b60405180910390f35b6104bf60048036038101906104ba9190612f1b565b610d4a565b6040516104cc9190612f73565b60405180910390f35b6104ef60048036038101906104ea9190612e96565b610df1565b005b61050b600480360381019061050691906131e4565b610e77565b005b610515610f06565b6040516105229190612fc6565b60405180910390f35b61054560048036038101906105409190612e96565b610f0c565b005b610561600480360381019061055c919061322b565b610f92565b005b61057d60048036038101906105789190612e96565b611066565b005b610599600480360381019061059491906131e4565b611073565b005b6105a3611102565b6040516105b09190613278565b60405180910390f35b6105c1611127565b6040516105ce9190612fc6565b60405180910390f35b6105df61112d565b6040516105ec9190612fc6565b60405180910390f35b61060f600480360381019061060a91906131e4565b611133565b005b6106196111c2565b6040516106269190612fc6565b60405180910390f35b61064960048036038101906106449190612f8c565b6111c8565b6040516106569190612fc6565b60405180910390f35b61066761120e565b005b610671611295565b60405161067e9190612fc6565b60405180910390f35b6106a1600480360381019061069c91906131e4565b61129b565b005b6106bd60048036038101906106b89190612e96565b61132a565b005b6106d960048036038101906106d49190612f8c565b6113b0565b005b6106e3611529565b6040516106f09190612f73565b60405180910390f35b61070161153b565b60405161070e9190612fc6565b60405180910390f35b61071f611541565b60405161072c9190612fc6565b60405180910390f35b61073d611547565b60405161074a9190613278565b60405180910390f35b61075b61156e565b6040516107689190612e32565b60405180910390f35b6107796115fe565b6040516107869190612fc6565b60405180910390f35b6107a960048036038101906107a491906131e4565b611604565b005b6107c560048036038101906107c09190612f8c565b611693565b005b6107e160048036038101906107dc9190612f1b565b611752565b6040516107ee9190612f73565b60405180910390f35b6107ff611838565b60405161080c9190612e32565b60405180910390f35b61081d6118c4565b60405161082a9190612e32565b60405180910390f35b61084d600480360381019061084891906131e4565b611950565b005b61086960048036038101906108649190612f1b565b6119df565b6040516108769190612f73565b60405180910390f35b6108876119fc565b6040516108949190612e32565b60405180910390f35b6108b760048036038101906108b29190612e96565b611a88565b005b6108d360048036038101906108ce9190612f8c565b611b0e565b6040516108e0919061336a565b60405180910390f35b61090360048036038101906108fe9190612e96565b611bc9565b005b61090d611c4f565b60405161091a9190612e32565b60405180910390f35b61093d60048036038101906109389190613384565b611cdb565b60405161094a9190612fc6565b60405180910390f35b61096d60048036038101906109689190612f8c565b611d5d565b005b610977611e53565b6040516109849190612fc6565b60405180910390f35b6109a760048036038101906109a29190612f8c565b611e59565b005b6109b1611f4b565b6040516109be9190612e32565b60405180910390f35b6060600480546109d6906133ef565b80601f0160208091040260200160405190810160405280929190818152602001828054610a02906133ef565b8015610a4d5780601f10610a2457610100808354040283529160200191610a4d565b820191905f5260205f20905b815481529060010190602001808311610a3057829003601f168201915b5050505050905090565b610a5f611fd7565b73ffffffffffffffffffffffffffffffffffffffff16610a7d611547565b73ffffffffffffffffffffffffffffffffffffffff1614610ad3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aca90613469565b60405180910390fd5b8060098190555050565b5f610af0610ae9611fd7565b8484611fde565b6001905092915050565b600f602052805f5260405f205f915054906101000a900460ff1681565b5f600354905090565b60095481565b60148054610b33906133ef565b80601f0160208091040260200160405190810160405280929190818152602001828054610b5f906133ef565b8015610baa5780601f10610b8157610100808354040283529160200191610baa565b820191905f5260205f20905b815481529060010190602001808311610b8d57829003601f168201915b505050505081565b610bba611fd7565b73ffffffffffffffffffffffffffffffffffffffff16610bd8611547565b73ffffffffffffffffffffffffffffffffffffffff1614610c2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2590613469565b60405180910390fd5b8060065f6101000a81548160ff02191690831515021790555050565b5f610c568484846121a1565b5f60025f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f610c9d611fd7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905082811015610d1c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d13906134f7565b60405180910390fd5b610d3085610d28611fd7565b858403611fde565b60019150509392505050565b600b5481565b5f6012905090565b5f610de7610d56611fd7565b848460025f610d63611fd7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054610de29190613542565b611fde565b6001905092915050565b610df9611fd7565b73ffffffffffffffffffffffffffffffffffffffff16610e17611547565b73ffffffffffffffffffffffffffffffffffffffff1614610e6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6490613469565b60405180910390fd5b8060188190555050565b610e7f611fd7565b73ffffffffffffffffffffffffffffffffffffffff16610e9d611547565b73ffffffffffffffffffffffffffffffffffffffff1614610ef3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eea90613469565b60405180910390fd5b8060129081610f029190613715565b5050565b60185481565b610f14611fd7565b73ffffffffffffffffffffffffffffffffffffffff16610f32611547565b73ffffffffffffffffffffffffffffffffffffffff1614610f88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7f90613469565b60405180910390fd5b8060198190555050565b610f9a611fd7565b73ffffffffffffffffffffffffffffffffffffffff16610fb8611547565b73ffffffffffffffffffffffffffffffffffffffff161461100e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100590613469565b60405180910390fd5b80600f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b6110703382612419565b50565b61107b611fd7565b73ffffffffffffffffffffffffffffffffffffffff16611099611547565b73ffffffffffffffffffffffffffffffffffffffff16146110ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e690613469565b60405180910390fd5b80601590816110fe9190613715565b5050565b600e5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60175481565b60165481565b61113b611fd7565b73ffffffffffffffffffffffffffffffffffffffff16611159611547565b73ffffffffffffffffffffffffffffffffffffffff16146111af576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111a690613469565b60405180910390fd5b80601090816111be9190613715565b5050565b60195481565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b611216611fd7565b73ffffffffffffffffffffffffffffffffffffffff16611234611547565b73ffffffffffffffffffffffffffffffffffffffff161461128a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128190613469565b60405180910390fd5b6112935f6125e7565b565b600c5481565b6112a3611fd7565b73ffffffffffffffffffffffffffffffffffffffff166112c1611547565b73ffffffffffffffffffffffffffffffffffffffff1614611317576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161130e90613469565b60405180910390fd5b80601490816113269190613715565b5050565b611332611fd7565b73ffffffffffffffffffffffffffffffffffffffff16611350611547565b73ffffffffffffffffffffffffffffffffffffffff16146113a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139d90613469565b60405180910390fd5b8060168190555050565b6113b8611fd7565b73ffffffffffffffffffffffffffffffffffffffff166113d6611547565b73ffffffffffffffffffffffffffffffffffffffff161461142c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161142390613469565b60405180910390fd5b5f601a5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20604051806101400160405290815f8201548152602001600182015481526020016002820154815260200160038201548152602001600482015481526020016005820154815260200160068201548152602001600782015481526020016008820154815260200160098201548152505090506123288161012001511180156114f657506123288160600151115b156115255761152482611507610d42565b600a6115139190613913565b600161151f919061395d565b6126a8565b5b5050565b60065f9054906101000a900460ff1681565b60085481565b600a5481565b5f5f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606005805461157d906133ef565b80601f01602080910402602001604051908101604052809291908181526020018280546115a9906133ef565b80156115f45780601f106115cb576101008083540402835291602001916115f4565b820191905f5260205f20905b8154815290600101906020018083116115d757829003601f168201915b5050505050905090565b600d5481565b61160c611fd7565b73ffffffffffffffffffffffffffffffffffffffff1661162a611547565b73ffffffffffffffffffffffffffffffffffffffff1614611680576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167790613469565b60405180910390fd5b806011908161168f9190613715565b5050565b61169b611fd7565b73ffffffffffffffffffffffffffffffffffffffff166116b9611547565b73ffffffffffffffffffffffffffffffffffffffff161461170f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170690613469565b60405180910390fd5b80600e5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b5f5f60025f61175f611fd7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905082811015611819576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181090613a0e565b60405180910390fd5b61182d611824611fd7565b85858403611fde565b600191505092915050565b60118054611845906133ef565b80601f0160208091040260200160405190810160405280929190818152602001828054611871906133ef565b80156118bc5780601f10611893576101008083540402835291602001916118bc565b820191905f5260205f20905b81548152906001019060200180831161189f57829003601f168201915b505050505081565b601280546118d1906133ef565b80601f01602080910402602001604051908101604052809291908181526020018280546118fd906133ef565b80156119485780601f1061191f57610100808354040283529160200191611948565b820191905f5260205f20905b81548152906001019060200180831161192b57829003601f168201915b505050505081565b611958611fd7565b73ffffffffffffffffffffffffffffffffffffffff16611976611547565b73ffffffffffffffffffffffffffffffffffffffff16146119cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c390613469565b60405180910390fd5b80601390816119db9190613715565b5050565b5f6119f26119eb611fd7565b84846121a1565b6001905092915050565b60108054611a09906133ef565b80601f0160208091040260200160405190810160405280929190818152602001828054611a35906133ef565b8015611a805780601f10611a5757610100808354040283529160200191611a80565b820191905f5260205f20905b815481529060010190602001808311611a6357829003601f168201915b505050505081565b611a90611fd7565b73ffffffffffffffffffffffffffffffffffffffff16611aae611547565b73ffffffffffffffffffffffffffffffffffffffff1614611b04576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611afb90613469565b60405180910390fd5b8060178190555050565b611b16612d79565b601a5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20604051806101400160405290815f820154815260200160018201548152602001600282015481526020016003820154815260200160048201548152602001600582015481526020016006820154815260200160078201548152602001600882015481526020016009820154815250509050919050565b611bd1611fd7565b73ffffffffffffffffffffffffffffffffffffffff16611bef611547565b73ffffffffffffffffffffffffffffffffffffffff1614611c45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3c90613469565b60405180910390fd5b8060088190555050565b60158054611c5c906133ef565b80601f0160208091040260200160405190810160405280929190818152602001828054611c88906133ef565b8015611cd35780601f10611caa57610100808354040283529160200191611cd3565b820191905f5260205f20905b815481529060010190602001808311611cb657829003601f168201915b505050505081565b5f60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b611d65611fd7565b73ffffffffffffffffffffffffffffffffffffffff16611d83611547565b73ffffffffffffffffffffffffffffffffffffffff1614611dd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd090613469565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611e47576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3e90613a9c565b60405180910390fd5b611e50816125e7565b50565b60075481565b611e61611fd7565b73ffffffffffffffffffffffffffffffffffffffff16611e7f611547565b73ffffffffffffffffffffffffffffffffffffffff1614611ed5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ecc90613469565b60405180910390fd5b5f611edf826111c8565b11611f1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1690613b04565b60405180910390fd5b611f4881611f2b610d42565b600a611f379190613913565b6001611f43919061395d565b6126a8565b50565b60138054611f58906133ef565b80601f0160208091040260200160405190810160405280929190818152602001828054611f84906133ef565b8015611fcf5780601f10611fa657610100808354040283529160200191611fcf565b820191905f5260205f20905b815481529060010190602001808311611fb257829003601f168201915b505050505081565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361204c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204390613b92565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036120ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b190613c20565b60405180910390fd5b8060025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516121949190612fc6565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361220f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161220690613cae565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361227d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161227490613d3c565b60405180910390fd5b612288838383612800565b5f60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508181101561230c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230390613dca565b60405180910390fd5b81810360015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825461239c9190613542565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516124009190612fc6565b60405180910390a3612413848484612bac565b50505050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612487576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161247e90613e58565b60405180910390fd5b612492825f83612800565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015612516576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161250d90613ee6565b60405180910390fd5b81810360015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160035f82825461256b9190613f04565b925050819055505f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516125cf9190612fc6565b60405180910390a36125e2835f84612bac565b505050565b5f5f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612716576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161270d90613f81565b60405180910390fd5b6127215f8383612800565b8060035f8282546127329190613542565b925050819055508060015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546127859190613542565b925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516127e99190612fc6565b60405180910390a36127fc5f8383612bac565b5050565b600f5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615801561289e5750600f5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b6128dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128d490613fe9565b60405180910390fd5b60065f9054906101000a900460ff16801561290057506128fb610b17565b600a54105b156129675762989680600d54600c54600a5461291c919061395d565b612926919061395d565b6129309190614034565b600a5f8282546129409190613542565b9250508190555061294f610b17565b600a54106129665761295f610b17565b600a819055505b5b5f73ffffffffffffffffffffffffffffffffffffffff16600e5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603612a72576129c3611547565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480612a2e57506129ff611547565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b612a6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a64906140ae565b60405180910390fd5b612ba7565b60065f9054906101000a900460ff168015612ad95750600e5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b15612ba65760085481612aeb846111c8565b612af59190613542565b11158015612b18575060095481612b0b846111c8565b612b159190613542565b10155b612b57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b4e90614116565b60405180910390fd5b600a54811115612b9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b939061417e565b60405180910390fd5b612ba582612bb1565b5b5b505050565b505050565b604051806101400160405280612bca600161270f612d16565b8152602001612bdc600161270f612d16565b8152602001612bee600161270f612d16565b8152602001612c00600161270f612d16565b8152602001612c12600161270f612d16565b8152602001612c24600161270f612d16565b8152602001612c36600161270f612d16565b8152602001612c48600161270f612d16565b8152602001612c5a600161270f612d16565b8152602001612c6c600161270f612d16565b815250601a5f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f820151815f01556020820151816001015560408201518160020155606082015181600301556080820151816004015560a0820151816005015560c0820151816006015560e082015181600701556101008201518160080155610120820151816009015590505050565b5f8260018484612d269190613f04565b612d309190613542565b424433604051602001612d4593929190614201565b604051602081830303815290604052805190602001205f1c612d67919061423d565b612d719190613542565b905092915050565b6040518061014001604052805f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f81526020015f81525090565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f612e0482612dc2565b612e0e8185612dcc565b9350612e1e818560208601612ddc565b612e2781612dea565b840191505092915050565b5f6020820190508181035f830152612e4a8184612dfa565b905092915050565b5f604051905090565b5f5ffd5b5f5ffd5b5f819050919050565b612e7581612e63565b8114612e7f575f5ffd5b50565b5f81359050612e9081612e6c565b92915050565b5f60208284031215612eab57612eaa612e5b565b5b5f612eb884828501612e82565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f612eea82612ec1565b9050919050565b612efa81612ee0565b8114612f04575f5ffd5b50565b5f81359050612f1581612ef1565b92915050565b5f5f60408385031215612f3157612f30612e5b565b5b5f612f3e85828601612f07565b9250506020612f4f85828601612e82565b9150509250929050565b5f8115159050919050565b612f6d81612f59565b82525050565b5f602082019050612f865f830184612f64565b92915050565b5f60208284031215612fa157612fa0612e5b565b5b5f612fae84828501612f07565b91505092915050565b612fc081612e63565b82525050565b5f602082019050612fd95f830184612fb7565b92915050565b612fe881612f59565b8114612ff2575f5ffd5b50565b5f8135905061300381612fdf565b92915050565b5f6020828403121561301e5761301d612e5b565b5b5f61302b84828501612ff5565b91505092915050565b5f5f5f6060848603121561304b5761304a612e5b565b5b5f61305886828701612f07565b935050602061306986828701612f07565b925050604061307a86828701612e82565b9150509250925092565b5f60ff82169050919050565b61309981613084565b82525050565b5f6020820190506130b25f830184613090565b92915050565b5f5ffd5b5f5ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b6130f682612dea565b810181811067ffffffffffffffff82111715613115576131146130c0565b5b80604052505050565b5f613127612e52565b905061313382826130ed565b919050565b5f67ffffffffffffffff821115613152576131516130c0565b5b61315b82612dea565b9050602081019050919050565b828183375f83830152505050565b5f61318861318384613138565b61311e565b9050828152602081018484840111156131a4576131a36130bc565b5b6131af848285613168565b509392505050565b5f82601f8301126131cb576131ca6130b8565b5b81356131db848260208601613176565b91505092915050565b5f602082840312156131f9576131f8612e5b565b5b5f82013567ffffffffffffffff81111561321657613215612e5f565b5b613222848285016131b7565b91505092915050565b5f5f6040838503121561324157613240612e5b565b5b5f61324e85828601612f07565b925050602061325f85828601612ff5565b9150509250929050565b61327281612ee0565b82525050565b5f60208201905061328b5f830184613269565b92915050565b61329a81612e63565b82525050565b61014082015f8201516132b55f850182613291565b5060208201516132c86020850182613291565b5060408201516132db6040850182613291565b5060608201516132ee6060850182613291565b5060808201516133016080850182613291565b5060a082015161331460a0850182613291565b5060c082015161332760c0850182613291565b5060e082015161333a60e0850182613291565b5061010082015161334f610100850182613291565b50610120820151613364610120850182613291565b50505050565b5f6101408201905061337e5f8301846132a0565b92915050565b5f5f6040838503121561339a57613399612e5b565b5b5f6133a785828601612f07565b92505060206133b885828601612f07565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061340657607f821691505b602082108103613419576134186133c2565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f613453602083612dcc565b915061345e8261341f565b602082019050919050565b5f6020820190508181035f83015261348081613447565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320615f8201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b5f6134e1602883612dcc565b91506134ec82613487565b604082019050919050565b5f6020820190508181035f83015261350e816134d5565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61354c82612e63565b915061355783612e63565b925082820190508082111561356f5761356e613515565b5b92915050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026135d17fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82613596565b6135db8683613596565b95508019841693508086168417925050509392505050565b5f819050919050565b5f61361661361161360c84612e63565b6135f3565b612e63565b9050919050565b5f819050919050565b61362f836135fc565b61364361363b8261361d565b8484546135a2565b825550505050565b5f5f905090565b61365a61364b565b613665818484613626565b505050565b5b818110156136885761367d5f82613652565b60018101905061366b565b5050565b601f8211156136cd5761369e81613575565b6136a784613587565b810160208510156136b6578190505b6136ca6136c285613587565b83018261366a565b50505b505050565b5f82821c905092915050565b5f6136ed5f19846008026136d2565b1980831691505092915050565b5f61370583836136de565b9150826002028217905092915050565b61371e82612dc2565b67ffffffffffffffff811115613737576137366130c0565b5b61374182546133ef565b61374c82828561368c565b5f60209050601f83116001811461377d575f841561376b578287015190505b61377585826136fa565b8655506137dc565b601f19841661378b86613575565b5f5b828110156137b25784890151825560018201915060208501945060208101905061378d565b868310156137cf57848901516137cb601f8916826136de565b8355505b6001600288020188555050505b505050505050565b5f8160011c9050919050565b5f5f8291508390505b60018511156138395780860481111561381557613814613515565b5b60018516156138245780820291505b8081029050613832856137e4565b94506137f9565b94509492505050565b5f82613851576001905061390c565b8161385e575f905061390c565b8160018114613874576002811461387e576138ad565b600191505061390c565b60ff8411156138905761388f613515565b5b8360020a9150848211156138a7576138a6613515565b5b5061390c565b5060208310610133831016604e8410600b84101617156138e25782820a9050838111156138dd576138dc613515565b5b61390c565b6138ef84848460016137f0565b9250905081840481111561390657613905613515565b5b81810290505b9392505050565b5f61391d82612e63565b915061392883613084565b92506139557fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484613842565b905092915050565b5f61396782612e63565b915061397283612e63565b925082820261398081612e63565b9150828204841483151761399757613996613515565b5b5092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f6139f8602583612dcc565b9150613a038261399e565b604082019050919050565b5f6020820190508181035f830152613a25816139ec565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f613a86602683612dcc565b9150613a9182613a2c565b604082019050919050565b5f6020820190508181035f830152613ab381613a7a565b9050919050565b7f4e6f20746f6b656e732068656c642062792061646472657373000000000000005f82015250565b5f613aee601983612dcc565b9150613af982613aba565b602082019050919050565b5f6020820190508181035f830152613b1b81613ae2565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f613b7c602483612dcc565b9150613b8782613b22565b604082019050919050565b5f6020820190508181035f830152613ba981613b70565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f613c0a602283612dcc565b9150613c1582613bb0565b604082019050919050565b5f6020820190508181035f830152613c3781613bfe565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f613c98602583612dcc565b9150613ca382613c3e565b604082019050919050565b5f6020820190508181035f830152613cc581613c8c565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f613d26602383612dcc565b9150613d3182613ccc565b604082019050919050565b5f6020820190508181035f830152613d5381613d1a565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f613db4602683612dcc565b9150613dbf82613d5a565b604082019050919050565b5f6020820190508181035f830152613de181613da8565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f206164647265735f8201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b5f613e42602183612dcc565b9150613e4d82613de8565b604082019050919050565b5f6020820190508181035f830152613e6f81613e36565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e5f8201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b5f613ed0602283612dcc565b9150613edb82613e76565b604082019050919050565b5f6020820190508181035f830152613efd81613ec4565b9050919050565b5f613f0e82612e63565b9150613f1983612e63565b9250828203905081811115613f3157613f30613515565b5b92915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f613f6b601f83612dcc565b9150613f7682613f37565b602082019050919050565b5f6020820190508181035f830152613f9881613f5f565b9050919050565b7f426c61636b6c69737465640000000000000000000000000000000000000000005f82015250565b5f613fd3600b83612dcc565b9150613fde82613f9f565b602082019050919050565b5f6020820190508181035f83015261400081613fc7565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61403e82612e63565b915061404983612e63565b92508261405957614058614007565b5b828204905092915050565b7f54726164696e67206e6f742073746172746564000000000000000000000000005f82015250565b5f614098601383612dcc565b91506140a382614064565b602082019050919050565b5f6020820190508181035f8301526140c58161408c565b9050919050565b7f486f6c64696e67206c696d6974206578636565646564000000000000000000005f82015250565b5f614100601683612dcc565b915061410b826140cc565b602082019050919050565b5f6020820190508181035f83015261412d816140f4565b9050919050565b7f4d6178207472616e73616374696f6e206c696d697420657863656564656400005f82015250565b5f614168601e83612dcc565b915061417382614134565b602082019050919050565b5f6020820190508181035f8301526141958161415c565b9050919050565b5f819050919050565b6141b66141b182612e63565b61419c565b82525050565b5f8160601b9050919050565b5f6141d2826141bc565b9050919050565b5f6141e3826141c8565b9050919050565b6141fb6141f682612ee0565b6141d9565b82525050565b5f61420c82866141a5565b60208201915061421c82856141a5565b60208201915061422c82846141ea565b601482019150819050949350505050565b5f61424782612e63565b915061425283612e63565b92508261426257614261614007565b5b82820690509291505056fea26469706673582212208067afcb4e2e2b92383f7a21503a11da778a2b583f93728b8d754b6d588d726464736f6c634300081b0033

Deployed Bytecode Sourcemap

21902:6512:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11900:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24127:130;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14067:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22447:42;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13020:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22132:31;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22655:22;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23764:91;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14718:492;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22203:40;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12862:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15619:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28237:100;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27673:98;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22773:27;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28343:68;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23566:135;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25436:81;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27961:94;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22412:28;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22744:22;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22714:23;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27485:86;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22807:19;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13191:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5301:103;;;:::i;:::-;;22273:35;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27865:90;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28061:84;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26851:357;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21959:19;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22094:31;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22170:26;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4650:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12119:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22337:36;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27577:90;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23863:118;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16337:413;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22568:22;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22597:24;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27777:82;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;13531:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22540:21;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28151:80;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27284:143;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23989:130;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22684:23;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13769:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5559:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21985:50;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25561:221;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22628:20;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11900:100;11954:13;11987:5;11980:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11900:100;:::o;24127:130::-;4881:12;:10;:12::i;:::-;4870:23;;:7;:5;:7::i;:::-;:23;;;4862:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;24232:17:::1;24213:16;:36;;;;24127:130:::0;:::o;14067:169::-;14150:4;14167:39;14176:12;:10;:12::i;:::-;14190:7;14199:6;14167:8;:39::i;:::-;14224:4;14217:11;;14067:169;;;;:::o;22447:42::-;;;;;;;;;;;;;;;;;;;;;;:::o;13020:108::-;13081:7;13108:12;;13101:19;;13020:108;:::o;22132:31::-;;;;:::o;22655:22::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;23764:91::-;4881:12;:10;:12::i;:::-;4870:23;;:7;:5;:7::i;:::-;:23;;;4862:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;23839:8:::1;23829:7;;:18;;;;;;;;;;;;;;;;;;23764:91:::0;:::o;14718:492::-;14858:4;14875:36;14885:6;14893:9;14904:6;14875:9;:36::i;:::-;14924:24;14951:11;:19;14963:6;14951:19;;;;;;;;;;;;;;;:33;14971:12;:10;:12::i;:::-;14951:33;;;;;;;;;;;;;;;;14924:60;;15023:6;15003:16;:26;;14995:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;15110:57;15119:6;15127:12;:10;:12::i;:::-;15160:6;15141:16;:25;15110:8;:57::i;:::-;15198:4;15191:11;;;14718:492;;;;;:::o;22203:40::-;;;;:::o;12862:93::-;12920:5;12945:2;12938:9;;12862:93;:::o;15619:215::-;15707:4;15724:80;15733:12;:10;:12::i;:::-;15747:7;15793:10;15756:11;:25;15768:12;:10;:12::i;:::-;15756:25;;;;;;;;;;;;;;;:34;15782:7;15756:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;15724:8;:80::i;:::-;15822:4;15815:11;;15619:215;;;;:::o;28237:100::-;4881:12;:10;:12::i;:::-;4870:23;;:7;:5;:7::i;:::-;:23;;;4862:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;28321:13:::1;28306:12;:28;;;;28237:100:::0;:::o;27673:98::-;4881:12;:10;:12::i;:::-;4870:23;;:7;:5;:7::i;:::-;:23;;;4862:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;27757:11:::1;27744:10;:24;;;;;;:::i;:::-;;27673:98:::0;:::o;22773:27::-;;;;:::o;28343:68::-;4881:12;:10;:12::i;:::-;4870:23;;:7;:5;:7::i;:::-;:23;;;4862:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;28403:5:::1;28396:4;:12;;;;28343:68:::0;:::o;23566:135::-;4881:12;:10;:12::i;:::-;4870:23;;:7;:5;:7::i;:::-;:23;;;4862:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;23678:15:::1;23655:10;:20;23666:8;23655:20;;;;;;;;;;;;;;;;:38;;;;;;;;;;;;;;;;;;23566:135:::0;;:::o;25436:81::-;25485:24;25491:10;25503:5;25485;:24::i;:::-;25436:81;:::o;27961:94::-;4881:12;:10;:12::i;:::-;4870:23;;:7;:5;:7::i;:::-;:23;;;4862:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;28042:10:::1;28030:9;:22;;;;;;:::i;:::-;;27961:94:::0;:::o;22412:28::-;;;;;;;;;;;;;:::o;22744:22::-;;;;:::o;22714:23::-;;;;:::o;27485:86::-;4881:12;:10;:12::i;:::-;4870:23;;:7;:5;:7::i;:::-;:23;;;4862:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;27560:8:::1;27550:7;:18;;;;;;:::i;:::-;;27485:86:::0;:::o;22807:19::-;;;;:::o;13191:127::-;13265:7;13292:9;:18;13302:7;13292:18;;;;;;;;;;;;;;;;13285:25;;13191:127;;;:::o;5301:103::-;4881:12;:10;:12::i;:::-;4870:23;;:7;:5;:7::i;:::-;:23;;;4862:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5366:30:::1;5393:1;5366:18;:30::i;:::-;5301:103::o:0;22273:35::-;;;;:::o;27865:90::-;4881:12;:10;:12::i;:::-;4870:23;;:7;:5;:7::i;:::-;:23;;;4862:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;27943:9:::1;27932:8;:20;;;;;;:::i;:::-;;27865:90:::0;:::o;28061:84::-;4881:12;:10;:12::i;:::-;4870:23;;:7;:5;:7::i;:::-;:23;;;4862:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;28133:9:::1;28122:8;:20;;;;28061:84:::0;:::o;26851:357::-;4881:12;:10;:12::i;:::-;4870:23;;:7;:5;:7::i;:::-;:23;;;4862:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;26920:29:::1;26952:16;:24;26969:6;26952:24;;;;;;;;;;;;;;;26920:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;27082:4;27069:5;:10;;;:17;:40;;;;;27105:4;27090:5;:12;;;:19;27069:40;27065:136;;;27126:35;27132:6;27150:10;:8;:10::i;:::-;27144:2;:16;;;;:::i;:::-;27140:1;:20;;;;:::i;:::-;27126:5;:35::i;:::-;27065:136;26909:299;26851:357:::0;:::o;21959:19::-;;;;;;;;;;;;;:::o;22094:31::-;;;;:::o;22170:26::-;;;;:::o;4650:87::-;4696:7;4723:6;;;;;;;;;;;4716:13;;4650:87;:::o;12119:104::-;12175:13;12208:7;12201:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12119:104;:::o;22337:36::-;;;;:::o;27577:90::-;4881:12;:10;:12::i;:::-;4870:23;;:7;:5;:7::i;:::-;:23;;;4862:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;27655:9:::1;27644:8;:20;;;;;;:::i;:::-;;27577:90:::0;:::o;23863:118::-;4881:12;:10;:12::i;:::-;4870:23;;:7;:5;:7::i;:::-;:23;;;4862:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;23959:14:::1;23943:13;;:30;;;;;;;;;;;;;;;;;;23863:118:::0;:::o;16337:413::-;16430:4;16447:24;16474:11;:25;16486:12;:10;:12::i;:::-;16474:25;;;;;;;;;;;;;;;:34;16500:7;16474:34;;;;;;;;;;;;;;;;16447:61;;16547:15;16527:16;:35;;16519:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;16640:67;16649:12;:10;:12::i;:::-;16663:7;16691:15;16672:16;:34;16640:8;:67::i;:::-;16738:4;16731:11;;;16337:413;;;;:::o;22568:22::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;22597:24::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;27777:82::-;4881:12;:10;:12::i;:::-;4870:23;;:7;:5;:7::i;:::-;:23;;;4862:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;27849:7:::1;27840:6;:16;;;;;;:::i;:::-;;27777:82:::0;:::o;13531:175::-;13617:4;13634:42;13644:12;:10;:12::i;:::-;13658:9;13669:6;13634:9;:42::i;:::-;13694:4;13687:11;;13531:175;;;;:::o;22540:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;28151:80::-;4881:12;:10;:12::i;:::-;4870:23;;:7;:5;:7::i;:::-;:23;;;4862:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;28220:8:::1;28210:7;:18;;;;28151:80:::0;:::o;27284:143::-;27352:23;;:::i;:::-;27395:16;:24;27412:6;27395:24;;;;;;;;;;;;;;;27388:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27284:143;;;:::o;23989:130::-;4881:12;:10;:12::i;:::-;4870:23;;:7;:5;:7::i;:::-;:23;;;4862:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;24094:17:::1;24075:16;:36;;;;23989:130:::0;:::o;22684:23::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;13769:151::-;13858:7;13885:11;:18;13897:5;13885:18;;;;;;;;;;;;;;;:27;13904:7;13885:27;;;;;;;;;;;;;;;;13878:34;;13769:151;;;;:::o;5559:201::-;4881:12;:10;:12::i;:::-;4870:23;;:7;:5;:7::i;:::-;:23;;;4862:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5668:1:::1;5648:22;;:8;:22;;::::0;5640:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;5724:28;5743:8;5724:18;:28::i;:::-;5559:201:::0;:::o;21985:50::-;;;;:::o;25561:221::-;4881:12;:10;:12::i;:::-;4870:23;;:7;:5;:7::i;:::-;:23;;;4862:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;25666:1:::1;25643:20;25653:9;25643;:20::i;:::-;:24;25635:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;25708:38;25714:9;25735:10;:8;:10::i;:::-;25729:2;:16;;;;:::i;:::-;25725:1;:20;;;;:::i;:::-;25708:5;:38::i;:::-;25561:221:::0;:::o;22628:20::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;3368:98::-;3421:7;3448:10;3441:17;;3368:98;:::o;20021:380::-;20174:1;20157:19;;:5;:19;;;20149:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20255:1;20236:21;;:7;:21;;;20228:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20339:6;20309:11;:18;20321:5;20309:18;;;;;;;;;;;;;;;:27;20328:7;20309:27;;;;;;;;;;;;;;;:36;;;;20377:7;20361:32;;20370:5;20361:32;;;20386:6;20361:32;;;;;;:::i;:::-;;;;;;;;20021:380;;;:::o;17240:733::-;17398:1;17380:20;;:6;:20;;;17372:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;17482:1;17461:23;;:9;:23;;;17453:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;17537:47;17558:6;17566:9;17577:6;17537:20;:47::i;:::-;17597:21;17621:9;:17;17631:6;17621:17;;;;;;;;;;;;;;;;17597:41;;17674:6;17657:13;:23;;17649:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;17795:6;17779:13;:22;17759:9;:17;17769:6;17759:17;;;;;;;;;;;;;;;:42;;;;17847:6;17823:9;:20;17833:9;17823:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;17888:9;17871:35;;17880:6;17871:35;;;17899:6;17871:35;;;;;;:::i;:::-;;;;;;;;17919:46;17939:6;17947:9;17958:6;17919:19;:46::i;:::-;17361:612;17240:733;;;:::o;18992:591::-;19095:1;19076:21;;:7;:21;;;19068:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;19148:49;19169:7;19186:1;19190:6;19148:20;:49::i;:::-;19210:22;19235:9;:18;19245:7;19235:18;;;;;;;;;;;;;;;;19210:43;;19290:6;19272:14;:24;;19264:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;19409:6;19392:14;:23;19371:9;:18;19381:7;19371:18;;;;;;;;;;;;;;;:44;;;;19453:6;19437:12;;:22;;;;;;;:::i;:::-;;;;;;;;19503:1;19477:37;;19486:7;19477:37;;;19507:6;19477:37;;;;;;:::i;:::-;;;;;;;;19527:48;19547:7;19564:1;19568:6;19527:19;:48::i;:::-;19057:526;18992:591;;:::o;5920:191::-;5994:16;6013:6;;;;;;;;;;;5994:25;;6039:8;6030:6;;:17;;;;;;;;;;;;;;;;;;6094:8;6063:40;;6084:8;6063:40;;;;;;;;;;;;5983:128;5920:191;:::o;18260:399::-;18363:1;18344:21;;:7;:21;;;18336:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;18414:49;18443:1;18447:7;18456:6;18414:20;:49::i;:::-;18492:6;18476:12;;:22;;;;;;;:::i;:::-;;;;;;;;18531:6;18509:9;:18;18519:7;18509:18;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;18574:7;18553:37;;18570:1;18553:37;;;18583:6;18553:37;;;;;;:::i;:::-;;;;;;;;18603:48;18631:1;18635:7;18644:6;18603:19;:48::i;:::-;18260:399;;:::o;24265:1163::-;24383:10;:14;24394:2;24383:14;;;;;;;;;;;;;;;;;;;;;;;;;24382:15;:36;;;;;24402:10;:16;24413:4;24402:16;;;;;;;;;;;;;;;;;;;;;;;;;24401:17;24382:36;24374:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;24534:7;;;;;;;;;;;:38;;;;;24559:13;:11;:13::i;:::-;24545:11;;:27;24534:38;24530:257;;;24657:8;24638:15;;24619:16;;24605:11;;:30;;;;:::i;:::-;:48;;;;:::i;:::-;24604:61;;;;:::i;:::-;24589:11;;:76;;;;;;;:::i;:::-;;;;;;;;24699:13;:11;:13::i;:::-;24684:11;;:28;24680:96;;24747:13;:11;:13::i;:::-;24733:11;:27;;;;24680:96;24530:257;24828:1;24803:27;;:13;;;;;;;;;;;:27;;;24799:145;;24863:7;:5;:7::i;:::-;24855:15;;:4;:15;;;:32;;;;24880:7;:5;:7::i;:::-;24874:13;;:2;:13;;;24855:32;24847:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;24926:7;;24799:145;24960:7;;;;;;;;;;;:32;;;;;24979:13;;;;;;;;;;;24971:21;;:4;:21;;;24960:32;24956:465;;;25049:16;;25039:6;25017:19;25033:2;25017:15;:19::i;:::-;:28;;;;:::i;:::-;:48;;:100;;;;;25101:16;;25091:6;25069:19;25085:2;25069:15;:19::i;:::-;:28;;;;:::i;:::-;:48;;25017:100;25009:135;;;;;;;;;;;;:::i;:::-;;;;;;;;;25177:11;;25167:6;:21;;25159:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;25294:27;25318:2;25294:23;:27::i;:::-;24956:465;24265:1163;;;;:::o;21730:124::-;;;;:::o;25837:650::-;25932:547;;;;;;;;25963:25;25980:1;25983:4;25963:16;:25::i;:::-;25932:547;;;;26014:25;26031:1;26034:4;26014:16;:25::i;:::-;25932:547;;;;26066:25;26083:1;26086:4;26066:16;:25::i;:::-;25932:547;;;;26120:25;26137:1;26140:4;26120:16;:25::i;:::-;25932:547;;;;26170:25;26187:1;26190:4;26170:16;:25::i;:::-;25932:547;;;;26222:25;26239:1;26242:4;26222:16;:25::i;:::-;25932:547;;;;26275:25;26292:1;26295:4;26275:16;:25::i;:::-;25932:547;;;;26327:25;26344:1;26347:4;26327:16;:25::i;:::-;25932:547;;;;26378:25;26395:1;26398:4;26378:16;:25::i;:::-;25932:547;;;;26434:25;26451:1;26454:4;26434:16;:25::i;:::-;25932:547;;;25905:16;:24;25922:6;25905:24;;;;;;;;;;;;;;;:574;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25837:650;:::o;26549:212::-;26623:7;26750:3;26745:1;26739:3;26733;:9;;;;:::i;:::-;:13;;;;:::i;:::-;26681:15;26698:16;26716:10;26664:63;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;26654:74;;;;;;26646:83;;:101;;;;:::i;:::-;:107;;;;:::i;:::-;26639:114;;26549:212;;;;:::o;-1:-1:-1:-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:139::-;376:6;371:3;366;360:23;417:1;408:6;403:3;399:16;392:27;287:139;;;:::o;432:102::-;473:6;524:2;520:7;515:2;508:5;504:14;500:28;490:38;;432:102;;;:::o;540:377::-;628:3;656:39;689:5;656:39;:::i;:::-;711:71;775:6;770:3;711:71;:::i;:::-;704:78;;791:65;849:6;844:3;837:4;830:5;826:16;791:65;:::i;:::-;881:29;903:6;881:29;:::i;:::-;876:3;872:39;865:46;;632:285;540:377;;;;:::o;923:313::-;1036:4;1074:2;1063:9;1059:18;1051:26;;1123:9;1117:4;1113:20;1109:1;1098:9;1094:17;1087:47;1151:78;1224:4;1215:6;1151:78;:::i;:::-;1143:86;;923:313;;;;:::o;1242:75::-;1275:6;1308:2;1302:9;1292:19;;1242:75;:::o;1323:117::-;1432:1;1429;1422:12;1446:117;1555:1;1552;1545:12;1569:77;1606:7;1635:5;1624:16;;1569:77;;;:::o;1652:122::-;1725:24;1743:5;1725:24;:::i;:::-;1718:5;1715:35;1705:63;;1764:1;1761;1754:12;1705:63;1652:122;:::o;1780:139::-;1826:5;1864:6;1851:20;1842:29;;1880:33;1907:5;1880:33;:::i;:::-;1780:139;;;;:::o;1925:329::-;1984:6;2033:2;2021:9;2012:7;2008:23;2004:32;2001:119;;;2039:79;;:::i;:::-;2001:119;2159:1;2184:53;2229:7;2220:6;2209:9;2205:22;2184:53;:::i;:::-;2174:63;;2130:117;1925:329;;;;:::o;2260:126::-;2297:7;2337:42;2330:5;2326:54;2315:65;;2260:126;;;:::o;2392:96::-;2429:7;2458:24;2476:5;2458:24;:::i;:::-;2447:35;;2392:96;;;:::o;2494:122::-;2567:24;2585:5;2567:24;:::i;:::-;2560:5;2557:35;2547:63;;2606:1;2603;2596:12;2547:63;2494:122;:::o;2622:139::-;2668:5;2706:6;2693:20;2684:29;;2722:33;2749:5;2722:33;:::i;:::-;2622:139;;;;:::o;2767:474::-;2835:6;2843;2892:2;2880:9;2871:7;2867:23;2863:32;2860:119;;;2898:79;;:::i;:::-;2860:119;3018:1;3043:53;3088:7;3079:6;3068:9;3064:22;3043:53;:::i;:::-;3033:63;;2989:117;3145:2;3171:53;3216:7;3207:6;3196:9;3192:22;3171:53;:::i;:::-;3161:63;;3116:118;2767:474;;;;;:::o;3247:90::-;3281:7;3324:5;3317:13;3310:21;3299:32;;3247:90;;;:::o;3343:109::-;3424:21;3439:5;3424:21;:::i;:::-;3419:3;3412:34;3343:109;;:::o;3458:210::-;3545:4;3583:2;3572:9;3568:18;3560:26;;3596:65;3658:1;3647:9;3643:17;3634:6;3596:65;:::i;:::-;3458:210;;;;:::o;3674:329::-;3733:6;3782:2;3770:9;3761:7;3757:23;3753:32;3750:119;;;3788:79;;:::i;:::-;3750:119;3908:1;3933:53;3978:7;3969:6;3958:9;3954:22;3933:53;:::i;:::-;3923:63;;3879:117;3674:329;;;;:::o;4009:118::-;4096:24;4114:5;4096:24;:::i;:::-;4091:3;4084:37;4009:118;;:::o;4133:222::-;4226:4;4264:2;4253:9;4249:18;4241:26;;4277:71;4345:1;4334:9;4330:17;4321:6;4277:71;:::i;:::-;4133:222;;;;:::o;4361:116::-;4431:21;4446:5;4431:21;:::i;:::-;4424:5;4421:32;4411:60;;4467:1;4464;4457:12;4411:60;4361:116;:::o;4483:133::-;4526:5;4564:6;4551:20;4542:29;;4580:30;4604:5;4580:30;:::i;:::-;4483:133;;;;:::o;4622:323::-;4678:6;4727:2;4715:9;4706:7;4702:23;4698:32;4695:119;;;4733:79;;:::i;:::-;4695:119;4853:1;4878:50;4920:7;4911:6;4900:9;4896:22;4878:50;:::i;:::-;4868:60;;4824:114;4622:323;;;;:::o;4951:619::-;5028:6;5036;5044;5093:2;5081:9;5072:7;5068:23;5064:32;5061:119;;;5099:79;;:::i;:::-;5061:119;5219:1;5244:53;5289:7;5280:6;5269:9;5265:22;5244:53;:::i;:::-;5234:63;;5190:117;5346:2;5372:53;5417:7;5408:6;5397:9;5393:22;5372:53;:::i;:::-;5362:63;;5317:118;5474:2;5500:53;5545:7;5536:6;5525:9;5521:22;5500:53;:::i;:::-;5490:63;;5445:118;4951:619;;;;;:::o;5576:86::-;5611:7;5651:4;5644:5;5640:16;5629:27;;5576:86;;;:::o;5668:112::-;5751:22;5767:5;5751:22;:::i;:::-;5746:3;5739:35;5668:112;;:::o;5786:214::-;5875:4;5913:2;5902:9;5898:18;5890:26;;5926:67;5990:1;5979:9;5975:17;5966:6;5926:67;:::i;:::-;5786:214;;;;:::o;6006:117::-;6115:1;6112;6105:12;6129:117;6238:1;6235;6228:12;6252:180;6300:77;6297:1;6290:88;6397:4;6394:1;6387:15;6421:4;6418:1;6411:15;6438:281;6521:27;6543:4;6521:27;:::i;:::-;6513:6;6509:40;6651:6;6639:10;6636:22;6615:18;6603:10;6600:34;6597:62;6594:88;;;6662:18;;:::i;:::-;6594:88;6702:10;6698:2;6691:22;6481:238;6438:281;;:::o;6725:129::-;6759:6;6786:20;;:::i;:::-;6776:30;;6815:33;6843:4;6835:6;6815:33;:::i;:::-;6725:129;;;:::o;6860:308::-;6922:4;7012:18;7004:6;7001:30;6998:56;;;7034:18;;:::i;:::-;6998:56;7072:29;7094:6;7072:29;:::i;:::-;7064:37;;7156:4;7150;7146:15;7138:23;;6860:308;;;:::o;7174:148::-;7272:6;7267:3;7262;7249:30;7313:1;7304:6;7299:3;7295:16;7288:27;7174:148;;;:::o;7328:425::-;7406:5;7431:66;7447:49;7489:6;7447:49;:::i;:::-;7431:66;:::i;:::-;7422:75;;7520:6;7513:5;7506:21;7558:4;7551:5;7547:16;7596:3;7587:6;7582:3;7578:16;7575:25;7572:112;;;7603:79;;:::i;:::-;7572:112;7693:54;7740:6;7735:3;7730;7693:54;:::i;:::-;7412:341;7328:425;;;;;:::o;7773:340::-;7829:5;7878:3;7871:4;7863:6;7859:17;7855:27;7845:122;;7886:79;;:::i;:::-;7845:122;8003:6;7990:20;8028:79;8103:3;8095:6;8088:4;8080:6;8076:17;8028:79;:::i;:::-;8019:88;;7835:278;7773:340;;;;:::o;8119:509::-;8188:6;8237:2;8225:9;8216:7;8212:23;8208:32;8205:119;;;8243:79;;:::i;:::-;8205:119;8391:1;8380:9;8376:17;8363:31;8421:18;8413:6;8410:30;8407:117;;;8443:79;;:::i;:::-;8407:117;8548:63;8603:7;8594:6;8583:9;8579:22;8548:63;:::i;:::-;8538:73;;8334:287;8119:509;;;;:::o;8634:468::-;8699:6;8707;8756:2;8744:9;8735:7;8731:23;8727:32;8724:119;;;8762:79;;:::i;:::-;8724:119;8882:1;8907:53;8952:7;8943:6;8932:9;8928:22;8907:53;:::i;:::-;8897:63;;8853:117;9009:2;9035:50;9077:7;9068:6;9057:9;9053:22;9035:50;:::i;:::-;9025:60;;8980:115;8634:468;;;;;:::o;9108:118::-;9195:24;9213:5;9195:24;:::i;:::-;9190:3;9183:37;9108:118;;:::o;9232:222::-;9325:4;9363:2;9352:9;9348:18;9340:26;;9376:71;9444:1;9433:9;9429:17;9420:6;9376:71;:::i;:::-;9232:222;;;;:::o;9460:108::-;9537:24;9555:5;9537:24;:::i;:::-;9532:3;9525:37;9460:108;;:::o;9678:1964::-;9841:6;9836:3;9832:16;9933:4;9926:5;9922:16;9916:23;9952:63;10009:4;10004:3;10000:14;9986:12;9952:63;:::i;:::-;9858:167;10111:4;10104:5;10100:16;10094:23;10130:63;10187:4;10182:3;10178:14;10164:12;10130:63;:::i;:::-;10035:168;10291:4;10284:5;10280:16;10274:23;10310:63;10367:4;10362:3;10358:14;10344:12;10310:63;:::i;:::-;10213:170;10467:4;10460:5;10456:16;10450:23;10486:63;10543:4;10538:3;10534:14;10520:12;10486:63;:::i;:::-;10393:166;10645:4;10638:5;10634:16;10628:23;10664:63;10721:4;10716:3;10712:14;10698:12;10664:63;:::i;:::-;10569:168;10824:4;10817:5;10813:16;10807:23;10843:63;10900:4;10895:3;10891:14;10877:12;10843:63;:::i;:::-;10747:169;11002:4;10995:5;10991:16;10985:23;11021:63;11078:4;11073:3;11069:14;11055:12;11021:63;:::i;:::-;10926:168;11179:4;11172:5;11168:16;11162:23;11198:63;11255:4;11250:3;11246:14;11232:12;11198:63;:::i;:::-;11104:167;11361:6;11354:5;11350:18;11344:25;11382:65;11439:6;11434:3;11430:16;11416:12;11382:65;:::i;:::-;11281:176;11539:6;11532:5;11528:18;11522:25;11560:65;11617:6;11612:3;11608:16;11594:12;11560:65;:::i;:::-;11467:168;9810:1832;9678:1964;;:::o;11648:355::-;11807:4;11845:3;11834:9;11830:19;11822:27;;11859:137;11993:1;11982:9;11978:17;11969:6;11859:137;:::i;:::-;11648:355;;;;:::o;12009:474::-;12077:6;12085;12134:2;12122:9;12113:7;12109:23;12105:32;12102:119;;;12140:79;;:::i;:::-;12102:119;12260:1;12285:53;12330:7;12321:6;12310:9;12306:22;12285:53;:::i;:::-;12275:63;;12231:117;12387:2;12413:53;12458:7;12449:6;12438:9;12434:22;12413:53;:::i;:::-;12403:63;;12358:118;12009:474;;;;;:::o;12489:180::-;12537:77;12534:1;12527:88;12634:4;12631:1;12624:15;12658:4;12655:1;12648:15;12675:320;12719:6;12756:1;12750:4;12746:12;12736:22;;12803:1;12797:4;12793:12;12824:18;12814:81;;12880:4;12872:6;12868:17;12858:27;;12814:81;12942:2;12934:6;12931:14;12911:18;12908:38;12905:84;;12961:18;;:::i;:::-;12905:84;12726:269;12675:320;;;:::o;13001:182::-;13141:34;13137:1;13129:6;13125:14;13118:58;13001:182;:::o;13189:366::-;13331:3;13352:67;13416:2;13411:3;13352:67;:::i;:::-;13345:74;;13428:93;13517:3;13428:93;:::i;:::-;13546:2;13541:3;13537:12;13530:19;;13189:366;;;:::o;13561:419::-;13727:4;13765:2;13754:9;13750:18;13742:26;;13814:9;13808:4;13804:20;13800:1;13789:9;13785:17;13778:47;13842:131;13968:4;13842:131;:::i;:::-;13834:139;;13561:419;;;:::o;13986:227::-;14126:34;14122:1;14114:6;14110:14;14103:58;14195:10;14190:2;14182:6;14178:15;14171:35;13986:227;:::o;14219:366::-;14361:3;14382:67;14446:2;14441:3;14382:67;:::i;:::-;14375:74;;14458:93;14547:3;14458:93;:::i;:::-;14576:2;14571:3;14567:12;14560:19;;14219:366;;;:::o;14591:419::-;14757:4;14795:2;14784:9;14780:18;14772:26;;14844:9;14838:4;14834:20;14830:1;14819:9;14815:17;14808:47;14872:131;14998:4;14872:131;:::i;:::-;14864:139;;14591:419;;;:::o;15016:180::-;15064:77;15061:1;15054:88;15161:4;15158:1;15151:15;15185:4;15182:1;15175:15;15202:191;15242:3;15261:20;15279:1;15261:20;:::i;:::-;15256:25;;15295:20;15313:1;15295:20;:::i;:::-;15290:25;;15338:1;15335;15331:9;15324:16;;15359:3;15356:1;15353:10;15350:36;;;15366:18;;:::i;:::-;15350:36;15202:191;;;;:::o;15399:141::-;15448:4;15471:3;15463:11;;15494:3;15491:1;15484:14;15528:4;15525:1;15515:18;15507:26;;15399:141;;;:::o;15546:93::-;15583:6;15630:2;15625;15618:5;15614:14;15610:23;15600:33;;15546:93;;;:::o;15645:107::-;15689:8;15739:5;15733:4;15729:16;15708:37;;15645:107;;;;:::o;15758:393::-;15827:6;15877:1;15865:10;15861:18;15900:97;15930:66;15919:9;15900:97;:::i;:::-;16018:39;16048:8;16037:9;16018:39;:::i;:::-;16006:51;;16090:4;16086:9;16079:5;16075:21;16066:30;;16139:4;16129:8;16125:19;16118:5;16115:30;16105:40;;15834:317;;15758:393;;;;;:::o;16157:60::-;16185:3;16206:5;16199:12;;16157:60;;;:::o;16223:142::-;16273:9;16306:53;16324:34;16333:24;16351:5;16333:24;:::i;:::-;16324:34;:::i;:::-;16306:53;:::i;:::-;16293:66;;16223:142;;;:::o;16371:75::-;16414:3;16435:5;16428:12;;16371:75;;;:::o;16452:269::-;16562:39;16593:7;16562:39;:::i;:::-;16623:91;16672:41;16696:16;16672:41;:::i;:::-;16664:6;16657:4;16651:11;16623:91;:::i;:::-;16617:4;16610:105;16528:193;16452:269;;;:::o;16727:73::-;16772:3;16793:1;16786:8;;16727:73;:::o;16806:189::-;16883:32;;:::i;:::-;16924:65;16982:6;16974;16968:4;16924:65;:::i;:::-;16859:136;16806:189;;:::o;17001:186::-;17061:120;17078:3;17071:5;17068:14;17061:120;;;17132:39;17169:1;17162:5;17132:39;:::i;:::-;17105:1;17098:5;17094:13;17085:22;;17061:120;;;17001:186;;:::o;17193:543::-;17294:2;17289:3;17286:11;17283:446;;;17328:38;17360:5;17328:38;:::i;:::-;17412:29;17430:10;17412:29;:::i;:::-;17402:8;17398:44;17595:2;17583:10;17580:18;17577:49;;;17616:8;17601:23;;17577:49;17639:80;17695:22;17713:3;17695:22;:::i;:::-;17685:8;17681:37;17668:11;17639:80;:::i;:::-;17298:431;;17283:446;17193:543;;;:::o;17742:117::-;17796:8;17846:5;17840:4;17836:16;17815:37;;17742:117;;;;:::o;17865:169::-;17909:6;17942:51;17990:1;17986:6;17978:5;17975:1;17971:13;17942:51;:::i;:::-;17938:56;18023:4;18017;18013:15;18003:25;;17916:118;17865:169;;;;:::o;18039:295::-;18115:4;18261:29;18286:3;18280:4;18261:29;:::i;:::-;18253:37;;18323:3;18320:1;18316:11;18310:4;18307:21;18299:29;;18039:295;;;;:::o;18339:1395::-;18456:37;18489:3;18456:37;:::i;:::-;18558:18;18550:6;18547:30;18544:56;;;18580:18;;:::i;:::-;18544:56;18624:38;18656:4;18650:11;18624:38;:::i;:::-;18709:67;18769:6;18761;18755:4;18709:67;:::i;:::-;18803:1;18827:4;18814:17;;18859:2;18851:6;18848:14;18876:1;18871:618;;;;19533:1;19550:6;19547:77;;;19599:9;19594:3;19590:19;19584:26;19575:35;;19547:77;19650:67;19710:6;19703:5;19650:67;:::i;:::-;19644:4;19637:81;19506:222;18841:887;;18871:618;18923:4;18919:9;18911:6;18907:22;18957:37;18989:4;18957:37;:::i;:::-;19016:1;19030:208;19044:7;19041:1;19038:14;19030:208;;;19123:9;19118:3;19114:19;19108:26;19100:6;19093:42;19174:1;19166:6;19162:14;19152:24;;19221:2;19210:9;19206:18;19193:31;;19067:4;19064:1;19060:12;19055:17;;19030:208;;;19266:6;19257:7;19254:19;19251:179;;;19324:9;19319:3;19315:19;19309:26;19367:48;19409:4;19401:6;19397:17;19386:9;19367:48;:::i;:::-;19359:6;19352:64;19274:156;19251:179;19476:1;19472;19464:6;19460:14;19456:22;19450:4;19443:36;18878:611;;;18841:887;;18431:1303;;;18339:1395;;:::o;19740:102::-;19782:8;19829:5;19826:1;19822:13;19801:34;;19740:102;;;:::o;19848:848::-;19909:5;19916:4;19940:6;19931:15;;19964:5;19955:14;;19978:712;19999:1;19989:8;19986:15;19978:712;;;20094:4;20089:3;20085:14;20079:4;20076:24;20073:50;;;20103:18;;:::i;:::-;20073:50;20153:1;20143:8;20139:16;20136:451;;;20568:4;20561:5;20557:16;20548:25;;20136:451;20618:4;20612;20608:15;20600:23;;20648:32;20671:8;20648:32;:::i;:::-;20636:44;;19978:712;;;19848:848;;;;;;;:::o;20702:1073::-;20756:5;20947:8;20937:40;;20968:1;20959:10;;20970:5;;20937:40;20996:4;20986:36;;21013:1;21004:10;;21015:5;;20986:36;21082:4;21130:1;21125:27;;;;21166:1;21161:191;;;;21075:277;;21125:27;21143:1;21134:10;;21145:5;;;21161:191;21206:3;21196:8;21193:17;21190:43;;;21213:18;;:::i;:::-;21190:43;21262:8;21259:1;21255:16;21246:25;;21297:3;21290:5;21287:14;21284:40;;;21304:18;;:::i;:::-;21284:40;21337:5;;;21075:277;;21461:2;21451:8;21448:16;21442:3;21436:4;21433:13;21429:36;21411:2;21401:8;21398:16;21393:2;21387:4;21384:12;21380:35;21364:111;21361:246;;;21517:8;21511:4;21507:19;21498:28;;21552:3;21545:5;21542:14;21539:40;;;21559:18;;:::i;:::-;21539:40;21592:5;;21361:246;21632:42;21670:3;21660:8;21654:4;21651:1;21632:42;:::i;:::-;21617:57;;;;21706:4;21701:3;21697:14;21690:5;21687:25;21684:51;;;21715:18;;:::i;:::-;21684:51;21764:4;21757:5;21753:16;21744:25;;20702:1073;;;;;;:::o;21781:281::-;21839:5;21863:23;21881:4;21863:23;:::i;:::-;21855:31;;21907:25;21923:8;21907:25;:::i;:::-;21895:37;;21951:104;21988:66;21978:8;21972:4;21951:104;:::i;:::-;21942:113;;21781:281;;;;:::o;22068:410::-;22108:7;22131:20;22149:1;22131:20;:::i;:::-;22126:25;;22165:20;22183:1;22165:20;:::i;:::-;22160:25;;22220:1;22217;22213:9;22242:30;22260:11;22242:30;:::i;:::-;22231:41;;22421:1;22412:7;22408:15;22405:1;22402:22;22382:1;22375:9;22355:83;22332:139;;22451:18;;:::i;:::-;22332:139;22116:362;22068:410;;;;:::o;22484:224::-;22624:34;22620:1;22612:6;22608:14;22601:58;22693:7;22688:2;22680:6;22676:15;22669:32;22484:224;:::o;22714:366::-;22856:3;22877:67;22941:2;22936:3;22877:67;:::i;:::-;22870:74;;22953:93;23042:3;22953:93;:::i;:::-;23071:2;23066:3;23062:12;23055:19;;22714:366;;;:::o;23086:419::-;23252:4;23290:2;23279:9;23275:18;23267:26;;23339:9;23333:4;23329:20;23325:1;23314:9;23310:17;23303:47;23367:131;23493:4;23367:131;:::i;:::-;23359:139;;23086:419;;;:::o;23511:225::-;23651:34;23647:1;23639:6;23635:14;23628:58;23720:8;23715:2;23707:6;23703:15;23696:33;23511:225;:::o;23742:366::-;23884:3;23905:67;23969:2;23964:3;23905:67;:::i;:::-;23898:74;;23981:93;24070:3;23981:93;:::i;:::-;24099:2;24094:3;24090:12;24083:19;;23742:366;;;:::o;24114:419::-;24280:4;24318:2;24307:9;24303:18;24295:26;;24367:9;24361:4;24357:20;24353:1;24342:9;24338:17;24331:47;24395:131;24521:4;24395:131;:::i;:::-;24387:139;;24114:419;;;:::o;24539:175::-;24679:27;24675:1;24667:6;24663:14;24656:51;24539:175;:::o;24720:366::-;24862:3;24883:67;24947:2;24942:3;24883:67;:::i;:::-;24876:74;;24959:93;25048:3;24959:93;:::i;:::-;25077:2;25072:3;25068:12;25061:19;;24720:366;;;:::o;25092:419::-;25258:4;25296:2;25285:9;25281:18;25273:26;;25345:9;25339:4;25335:20;25331:1;25320:9;25316:17;25309:47;25373:131;25499:4;25373:131;:::i;:::-;25365:139;;25092:419;;;:::o;25517:223::-;25657:34;25653:1;25645:6;25641:14;25634:58;25726:6;25721:2;25713:6;25709:15;25702:31;25517:223;:::o;25746:366::-;25888:3;25909:67;25973:2;25968:3;25909:67;:::i;:::-;25902:74;;25985:93;26074:3;25985:93;:::i;:::-;26103:2;26098:3;26094:12;26087:19;;25746:366;;;:::o;26118:419::-;26284:4;26322:2;26311:9;26307:18;26299:26;;26371:9;26365:4;26361:20;26357:1;26346:9;26342:17;26335:47;26399:131;26525:4;26399:131;:::i;:::-;26391:139;;26118:419;;;:::o;26543:221::-;26683:34;26679:1;26671:6;26667:14;26660:58;26752:4;26747:2;26739:6;26735:15;26728:29;26543:221;:::o;26770:366::-;26912:3;26933:67;26997:2;26992:3;26933:67;:::i;:::-;26926:74;;27009:93;27098:3;27009:93;:::i;:::-;27127:2;27122:3;27118:12;27111:19;;26770:366;;;:::o;27142:419::-;27308:4;27346:2;27335:9;27331:18;27323:26;;27395:9;27389:4;27385:20;27381:1;27370:9;27366:17;27359:47;27423:131;27549:4;27423:131;:::i;:::-;27415:139;;27142:419;;;:::o;27567:224::-;27707:34;27703:1;27695:6;27691:14;27684:58;27776:7;27771:2;27763:6;27759:15;27752:32;27567:224;:::o;27797:366::-;27939:3;27960:67;28024:2;28019:3;27960:67;:::i;:::-;27953:74;;28036:93;28125:3;28036:93;:::i;:::-;28154:2;28149:3;28145:12;28138:19;;27797:366;;;:::o;28169:419::-;28335:4;28373:2;28362:9;28358:18;28350:26;;28422:9;28416:4;28412:20;28408:1;28397:9;28393:17;28386:47;28450:131;28576:4;28450:131;:::i;:::-;28442:139;;28169:419;;;:::o;28594:222::-;28734:34;28730:1;28722:6;28718:14;28711:58;28803:5;28798:2;28790:6;28786:15;28779:30;28594:222;:::o;28822:366::-;28964:3;28985:67;29049:2;29044:3;28985:67;:::i;:::-;28978:74;;29061:93;29150:3;29061:93;:::i;:::-;29179:2;29174:3;29170:12;29163:19;;28822:366;;;:::o;29194:419::-;29360:4;29398:2;29387:9;29383:18;29375:26;;29447:9;29441:4;29437:20;29433:1;29422:9;29418:17;29411:47;29475:131;29601:4;29475:131;:::i;:::-;29467:139;;29194:419;;;:::o;29619:225::-;29759:34;29755:1;29747:6;29743:14;29736:58;29828:8;29823:2;29815:6;29811:15;29804:33;29619:225;:::o;29850:366::-;29992:3;30013:67;30077:2;30072:3;30013:67;:::i;:::-;30006:74;;30089:93;30178:3;30089:93;:::i;:::-;30207:2;30202:3;30198:12;30191:19;;29850:366;;;:::o;30222:419::-;30388:4;30426:2;30415:9;30411:18;30403:26;;30475:9;30469:4;30465:20;30461:1;30450:9;30446:17;30439:47;30503:131;30629:4;30503:131;:::i;:::-;30495:139;;30222:419;;;:::o;30647:220::-;30787:34;30783:1;30775:6;30771:14;30764:58;30856:3;30851:2;30843:6;30839:15;30832:28;30647:220;:::o;30873:366::-;31015:3;31036:67;31100:2;31095:3;31036:67;:::i;:::-;31029:74;;31112:93;31201:3;31112:93;:::i;:::-;31230:2;31225:3;31221:12;31214:19;;30873:366;;;:::o;31245:419::-;31411:4;31449:2;31438:9;31434:18;31426:26;;31498:9;31492:4;31488:20;31484:1;31473:9;31469:17;31462:47;31526:131;31652:4;31526:131;:::i;:::-;31518:139;;31245:419;;;:::o;31670:221::-;31810:34;31806:1;31798:6;31794:14;31787:58;31879:4;31874:2;31866:6;31862:15;31855:29;31670:221;:::o;31897:366::-;32039:3;32060:67;32124:2;32119:3;32060:67;:::i;:::-;32053:74;;32136:93;32225:3;32136:93;:::i;:::-;32254:2;32249:3;32245:12;32238:19;;31897:366;;;:::o;32269:419::-;32435:4;32473:2;32462:9;32458:18;32450:26;;32522:9;32516:4;32512:20;32508:1;32497:9;32493:17;32486:47;32550:131;32676:4;32550:131;:::i;:::-;32542:139;;32269:419;;;:::o;32694:194::-;32734:4;32754:20;32772:1;32754:20;:::i;:::-;32749:25;;32788:20;32806:1;32788:20;:::i;:::-;32783:25;;32832:1;32829;32825:9;32817:17;;32856:1;32850:4;32847:11;32844:37;;;32861:18;;:::i;:::-;32844:37;32694:194;;;;:::o;32894:181::-;33034:33;33030:1;33022:6;33018:14;33011:57;32894:181;:::o;33081:366::-;33223:3;33244:67;33308:2;33303:3;33244:67;:::i;:::-;33237:74;;33320:93;33409:3;33320:93;:::i;:::-;33438:2;33433:3;33429:12;33422:19;;33081:366;;;:::o;33453:419::-;33619:4;33657:2;33646:9;33642:18;33634:26;;33706:9;33700:4;33696:20;33692:1;33681:9;33677:17;33670:47;33734:131;33860:4;33734:131;:::i;:::-;33726:139;;33453:419;;;:::o;33878:161::-;34018:13;34014:1;34006:6;34002:14;33995:37;33878:161;:::o;34045:366::-;34187:3;34208:67;34272:2;34267:3;34208:67;:::i;:::-;34201:74;;34284:93;34373:3;34284:93;:::i;:::-;34402:2;34397:3;34393:12;34386:19;;34045:366;;;:::o;34417:419::-;34583:4;34621:2;34610:9;34606:18;34598:26;;34670:9;34664:4;34660:20;34656:1;34645:9;34641:17;34634:47;34698:131;34824:4;34698:131;:::i;:::-;34690:139;;34417:419;;;:::o;34842:180::-;34890:77;34887:1;34880:88;34987:4;34984:1;34977:15;35011:4;35008:1;35001:15;35028:185;35068:1;35085:20;35103:1;35085:20;:::i;:::-;35080:25;;35119:20;35137:1;35119:20;:::i;:::-;35114:25;;35158:1;35148:35;;35163:18;;:::i;:::-;35148:35;35205:1;35202;35198:9;35193:14;;35028:185;;;;:::o;35219:169::-;35359:21;35355:1;35347:6;35343:14;35336:45;35219:169;:::o;35394:366::-;35536:3;35557:67;35621:2;35616:3;35557:67;:::i;:::-;35550:74;;35633:93;35722:3;35633:93;:::i;:::-;35751:2;35746:3;35742:12;35735:19;;35394:366;;;:::o;35766:419::-;35932:4;35970:2;35959:9;35955:18;35947:26;;36019:9;36013:4;36009:20;36005:1;35994:9;35990:17;35983:47;36047:131;36173:4;36047:131;:::i;:::-;36039:139;;35766:419;;;:::o;36191:172::-;36331:24;36327:1;36319:6;36315:14;36308:48;36191:172;:::o;36369:366::-;36511:3;36532:67;36596:2;36591:3;36532:67;:::i;:::-;36525:74;;36608:93;36697:3;36608:93;:::i;:::-;36726:2;36721:3;36717:12;36710:19;;36369:366;;;:::o;36741:419::-;36907:4;36945:2;36934:9;36930:18;36922:26;;36994:9;36988:4;36984:20;36980:1;36969:9;36965:17;36958:47;37022:131;37148:4;37022:131;:::i;:::-;37014:139;;36741:419;;;:::o;37166:180::-;37306:32;37302:1;37294:6;37290:14;37283:56;37166:180;:::o;37352:366::-;37494:3;37515:67;37579:2;37574:3;37515:67;:::i;:::-;37508:74;;37591:93;37680:3;37591:93;:::i;:::-;37709:2;37704:3;37700:12;37693:19;;37352:366;;;:::o;37724:419::-;37890:4;37928:2;37917:9;37913:18;37905:26;;37977:9;37971:4;37967:20;37963:1;37952:9;37948:17;37941:47;38005:131;38131:4;38005:131;:::i;:::-;37997:139;;37724:419;;;:::o;38149:79::-;38188:7;38217:5;38206:16;;38149:79;;;:::o;38234:157::-;38339:45;38359:24;38377:5;38359:24;:::i;:::-;38339:45;:::i;:::-;38334:3;38327:58;38234:157;;:::o;38397:94::-;38430:8;38478:5;38474:2;38470:14;38449:35;;38397:94;;;:::o;38497:::-;38536:7;38565:20;38579:5;38565:20;:::i;:::-;38554:31;;38497:94;;;:::o;38597:100::-;38636:7;38665:26;38685:5;38665:26;:::i;:::-;38654:37;;38597:100;;;:::o;38703:157::-;38808:45;38828:24;38846:5;38828:24;:::i;:::-;38808:45;:::i;:::-;38803:3;38796:58;38703:157;;:::o;38866:538::-;39034:3;39049:75;39120:3;39111:6;39049:75;:::i;:::-;39149:2;39144:3;39140:12;39133:19;;39162:75;39233:3;39224:6;39162:75;:::i;:::-;39262:2;39257:3;39253:12;39246:19;;39275:75;39346:3;39337:6;39275:75;:::i;:::-;39375:2;39370:3;39366:12;39359:19;;39395:3;39388:10;;38866:538;;;;;;:::o;39410:176::-;39442:1;39459:20;39477:1;39459:20;:::i;:::-;39454:25;;39493:20;39511:1;39493:20;:::i;:::-;39488:25;;39532:1;39522:35;;39537:18;;:::i;:::-;39522:35;39578:1;39575;39571:9;39566:14;;39410:176;;;;:::o

Swarm Source

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