ETH Price: $3,048.26 (+1.28%)
Gas: 4 Gwei

Token

Auditchain (AUDT)
 

Overview

Max Total Supply

255,500,000 AUDT

Holders

284 (0.00%)

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
2,056 AUDT

Value
$0.00
0xd9a91da363ed24286de12597ca1dde25d1069803
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Auditchain is a decentralized accounting, audit, and financial reporting virtual machine that automates the world's business and financial information.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
AuditToken

Compiler Version
v0.7.6+commit.7338295f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-05-09
*/

pragma solidity =0.7.6;

// SPDX-License-Identifier: MIT



/*
 * @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 GSN 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 payable) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes memory) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}





/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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





/**
 * @dev Wrappers over Solidity's arithmetic operations with added overflow
 * checks.
 *
 * Arithmetic operations in Solidity wrap on overflow. This can easily result
 * in bugs, because programmers usually assume that an overflow raises an
 * error, which is the standard behavior in high level programming languages.
 * `SafeMath` restores this intuition by reverting the transaction when an
 * operation overflows.
 *
 * Using this library instead of the unchecked operations eliminates an entire
 * class of bugs, so it's recommended to use it always.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        uint256 c = a + b;
        if (c < a) return (false, 0);
        return (true, c);
    }

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

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

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

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

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

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

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

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

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

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

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

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









/**
 * @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 guidelines: functions revert instead
 * of 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 {
    using SafeMath for uint256;

    mapping (address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;
    uint8 private _decimals;

    /**
     * @dev Sets the values for {name} and {symbol}, initializes {decimals} with
     * a default value of 18.
     *
     * To select a different value for {decimals}, use {_setupDecimals}.
     *
     * All three of these values are immutable: they can only be set once during
     * construction.
     */
    constructor (string memory name_, string memory symbol_) public {
        _name = name_;
        _symbol = symbol_;
        _decimals = 18;
    }

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

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view virtual 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 {_setupDecimals} is
     * called.
     *
     * 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 returns (uint8) {
        return _decimals;
    }

    /**
     * @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);
        _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance"));
        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].add(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) {
        _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero"));
        return true;
    }

    /**
     * @dev Moves tokens `amount` from `sender` to `recipient`.
     *
     * This is 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);

        _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance");
        _balances[recipient] = _balances[recipient].add(amount);
        emit Transfer(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:
     *
     * - `to` 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 = _totalSupply.add(amount);
        _balances[account] = _balances[account].add(amount);
        emit Transfer(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);

        _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance");
        _totalSupply = _totalSupply.sub(amount);
        emit Transfer(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 Sets {decimals} to a value other than the default one of 18.
     *
     * WARNING: This function should only be called from the constructor. Most
     * applications that interact with token contracts will not expect
     * {decimals} to ever change, and may work incorrectly if it does.
     */
    function _setupDecimals(uint8 decimals_) internal virtual {
        _decimals = decimals_;
    }

    /**
     * @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 to 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 Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    using SafeMath for uint256;

    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

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

        _approve(account, _msgSender(), decreasedAllowance);
        _burn(account, amount);
    }
}







/**
 * @dev Contract module which allows children to implement an emergency stop
 * mechanism that can be triggered by an authorized account.
 *
 * This module is used through inheritance. It will make available the
 * modifiers `whenNotPaused` and `whenPaused`, which can be applied to
 * the functions of your contract. Note that they will not be pausable by
 * simply including this module, only once the modifiers are put in place.
 */
abstract contract Pausable is Context {
    /**
     * @dev Emitted when the pause is triggered by `account`.
     */
    event Paused(address account);

    /**
     * @dev Emitted when the pause is lifted by `account`.
     */
    event Unpaused(address account);

    bool private _paused;

    /**
     * @dev Initializes the contract in unpaused state.
     */
    constructor () internal {
        _paused = false;
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function paused() public view virtual returns (bool) {
        return _paused;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is not paused.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    modifier whenNotPaused() {
        require(!paused(), "Pausable: paused");
        _;
    }

    /**
     * @dev Modifier to make a function callable only when the contract is paused.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    modifier whenPaused() {
        require(paused(), "Pausable: not paused");
        _;
    }

    /**
     * @dev Triggers stopped state.
     *
     * Requirements:
     *
     * - The contract must not be paused.
     */
    function _pause() internal virtual whenNotPaused {
        _paused = true;
        emit Paused(_msgSender());
    }

    /**
     * @dev Returns to normal state.
     *
     * Requirements:
     *
     * - The contract must be paused.
     */
    function _unpause() internal virtual whenPaused {
        _paused = false;
        emit Unpaused(_msgSender());
    }
}




/// @title Migration Agent interface
abstract contract MigrationAgent {

    function migrateFrom(address _from, uint256 _value) public virtual;
}





/**
 * @dev Library for managing
 * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive
 * types.
 *
 * Sets have the following properties:
 *
 * - Elements are added, removed, and checked for existence in constant time
 * (O(1)).
 * - Elements are enumerated in O(n). No guarantees are made on the ordering.
 *
 * ```
 * contract Example {
 *     // Add the library methods
 *     using EnumerableSet for EnumerableSet.AddressSet;
 *
 *     // Declare a set state variable
 *     EnumerableSet.AddressSet private mySet;
 * }
 * ```
 *
 * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`)
 * and `uint256` (`UintSet`) are supported.
 */
library EnumerableSet {
    // To implement this library for multiple types with as little code
    // repetition as possible, we write it in terms of a generic Set type with
    // bytes32 values.
    // The Set implementation uses private functions, and user-facing
    // implementations (such as AddressSet) are just wrappers around the
    // underlying Set.
    // This means that we can only create new EnumerableSets for types that fit
    // in bytes32.

    struct Set {
        // Storage of set values
        bytes32[] _values;

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

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

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

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

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

            // When the value to delete is the last one, the swap operation is unnecessary. However, since this occurs
            // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement.

            bytes32 lastvalue = set._values[lastIndex];

            // Move the last value to the index where the value to delete is
            set._values[toDeleteIndex] = lastvalue;
            // Update the index for the moved value
            set._indexes[lastvalue] = toDeleteIndex + 1; // All indexes are 1-based

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

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

            return true;
        } else {
            return false;
        }
    }

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

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

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

    // Bytes32Set

    struct Bytes32Set {
        Set _inner;
    }

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

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

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

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

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

    // AddressSet

    struct AddressSet {
        Set _inner;
    }

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

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

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

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

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


    // UintSet

    struct UintSet {
        Set _inner;
    }

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

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

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

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

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





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

        uint256 size;
        // solhint-disable-next-line no-inline-assembly
        assembly { size := extcodesize(account) }
        return size > 0;
    }

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

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (bool success, ) = recipient.call{ value: amount }("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

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

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

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

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

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.call{ value: value }(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

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

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

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.staticcall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

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

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

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}









/**
 * @dev Contract module that allows children to implement role-based access
 * control mechanisms.
 *
 * Roles are referred to by their `bytes32` identifier. These should be exposed
 * in the external API and be unique. The best way to achieve this is by
 * using `public constant` hash digests:
 *
 * ```
 * bytes32 public constant MY_ROLE = keccak256("MY_ROLE");
 * ```
 *
 * Roles can be used to represent a set of permissions. To restrict access to a
 * function call, use {hasRole}:
 *
 * ```
 * function foo() public {
 *     require(hasRole(MY_ROLE, msg.sender));
 *     ...
 * }
 * ```
 *
 * Roles can be granted and revoked dynamically via the {grantRole} and
 * {revokeRole} functions. Each role has an associated admin role, and only
 * accounts that have a role's admin role can call {grantRole} and {revokeRole}.
 *
 * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means
 * that only accounts with this role will be able to grant or revoke other
 * roles. More complex role relationships can be created by using
 * {_setRoleAdmin}.
 *
 * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to
 * grant and revoke this role. Extra precautions should be taken to secure
 * accounts that have been granted it.
 */
abstract contract AccessControl is Context {
    using EnumerableSet for EnumerableSet.AddressSet;
    using Address for address;

    struct RoleData {
        EnumerableSet.AddressSet members;
        bytes32 adminRole;
    }

    mapping (bytes32 => RoleData) private _roles;

    bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00;

    /**
     * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole`
     *
     * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite
     * {RoleAdminChanged} not being emitted signaling this.
     *
     * _Available since v3.1._
     */
    event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole);

    /**
     * @dev Emitted when `account` is granted `role`.
     *
     * `sender` is the account that originated the contract call, an admin role
     * bearer except when using {_setupRole}.
     */
    event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Emitted when `account` is revoked `role`.
     *
     * `sender` is the account that originated the contract call:
     *   - if using `revokeRole`, it is the admin role bearer
     *   - if using `renounceRole`, it is the role bearer (i.e. `account`)
     */
    event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender);

    /**
     * @dev Returns `true` if `account` has been granted `role`.
     */
    function hasRole(bytes32 role, address account) public view returns (bool) {
        return _roles[role].members.contains(account);
    }

    /**
     * @dev Returns the number of accounts that have `role`. Can be used
     * together with {getRoleMember} to enumerate all bearers of a role.
     */
    function getRoleMemberCount(bytes32 role) public view returns (uint256) {
        return _roles[role].members.length();
    }

    /**
     * @dev Returns one of the accounts that have `role`. `index` must be a
     * value between 0 and {getRoleMemberCount}, non-inclusive.
     *
     * Role bearers are not sorted in any particular way, and their ordering may
     * change at any point.
     *
     * WARNING: When using {getRoleMember} and {getRoleMemberCount}, make sure
     * you perform all queries on the same block. See the following
     * https://forum.openzeppelin.com/t/iterating-over-elements-on-enumerableset-in-openzeppelin-contracts/2296[forum post]
     * for more information.
     */
    function getRoleMember(bytes32 role, uint256 index) public view returns (address) {
        return _roles[role].members.at(index);
    }

    /**
     * @dev Returns the admin role that controls `role`. See {grantRole} and
     * {revokeRole}.
     *
     * To change a role's admin, use {_setRoleAdmin}.
     */
    function getRoleAdmin(bytes32 role) public view returns (bytes32) {
        return _roles[role].adminRole;
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function grantRole(bytes32 role, address account) public virtual {
        require(hasRole(_roles[role].adminRole, _msgSender()), "AccessControl: sender must be an admin to grant");

        _grantRole(role, account);
    }

    /**
     * @dev Revokes `role` from `account`.
     *
     * If `account` had been granted `role`, emits a {RoleRevoked} event.
     *
     * Requirements:
     *
     * - the caller must have ``role``'s admin role.
     */
    function revokeRole(bytes32 role, address account) public virtual {
        require(hasRole(_roles[role].adminRole, _msgSender()), "AccessControl: sender must be an admin to revoke");

        _revokeRole(role, account);
    }

    /**
     * @dev Revokes `role` from the calling account.
     *
     * Roles are often managed via {grantRole} and {revokeRole}: this function's
     * purpose is to provide a mechanism for accounts to lose their privileges
     * if they are compromised (such as when a trusted device is misplaced).
     *
     * If the calling account had been granted `role`, emits a {RoleRevoked}
     * event.
     *
     * Requirements:
     *
     * - the caller must be `account`.
     */
    function renounceRole(bytes32 role, address account) public virtual {
        require(account == _msgSender(), "AccessControl: can only renounce roles for self");

        _revokeRole(role, account);
    }

    /**
     * @dev Grants `role` to `account`.
     *
     * If `account` had not been already granted `role`, emits a {RoleGranted}
     * event. Note that unlike {grantRole}, this function doesn't perform any
     * checks on the calling account.
     *
     * [WARNING]
     * ====
     * This function should only be called from the constructor when setting
     * up the initial roles for the system.
     *
     * Using this function in any other way is effectively circumventing the admin
     * system imposed by {AccessControl}.
     * ====
     */
    function _setupRole(bytes32 role, address account) internal virtual {
        _grantRole(role, account);
    }

    /**
     * @dev Sets `adminRole` as ``role``'s admin role.
     *
     * Emits a {RoleAdminChanged} event.
     */
    function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual {
        emit RoleAdminChanged(role, _roles[role].adminRole, adminRole);
        _roles[role].adminRole = adminRole;
    }

    function _grantRole(bytes32 role, address account) private {
        if (_roles[role].members.add(account)) {
            emit RoleGranted(role, account, _msgSender());
        }
    }

    function _revokeRole(bytes32 role, address account) private {
        if (_roles[role].members.remove(account)) {
            emit RoleRevoked(role, account, _msgSender());
        }
    }
}






/// @title Locked
/// @dev Smart contract to enable locking and unlocking of token holders. 
contract Locked is AccessControl {

    mapping (address => bool) public lockedList;

    event AddedLock(address user);
    event RemovedLock(address user);

    // Create a new role identifier for the controller role
    bytes32 public constant CONTROLLER_ROLE = keccak256("CONTROLLER_ROLE");

       modifier isController {
            require(hasRole(CONTROLLER_ROLE, msg.sender), "Locked::isController - Caller is not a controller");

        _;
    }


    /// @dev terminate transaction if any of the participants is locked
    /// @param _from - user initiating process
    /// @param _to  - user involved in process
    modifier isNotLocked(address _from, address _to) {

        if (hasRole(DEFAULT_ADMIN_ROLE, _from)){  // allow contract admin on sending tokens even if recipient is locked
            require(!lockedList[_from], "Locked::isNotLocked - User is locked");
            require(!lockedList[_to], "Locked::isNotLocked - User is locked");
        }
        _;
    }

    /// @dev check if user has been locked
    /// @param _user - usr to check
    /// @return true or false
    function isLocked(address _user) public view returns (bool) {
        return lockedList[_user];
    }
    
    /// @dev add user to lock
    /// @param _user to lock
    function addLock (address _user) public  isController() {        
        _addLock(_user);
    }

    function addLockMultiple(address[] memory _users) public isController() {
        uint256 length = _users.length;
        require(length <= 256, "Locked-addLockMultiple: List too long");
        for (uint256 i = 0; i < length; i++) {
            _addLock(_users[i]);
        }
    }

    /// @dev unlock user
    /// @param _user - user to unlock
    function removeLock (address _user) isController() public {       
        _removeLock(_user);
    }


    /// @dev add user to lock for internal needs
    /// @param _user to lock
    function _addLock(address _user) internal {
        lockedList[_user] = true;
        emit AddedLock(_user);
    }

    /// @dev unlock user for internal needs
    /// @param _user - user to unlock
    function _removeLock (address _user) internal {
        lockedList[_user] = false;
        emit RemovedLock(_user);
    }

}




pragma experimental ABIEncoderV2;








contract AuditToken is Locked, ERC20, Pausable, ERC20Burnable{
      
    /// @notice A record of each accounts delegate
    mapping (address => address) public delegates;

    /// @notice A checkpoint for marking number of votes from a given block
    struct Checkpoint {
        uint32 fromBlock;
        uint96 votes;
    }

    /// @notice A record of votes checkpoints for each account, by index
    mapping (address => mapping (uint32 => Checkpoint)) public checkpoints;

    /// @notice The number of checkpoints for each account
    mapping (address => uint32) public numCheckpoints;

    /// @notice The EIP-712 typehash for the contract's domain
    bytes32 public constant DOMAIN_TYPEHASH = keccak256("EIP712Domain(string name,uint256 chainId,address verifyingContract)");

    /// @notice The EIP-712 typehash for the delegation struct used by the contract
    bytes32 public constant DELEGATION_TYPEHASH = keccak256("Delegation(address delegatee,uint256 nonce,uint256 expiry)");

    /// @notice A record of states for signing / validating signatures
    mapping (address => uint) public nonces;

    /// @notice An event thats emitted when an account changes its delegate
    event DelegateChanged(address indexed delegator, address indexed fromDelegate, address indexed toDelegate);

    /// @notice An event thats emitted when a delegate account's vote balance changes
    event DelegateVotesChanged(address indexed delegate, uint previousBalance, uint newBalance);


    uint8 public constant DECIMALS = 18;
    uint256 public constant INITIAL_SUPPLY = 250000000 * (10**uint256(DECIMALS));
    address public migrationAgent;
    uint256 public totalMigrated;
    
    event Migrate(address indexed from, address indexed to, uint256 value);
    event MigrationAgentSet(address indexed migrationAgent);
    event LogControllerSet(address indexed controller);
    event LogControllerRevoked(address indexed controller);

    /// @dev Constructor that gives an account all initial tokens.
    constructor(address account) ERC20("Auditchain", "AUDT") {
        require(account != address(0), "AuditToken:constructor - Address can't be 0");
        _mint(account, INITIAL_SUPPLY);      
        _setupRole(DEFAULT_ADMIN_ROLE, account);
    }

    /// @dev prevent accidental sending of tokens to this token contract
    /// @param _self - address of this contract
    modifier notSelf(address _self) {
        require(
            _self != address(this),
            "You are trying to send tokens to this token contract"
        );
        _;
    }

    /// @notice Overwrite parent implementation to add locked verification, notSelf modifiers and call to moveDelegates
    function transfer(address to, uint256 value)
        public
        override
        isNotLocked(msg.sender, to)
        notSelf(to)
        returns (bool)
    {
        _moveDelegates(delegates[msg.sender], delegates[to], uint96(value));
        return super.transfer(to, value);
    }

   /// @notice Overwrite parent implementation to add locked verification, notSelf modifiers and call to moveDelegates
    function transferFrom(
        address from,
        address to,
        uint256 value
    ) public override isNotLocked(from, to) notSelf(to) returns (bool) {
         _moveDelegates(delegates[from], delegates[to], uint96(value));
        return super.transferFrom(from, to, value);
    }


    /// @dev Function to mint tokens
    /// @param to address to which new minted tokens are sent
    /// @param amount of tokens to send 
    /// @return A boolean that indicates if the operation was successful.
    function mint(address to, uint256 amount) public isController() returns (bool) {       
        require(to != address(0), "Token:mint - Recipient address can't be 0");        
        _mint(to, amount);
        return true;
    }

    /// @notice Overwrite parent implementation to add locked verification 
    function burn (uint256 amount) public override  isNotLocked(msg.sender, msg.sender) {
        super.burn(amount);
    }

    /// @notice Overwrite parent implementation to add locked verification 
    function burnFrom (address user, uint256 amount) public override  isNotLocked(msg.sender, msg.sender) {
        super.burnFrom(user, amount);
    }

     function pause() public isController()  {                  
        super._pause();
    }

    function unpause() public  isController() {          
        super._unpause();
    }

        /// @notice Migrate tokens to the new token contract.
    function migrate() external whenNotPaused() {
        uint256 value = balanceOf(msg.sender);
        require(migrationAgent != address(0), "Token:migrate - Enter migration agent address");
        require(value > 0, "Token:migrate - Amount of tokens is required");

        _addLock(msg.sender);
        _burn(msg.sender, balanceOf(msg.sender));
        totalMigrated += value;
        MigrationAgent(migrationAgent).migrateFrom(msg.sender, value);
        _removeLock(msg.sender);
        emit Migrate(msg.sender, migrationAgent, value);
    }

    /// @notice Set address of migration target contract and enable migration process
    /// @param _agent The address of the MigrationAgent contract
    function setMigrationAgent(address _agent) external  {
        require(hasRole(DEFAULT_ADMIN_ROLE, msg.sender), "AuditToken-setMigrationAgent: Only admin can call this function");
        require(_agent != address(0), "Token:setMigrationAgent - Migration agent can't be 0");
        migrationAgent = _agent;
        emit MigrationAgentSet(_agent);
    }
    
    /**
     * @notice Delegate votes from `msg.sender` to `delegatee`
     * @param delegatee The address to delegate votes to
     */
    function delegate(address delegatee) public {
        return _delegate(msg.sender, delegatee);
    }

    /**
     * @notice Delegates votes from signatory to `delegatee`
     * @param delegatee The address to delegate votes to
     * @param nonce The contract state required to match the signature
     * @param expiry The time at which to expire the signature
     * @param v The recovery byte of the signature
     * @param r Half of the ECDSA signature pair
     * @param s Half of the ECDSA signature pair
     */
    function delegateBySig(address delegatee, uint nonce, uint expiry, uint8 v, bytes32 r, bytes32 s) public {
        bytes32 domainSeparator = keccak256(abi.encode(DOMAIN_TYPEHASH, keccak256(bytes(name())), getChainId(), address(this)));
        bytes32 structHash = keccak256(abi.encode(DELEGATION_TYPEHASH, delegatee, nonce, expiry));
        bytes32 digest = keccak256(abi.encodePacked("\x19\x01", domainSeparator, structHash));
        address signatory = ecrecover(digest, v, r, s);
        require(signatory != address(0), "auditToken::delegateBySig: invalid signature");
        require(nonce == nonces[signatory]++, "auditToken::delegateBySig: invalid nonce");
        require(block.timestamp <= expiry, "auditToken::delegateBySig: signature expired");
        return _delegate(signatory, delegatee);
    }

    /**
     * @notice Gets the current votes balance for `account`
     * @param account The address to get votes balance
     * @return The number of current votes for `account`
     */
    function getCurrentVotes(address account) external view returns (uint96) {
        uint32 nCheckpoints = numCheckpoints[account];
        return nCheckpoints > 0 ? checkpoints[account][nCheckpoints - 1].votes : 0;
    }

    /**
     * @notice Determine the prior number of votes for an account as of a block number
     * @dev Block number must be a finalized block or else this function will revert to prevent misinformation.
     * @param account The address of the account to check
     * @param blockNumber The block number to get the vote balance at
     * @return The number of votes the account had as of the given block
     */
    function getPriorVotes(address account, uint blockNumber) public view returns (uint96) {
        require(blockNumber < block.number, "auditToken::getPriorVotes: not yet determined");

        uint32 nCheckpoints = numCheckpoints[account];
        if (nCheckpoints == 0) {
            return 0;
        }

        // First check most recent balance
        if (checkpoints[account][nCheckpoints - 1].fromBlock <= blockNumber) {
            return checkpoints[account][nCheckpoints - 1].votes;
        }

        // Next check implicit zero balance
        if (checkpoints[account][0].fromBlock > blockNumber) {
            return 0;
        }

        uint32 lower = 0;
        uint32 upper = nCheckpoints - 1;
        while (upper > lower) {
            uint32 center = upper - (upper - lower) / 2; // ceil, avoiding overflow
            Checkpoint memory cp = checkpoints[account][center];
            if (cp.fromBlock == blockNumber) {
                return cp.votes;
            } else if (cp.fromBlock < blockNumber) {
                lower = center;
            } else {
                upper = center - 1;
            }
        }
        return checkpoints[account][lower].votes;
    }

    function _delegate(address delegator, address delegatee) internal {
        address currentDelegate = delegates[delegator];
        uint96 delegatorBalance = uint96(balanceOf(delegator));
        delegates[delegator] = delegatee;

        emit DelegateChanged(delegator, currentDelegate, delegatee);

        _moveDelegates(currentDelegate, delegatee, delegatorBalance);
    }   

    function _moveDelegates(address srcRep, address dstRep, uint96 amount) internal {
        if (srcRep != dstRep && amount > 0) {
            if (srcRep != address(0)) {
                uint32 srcRepNum = numCheckpoints[srcRep];
                uint96 srcRepOld = srcRepNum > 0 ? checkpoints[srcRep][srcRepNum - 1].votes : 0;
                uint96 srcRepNew = sub96(srcRepOld, amount, "auditToken::_moveVotes: vote amount underflows");
                _writeCheckpoint(srcRep, srcRepNum, srcRepOld, srcRepNew);
            }

            if (dstRep != address(0)) {
                uint32 dstRepNum = numCheckpoints[dstRep];
                uint96 dstRepOld = dstRepNum > 0 ? checkpoints[dstRep][dstRepNum - 1].votes : 0;
                uint96 dstRepNew = add96(dstRepOld, amount, "auditToken::_moveVotes: vote amount overflows");
                _writeCheckpoint(dstRep, dstRepNum, dstRepOld, dstRepNew);
            }
        }
    }

    function _writeCheckpoint(address delegatee, uint32 nCheckpoints, uint96 oldVotes, uint96 newVotes) internal {
      uint32 blockNumber = safe32(block.number, "auditToken::_writeCheckpoint: block number exceeds 32 bits");

      if (nCheckpoints > 0 && checkpoints[delegatee][nCheckpoints - 1].fromBlock == blockNumber) {
          checkpoints[delegatee][nCheckpoints - 1].votes = newVotes;
      } else {
          checkpoints[delegatee][nCheckpoints] = Checkpoint(blockNumber, newVotes);
          numCheckpoints[delegatee] = nCheckpoints + 1;
      }

      emit DelegateVotesChanged(delegatee, oldVotes, newVotes);
    }

    function safe32(uint n, string memory errorMessage) internal pure returns (uint32) {
        require(n < 2**32, errorMessage);
        return uint32(n);
    }

    function add96(uint96 a, uint96 b, string memory errorMessage) internal pure returns (uint96) {
        uint96 c = a + b;
        require(c >= a, errorMessage);
        return c;
    }

    function sub96(uint96 a, uint96 b, string memory errorMessage) internal pure returns (uint96) {
        require(b <= a, errorMessage);
        return a - b;
    }

    function getChainId() internal pure returns (uint) {
        uint256 chainId;
        assembly { chainId := chainid() }
        return chainId;
    }

    


}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"account","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"user","type":"address"}],"name":"AddedLock","type":"event"},{"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":"delegator","type":"address"},{"indexed":true,"internalType":"address","name":"fromDelegate","type":"address"},{"indexed":true,"internalType":"address","name":"toDelegate","type":"address"}],"name":"DelegateChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"delegate","type":"address"},{"indexed":false,"internalType":"uint256","name":"previousBalance","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newBalance","type":"uint256"}],"name":"DelegateVotesChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"controller","type":"address"}],"name":"LogControllerRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"controller","type":"address"}],"name":"LogControllerSet","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":"Migrate","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"migrationAgent","type":"address"}],"name":"MigrationAgentSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"user","type":"address"}],"name":"RemovedLock","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"previousAdminRole","type":"bytes32"},{"indexed":true,"internalType":"bytes32","name":"newAdminRole","type":"bytes32"}],"name":"RoleAdminChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleGranted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"role","type":"bytes32"},{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":true,"internalType":"address","name":"sender","type":"address"}],"name":"RoleRevoked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"CONTROLLER_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DECIMALS","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEFAULT_ADMIN_ROLE","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DELEGATION_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DOMAIN_TYPEHASH","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"INITIAL_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"addLock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"_users","type":"address[]"}],"name":"addLockMultiple","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint32","name":"","type":"uint32"}],"name":"checkpoints","outputs":[{"internalType":"uint32","name":"fromBlock","type":"uint32"},{"internalType":"uint96","name":"votes","type":"uint96"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"delegatee","type":"address"}],"name":"delegate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"delegatee","type":"address"},{"internalType":"uint256","name":"nonce","type":"uint256"},{"internalType":"uint256","name":"expiry","type":"uint256"},{"internalType":"uint8","name":"v","type":"uint8"},{"internalType":"bytes32","name":"r","type":"bytes32"},{"internalType":"bytes32","name":"s","type":"bytes32"}],"name":"delegateBySig","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"delegates","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getCurrentVotes","outputs":[{"internalType":"uint96","name":"","type":"uint96"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"blockNumber","type":"uint256"}],"name":"getPriorVotes","outputs":[{"internalType":"uint96","name":"","type":"uint96"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleAdmin","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"getRoleMember","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"}],"name":"getRoleMemberCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"grantRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"hasRole","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"isLocked","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"lockedList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"migrate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"migrationAgent","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"nonces","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"numCheckpoints","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"}],"name":"removeLock","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"renounceRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"role","type":"bytes32"},{"internalType":"address","name":"account","type":"address"}],"name":"revokeRole","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_agent","type":"address"}],"name":"setMigrationAgent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalMigrated","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b50604051620061423803806200614283398181016040528101906200003791906200062d565b6040518060400160405280600a81526020017f4175646974636861696e000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f41554454000000000000000000000000000000000000000000000000000000008152508160059080519060200190620000bb92919062000560565b508060069080519060200190620000d492919062000560565b506012600760006101000a81548160ff021916908360ff16021790555050506000600760016101000a81548160ff021916908315150217905550600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141562000181576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620001789062000778565b60405180910390fd5b620001a081601260ff16600a0a630ee6b28002620001bc60201b60201c565b620001b56000801b826200036d60201b60201c565b5062000842565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200022f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000226906200079a565b60405180910390fd5b62000243600083836200038360201b60201c565b6200025f816004546200038860201b620027941790919060201c565b600481905550620002be81600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546200038860201b620027941790919060201c565b600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620003619190620007bc565b60405180910390a35050565b6200037f8282620003e060201b60201c565b5050565b505050565b600080828401905083811015620003d6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003cd9062000756565b60405180910390fd5b8091505092915050565b6200040e816000808581526020019081526020016000206000016200048360201b620027e91790919060201c565b156200047f5762000424620004bb60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b6000620004b3836000018373ffffffffffffffffffffffffffffffffffffffff1660001b620004c360201b60201c565b905092915050565b600033905090565b6000620004d783836200053d60201b60201c565b6200053257826000018290806001815401808255809150506001900390600052602060002001600090919091909150558260000180549050836001016000848152602001908152602001600020819055506001905062000537565b600090505b92915050565b600080836001016000848152602001908152602001600020541415905092915050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282620005985760008555620005e4565b82601f10620005b357805160ff1916838001178555620005e4565b82800160010185558215620005e4579182015b82811115620005e3578251825591602001919060010190620005c6565b5b509050620005f39190620005f7565b5090565b5b8082111562000612576000816000905550600101620005f8565b5090565b600081519050620006278162000828565b92915050565b6000602082840312156200064057600080fd5b6000620006508482850162000616565b91505092915050565b600062000668601b83620007d9565b91507f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006000830152602082019050919050565b6000620006aa602b83620007d9565b91507f4175646974546f6b656e3a636f6e7374727563746f72202d204164647265737360008301527f2063616e277420626520300000000000000000000000000000000000000000006020830152604082019050919050565b600062000712601f83620007d9565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b62000750816200081e565b82525050565b60006020820190508181036000830152620007718162000659565b9050919050565b6000602082019050818103600083015262000793816200069b565b9050919050565b60006020820190508181036000830152620007b58162000703565b9050919050565b6000602082019050620007d3600083018462000745565b92915050565b600082825260208201905092915050565b6000620007f782620007fe565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b6200083381620007ea565b81146200083f57600080fd5b50565b6158f080620008526000396000f3fe608060405234801561001057600080fd5b50600436106102955760003560e01c806370a082311161016757806395a0f5eb116100ce578063c3cda52011610087578063c3cda5201461084c578063ca15c87314610868578063d547741f14610898578063dd62ed3e146108b4578063e7a324dc146108e4578063f1127ed81461090257610295565b806395a0f5eb1461076257806395d89b4114610780578063a217fddf1461079e578063a457c2d7146107bc578063a9059cbb146107ec578063b4b5ea571461081c57610295565b80638456cb59116101205780638456cb59146106b6578063882f327b146106c05780638f557373146106dc5780638fd3ab80146106f85780639010d07c1461070257806391d148541461073257610295565b806370a08231146105d057806375e2ff6514610600578063782d6fe11461061c57806379cc67901461064c5780637ecebe00146106685780638328dbcd1461069857610295565b8063313ce5671161020b5780634a387bef116101c45780634a387bef146104ea5780634a4fbeec14610506578063587cde1e146105365780635c19a95c146105665780635c975abb146105825780636fcfff45146105a057610295565b8063313ce5671461042a57806336568abe1461044857806339509351146104645780633f4ba83a1461049457806340c10f191461049e57806342966c68146104ce57610295565b806320606b701161025d57806320606b701461035457806323b872dd14610372578063248a9ca3146103a25780632e0f2625146103d25780632f2ff15d146103f05780632ff2e9dc1461040c57610295565b806306fdde031461029a578063092c5b3b146102b8578063095ea7b3146102d657806318160ddd146103065780631a921b3e14610324575b600080fd5b6102a2610933565b6040516102af9190615116565b60405180910390f35b6102c06109d5565b6040516102cd919061502c565b60405180910390f35b6102f060048036038101906102eb9190614254565b6109f9565b6040516102fd9190615011565b60405180910390f35b61030e610a17565b60405161031b9190615498565b60405180910390f35b61033e600480360381019061033991906141a0565b610a21565b60405161034b9190615011565b60405180910390f35b61035c610a41565b604051610369919061502c565b60405180910390f35b61038c60048036038101906103879190614205565b610a65565b6040516103999190615011565b60405180910390f35b6103bc60048036038101906103b79190614396565b610ce6565b6040516103c9919061502c565b60405180910390f35b6103da610d05565b6040516103e791906154f7565b60405180910390f35b61040a600480360381019061040591906143bf565b610d0a565b005b610414610d7d565b6040516104219190615498565b60405180910390f35b610432610d8e565b60405161043f91906154f7565b60405180910390f35b610462600480360381019061045d91906143bf565b610da5565b005b61047e60048036038101906104799190614254565b610e28565b60405161048b9190615011565b60405180910390f35b61049c610edb565b005b6104b860048036038101906104b39190614254565b610f4e565b6040516104c59190615011565b60405180910390f35b6104e860048036038101906104e39190614437565b61103d565b005b61050460048036038101906104ff91906141a0565b61117a565b005b610520600480360381019061051b91906141a0565b6111ef565b60405161052d9190615011565b60405180910390f35b610550600480360381019061054b91906141a0565b611245565b60405161055d9190614fb2565b60405180910390f35b610580600480360381019061057b91906141a0565b611278565b005b61058a611285565b6040516105979190615011565b60405180910390f35b6105ba60048036038101906105b591906141a0565b61129c565b6040516105c791906154b3565b60405180910390f35b6105ea60048036038101906105e591906141a0565b6112bf565b6040516105f79190615498565b60405180910390f35b61061a600480360381019061061591906141a0565b611308565b005b61063660048036038101906106319190614254565b61144b565b6040516106439190615512565b60405180910390f35b61066660048036038101906106619190614254565b611854565b005b610682600480360381019061067d91906141a0565b611993565b60405161068f9190615498565b60405180910390f35b6106a06119ab565b6040516106ad9190614fb2565b60405180910390f35b6106be6119d1565b005b6106da60048036038101906106d591906141a0565b611a44565b005b6106f660048036038101906106f19190614355565b611ab9565b005b610700611ba6565b005b61071c600480360381019061071791906143fb565b611e1d565b6040516107299190614fb2565b60405180910390f35b61074c600480360381019061074791906143bf565b611e4e565b6040516107599190615011565b60405180910390f35b61076a611e7f565b6040516107779190615498565b60405180910390f35b610788611e85565b6040516107959190615116565b60405180910390f35b6107a6611f27565b6040516107b3919061502c565b60405180910390f35b6107d660048036038101906107d19190614254565b611f2e565b6040516107e39190615011565b60405180910390f35b61080660048036038101906108019190614254565b611ffb565b6040516108139190615011565b60405180910390f35b610836600480360381019061083191906141a0565b61227a565b6040516108439190615512565b60405180910390f35b61086660048036038101906108619190614290565b612368565b005b610882600480360381019061087d9190614396565b6125f7565b60405161088f9190615498565b60405180910390f35b6108b260048036038101906108ad91906143bf565b61261d565b005b6108ce60048036038101906108c991906141c9565b612690565b6040516108db9190615498565b60405180910390f35b6108ec612717565b6040516108f9919061502c565b60405180910390f35b61091c60048036038101906109179190614319565b61273b565b60405161092a9291906154ce565b60405180910390f35b606060058054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156109cb5780601f106109a0576101008083540402835291602001916109cb565b820191906000526020600020905b8154815290600101906020018083116109ae57829003601f168201915b5050505050905090565b7f7b765e0e932d348852a6f810bfa1ab891e259123f02db8cdcde614c57022335781565b6000610a0d610a06612819565b8484612821565b6001905092915050565b6000600454905090565b60016020528060005260406000206000915054906101000a900460ff1681565b7f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a86681565b60008383610a766000801b83611e4e565b15610b9657600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610b08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aff906153f8565b60405180910390fd5b600160008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610b95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8c906153f8565b60405180910390fd5b5b843073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610c06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bfd90615438565b60405180910390fd5b610ccf600860008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600860008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16876129ec565b610cda878787612ce7565b93505050509392505050565b6000806000838152602001908152602001600020600201549050919050565b601281565b610d3060008084815260200190815260200160002060020154610d2b612819565b611e4e565b610d6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6690615198565b60405180910390fd5b610d798282612dc0565b5050565b601260ff16600a0a630ee6b2800281565b6000600760009054906101000a900460ff16905090565b610dad612819565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610e1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1190615458565b60405180910390fd5b610e248282612e53565b5050565b6000610ed1610e35612819565b84610ecc8560036000610e46612819565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461279490919063ffffffff16565b612821565b6001905092915050565b610f057f7b765e0e932d348852a6f810bfa1ab891e259123f02db8cdcde614c57022335733611e4e565b610f44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3b90615418565b60405180910390fd5b610f4c612ee6565b565b6000610f7a7f7b765e0e932d348852a6f810bfa1ab891e259123f02db8cdcde614c57022335733611e4e565b610fb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb090615418565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611029576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611020906152b8565b60405180910390fd5b6110338383612f88565b6001905092915050565b333361104c6000801b83611e4e565b1561116c57600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156110de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d5906153f8565b60405180910390fd5b600160008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561116b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611162906153f8565b60405180910390fd5b5b6111758361311e565b505050565b6111a47f7b765e0e932d348852a6f810bfa1ab891e259123f02db8cdcde614c57022335733611e4e565b6111e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111da90615418565b60405180910390fd5b6111ec81613132565b50565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60086020528060005260406000206000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61128233826131c4565b50565b6000600760019054906101000a900460ff16905090565b600a6020528060005260406000206000915054906101000a900463ffffffff1681565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6113156000801b33611e4e565b611354576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134b90615298565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156113c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113bb906153b8565b60405180910390fd5b80600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff167f53002f2ca3e2737f3405e7f734101551690f8426e082167285f3caa8e6c6a18260405160405180910390a250565b600043821061148f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148690615338565b60405180910390fd5b6000600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900463ffffffff16905060008163ffffffff1614156114fc57600091505061184e565b82600960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006001840363ffffffff1663ffffffff16815260200190815260200160002060000160009054906101000a900463ffffffff1663ffffffff16116115fe57600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006001830363ffffffff1663ffffffff16815260200190815260200160002060000160049054906101000a90046bffffffffffffffffffffffff1691505061184e565b82600960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008063ffffffff16815260200190815260200160002060000160009054906101000a900463ffffffff1663ffffffff16111561167f57600091505061184e565b6000806001830390505b8163ffffffff168163ffffffff1611156117d0576000600283830363ffffffff16816116b157fe5b04820390506000600960008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008363ffffffff1663ffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a900463ffffffff1663ffffffff1663ffffffff1681526020016000820160049054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff1681525050905086816000015163ffffffff1614156117a85780602001519550505050505061184e565b86816000015163ffffffff1610156117c2578193506117c9565b6001820392505b5050611689565b600960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008363ffffffff1663ffffffff16815260200190815260200160002060000160049054906101000a90046bffffffffffffffffffffffff1693505050505b92915050565b33336118636000801b83611e4e565b1561198357600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156118f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ec906153f8565b60405180910390fd5b600160008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611982576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611979906153f8565b60405180910390fd5b5b61198d8484613335565b50505050565b600b6020528060005260406000206000915090505481565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6119fb7f7b765e0e932d348852a6f810bfa1ab891e259123f02db8cdcde614c57022335733611e4e565b611a3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3190615418565b60405180910390fd5b611a42613397565b565b611a6e7f7b765e0e932d348852a6f810bfa1ab891e259123f02db8cdcde614c57022335733611e4e565b611aad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa490615418565b60405180910390fd5b611ab68161343a565b50565b611ae37f7b765e0e932d348852a6f810bfa1ab891e259123f02db8cdcde614c57022335733611e4e565b611b22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1990615418565b60405180910390fd5b600081519050610100811115611b6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6490615238565b60405180910390fd5b60005b81811015611ba157611b94838281518110611b8757fe5b602002602001015161343a565b8080600101915050611b70565b505050565b611bae611285565b15611bee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be5906152f8565b60405180910390fd5b6000611bf9336112bf565b9050600073ffffffffffffffffffffffffffffffffffffffff16600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611c8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8490615358565b60405180910390fd5b60008111611cd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc7906151d8565b60405180910390fd5b611cd93361343a565b611ceb33611ce6336112bf565b6134cb565b80600d60008282540192505081905550600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16637a3130e333836040518363ffffffff1660e01b8152600401611d58929190614fe8565b600060405180830381600087803b158015611d7257600080fd5b505af1158015611d86573d6000803e3d6000fd5b50505050611d9333613132565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f18df02dcc52b9c494f391df09661519c0069bd8540141946280399408205ca1a83604051611e129190615498565b60405180910390a350565b6000611e468260008086815260200190815260200160002060000161367b90919063ffffffff16565b905092915050565b6000611e778260008086815260200190815260200160002060000161369590919063ffffffff16565b905092915050565b600d5481565b606060068054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611f1d5780601f10611ef257610100808354040283529160200191611f1d565b820191906000526020600020905b815481529060010190602001808311611f0057829003601f168201915b5050505050905090565b6000801b81565b6000611ff1611f3b612819565b84611fec856040518060600160405280602581526020016158966025913960036000611f65612819565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546136c59092919063ffffffff16565b612821565b6001905092915050565b6000338361200c6000801b83611e4e565b1561212c57600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561209e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612095906153f8565b60405180910390fd5b600160008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561212b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612122906153f8565b60405180910390fd5b5b843073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561219c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219390615438565b60405180910390fd5b612265600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600860008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16876129ec565b61226f868661371a565b935050505092915050565b600080600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900463ffffffff16905060008163ffffffff16116122e4576000612360565b600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006001830363ffffffff1663ffffffff16815260200190815260200160002060000160049054906101000a90046bffffffffffffffffffffffff165b915050919050565b60007f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a866612393610933565b805190602001206123a2613738565b306040516020016123b6949392919061508c565b60405160208183030381529060405280519060200120905060007fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf8888886040516020016124079493929190615047565b60405160208183030381529060405280519060200120905060008282604051602001612434929190614f7b565b60405160208183030381529060405280519060200120905060006001828888886040516000815260200160405260405161247194939291906150d1565b6020604051602081039080840390855afa158015612493573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561250f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161250690615258565b60405180910390fd5b600b60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081548092919060010191905055891461259e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161259590615318565b60405180910390fd5b874211156125e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125d890615178565b60405180910390fd5b6125eb818b6131c4565b50505050505050505050565b6000612616600080848152602001908152602001600020600001613745565b9050919050565b6126436000808481526020019081526020016000206002015461263e612819565b611e4e565b612682576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612679906152d8565b60405180910390fd5b61268c8282612e53565b5050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b7fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf81565b6009602052816000526040600020602052806000526040600020600091509150508060000160009054906101000a900463ffffffff16908060000160049054906101000a90046bffffffffffffffffffffffff16905082565b6000808284019050838110156127df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127d690615218565b60405180910390fd5b8091505092915050565b6000612811836000018373ffffffffffffffffffffffffffffffffffffffff1660001b61375a565b905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612891576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612888906153d8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612901576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128f8906151f8565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516129df9190615498565b60405180910390a3505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612a3657506000816bffffffffffffffffffffffff16115b15612ce257600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612b8e576000600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900463ffffffff1690506000808263ffffffff1611612ad9576000612b55565b600960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006001840363ffffffff1663ffffffff16815260200190815260200160002060000160049054906101000a90046bffffffffffffffffffffffff165b90506000612b7c82856040518060600160405280602e815260200161578f602e91396137ca565b9050612b8a8684848461383b565b5050505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612ce1576000600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900463ffffffff1690506000808263ffffffff1611612c2c576000612ca8565b600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006001840363ffffffff1663ffffffff16815260200190815260200160002060000160049054906101000a90046bffffffffffffffffffffffff165b90506000612ccf82856040518060600160405280602d8152602001615869602d9139613b2e565b9050612cdd8584848461383b565b5050505b5b505050565b6000612cf4848484613ba4565b612db584612d00612819565b612db0856040518060600160405280602881526020016157e360289139600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000612d66612819565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546136c59092919063ffffffff16565b612821565b600190509392505050565b612de7816000808581526020019081526020016000206000016127e990919063ffffffff16565b15612e4f57612df4612819565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b612e7a81600080858152602001908152602001600020600001613e3d90919063ffffffff16565b15612ee257612e87612819565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b612eee611285565b612f2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f24906151b8565b60405180910390fd5b6000600760016101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa612f71612819565b604051612f7e9190614fcd565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612ff8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fef90615478565b60405180910390fd5b61300460008383613e6d565b6130198160045461279490919063ffffffff16565b60048190555061307181600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461279490919063ffffffff16565b600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516131129190615498565b60405180910390a35050565b61312f613129612819565b826134cb565b50565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f6134e30ca79f58d7566528b3768c7d33c9c30815c63cfeae3b69f52cf31dd61a816040516131b99190614fb2565b60405180910390a150565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690506000613233846112bf565b905082600860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f60405160405180910390a461332f8284836129ec565b50505050565b60006133748260405180606001604052806024815260200161580b6024913961336586613360612819565b612690565b6136c59092919063ffffffff16565b905061338883613382612819565b83612821565b61339283836134cb565b505050565b61339f611285565b156133df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133d6906152f8565b60405180910390fd5b6001600760016101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258613423612819565b6040516134309190614fcd565b60405180910390a1565b60018060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f1b6f28dfffb89ba40ba9067329c3c0e8bd926256b970cf7d060cd48b1cd0e44e816040516134c09190614fb2565b60405180910390a150565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561353b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161353290615378565b60405180910390fd5b61354782600083613e6d565b6135b38160405180606001604052806022815260200161576d60229139600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546136c59092919063ffffffff16565b600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061360b81600454613e7290919063ffffffff16565b600481905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161366f9190615498565b60405180910390a35050565b600061368a8360000183613ec2565b60001c905092915050565b60006136bd836000018373ffffffffffffffffffffffffffffffffffffffff1660001b613f2f565b905092915050565b600083831115829061370d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137049190615116565b60405180910390fd5b5082840390509392505050565b600061372e613727612819565b8484613ba4565b6001905092915050565b6000804690508091505090565b600061375382600001613f52565b9050919050565b60006137668383613f2f565b6137bf5782600001829080600181540180825580915050600190039060005260206000200160009091909190915055826000018054905083600101600084815260200190815260200160002081905550600190506137c4565b600090505b92915050565b6000836bffffffffffffffffffffffff16836bffffffffffffffffffffffff161115829061382e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138259190615116565b60405180910390fd5b5082840390509392505050565b600061385f436040518060600160405280603a815260200161582f603a9139613f63565b905060008463ffffffff161180156138f457508063ffffffff16600960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006001870363ffffffff1663ffffffff16815260200190815260200160002060000160009054906101000a900463ffffffff1663ffffffff16145b1561398f5781600960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006001870363ffffffff1663ffffffff16815260200190815260200160002060000160046101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff160217905550613ad7565b60405180604001604052808263ffffffff168152602001836bffffffffffffffffffffffff16815250600960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008663ffffffff1663ffffffff16815260200190815260200160002060008201518160000160006101000a81548163ffffffff021916908363ffffffff16021790555060208201518160000160046101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff16021790555090505060018401600a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548163ffffffff021916908363ffffffff1602179055505b8473ffffffffffffffffffffffffffffffffffffffff167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a7248484604051613b1f92919061552d565b60405180910390a25050505050565b6000808385019050846bffffffffffffffffffffffff16816bffffffffffffffffffffffff1610158390613b98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b8f9190615116565b60405180910390fd5b50809150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613c14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613c0b90615398565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613c84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613c7b90615158565b60405180910390fd5b613c8f838383613e6d565b613cfb816040518060600160405280602681526020016157bd60269139600260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546136c59092919063ffffffff16565b600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613d9081600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461279490919063ffffffff16565b600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051613e309190615498565b60405180910390a3505050565b6000613e65836000018373ffffffffffffffffffffffffffffffffffffffff1660001b613fb9565b905092915050565b505050565b600082821115613eb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613eae90615278565b60405180910390fd5b818303905092915050565b600081836000018054905011613f0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613f0490615138565b60405180910390fd5b826000018281548110613f1c57fe5b9060005260206000200154905092915050565b600080836001016000848152602001908152602001600020541415905092915050565b600081600001805490509050919050565b600064010000000083108290613faf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613fa69190615116565b60405180910390fd5b5082905092915050565b60008083600101600084815260200190815260200160002054905060008114614095576000600182039050600060018660000180549050039050600086600001828154811061400457fe5b906000526020600020015490508087600001848154811061402157fe5b906000526020600020018190555060018301876001016000838152602001908152602001600020819055508660000180548061405957fe5b6001900381819060005260206000200160009055905586600101600087815260200190815260200160002060009055600194505050505061409b565b60009150505b92915050565b60006140b46140af84615587565b615556565b905080838252602082019050828560208602820111156140d357600080fd5b60005b8581101561410357816140e9888261410d565b8452602084019350602083019250506001810190506140d6565b5050509392505050565b60008135905061411c816156f9565b92915050565b600082601f83011261413357600080fd5b81356141438482602086016140a1565b91505092915050565b60008135905061415b81615710565b92915050565b60008135905061417081615727565b92915050565b6000813590506141858161573e565b92915050565b60008135905061419a81615755565b92915050565b6000602082840312156141b257600080fd5b60006141c08482850161410d565b91505092915050565b600080604083850312156141dc57600080fd5b60006141ea8582860161410d565b92505060206141fb8582860161410d565b9150509250929050565b60008060006060848603121561421a57600080fd5b60006142288682870161410d565b93505060206142398682870161410d565b925050604061424a86828701614161565b9150509250925092565b6000806040838503121561426757600080fd5b60006142758582860161410d565b925050602061428685828601614161565b9150509250929050565b60008060008060008060c087890312156142a957600080fd5b60006142b789828a0161410d565b96505060206142c889828a01614161565b95505060406142d989828a01614161565b94505060606142ea89828a0161418b565b93505060806142fb89828a0161414c565b92505060a061430c89828a0161414c565b9150509295509295509295565b6000806040838503121561432c57600080fd5b600061433a8582860161410d565b925050602061434b85828601614176565b9150509250929050565b60006020828403121561436757600080fd5b600082013567ffffffffffffffff81111561438157600080fd5b61438d84828501614122565b91505092915050565b6000602082840312156143a857600080fd5b60006143b68482850161414c565b91505092915050565b600080604083850312156143d257600080fd5b60006143e08582860161414c565b92505060206143f18582860161410d565b9150509250929050565b6000806040838503121561440e57600080fd5b600061441c8582860161414c565b925050602061442d85828601614161565b9150509250929050565b60006020828403121561444957600080fd5b600061445784828501614161565b91505092915050565b61446981615661565b82525050565b614478816155da565b82525050565b614487816155ec565b82525050565b614496816155f8565b82525050565b6144ad6144a8826155f8565b6156dc565b82525050565b60006144be826155b3565b6144c881856155be565b93506144d88185602086016156a9565b6144e1816156e8565b840191505092915050565b60006144f96022836155be565b91507f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061455f6023836155be565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006145c5602c836155be565b91507f6175646974546f6b656e3a3a64656c656761746542795369673a207369676e6160008301527f74757265206578706972656400000000000000000000000000000000000000006020830152604082019050919050565b600061462b602f836155be565b91507f416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e60008301527f2061646d696e20746f206772616e7400000000000000000000000000000000006020830152604082019050919050565b60006146916014836155be565b91507f5061757361626c653a206e6f74207061757365640000000000000000000000006000830152602082019050919050565b60006146d1602c836155be565b91507f546f6b656e3a6d696772617465202d20416d6f756e74206f6620746f6b656e7360008301527f20697320726571756972656400000000000000000000000000000000000000006020830152604082019050919050565b60006147376022836155be565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061479d6002836155cf565b91507f19010000000000000000000000000000000000000000000000000000000000006000830152600282019050919050565b60006147dd601b836155be565b91507f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006000830152602082019050919050565b600061481d6025836155be565b91507f4c6f636b65642d6164644c6f636b4d756c7469706c653a204c69737420746f6f60008301527f206c6f6e670000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614883602c836155be565b91507f6175646974546f6b656e3a3a64656c656761746542795369673a20696e76616c60008301527f6964207369676e617475726500000000000000000000000000000000000000006020830152604082019050919050565b60006148e9601e836155be565b91507f536166654d6174683a207375627472616374696f6e206f766572666c6f7700006000830152602082019050919050565b6000614929603f836155be565b91507f4175646974546f6b656e2d7365744d6967726174696f6e4167656e743a204f6e60008301527f6c792061646d696e2063616e2063616c6c20746869732066756e6374696f6e006020830152604082019050919050565b600061498f6029836155be565b91507f546f6b656e3a6d696e74202d20526563697069656e742061646472657373206360008301527f616e2774206265203000000000000000000000000000000000000000000000006020830152604082019050919050565b60006149f56030836155be565b91507f416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e60008301527f2061646d696e20746f207265766f6b65000000000000000000000000000000006020830152604082019050919050565b6000614a5b6010836155be565b91507f5061757361626c653a20706175736564000000000000000000000000000000006000830152602082019050919050565b6000614a9b6028836155be565b91507f6175646974546f6b656e3a3a64656c656761746542795369673a20696e76616c60008301527f6964206e6f6e63650000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614b01602d836155be565b91507f6175646974546f6b656e3a3a6765745072696f72566f7465733a206e6f74207960008301527f65742064657465726d696e6564000000000000000000000000000000000000006020830152604082019050919050565b6000614b67602d836155be565b91507f546f6b656e3a6d696772617465202d20456e746572206d6967726174696f6e2060008301527f6167656e742061646472657373000000000000000000000000000000000000006020830152604082019050919050565b6000614bcd6021836155be565b91507f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614c336025836155be565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614c996034836155be565b91507f546f6b656e3a7365744d6967726174696f6e4167656e74202d204d696772617460008301527f696f6e206167656e742063616e277420626520300000000000000000000000006020830152604082019050919050565b6000614cff6024836155be565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614d656024836155be565b91507f4c6f636b65643a3a69734e6f744c6f636b6564202d2055736572206973206c6f60008301527f636b6564000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614dcb6031836155be565b91507f4c6f636b65643a3a6973436f6e74726f6c6c6572202d2043616c6c657220697360008301527f206e6f74206120636f6e74726f6c6c65720000000000000000000000000000006020830152604082019050919050565b6000614e316034836155be565b91507f596f752061726520747279696e6720746f2073656e6420746f6b656e7320746f60008301527f207468697320746f6b656e20636f6e74726163740000000000000000000000006020830152604082019050919050565b6000614e97602f836155be565b91507f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008301527f20726f6c657320666f722073656c6600000000000000000000000000000000006020830152604082019050919050565b6000614efd601f836155be565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b614f3981615622565b82525050565b614f488161562c565b82525050565b614f578161563c565b82525050565b614f6681615697565b82525050565b614f7581615649565b82525050565b6000614f8682614790565b9150614f92828561449c565b602082019150614fa2828461449c565b6020820191508190509392505050565b6000602082019050614fc7600083018461446f565b92915050565b6000602082019050614fe26000830184614460565b92915050565b6000604082019050614ffd6000830185614460565b61500a6020830184614f30565b9392505050565b6000602082019050615026600083018461447e565b92915050565b6000602082019050615041600083018461448d565b92915050565b600060808201905061505c600083018761448d565b615069602083018661446f565b6150766040830185614f30565b6150836060830184614f30565b95945050505050565b60006080820190506150a1600083018761448d565b6150ae602083018661448d565b6150bb6040830185614f30565b6150c8606083018461446f565b95945050505050565b60006080820190506150e6600083018761448d565b6150f36020830186614f4e565b615100604083018561448d565b61510d606083018461448d565b95945050505050565b6000602082019050818103600083015261513081846144b3565b905092915050565b60006020820190508181036000830152615151816144ec565b9050919050565b6000602082019050818103600083015261517181614552565b9050919050565b60006020820190508181036000830152615191816145b8565b9050919050565b600060208201905081810360008301526151b18161461e565b9050919050565b600060208201905081810360008301526151d181614684565b9050919050565b600060208201905081810360008301526151f1816146c4565b9050919050565b600060208201905081810360008301526152118161472a565b9050919050565b60006020820190508181036000830152615231816147d0565b9050919050565b6000602082019050818103600083015261525181614810565b9050919050565b6000602082019050818103600083015261527181614876565b9050919050565b60006020820190508181036000830152615291816148dc565b9050919050565b600060208201905081810360008301526152b18161491c565b9050919050565b600060208201905081810360008301526152d181614982565b9050919050565b600060208201905081810360008301526152f1816149e8565b9050919050565b6000602082019050818103600083015261531181614a4e565b9050919050565b6000602082019050818103600083015261533181614a8e565b9050919050565b6000602082019050818103600083015261535181614af4565b9050919050565b6000602082019050818103600083015261537181614b5a565b9050919050565b6000602082019050818103600083015261539181614bc0565b9050919050565b600060208201905081810360008301526153b181614c26565b9050919050565b600060208201905081810360008301526153d181614c8c565b9050919050565b600060208201905081810360008301526153f181614cf2565b9050919050565b6000602082019050818103600083015261541181614d58565b9050919050565b6000602082019050818103600083015261543181614dbe565b9050919050565b6000602082019050818103600083015261545181614e24565b9050919050565b6000602082019050818103600083015261547181614e8a565b9050919050565b6000602082019050818103600083015261549181614ef0565b9050919050565b60006020820190506154ad6000830184614f30565b92915050565b60006020820190506154c86000830184614f3f565b92915050565b60006040820190506154e36000830185614f3f565b6154f06020830184614f6c565b9392505050565b600060208201905061550c6000830184614f4e565b92915050565b60006020820190506155276000830184614f6c565b92915050565b60006040820190506155426000830185614f5d565b61554f6020830184614f5d565b9392505050565b6000604051905081810181811067ffffffffffffffff8211171561557d5761557c6156e6565b5b8060405250919050565b600067ffffffffffffffff8211156155a2576155a16156e6565b5b602082029050602081019050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b60006155e582615602565b9050919050565b60008115159050919050565b6000819050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600063ffffffff82169050919050565b600060ff82169050919050565b60006bffffffffffffffffffffffff82169050919050565b600061566c82615673565b9050919050565b600061567e82615685565b9050919050565b600061569082615602565b9050919050565b60006156a282615649565b9050919050565b60005b838110156156c75780820151818401526020810190506156ac565b838111156156d6576000848401525b50505050565b6000819050919050565bfe5b6000601f19601f8301169050919050565b615702816155da565b811461570d57600080fd5b50565b615719816155f8565b811461572457600080fd5b50565b61573081615622565b811461573b57600080fd5b50565b6157478161562c565b811461575257600080fd5b50565b61575e8161563c565b811461576957600080fd5b5056fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e63656175646974546f6b656e3a3a5f6d6f7665566f7465733a20766f746520616d6f756e7420756e646572666c6f777345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e63656175646974546f6b656e3a3a5f7772697465436865636b706f696e743a20626c6f636b206e756d626572206578636565647320333220626974736175646974546f6b656e3a3a5f6d6f7665566f7465733a20766f746520616d6f756e74206f766572666c6f777345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220f12fdc4668cfff7196c0906a413ba184e97f2e0baf5a3fdc6e15aa0ca71ffb4864736f6c63430007060033000000000000000000000000666f3cc013c01829ee14322fb57a05686e6420c2

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106102955760003560e01c806370a082311161016757806395a0f5eb116100ce578063c3cda52011610087578063c3cda5201461084c578063ca15c87314610868578063d547741f14610898578063dd62ed3e146108b4578063e7a324dc146108e4578063f1127ed81461090257610295565b806395a0f5eb1461076257806395d89b4114610780578063a217fddf1461079e578063a457c2d7146107bc578063a9059cbb146107ec578063b4b5ea571461081c57610295565b80638456cb59116101205780638456cb59146106b6578063882f327b146106c05780638f557373146106dc5780638fd3ab80146106f85780639010d07c1461070257806391d148541461073257610295565b806370a08231146105d057806375e2ff6514610600578063782d6fe11461061c57806379cc67901461064c5780637ecebe00146106685780638328dbcd1461069857610295565b8063313ce5671161020b5780634a387bef116101c45780634a387bef146104ea5780634a4fbeec14610506578063587cde1e146105365780635c19a95c146105665780635c975abb146105825780636fcfff45146105a057610295565b8063313ce5671461042a57806336568abe1461044857806339509351146104645780633f4ba83a1461049457806340c10f191461049e57806342966c68146104ce57610295565b806320606b701161025d57806320606b701461035457806323b872dd14610372578063248a9ca3146103a25780632e0f2625146103d25780632f2ff15d146103f05780632ff2e9dc1461040c57610295565b806306fdde031461029a578063092c5b3b146102b8578063095ea7b3146102d657806318160ddd146103065780631a921b3e14610324575b600080fd5b6102a2610933565b6040516102af9190615116565b60405180910390f35b6102c06109d5565b6040516102cd919061502c565b60405180910390f35b6102f060048036038101906102eb9190614254565b6109f9565b6040516102fd9190615011565b60405180910390f35b61030e610a17565b60405161031b9190615498565b60405180910390f35b61033e600480360381019061033991906141a0565b610a21565b60405161034b9190615011565b60405180910390f35b61035c610a41565b604051610369919061502c565b60405180910390f35b61038c60048036038101906103879190614205565b610a65565b6040516103999190615011565b60405180910390f35b6103bc60048036038101906103b79190614396565b610ce6565b6040516103c9919061502c565b60405180910390f35b6103da610d05565b6040516103e791906154f7565b60405180910390f35b61040a600480360381019061040591906143bf565b610d0a565b005b610414610d7d565b6040516104219190615498565b60405180910390f35b610432610d8e565b60405161043f91906154f7565b60405180910390f35b610462600480360381019061045d91906143bf565b610da5565b005b61047e60048036038101906104799190614254565b610e28565b60405161048b9190615011565b60405180910390f35b61049c610edb565b005b6104b860048036038101906104b39190614254565b610f4e565b6040516104c59190615011565b60405180910390f35b6104e860048036038101906104e39190614437565b61103d565b005b61050460048036038101906104ff91906141a0565b61117a565b005b610520600480360381019061051b91906141a0565b6111ef565b60405161052d9190615011565b60405180910390f35b610550600480360381019061054b91906141a0565b611245565b60405161055d9190614fb2565b60405180910390f35b610580600480360381019061057b91906141a0565b611278565b005b61058a611285565b6040516105979190615011565b60405180910390f35b6105ba60048036038101906105b591906141a0565b61129c565b6040516105c791906154b3565b60405180910390f35b6105ea60048036038101906105e591906141a0565b6112bf565b6040516105f79190615498565b60405180910390f35b61061a600480360381019061061591906141a0565b611308565b005b61063660048036038101906106319190614254565b61144b565b6040516106439190615512565b60405180910390f35b61066660048036038101906106619190614254565b611854565b005b610682600480360381019061067d91906141a0565b611993565b60405161068f9190615498565b60405180910390f35b6106a06119ab565b6040516106ad9190614fb2565b60405180910390f35b6106be6119d1565b005b6106da60048036038101906106d591906141a0565b611a44565b005b6106f660048036038101906106f19190614355565b611ab9565b005b610700611ba6565b005b61071c600480360381019061071791906143fb565b611e1d565b6040516107299190614fb2565b60405180910390f35b61074c600480360381019061074791906143bf565b611e4e565b6040516107599190615011565b60405180910390f35b61076a611e7f565b6040516107779190615498565b60405180910390f35b610788611e85565b6040516107959190615116565b60405180910390f35b6107a6611f27565b6040516107b3919061502c565b60405180910390f35b6107d660048036038101906107d19190614254565b611f2e565b6040516107e39190615011565b60405180910390f35b61080660048036038101906108019190614254565b611ffb565b6040516108139190615011565b60405180910390f35b610836600480360381019061083191906141a0565b61227a565b6040516108439190615512565b60405180910390f35b61086660048036038101906108619190614290565b612368565b005b610882600480360381019061087d9190614396565b6125f7565b60405161088f9190615498565b60405180910390f35b6108b260048036038101906108ad91906143bf565b61261d565b005b6108ce60048036038101906108c991906141c9565b612690565b6040516108db9190615498565b60405180910390f35b6108ec612717565b6040516108f9919061502c565b60405180910390f35b61091c60048036038101906109179190614319565b61273b565b60405161092a9291906154ce565b60405180910390f35b606060058054600181600116156101000203166002900480601f0160208091040260200160405190810160405280929190818152602001828054600181600116156101000203166002900480156109cb5780601f106109a0576101008083540402835291602001916109cb565b820191906000526020600020905b8154815290600101906020018083116109ae57829003601f168201915b5050505050905090565b7f7b765e0e932d348852a6f810bfa1ab891e259123f02db8cdcde614c57022335781565b6000610a0d610a06612819565b8484612821565b6001905092915050565b6000600454905090565b60016020528060005260406000206000915054906101000a900460ff1681565b7f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a86681565b60008383610a766000801b83611e4e565b15610b9657600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610b08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aff906153f8565b60405180910390fd5b600160008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610b95576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8c906153f8565b60405180910390fd5b5b843073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610c06576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bfd90615438565b60405180910390fd5b610ccf600860008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600860008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16876129ec565b610cda878787612ce7565b93505050509392505050565b6000806000838152602001908152602001600020600201549050919050565b601281565b610d3060008084815260200190815260200160002060020154610d2b612819565b611e4e565b610d6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6690615198565b60405180910390fd5b610d798282612dc0565b5050565b601260ff16600a0a630ee6b2800281565b6000600760009054906101000a900460ff16905090565b610dad612819565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614610e1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1190615458565b60405180910390fd5b610e248282612e53565b5050565b6000610ed1610e35612819565b84610ecc8560036000610e46612819565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461279490919063ffffffff16565b612821565b6001905092915050565b610f057f7b765e0e932d348852a6f810bfa1ab891e259123f02db8cdcde614c57022335733611e4e565b610f44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3b90615418565b60405180910390fd5b610f4c612ee6565b565b6000610f7a7f7b765e0e932d348852a6f810bfa1ab891e259123f02db8cdcde614c57022335733611e4e565b610fb9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fb090615418565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611029576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611020906152b8565b60405180910390fd5b6110338383612f88565b6001905092915050565b333361104c6000801b83611e4e565b1561116c57600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156110de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d5906153f8565b60405180910390fd5b600160008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561116b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611162906153f8565b60405180910390fd5b5b6111758361311e565b505050565b6111a47f7b765e0e932d348852a6f810bfa1ab891e259123f02db8cdcde614c57022335733611e4e565b6111e3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111da90615418565b60405180910390fd5b6111ec81613132565b50565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b60086020528060005260406000206000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61128233826131c4565b50565b6000600760019054906101000a900460ff16905090565b600a6020528060005260406000206000915054906101000a900463ffffffff1681565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6113156000801b33611e4e565b611354576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134b90615298565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156113c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113bb906153b8565b60405180910390fd5b80600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff167f53002f2ca3e2737f3405e7f734101551690f8426e082167285f3caa8e6c6a18260405160405180910390a250565b600043821061148f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148690615338565b60405180910390fd5b6000600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900463ffffffff16905060008163ffffffff1614156114fc57600091505061184e565b82600960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006001840363ffffffff1663ffffffff16815260200190815260200160002060000160009054906101000a900463ffffffff1663ffffffff16116115fe57600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006001830363ffffffff1663ffffffff16815260200190815260200160002060000160049054906101000a90046bffffffffffffffffffffffff1691505061184e565b82600960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008063ffffffff16815260200190815260200160002060000160009054906101000a900463ffffffff1663ffffffff16111561167f57600091505061184e565b6000806001830390505b8163ffffffff168163ffffffff1611156117d0576000600283830363ffffffff16816116b157fe5b04820390506000600960008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008363ffffffff1663ffffffff1681526020019081526020016000206040518060400160405290816000820160009054906101000a900463ffffffff1663ffffffff1663ffffffff1681526020016000820160049054906101000a90046bffffffffffffffffffffffff166bffffffffffffffffffffffff166bffffffffffffffffffffffff1681525050905086816000015163ffffffff1614156117a85780602001519550505050505061184e565b86816000015163ffffffff1610156117c2578193506117c9565b6001820392505b5050611689565b600960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008363ffffffff1663ffffffff16815260200190815260200160002060000160049054906101000a90046bffffffffffffffffffffffff1693505050505b92915050565b33336118636000801b83611e4e565b1561198357600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156118f5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118ec906153f8565b60405180910390fd5b600160008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611982576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611979906153f8565b60405180910390fd5b5b61198d8484613335565b50505050565b600b6020528060005260406000206000915090505481565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6119fb7f7b765e0e932d348852a6f810bfa1ab891e259123f02db8cdcde614c57022335733611e4e565b611a3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a3190615418565b60405180910390fd5b611a42613397565b565b611a6e7f7b765e0e932d348852a6f810bfa1ab891e259123f02db8cdcde614c57022335733611e4e565b611aad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa490615418565b60405180910390fd5b611ab68161343a565b50565b611ae37f7b765e0e932d348852a6f810bfa1ab891e259123f02db8cdcde614c57022335733611e4e565b611b22576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b1990615418565b60405180910390fd5b600081519050610100811115611b6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b6490615238565b60405180910390fd5b60005b81811015611ba157611b94838281518110611b8757fe5b602002602001015161343a565b8080600101915050611b70565b505050565b611bae611285565b15611bee576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611be5906152f8565b60405180910390fd5b6000611bf9336112bf565b9050600073ffffffffffffffffffffffffffffffffffffffff16600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611c8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8490615358565b60405180910390fd5b60008111611cd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc7906151d8565b60405180910390fd5b611cd93361343a565b611ceb33611ce6336112bf565b6134cb565b80600d60008282540192505081905550600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16637a3130e333836040518363ffffffff1660e01b8152600401611d58929190614fe8565b600060405180830381600087803b158015611d7257600080fd5b505af1158015611d86573d6000803e3d6000fd5b50505050611d9333613132565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f18df02dcc52b9c494f391df09661519c0069bd8540141946280399408205ca1a83604051611e129190615498565b60405180910390a350565b6000611e468260008086815260200190815260200160002060000161367b90919063ffffffff16565b905092915050565b6000611e778260008086815260200190815260200160002060000161369590919063ffffffff16565b905092915050565b600d5481565b606060068054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015611f1d5780601f10611ef257610100808354040283529160200191611f1d565b820191906000526020600020905b815481529060010190602001808311611f0057829003601f168201915b5050505050905090565b6000801b81565b6000611ff1611f3b612819565b84611fec856040518060600160405280602581526020016158966025913960036000611f65612819565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546136c59092919063ffffffff16565b612821565b6001905092915050565b6000338361200c6000801b83611e4e565b1561212c57600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561209e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612095906153f8565b60405180910390fd5b600160008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561212b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612122906153f8565b60405180910390fd5b5b843073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561219c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161219390615438565b60405180910390fd5b612265600860003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600860008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16876129ec565b61226f868661371a565b935050505092915050565b600080600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900463ffffffff16905060008163ffffffff16116122e4576000612360565b600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006001830363ffffffff1663ffffffff16815260200190815260200160002060000160049054906101000a90046bffffffffffffffffffffffff165b915050919050565b60007f8cad95687ba82c2ce50e74f7b754645e5117c3a5bec8151c0726d5857980a866612393610933565b805190602001206123a2613738565b306040516020016123b6949392919061508c565b60405160208183030381529060405280519060200120905060007fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf8888886040516020016124079493929190615047565b60405160208183030381529060405280519060200120905060008282604051602001612434929190614f7b565b60405160208183030381529060405280519060200120905060006001828888886040516000815260200160405260405161247194939291906150d1565b6020604051602081039080840390855afa158015612493573d6000803e3d6000fd5b505050602060405103519050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561250f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161250690615258565b60405180910390fd5b600b60008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600081548092919060010191905055891461259e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161259590615318565b60405180910390fd5b874211156125e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125d890615178565b60405180910390fd5b6125eb818b6131c4565b50505050505050505050565b6000612616600080848152602001908152602001600020600001613745565b9050919050565b6126436000808481526020019081526020016000206002015461263e612819565b611e4e565b612682576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612679906152d8565b60405180910390fd5b61268c8282612e53565b5050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b7fe48329057bfd03d55e49b547132e39cffd9c1820ad7b9d4c5307691425d15adf81565b6009602052816000526040600020602052806000526040600020600091509150508060000160009054906101000a900463ffffffff16908060000160049054906101000a90046bffffffffffffffffffffffff16905082565b6000808284019050838110156127df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127d690615218565b60405180910390fd5b8091505092915050565b6000612811836000018373ffffffffffffffffffffffffffffffffffffffff1660001b61375a565b905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612891576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612888906153d8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612901576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128f8906151f8565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516129df9190615498565b60405180910390a3505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015612a3657506000816bffffffffffffffffffffffff16115b15612ce257600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614612b8e576000600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900463ffffffff1690506000808263ffffffff1611612ad9576000612b55565b600960008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006001840363ffffffff1663ffffffff16815260200190815260200160002060000160049054906101000a90046bffffffffffffffffffffffff165b90506000612b7c82856040518060600160405280602e815260200161578f602e91396137ca565b9050612b8a8684848461383b565b5050505b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614612ce1576000600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900463ffffffff1690506000808263ffffffff1611612c2c576000612ca8565b600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006001840363ffffffff1663ffffffff16815260200190815260200160002060000160049054906101000a90046bffffffffffffffffffffffff165b90506000612ccf82856040518060600160405280602d8152602001615869602d9139613b2e565b9050612cdd8584848461383b565b5050505b5b505050565b6000612cf4848484613ba4565b612db584612d00612819565b612db0856040518060600160405280602881526020016157e360289139600360008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000612d66612819565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546136c59092919063ffffffff16565b612821565b600190509392505050565b612de7816000808581526020019081526020016000206000016127e990919063ffffffff16565b15612e4f57612df4612819565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b612e7a81600080858152602001908152602001600020600001613e3d90919063ffffffff16565b15612ee257612e87612819565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b612eee611285565b612f2d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f24906151b8565b60405180910390fd5b6000600760016101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa612f71612819565b604051612f7e9190614fcd565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612ff8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612fef90615478565b60405180910390fd5b61300460008383613e6d565b6130198160045461279490919063ffffffff16565b60048190555061307181600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461279490919063ffffffff16565b600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516131129190615498565b60405180910390a35050565b61312f613129612819565b826134cb565b50565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f6134e30ca79f58d7566528b3768c7d33c9c30815c63cfeae3b69f52cf31dd61a816040516131b99190614fb2565b60405180910390a150565b6000600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690506000613233846112bf565b905082600860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167f3134e8a2e6d97e929a7e54011ea5485d7d196dd5f0ba4d4ef95803e8e3fc257f60405160405180910390a461332f8284836129ec565b50505050565b60006133748260405180606001604052806024815260200161580b6024913961336586613360612819565b612690565b6136c59092919063ffffffff16565b905061338883613382612819565b83612821565b61339283836134cb565b505050565b61339f611285565b156133df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133d6906152f8565b60405180910390fd5b6001600760016101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a258613423612819565b6040516134309190614fcd565b60405180910390a1565b60018060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055507f1b6f28dfffb89ba40ba9067329c3c0e8bd926256b970cf7d060cd48b1cd0e44e816040516134c09190614fb2565b60405180910390a150565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561353b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161353290615378565b60405180910390fd5b61354782600083613e6d565b6135b38160405180606001604052806022815260200161576d60229139600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546136c59092919063ffffffff16565b600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555061360b81600454613e7290919063ffffffff16565b600481905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161366f9190615498565b60405180910390a35050565b600061368a8360000183613ec2565b60001c905092915050565b60006136bd836000018373ffffffffffffffffffffffffffffffffffffffff1660001b613f2f565b905092915050565b600083831115829061370d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016137049190615116565b60405180910390fd5b5082840390509392505050565b600061372e613727612819565b8484613ba4565b6001905092915050565b6000804690508091505090565b600061375382600001613f52565b9050919050565b60006137668383613f2f565b6137bf5782600001829080600181540180825580915050600190039060005260206000200160009091909190915055826000018054905083600101600084815260200190815260200160002081905550600190506137c4565b600090505b92915050565b6000836bffffffffffffffffffffffff16836bffffffffffffffffffffffff161115829061382e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016138259190615116565b60405180910390fd5b5082840390509392505050565b600061385f436040518060600160405280603a815260200161582f603a9139613f63565b905060008463ffffffff161180156138f457508063ffffffff16600960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006001870363ffffffff1663ffffffff16815260200190815260200160002060000160009054906101000a900463ffffffff1663ffffffff16145b1561398f5781600960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006001870363ffffffff1663ffffffff16815260200190815260200160002060000160046101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff160217905550613ad7565b60405180604001604052808263ffffffff168152602001836bffffffffffffffffffffffff16815250600960008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008663ffffffff1663ffffffff16815260200190815260200160002060008201518160000160006101000a81548163ffffffff021916908363ffffffff16021790555060208201518160000160046101000a8154816bffffffffffffffffffffffff02191690836bffffffffffffffffffffffff16021790555090505060018401600a60008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548163ffffffff021916908363ffffffff1602179055505b8473ffffffffffffffffffffffffffffffffffffffff167fdec2bacdd2f05b59de34da9b523dff8be42e5e38e818c82fdb0bae774387a7248484604051613b1f92919061552d565b60405180910390a25050505050565b6000808385019050846bffffffffffffffffffffffff16816bffffffffffffffffffffffff1610158390613b98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613b8f9190615116565b60405180910390fd5b50809150509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415613c14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613c0b90615398565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613c84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613c7b90615158565b60405180910390fd5b613c8f838383613e6d565b613cfb816040518060600160405280602681526020016157bd60269139600260008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546136c59092919063ffffffff16565b600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550613d9081600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461279490919063ffffffff16565b600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051613e309190615498565b60405180910390a3505050565b6000613e65836000018373ffffffffffffffffffffffffffffffffffffffff1660001b613fb9565b905092915050565b505050565b600082821115613eb7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613eae90615278565b60405180910390fd5b818303905092915050565b600081836000018054905011613f0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613f0490615138565b60405180910390fd5b826000018281548110613f1c57fe5b9060005260206000200154905092915050565b600080836001016000848152602001908152602001600020541415905092915050565b600081600001805490509050919050565b600064010000000083108290613faf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613fa69190615116565b60405180910390fd5b5082905092915050565b60008083600101600084815260200190815260200160002054905060008114614095576000600182039050600060018660000180549050039050600086600001828154811061400457fe5b906000526020600020015490508087600001848154811061402157fe5b906000526020600020018190555060018301876001016000838152602001908152602001600020819055508660000180548061405957fe5b6001900381819060005260206000200160009055905586600101600087815260200190815260200160002060009055600194505050505061409b565b60009150505b92915050565b60006140b46140af84615587565b615556565b905080838252602082019050828560208602820111156140d357600080fd5b60005b8581101561410357816140e9888261410d565b8452602084019350602083019250506001810190506140d6565b5050509392505050565b60008135905061411c816156f9565b92915050565b600082601f83011261413357600080fd5b81356141438482602086016140a1565b91505092915050565b60008135905061415b81615710565b92915050565b60008135905061417081615727565b92915050565b6000813590506141858161573e565b92915050565b60008135905061419a81615755565b92915050565b6000602082840312156141b257600080fd5b60006141c08482850161410d565b91505092915050565b600080604083850312156141dc57600080fd5b60006141ea8582860161410d565b92505060206141fb8582860161410d565b9150509250929050565b60008060006060848603121561421a57600080fd5b60006142288682870161410d565b93505060206142398682870161410d565b925050604061424a86828701614161565b9150509250925092565b6000806040838503121561426757600080fd5b60006142758582860161410d565b925050602061428685828601614161565b9150509250929050565b60008060008060008060c087890312156142a957600080fd5b60006142b789828a0161410d565b96505060206142c889828a01614161565b95505060406142d989828a01614161565b94505060606142ea89828a0161418b565b93505060806142fb89828a0161414c565b92505060a061430c89828a0161414c565b9150509295509295509295565b6000806040838503121561432c57600080fd5b600061433a8582860161410d565b925050602061434b85828601614176565b9150509250929050565b60006020828403121561436757600080fd5b600082013567ffffffffffffffff81111561438157600080fd5b61438d84828501614122565b91505092915050565b6000602082840312156143a857600080fd5b60006143b68482850161414c565b91505092915050565b600080604083850312156143d257600080fd5b60006143e08582860161414c565b92505060206143f18582860161410d565b9150509250929050565b6000806040838503121561440e57600080fd5b600061441c8582860161414c565b925050602061442d85828601614161565b9150509250929050565b60006020828403121561444957600080fd5b600061445784828501614161565b91505092915050565b61446981615661565b82525050565b614478816155da565b82525050565b614487816155ec565b82525050565b614496816155f8565b82525050565b6144ad6144a8826155f8565b6156dc565b82525050565b60006144be826155b3565b6144c881856155be565b93506144d88185602086016156a9565b6144e1816156e8565b840191505092915050565b60006144f96022836155be565b91507f456e756d657261626c655365743a20696e646578206f7574206f6620626f756e60008301527f64730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061455f6023836155be565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006145c5602c836155be565b91507f6175646974546f6b656e3a3a64656c656761746542795369673a207369676e6160008301527f74757265206578706972656400000000000000000000000000000000000000006020830152604082019050919050565b600061462b602f836155be565b91507f416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e60008301527f2061646d696e20746f206772616e7400000000000000000000000000000000006020830152604082019050919050565b60006146916014836155be565b91507f5061757361626c653a206e6f74207061757365640000000000000000000000006000830152602082019050919050565b60006146d1602c836155be565b91507f546f6b656e3a6d696772617465202d20416d6f756e74206f6620746f6b656e7360008301527f20697320726571756972656400000000000000000000000000000000000000006020830152604082019050919050565b60006147376022836155be565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061479d6002836155cf565b91507f19010000000000000000000000000000000000000000000000000000000000006000830152600282019050919050565b60006147dd601b836155be565b91507f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006000830152602082019050919050565b600061481d6025836155be565b91507f4c6f636b65642d6164644c6f636b4d756c7469706c653a204c69737420746f6f60008301527f206c6f6e670000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614883602c836155be565b91507f6175646974546f6b656e3a3a64656c656761746542795369673a20696e76616c60008301527f6964207369676e617475726500000000000000000000000000000000000000006020830152604082019050919050565b60006148e9601e836155be565b91507f536166654d6174683a207375627472616374696f6e206f766572666c6f7700006000830152602082019050919050565b6000614929603f836155be565b91507f4175646974546f6b656e2d7365744d6967726174696f6e4167656e743a204f6e60008301527f6c792061646d696e2063616e2063616c6c20746869732066756e6374696f6e006020830152604082019050919050565b600061498f6029836155be565b91507f546f6b656e3a6d696e74202d20526563697069656e742061646472657373206360008301527f616e2774206265203000000000000000000000000000000000000000000000006020830152604082019050919050565b60006149f56030836155be565b91507f416363657373436f6e74726f6c3a2073656e646572206d75737420626520616e60008301527f2061646d696e20746f207265766f6b65000000000000000000000000000000006020830152604082019050919050565b6000614a5b6010836155be565b91507f5061757361626c653a20706175736564000000000000000000000000000000006000830152602082019050919050565b6000614a9b6028836155be565b91507f6175646974546f6b656e3a3a64656c656761746542795369673a20696e76616c60008301527f6964206e6f6e63650000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614b01602d836155be565b91507f6175646974546f6b656e3a3a6765745072696f72566f7465733a206e6f74207960008301527f65742064657465726d696e6564000000000000000000000000000000000000006020830152604082019050919050565b6000614b67602d836155be565b91507f546f6b656e3a6d696772617465202d20456e746572206d6967726174696f6e2060008301527f6167656e742061646472657373000000000000000000000000000000000000006020830152604082019050919050565b6000614bcd6021836155be565b91507f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614c336025836155be565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614c996034836155be565b91507f546f6b656e3a7365744d6967726174696f6e4167656e74202d204d696772617460008301527f696f6e206167656e742063616e277420626520300000000000000000000000006020830152604082019050919050565b6000614cff6024836155be565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614d656024836155be565b91507f4c6f636b65643a3a69734e6f744c6f636b6564202d2055736572206973206c6f60008301527f636b6564000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614dcb6031836155be565b91507f4c6f636b65643a3a6973436f6e74726f6c6c6572202d2043616c6c657220697360008301527f206e6f74206120636f6e74726f6c6c65720000000000000000000000000000006020830152604082019050919050565b6000614e316034836155be565b91507f596f752061726520747279696e6720746f2073656e6420746f6b656e7320746f60008301527f207468697320746f6b656e20636f6e74726163740000000000000000000000006020830152604082019050919050565b6000614e97602f836155be565b91507f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008301527f20726f6c657320666f722073656c6600000000000000000000000000000000006020830152604082019050919050565b6000614efd601f836155be565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b614f3981615622565b82525050565b614f488161562c565b82525050565b614f578161563c565b82525050565b614f6681615697565b82525050565b614f7581615649565b82525050565b6000614f8682614790565b9150614f92828561449c565b602082019150614fa2828461449c565b6020820191508190509392505050565b6000602082019050614fc7600083018461446f565b92915050565b6000602082019050614fe26000830184614460565b92915050565b6000604082019050614ffd6000830185614460565b61500a6020830184614f30565b9392505050565b6000602082019050615026600083018461447e565b92915050565b6000602082019050615041600083018461448d565b92915050565b600060808201905061505c600083018761448d565b615069602083018661446f565b6150766040830185614f30565b6150836060830184614f30565b95945050505050565b60006080820190506150a1600083018761448d565b6150ae602083018661448d565b6150bb6040830185614f30565b6150c8606083018461446f565b95945050505050565b60006080820190506150e6600083018761448d565b6150f36020830186614f4e565b615100604083018561448d565b61510d606083018461448d565b95945050505050565b6000602082019050818103600083015261513081846144b3565b905092915050565b60006020820190508181036000830152615151816144ec565b9050919050565b6000602082019050818103600083015261517181614552565b9050919050565b60006020820190508181036000830152615191816145b8565b9050919050565b600060208201905081810360008301526151b18161461e565b9050919050565b600060208201905081810360008301526151d181614684565b9050919050565b600060208201905081810360008301526151f1816146c4565b9050919050565b600060208201905081810360008301526152118161472a565b9050919050565b60006020820190508181036000830152615231816147d0565b9050919050565b6000602082019050818103600083015261525181614810565b9050919050565b6000602082019050818103600083015261527181614876565b9050919050565b60006020820190508181036000830152615291816148dc565b9050919050565b600060208201905081810360008301526152b18161491c565b9050919050565b600060208201905081810360008301526152d181614982565b9050919050565b600060208201905081810360008301526152f1816149e8565b9050919050565b6000602082019050818103600083015261531181614a4e565b9050919050565b6000602082019050818103600083015261533181614a8e565b9050919050565b6000602082019050818103600083015261535181614af4565b9050919050565b6000602082019050818103600083015261537181614b5a565b9050919050565b6000602082019050818103600083015261539181614bc0565b9050919050565b600060208201905081810360008301526153b181614c26565b9050919050565b600060208201905081810360008301526153d181614c8c565b9050919050565b600060208201905081810360008301526153f181614cf2565b9050919050565b6000602082019050818103600083015261541181614d58565b9050919050565b6000602082019050818103600083015261543181614dbe565b9050919050565b6000602082019050818103600083015261545181614e24565b9050919050565b6000602082019050818103600083015261547181614e8a565b9050919050565b6000602082019050818103600083015261549181614ef0565b9050919050565b60006020820190506154ad6000830184614f30565b92915050565b60006020820190506154c86000830184614f3f565b92915050565b60006040820190506154e36000830185614f3f565b6154f06020830184614f6c565b9392505050565b600060208201905061550c6000830184614f4e565b92915050565b60006020820190506155276000830184614f6c565b92915050565b60006040820190506155426000830185614f5d565b61554f6020830184614f5d565b9392505050565b6000604051905081810181811067ffffffffffffffff8211171561557d5761557c6156e6565b5b8060405250919050565b600067ffffffffffffffff8211156155a2576155a16156e6565b5b602082029050602081019050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b60006155e582615602565b9050919050565b60008115159050919050565b6000819050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600063ffffffff82169050919050565b600060ff82169050919050565b60006bffffffffffffffffffffffff82169050919050565b600061566c82615673565b9050919050565b600061567e82615685565b9050919050565b600061569082615602565b9050919050565b60006156a282615649565b9050919050565b60005b838110156156c75780820151818401526020810190506156ac565b838111156156d6576000848401525b50505050565b6000819050919050565bfe5b6000601f19601f8301169050919050565b615702816155da565b811461570d57600080fd5b50565b615719816155f8565b811461572457600080fd5b50565b61573081615622565b811461573b57600080fd5b50565b6157478161562c565b811461575257600080fd5b50565b61575e8161563c565b811461576957600080fd5b5056fe45524332303a206275726e20616d6f756e7420657863656564732062616c616e63656175646974546f6b656e3a3a5f6d6f7665566f7465733a20766f746520616d6f756e7420756e646572666c6f777345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e63656175646974546f6b656e3a3a5f7772697465436865636b706f696e743a20626c6f636b206e756d626572206578636565647320333220626974736175646974546f6b656e3a3a5f6d6f7665566f7465733a20766f746520616d6f756e74206f766572666c6f777345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220f12fdc4668cfff7196c0906a413ba184e97f2e0baf5a3fdc6e15aa0ca71ffb4864736f6c63430007060033

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

000000000000000000000000666f3cc013c01829ee14322fb57a05686e6420c2

-----Decoded View---------------
Arg [0] : account (address): 0x666F3cc013C01829Ee14322fB57A05686e6420C2

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000666f3cc013c01829ee14322fb57a05686e6420c2


Deployed Bytecode Sourcemap

53021:12005:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13144:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50884:70;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15290:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14243:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50695:43;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53699:122;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;56191:296;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47325:114;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54542:35;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47701:227;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54584:76;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14087:91;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48910:209;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;16671:218;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57496:87;;;:::i;:::-;;56715:233;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57033:121;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52430:102;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;51787:103;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53149:45;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58880:102;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24162:86;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53577:49;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14414:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58370:358;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;61091:1224;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57239:149;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;54113:39;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54667:29;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57397:91;;;:::i;:::-;;51963:98;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52069:288;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57654:555;;;:::i;:::-;;46998:138;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;45959:139;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54703:28;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13354:95;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44704:49;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17392:269;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55768:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;60438:222;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;59416:821;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46272:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;48173:230;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;14992:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53915:117;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53438:70;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;;:::i;:::-;;;;;;;;13144:91;13189:13;13222:5;13215:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13144:91;:::o;50884:70::-;50926:28;50884:70;:::o;15290:169::-;15373:4;15390:39;15399:12;:10;:12::i;:::-;15413:7;15422:6;15390:8;:39::i;:::-;15447:4;15440:11;;15290:169;;;;:::o;14243:108::-;14304:7;14331:12;;14324:19;;14243:108;:::o;50695:43::-;;;;;;;;;;;;;;;;;;;;;;:::o;53699:122::-;53741:80;53699:122;:::o;56191:296::-;56347:4;56316;56322:2;51368:34;44749:4;51376:18;;51396:5;51368:7;:34::i;:::-;51364:284;;;51498:10;:17;51509:5;51498:17;;;;;;;;;;;;;;;;;;;;;;;;;51497:18;51489:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;51580:10;:15;51591:3;51580:15;;;;;;;;;;;;;;;;;;;;;;;;;51579:16;51571:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;51364:284;56334:2:::1;55534:4;55517:22;;:5;:22;;;;55495:124;;;;;;;;;;;;:::i;:::-;;;;;;;;;56365:61:::2;56380:9;:15;56390:4;56380:15;;;;;;;;;;;;;;;;;;;;;;;;;56397:9;:13;56407:2;56397:13;;;;;;;;;;;;;;;;;;;;;;;;;56419:5;56365:14;:61::i;:::-;56444:35;56463:4;56469:2;56473:5;56444:18;:35::i;:::-;56437:42;;51658:1:::1;56191:296:::0;;;;;;;:::o;47325:114::-;47382:7;47409:6;:12;47416:4;47409:12;;;;;;;;;;;:22;;;47402:29;;47325:114;;;:::o;54542:35::-;54575:2;54542:35;:::o;47701:227::-;47785:45;47793:6;:12;47800:4;47793:12;;;;;;;;;;;:22;;;47817:12;:10;:12::i;:::-;47785:7;:45::i;:::-;47777:105;;;;;;;;;;;;:::i;:::-;;;;;;;;;47895:25;47906:4;47912:7;47895:10;:25::i;:::-;47701:227;;:::o;54584:76::-;54575:2;54642:17;;54638:2;:21;54625:9;:35;54584:76;:::o;14087:91::-;14136:5;14161:9;;;;;;;;;;;14154:16;;14087:91;:::o;48910:209::-;49008:12;:10;:12::i;:::-;48997:23;;:7;:23;;;48989:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;49085:26;49097:4;49103:7;49085:11;:26::i;:::-;48910:209;;:::o;16671:218::-;16759:4;16776:83;16785:12;:10;:12::i;:::-;16799:7;16808:50;16847:10;16808:11;:25;16820:12;:10;:12::i;:::-;16808:25;;;;;;;;;;;;;;;:34;16834:7;16808:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;16776:8;:83::i;:::-;16877:4;16870:11;;16671:218;;;;:::o;57496:87::-;51011:36;50926:28;51036:10;51011:7;:36::i;:::-;51003:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;57559:16:::1;:14;:16::i;:::-;57496:87::o:0;56715:233::-;56788:4;51011:36;50926:28;51036:10;51011:7;:36::i;:::-;51003:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;56834:1:::1;56820:16;;:2;:16;;;;56812:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;56901:17;56907:2;56911:6;56901:5;:17::i;:::-;56936:4;56929:11;;56715:233:::0;;;;:::o;57033:121::-;57093:10;57105;51368:34;44749:4;51376:18;;51396:5;51368:7;:34::i;:::-;51364:284;;;51498:10;:17;51509:5;51498:17;;;;;;;;;;;;;;;;;;;;;;;;;51497:18;51489:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;51580:10;:15;51591:3;51580:15;;;;;;;;;;;;;;;;;;;;;;;;;51579:16;51571:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;51364:284;57128:18:::1;57139:6;57128:10;:18::i;:::-;57033:121:::0;;;:::o;52430:102::-;51011:36;50926:28;51036:10;51011:7;:36::i;:::-;51003:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;52506:18:::1;52518:5;52506:11;:18::i;:::-;52430:102:::0;:::o;51787:103::-;51841:4;51865:10;:17;51876:5;51865:17;;;;;;;;;;;;;;;;;;;;;;;;;51858:24;;51787:103;;;:::o;53149:45::-;;;;;;;;;;;;;;;;;;;;;;:::o;58880:102::-;58942:32;58952:10;58964:9;58942;:32::i;:::-;58880:102;:::o;24162:86::-;24209:4;24233:7;;;;;;;;;;;24226:14;;24162:86;:::o;53577:49::-;;;;;;;;;;;;;;;;;;;;;;:::o;14414:127::-;14488:7;14515:9;:18;14525:7;14515:18;;;;;;;;;;;;;;;;14508:25;;14414:127;;;:::o;58370:358::-;58442:39;44749:4;58450:18;;58470:10;58442:7;:39::i;:::-;58434:115;;;;;;;;;;;;:::i;:::-;;;;;;;;;58586:1;58568:20;;:6;:20;;;;58560:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;58673:6;58656:14;;:23;;;;;;;;;;;;;;;;;;58713:6;58695:25;;;;;;;;;;;;58370:358;:::o;61091:1224::-;61170:6;61211:12;61197:11;:26;61189:84;;;;;;;;;;;;:::i;:::-;;;;;;;;;61286:19;61308:14;:23;61323:7;61308:23;;;;;;;;;;;;;;;;;;;;;;;;;61286:45;;61362:1;61346:12;:17;;;61342:58;;;61387:1;61380:8;;;;;61342:58;61512:11;61460;:20;61472:7;61460:20;;;;;;;;;;;;;;;:38;61496:1;61481:12;:16;61460:38;;;;;;;;;;;;;;;:48;;;;;;;;;;;;:63;;;61456:147;;61547:11;:20;61559:7;61547:20;;;;;;;;;;;;;;;:38;61583:1;61568:12;:16;61547:38;;;;;;;;;;;;;;;:44;;;;;;;;;;;;61540:51;;;;;61456:147;61700:11;61664;:20;61676:7;61664:20;;;;;;;;;;;;;;;:23;61685:1;61664:23;;;;;;;;;;;;;:33;;;;;;;;;;;;:47;;;61660:88;;;61735:1;61728:8;;;;;61660:88;61760:12;61787;61817:1;61802:12;:16;61787:31;;61829:428;61844:5;61836:13;;:5;:13;;;61829:428;;;61866:13;61908:1;61899:5;61891;:13;61890:19;;;;;;;;61882:5;:27;61866:43;;61951:20;61974:11;:20;61986:7;61974:20;;;;;;;;;;;;;;;:28;61995:6;61974:28;;;;;;;;;;;;;;;61951:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;62037:11;62021:2;:12;;;:27;;;62017:229;;;62076:2;:8;;;62069:15;;;;;;;;;62017:229;62125:11;62110:2;:12;;;:26;;;62106:140;;;62165:6;62157:14;;62106:140;;;62229:1;62220:6;:10;62212:18;;62106:140;61829:428;;;;;62274:11;:20;62286:7;62274:20;;;;;;;;;;;;;;;:27;62295:5;62274:27;;;;;;;;;;;;;;;:33;;;;;;;;;;;;62267:40;;;;;61091:1224;;;;;:::o;57239:149::-;57317:10;57329;51368:34;44749:4;51376:18;;51396:5;51368:7;:34::i;:::-;51364:284;;;51498:10;:17;51509:5;51498:17;;;;;;;;;;;;;;;;;;;;;;;;;51497:18;51489:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;51580:10;:15;51591:3;51580:15;;;;;;;;;;;;;;;;;;;;;;;;;51579:16;51571:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;51364:284;57352:28:::1;57367:4;57373:6;57352:14;:28::i;:::-;57239:149:::0;;;;:::o;54113:39::-;;;;;;;;;;;;;;;;;:::o;54667:29::-;;;;;;;;;;;;;:::o;57397:91::-;51011:36;50926:28;51036:10;51011:7;:36::i;:::-;51003:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;57466:14:::1;:12;:14::i;:::-;57397:91::o:0;51963:98::-;51011:36;50926:28;51036:10;51011:7;:36::i;:::-;51003:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;52038:15:::1;52047:5;52038:8;:15::i;:::-;51963:98:::0;:::o;52069:288::-;51011:36;50926:28;51036:10;51011:7;:36::i;:::-;51003:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;52152:14:::1;52169:6;:13;52152:30;;52211:3;52201:6;:13;;52193:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;52272:9;52267:83;52291:6;52287:1;:10;52267:83;;;52319:19;52328:6;52335:1;52328:9;;;;;;;;;;;;;;52319:8;:19::i;:::-;52299:3;;;;;;;52267:83;;;;51114:1;52069:288:::0;:::o;57654:555::-;24488:8;:6;:8::i;:::-;24487:9;24479:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;57709:13:::1;57725:21;57735:10;57725:9;:21::i;:::-;57709:37;;57791:1;57765:28;;:14;;;;;;;;;;;:28;;;;57757:86;;;;;;;;;;;;:::i;:::-;;;;;;;;;57870:1;57862:5;:9;57854:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;57933:20;57942:10;57933:8;:20::i;:::-;57964:40;57970:10;57982:21;57992:10;57982:9;:21::i;:::-;57964:5;:40::i;:::-;58032:5;58015:13;;:22;;;;;;;;;;;58063:14;;;;;;;;;;;58048:42;;;58091:10;58103:5;58048:61;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;58120:23;58132:10;58120:11;:23::i;:::-;58179:14;;;;;;;;;;;58159:42;;58167:10;58159:42;;;58195:5;58159:42;;;;;;:::i;:::-;;;;;;;;24528:1;57654:555::o:0;46998:138::-;47071:7;47098:30;47122:5;47098:6;:12;47105:4;47098:12;;;;;;;;;;;:20;;:23;;:30;;;;:::i;:::-;47091:37;;46998:138;;;;:::o;45959:139::-;46028:4;46052:38;46082:7;46052:6;:12;46059:4;46052:12;;;;;;;;;;;:20;;:29;;:38;;;;:::i;:::-;46045:45;;45959:139;;;;:::o;54703:28::-;;;;:::o;13354:95::-;13401:13;13434:7;13427:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13354:95;:::o;44704:49::-;44749:4;44704:49;;;:::o;17392:269::-;17485:4;17502:129;17511:12;:10;:12::i;:::-;17525:7;17534:96;17573:15;17534:96;;;;;;;;;;;;;;;;;:11;:25;17546:12;:10;:12::i;:::-;17534:25;;;;;;;;;;;;;;;:34;17560:7;17534:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;17502:8;:129::i;:::-;17649:4;17642:11;;17392:269;;;;:::o;55768:295::-;55923:4;55868:10;55880:2;51368:34;44749:4;51376:18;;51396:5;51368:7;:34::i;:::-;51364:284;;;51498:10;:17;51509:5;51498:17;;;;;;;;;;;;;;;;;;;;;;;;;51497:18;51489:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;51580:10;:15;51591:3;51580:15;;;;;;;;;;;;;;;;;;;;;;;;;51579:16;51571:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;51364:284;55901:2:::1;55534:4;55517:22;;:5;:22;;;;55495:124;;;;;;;;;;;;:::i;:::-;;;;;;;;;55945:67:::2;55960:9;:21;55970:10;55960:21;;;;;;;;;;;;;;;;;;;;;;;;;55983:9;:13;55993:2;55983:13;;;;;;;;;;;;;;;;;;;;;;;;;56005:5;55945:14;:67::i;:::-;56030:25;56045:2;56049:5;56030:14;:25::i;:::-;56023:32;;51658:1:::1;55768:295:::0;;;;;;:::o;60438:222::-;60503:6;60522:19;60544:14;:23;60559:7;60544:23;;;;;;;;;;;;;;;;;;;;;;;;;60522:45;;60600:1;60585:12;:16;;;:67;;60651:1;60585:67;;;60604:11;:20;60616:7;60604:20;;;;;;;;;;;;;;;:38;60640:1;60625:12;:16;60604:38;;;;;;;;;;;;;;;:44;;;;;;;;;;;;60585:67;60578:74;;;60438:222;;;:::o;59416:821::-;59532:23;53741:80;59612:6;:4;:6::i;:::-;59596:24;;;;;;59622:12;:10;:12::i;:::-;59644:4;59568:82;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;59558:93;;;;;;59532:119;;59662:18;53961:71;59725:9;59736:5;59743:6;59693:57;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;59683:68;;;;;;59662:89;;59762:14;59818:15;59835:10;59789:57;;;;;;;;;:::i;:::-;;;;;;;;;;;;;59779:68;;;;;;59762:85;;59858:17;59878:26;59888:6;59896:1;59899;59902;59878:26;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;59858:46;;59944:1;59923:23;;:9;:23;;;;59915:80;;;;;;;;;;;;:::i;:::-;;;;;;;;;60023:6;:17;60030:9;60023:17;;;;;;;;;;;;;;;;:19;;;;;;;;;;;;60014:5;:28;60006:81;;;;;;;;;;;;:::i;:::-;;;;;;;;;60125:6;60106:15;:25;;60098:82;;;;;;;;;;;;:::i;:::-;;;;;;;;;60198:31;60208:9;60219;60198;:31::i;:::-;60191:38;;;;59416:821;;;;;;:::o;46272:127::-;46335:7;46362:29;:6;:12;46369:4;46362:12;;;;;;;;;;;:20;;:27;:29::i;:::-;46355:36;;46272:127;;;:::o;48173:230::-;48258:45;48266:6;:12;48273:4;48266:12;;;;;;;;;;;:22;;;48290:12;:10;:12::i;:::-;48258:7;:45::i;:::-;48250:106;;;;;;;;;;;;:::i;:::-;;;;;;;;;48369:26;48381:4;48387:7;48369:11;:26::i;:::-;48173:230;;:::o;14992:151::-;15081:7;15108:11;:18;15120:5;15108:18;;;;;;;;;;;;;;;:27;15127:7;15108:27;;;;;;;;;;;;;;;;15101:34;;14992:151;;;;:::o;53915:117::-;53961:71;53915:117;:::o;53438:70::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;6396:179::-;6454:7;6474:9;6490:1;6486;:5;6474:17;;6515:1;6510;:6;;6502:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;6566:1;6559:8;;;6396:179;;;;:::o;32075:152::-;32145:4;32169:50;32174:3;:10;;32210:5;32194:23;;32186:32;;32169:4;:50::i;:::-;32162:57;;32075:152;;;;:::o;609:106::-;662:15;697:10;690:17;;609:106;:::o;20539:346::-;20658:1;20641:19;;:5;:19;;;;20633:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20739:1;20720:21;;:7;:21;;;;20712:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20823:6;20793:11;:18;20805:5;20793:18;;;;;;;;;;;;;;;:27;20812:7;20793:27;;;;;;;;;;;;;;;:36;;;;20861:7;20845:32;;20854:5;20845:32;;;20870:6;20845:32;;;;;;:::i;:::-;;;;;;;;20539:346;;;:::o;62718:951::-;62823:6;62813:16;;:6;:16;;;;:30;;;;;62842:1;62833:6;:10;;;62813:30;62809:853;;;62882:1;62864:20;;:6;:20;;;62860:388;;62905:16;62924:14;:22;62939:6;62924:22;;;;;;;;;;;;;;;;;;;;;;;;;62905:41;;62965:16;62996:1;62984:9;:13;;;:60;;63043:1;62984:60;;;63000:11;:19;63012:6;63000:19;;;;;;;;;;;;;;;:34;63032:1;63020:9;:13;63000:34;;;;;;;;;;;;;;;:40;;;;;;;;;;;;62984:60;62965:79;;63063:16;63082:74;63088:9;63099:6;63082:74;;;;;;;;;;;;;;;;;:5;:74::i;:::-;63063:93;;63175:57;63192:6;63200:9;63211;63222;63175:16;:57::i;:::-;62860:388;;;;63286:1;63268:20;;:6;:20;;;63264:387;;63309:16;63328:14;:22;63343:6;63328:22;;;;;;;;;;;;;;;;;;;;;;;;;63309:41;;63369:16;63400:1;63388:9;:13;;;:60;;63447:1;63388:60;;;63404:11;:19;63416:6;63404:19;;;;;;;;;;;;;;;:34;63436:1;63424:9;:13;63404:34;;;;;;;;;;;;;;;:40;;;;;;;;;;;;63388:60;63369:79;;63467:16;63486:73;63492:9;63503:6;63486:73;;;;;;;;;;;;;;;;;:5;:73::i;:::-;63467:92;;63578:57;63595:6;63603:9;63614;63625;63578:16;:57::i;:::-;63264:387;;;;62809:853;62718:951;;;:::o;15941:321::-;16047:4;16064:36;16074:6;16082:9;16093:6;16064:9;:36::i;:::-;16111:121;16120:6;16128:12;:10;:12::i;:::-;16142:89;16180:6;16142:89;;;;;;;;;;;;;;;;;:11;:19;16154:6;16142:19;;;;;;;;;;;;;;;:33;16162:12;:10;:12::i;:::-;16142:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;16111:8;:121::i;:::-;16250:4;16243:11;;15941:321;;;;;:::o;50153:188::-;50227:33;50252:7;50227:6;:12;50234:4;50227:12;;;;;;;;;;;:20;;:24;;:33;;;;:::i;:::-;50223:111;;;50309:12;:10;:12::i;:::-;50282:40;;50300:7;50282:40;;50294:4;50282:40;;;;;;;;;;50223:111;50153:188;;:::o;50349:192::-;50424:36;50452:7;50424:6;:12;50431:4;50424:12;;;;;;;;;;;:20;;:27;;:36;;;;:::i;:::-;50420:114;;;50509:12;:10;:12::i;:::-;50482:40;;50500:7;50482:40;;50494:4;50482:40;;;;;;;;;;50420:114;50349:192;;:::o;25221:120::-;24765:8;:6;:8::i;:::-;24757:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;25290:5:::1;25280:7;;:15;;;;;;;;;;;;;;;;;;25311:22;25320:12;:10;:12::i;:::-;25311:22;;;;;;:::i;:::-;;;;;;;;25221:120::o:0;18972:378::-;19075:1;19056:21;;:7;:21;;;;19048:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;19126:49;19155:1;19159:7;19168:6;19126:20;:49::i;:::-;19203:24;19220:6;19203:12;;:16;;:24;;;;:::i;:::-;19188:12;:39;;;;19259:30;19282:6;19259:9;:18;19269:7;19259:18;;;;;;;;;;;;;;;;:22;;:30;;;;:::i;:::-;19238:9;:18;19248:7;19238:18;;;;;;;;;;;;;;;:51;;;;19326:7;19305:37;;19322:1;19305:37;;;19335:6;19305:37;;;;;;:::i;:::-;;;;;;;;18972:378;;:::o;22445:91::-;22501:27;22507:12;:10;:12::i;:::-;22521:6;22501:5;:27::i;:::-;22445:91;:::o;52831:124::-;52908:5;52888:10;:17;52899:5;52888:17;;;;;;;;;;;;;;;;:25;;;;;;;;;;;;;;;;;;52929:18;52941:5;52929:18;;;;;;:::i;:::-;;;;;;;;52831:124;:::o;62323:384::-;62400:23;62426:9;:20;62436:9;62426:20;;;;;;;;;;;;;;;;;;;;;;;;;62400:46;;62457:23;62490:20;62500:9;62490;:20::i;:::-;62457:54;;62545:9;62522;:20;62532:9;62522:20;;;;;;;;;;;;;;;;:32;;;;;;;;;;;;;;;;;;62616:9;62572:54;;62599:15;62572:54;;62588:9;62572:54;;;;;;;;;;;;62639:60;62654:15;62671:9;62682:16;62639:14;:60::i;:::-;62323:384;;;;:::o;22855:295::-;22932:26;22961:84;22998:6;22961:84;;;;;;;;;;;;;;;;;:32;22971:7;22980:12;:10;:12::i;:::-;22961:9;:32::i;:::-;:36;;:84;;;;;:::i;:::-;22932:113;;23058:51;23067:7;23076:12;:10;:12::i;:::-;23090:18;23058:8;:51::i;:::-;23120:22;23126:7;23135:6;23120:5;:22::i;:::-;22855:295;;;:::o;24962:118::-;24488:8;:6;:8::i;:::-;24487:9;24479:38;;;;;;;;;;;;:::i;:::-;;;;;;;;;25032:4:::1;25022:7;;:14;;;;;;;;;;;;;;;;;;25052:20;25059:12;:10;:12::i;:::-;25052:20;;;;;;:::i;:::-;;;;;;;;24962:118::o:0;52622:117::-;52695:4;52675:10;:17;52686:5;52675:17;;;;;;;;;;;;;;;;:24;;;;;;;;;;;;;;;;;;52715:16;52725:5;52715:16;;;;;;:::i;:::-;;;;;;;;52622:117;:::o;19683:418::-;19786:1;19767:21;;:7;:21;;;;19759:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;19839:49;19860:7;19877:1;19881:6;19839:20;:49::i;:::-;19922:68;19945:6;19922:68;;;;;;;;;;;;;;;;;:9;:18;19932:7;19922:18;;;;;;;;;;;;;;;;:22;;:68;;;;;:::i;:::-;19901:9;:18;19911:7;19901:18;;;;;;;;;;;;;;;:89;;;;20016:24;20033:6;20016:12;;:16;;:24;;;;:::i;:::-;20001:12;:39;;;;20082:1;20056:37;;20065:7;20056:37;;;20086:6;20056:37;;;;;;:::i;:::-;;;;;;;;19683:418;;:::o;33361:158::-;33435:7;33486:22;33490:3;:10;;33502:5;33486:3;:22::i;:::-;33478:31;;33455:56;;33361:158;;;;:::o;32647:167::-;32727:4;32751:55;32761:3;:10;;32797:5;32781:23;;32773:32;;32751:9;:55::i;:::-;32744:62;;32647:167;;;;:::o;9223:166::-;9309:7;9342:1;9337;:6;;9345:12;9329:29;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;9380:1;9376;:5;9369:12;;9223:166;;;;;:::o;14754:175::-;14840:4;14857:42;14867:12;:10;:12::i;:::-;14881:9;14892:6;14857:9;:42::i;:::-;14917:4;14910:11;;14754:175;;;;:::o;64858:153::-;64903:4;64920:15;64968:9;64957:20;;64996:7;64989:14;;;64858:153;:::o;32900:117::-;32963:7;32990:19;32998:3;:10;;32990:7;:19::i;:::-;32983:26;;32900:117;;;:::o;27139:414::-;27202:4;27224:21;27234:3;27239:5;27224:9;:21::i;:::-;27219:327;;27262:3;:11;;27279:5;27262:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27445:3;:11;;:18;;;;27423:3;:12;;:19;27436:5;27423:19;;;;;;;;;;;:40;;;;27485:4;27478:11;;;;27219:327;27529:5;27522:12;;27139:414;;;;;:::o;64685:165::-;64771:6;64803:1;64798:6;;:1;:6;;;;64806:12;64790:29;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;64841:1;64837;:5;64830:12;;64685:165;;;;;:::o;63677:635::-;63795:18;63816:82;63823:12;63816:82;;;;;;;;;;;;;;;;;:6;:82::i;:::-;63795:103;;63928:1;63913:12;:16;;;:85;;;;;63987:11;63933:65;;:11;:22;63945:9;63933:22;;;;;;;;;;;;;;;:40;63971:1;63956:12;:16;63933:40;;;;;;;;;;;;;;;:50;;;;;;;;;;;;:65;;;63913:85;63909:329;;;64062:8;64013:11;:22;64025:9;64013:22;;;;;;;;;;;;;;;:40;64051:1;64036:12;:16;64013:40;;;;;;;;;;;;;;;:46;;;:57;;;;;;;;;;;;;;;;;;63909:329;;;64138:33;;;;;;;;64149:11;64138:33;;;;;;64162:8;64138:33;;;;;64099:11;:22;64111:9;64099:22;;;;;;;;;;;;;;;:36;64122:12;64099:36;;;;;;;;;;;;;;;:72;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;64227:1;64212:12;:16;64184:14;:25;64199:9;64184:25;;;;;;;;;;;;;;;;:44;;;;;;;;;;;;;;;;;;63909:329;64274:9;64253:51;;;64285:8;64295;64253:51;;;;;;;:::i;:::-;;;;;;;;63677:635;;;;;:::o;64489:188::-;64575:6;64594:8;64609:1;64605;:5;64594:16;;64634:1;64629:6;;:1;:6;;;;64637:12;64621:29;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;64668:1;64661:8;;;64489:188;;;;;:::o;18151:539::-;18275:1;18257:20;;:6;:20;;;;18249:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;18359:1;18338:23;;:9;:23;;;;18330:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;18414:47;18435:6;18443:9;18454:6;18414:20;:47::i;:::-;18494:71;18516:6;18494:71;;;;;;;;;;;;;;;;;:9;:17;18504:6;18494:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;18474:9;:17;18484:6;18474:17;;;;;;;;;;;;;;;:91;;;;18599:32;18624:6;18599:9;:20;18609:9;18599:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;18576:9;:20;18586:9;18576:20;;;;;;;;;;;;;;;:55;;;;18664:9;18647:35;;18656:6;18647:35;;;18675:6;18647:35;;;;;;:::i;:::-;;;;;;;;18151:539;;;:::o;32403:158::-;32476:4;32500:53;32508:3;:10;;32544:5;32528:23;;32520:32;;32500:7;:53::i;:::-;32493:60;;32403:158;;;;:::o;21918:92::-;;;;:::o;6858:158::-;6916:7;6949:1;6944;:6;;6936:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;7007:1;7003;:5;6996:12;;6858:158;;;;:::o;30027:204::-;30094:7;30143:5;30122:3;:11;;:18;;;;:26;30114:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;30205:3;:11;;30217:5;30205:18;;;;;;;;;;;;;;;;30198:25;;30027:204;;;;:::o;29359:129::-;29432:4;29479:1;29456:3;:12;;:19;29469:5;29456:19;;;;;;;;;;;;:24;;29449:31;;29359:129;;;;:::o;29574:109::-;29630:7;29657:3;:11;;:18;;;;29650:25;;29574:109;;;:::o;64320:161::-;64395:6;64426:5;64422:1;:9;64433:12;64414:32;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;64471:1;64457:16;;64320:161;;;;:::o;27729:1544::-;27795:4;27913:18;27934:3;:12;;:19;27947:5;27934:19;;;;;;;;;;;;27913:40;;27984:1;27970:10;:15;27966:1300;;28332:21;28369:1;28356:10;:14;28332:38;;28385:17;28426:1;28405:3;:11;;:18;;;;:22;28385:42;;28672:17;28692:3;:11;;28704:9;28692:22;;;;;;;;;;;;;;;;28672:42;;28838:9;28809:3;:11;;28821:13;28809:26;;;;;;;;;;;;;;;:38;;;;28957:1;28941:13;:17;28915:3;:12;;:23;28928:9;28915:23;;;;;;;;;;;:43;;;;29067:3;:11;;:17;;;;;;;;;;;;;;;;;;;;;;;;29162:3;:12;;:19;29175:5;29162:19;;;;;;;;;;;29155:26;;;29205:4;29198:11;;;;;;;;27966:1300;29249:5;29242:12;;;27729:1544;;;;;:::o;24:622:1:-;;145:80;160:64;217:6;160:64;:::i;:::-;145:80;:::i;:::-;136:89;;245:5;273:6;266:5;259:21;299:4;292:5;288:16;281:23;;324:6;374:3;366:4;358:6;354:17;349:3;345:27;342:36;339:2;;;391:1;388;381:12;339:2;419:1;404:236;429:6;426:1;423:13;404:236;;;496:3;524:37;557:3;545:10;524:37;:::i;:::-;519:3;512:50;591:4;586:3;582:14;575:21;;625:4;620:3;616:14;609:21;;464:176;451:1;448;444:9;439:14;;404:236;;;408:14;126:520;;;;;;;:::o;652:139::-;;736:6;723:20;714:29;;752:33;779:5;752:33;:::i;:::-;704:87;;;;:::o;814:303::-;;934:3;927:4;919:6;915:17;911:27;901:2;;952:1;949;942:12;901:2;992:6;979:20;1017:94;1107:3;1099:6;1092:4;1084:6;1080:17;1017:94;:::i;:::-;1008:103;;891:226;;;;;:::o;1123:139::-;;1207:6;1194:20;1185:29;;1223:33;1250:5;1223:33;:::i;:::-;1175:87;;;;:::o;1268:139::-;;1352:6;1339:20;1330:29;;1368:33;1395:5;1368:33;:::i;:::-;1320:87;;;;:::o;1413:137::-;;1496:6;1483:20;1474:29;;1512:32;1538:5;1512:32;:::i;:::-;1464:86;;;;:::o;1556:135::-;;1638:6;1625:20;1616:29;;1654:31;1679:5;1654:31;:::i;:::-;1606:85;;;;:::o;1697:262::-;;1805:2;1793:9;1784:7;1780:23;1776:32;1773:2;;;1821:1;1818;1811:12;1773:2;1864:1;1889:53;1934:7;1925:6;1914:9;1910:22;1889:53;:::i;:::-;1879:63;;1835:117;1763:196;;;;:::o;1965:407::-;;;2090:2;2078:9;2069:7;2065:23;2061:32;2058:2;;;2106:1;2103;2096:12;2058:2;2149:1;2174:53;2219:7;2210:6;2199:9;2195:22;2174:53;:::i;:::-;2164:63;;2120:117;2276:2;2302:53;2347:7;2338:6;2327:9;2323:22;2302:53;:::i;:::-;2292:63;;2247:118;2048:324;;;;;:::o;2378:552::-;;;;2520:2;2508:9;2499:7;2495:23;2491:32;2488:2;;;2536:1;2533;2526:12;2488:2;2579:1;2604:53;2649:7;2640:6;2629:9;2625:22;2604:53;:::i;:::-;2594:63;;2550:117;2706:2;2732:53;2777:7;2768:6;2757:9;2753:22;2732:53;:::i;:::-;2722:63;;2677:118;2834:2;2860:53;2905:7;2896:6;2885:9;2881:22;2860:53;:::i;:::-;2850:63;;2805:118;2478:452;;;;;:::o;2936:407::-;;;3061:2;3049:9;3040:7;3036:23;3032:32;3029:2;;;3077:1;3074;3067:12;3029:2;3120:1;3145:53;3190:7;3181:6;3170:9;3166:22;3145:53;:::i;:::-;3135:63;;3091:117;3247:2;3273:53;3318:7;3309:6;3298:9;3294:22;3273:53;:::i;:::-;3263:63;;3218:118;3019:324;;;;;:::o;3349:986::-;;;;;;;3540:3;3528:9;3519:7;3515:23;3511:33;3508:2;;;3557:1;3554;3547:12;3508:2;3600:1;3625:53;3670:7;3661:6;3650:9;3646:22;3625:53;:::i;:::-;3615:63;;3571:117;3727:2;3753:53;3798:7;3789:6;3778:9;3774:22;3753:53;:::i;:::-;3743:63;;3698:118;3855:2;3881:53;3926:7;3917:6;3906:9;3902:22;3881:53;:::i;:::-;3871:63;;3826:118;3983:2;4009:51;4052:7;4043:6;4032:9;4028:22;4009:51;:::i;:::-;3999:61;;3954:116;4109:3;4136:53;4181:7;4172:6;4161:9;4157:22;4136:53;:::i;:::-;4126:63;;4080:119;4238:3;4265:53;4310:7;4301:6;4290:9;4286:22;4265:53;:::i;:::-;4255:63;;4209:119;3498:837;;;;;;;;:::o;4341:405::-;;;4465:2;4453:9;4444:7;4440:23;4436:32;4433:2;;;4481:1;4478;4471:12;4433:2;4524:1;4549:53;4594:7;4585:6;4574:9;4570:22;4549:53;:::i;:::-;4539:63;;4495:117;4651:2;4677:52;4721:7;4712:6;4701:9;4697:22;4677:52;:::i;:::-;4667:62;;4622:117;4423:323;;;;;:::o;4752:405::-;;4885:2;4873:9;4864:7;4860:23;4856:32;4853:2;;;4901:1;4898;4891:12;4853:2;4972:1;4961:9;4957:17;4944:31;5002:18;4994:6;4991:30;4988:2;;;5034:1;5031;5024:12;4988:2;5062:78;5132:7;5123:6;5112:9;5108:22;5062:78;:::i;:::-;5052:88;;4915:235;4843:314;;;;:::o;5163:262::-;;5271:2;5259:9;5250:7;5246:23;5242:32;5239:2;;;5287:1;5284;5277:12;5239:2;5330:1;5355:53;5400:7;5391:6;5380:9;5376:22;5355:53;:::i;:::-;5345:63;;5301:117;5229:196;;;;:::o;5431:407::-;;;5556:2;5544:9;5535:7;5531:23;5527:32;5524:2;;;5572:1;5569;5562:12;5524:2;5615:1;5640:53;5685:7;5676:6;5665:9;5661:22;5640:53;:::i;:::-;5630:63;;5586:117;5742:2;5768:53;5813:7;5804:6;5793:9;5789:22;5768:53;:::i;:::-;5758:63;;5713:118;5514:324;;;;;:::o;5844:407::-;;;5969:2;5957:9;5948:7;5944:23;5940:32;5937:2;;;5985:1;5982;5975:12;5937:2;6028:1;6053:53;6098:7;6089:6;6078:9;6074:22;6053:53;:::i;:::-;6043:63;;5999:117;6155:2;6181:53;6226:7;6217:6;6206:9;6202:22;6181:53;:::i;:::-;6171:63;;6126:118;5927:324;;;;;:::o;6257:262::-;;6365:2;6353:9;6344:7;6340:23;6336:32;6333:2;;;6381:1;6378;6371:12;6333:2;6424:1;6449:53;6494:7;6485:6;6474:9;6470:22;6449:53;:::i;:::-;6439:63;;6395:117;6323:196;;;;:::o;6525:147::-;6620:45;6659:5;6620:45;:::i;:::-;6615:3;6608:58;6598:74;;:::o;6678:118::-;6765:24;6783:5;6765:24;:::i;:::-;6760:3;6753:37;6743:53;;:::o;6802:109::-;6883:21;6898:5;6883:21;:::i;:::-;6878:3;6871:34;6861:50;;:::o;6917:118::-;7004:24;7022:5;7004:24;:::i;:::-;6999:3;6992:37;6982:53;;:::o;7041:157::-;7146:45;7166:24;7184:5;7166:24;:::i;:::-;7146:45;:::i;:::-;7141:3;7134:58;7124:74;;:::o;7204:364::-;;7320:39;7353:5;7320:39;:::i;:::-;7375:71;7439:6;7434:3;7375:71;:::i;:::-;7368:78;;7455:52;7500:6;7495:3;7488:4;7481:5;7477:16;7455:52;:::i;:::-;7532:29;7554:6;7532:29;:::i;:::-;7527:3;7523:39;7516:46;;7296:272;;;;;:::o;7574:366::-;;7737:67;7801:2;7796:3;7737:67;:::i;:::-;7730:74;;7834:34;7830:1;7825:3;7821:11;7814:55;7900:4;7895:2;7890:3;7886:12;7879:26;7931:2;7926:3;7922:12;7915:19;;7720:220;;;:::o;7946:367::-;;8109:67;8173:2;8168:3;8109:67;:::i;:::-;8102:74;;8206:34;8202:1;8197:3;8193:11;8186:55;8272:5;8267:2;8262:3;8258:12;8251:27;8304:2;8299:3;8295:12;8288:19;;8092:221;;;:::o;8319:376::-;;8482:67;8546:2;8541:3;8482:67;:::i;:::-;8475:74;;8579:34;8575:1;8570:3;8566:11;8559:55;8645:14;8640:2;8635:3;8631:12;8624:36;8686:2;8681:3;8677:12;8670:19;;8465:230;;;:::o;8701:379::-;;8864:67;8928:2;8923:3;8864:67;:::i;:::-;8857:74;;8961:34;8957:1;8952:3;8948:11;8941:55;9027:17;9022:2;9017:3;9013:12;9006:39;9071:2;9066:3;9062:12;9055:19;;8847:233;;;:::o;9086:318::-;;9249:67;9313:2;9308:3;9249:67;:::i;:::-;9242:74;;9346:22;9342:1;9337:3;9333:11;9326:43;9395:2;9390:3;9386:12;9379:19;;9232:172;;;:::o;9410:376::-;;9573:67;9637:2;9632:3;9573:67;:::i;:::-;9566:74;;9670:34;9666:1;9661:3;9657:11;9650:55;9736:14;9731:2;9726:3;9722:12;9715:36;9777:2;9772:3;9768:12;9761:19;;9556:230;;;:::o;9792:366::-;;9955:67;10019:2;10014:3;9955:67;:::i;:::-;9948:74;;10052:34;10048:1;10043:3;10039:11;10032:55;10118:4;10113:2;10108:3;10104:12;10097:26;10149:2;10144:3;10140:12;10133:19;;9938:220;;;:::o;10164:396::-;;10345:84;10427:1;10422:3;10345:84;:::i;:::-;10338:91;;10459:66;10455:1;10450:3;10446:11;10439:87;10552:1;10547:3;10543:11;10536:18;;10328:232;;;:::o;10566:325::-;;10729:67;10793:2;10788:3;10729:67;:::i;:::-;10722:74;;10826:29;10822:1;10817:3;10813:11;10806:50;10882:2;10877:3;10873:12;10866:19;;10712:179;;;:::o;10897:369::-;;11060:67;11124:2;11119:3;11060:67;:::i;:::-;11053:74;;11157:34;11153:1;11148:3;11144:11;11137:55;11223:7;11218:2;11213:3;11209:12;11202:29;11257:2;11252:3;11248:12;11241:19;;11043:223;;;:::o;11272:376::-;;11435:67;11499:2;11494:3;11435:67;:::i;:::-;11428:74;;11532:34;11528:1;11523:3;11519:11;11512:55;11598:14;11593:2;11588:3;11584:12;11577:36;11639:2;11634:3;11630:12;11623:19;;11418:230;;;:::o;11654:328::-;;11817:67;11881:2;11876:3;11817:67;:::i;:::-;11810:74;;11914:32;11910:1;11905:3;11901:11;11894:53;11973:2;11968:3;11964:12;11957:19;;11800:182;;;:::o;11988:395::-;;12151:67;12215:2;12210:3;12151:67;:::i;:::-;12144:74;;12248:34;12244:1;12239:3;12235:11;12228:55;12314:33;12309:2;12304:3;12300:12;12293:55;12374:2;12369:3;12365:12;12358:19;;12134:249;;;:::o;12389:373::-;;12552:67;12616:2;12611:3;12552:67;:::i;:::-;12545:74;;12649:34;12645:1;12640:3;12636:11;12629:55;12715:11;12710:2;12705:3;12701:12;12694:33;12753:2;12748:3;12744:12;12737:19;;12535:227;;;:::o;12768:380::-;;12931:67;12995:2;12990:3;12931:67;:::i;:::-;12924:74;;13028:34;13024:1;13019:3;13015:11;13008:55;13094:18;13089:2;13084:3;13080:12;13073:40;13139:2;13134:3;13130:12;13123:19;;12914:234;;;:::o;13154:314::-;;13317:67;13381:2;13376:3;13317:67;:::i;:::-;13310:74;;13414:18;13410:1;13405:3;13401:11;13394:39;13459:2;13454:3;13450:12;13443:19;;13300:168;;;:::o;13474:372::-;;13637:67;13701:2;13696:3;13637:67;:::i;:::-;13630:74;;13734:34;13730:1;13725:3;13721:11;13714:55;13800:10;13795:2;13790:3;13786:12;13779:32;13837:2;13832:3;13828:12;13821:19;;13620:226;;;:::o;13852:377::-;;14015:67;14079:2;14074:3;14015:67;:::i;:::-;14008:74;;14112:34;14108:1;14103:3;14099:11;14092:55;14178:15;14173:2;14168:3;14164:12;14157:37;14220:2;14215:3;14211:12;14204:19;;13998:231;;;:::o;14235:377::-;;14398:67;14462:2;14457:3;14398:67;:::i;:::-;14391:74;;14495:34;14491:1;14486:3;14482:11;14475:55;14561:15;14556:2;14551:3;14547:12;14540:37;14603:2;14598:3;14594:12;14587:19;;14381:231;;;:::o;14618:365::-;;14781:67;14845:2;14840:3;14781:67;:::i;:::-;14774:74;;14878:34;14874:1;14869:3;14865:11;14858:55;14944:3;14939:2;14934:3;14930:12;14923:25;14974:2;14969:3;14965:12;14958:19;;14764:219;;;:::o;14989:369::-;;15152:67;15216:2;15211:3;15152:67;:::i;:::-;15145:74;;15249:34;15245:1;15240:3;15236:11;15229:55;15315:7;15310:2;15305:3;15301:12;15294:29;15349:2;15344:3;15340:12;15333:19;;15135:223;;;:::o;15364:384::-;;15527:67;15591:2;15586:3;15527:67;:::i;:::-;15520:74;;15624:34;15620:1;15615:3;15611:11;15604:55;15690:22;15685:2;15680:3;15676:12;15669:44;15739:2;15734:3;15730:12;15723:19;;15510:238;;;:::o;15754:368::-;;15917:67;15981:2;15976:3;15917:67;:::i;:::-;15910:74;;16014:34;16010:1;16005:3;16001:11;15994:55;16080:6;16075:2;16070:3;16066:12;16059:28;16113:2;16108:3;16104:12;16097:19;;15900:222;;;:::o;16128:368::-;;16291:67;16355:2;16350:3;16291:67;:::i;:::-;16284:74;;16388:34;16384:1;16379:3;16375:11;16368:55;16454:6;16449:2;16444:3;16440:12;16433:28;16487:2;16482:3;16478:12;16471:19;;16274:222;;;:::o;16502:381::-;;16665:67;16729:2;16724:3;16665:67;:::i;:::-;16658:74;;16762:34;16758:1;16753:3;16749:11;16742:55;16828:19;16823:2;16818:3;16814:12;16807:41;16874:2;16869:3;16865:12;16858:19;;16648:235;;;:::o;16889:384::-;;17052:67;17116:2;17111:3;17052:67;:::i;:::-;17045:74;;17149:34;17145:1;17140:3;17136:11;17129:55;17215:22;17210:2;17205:3;17201:12;17194:44;17264:2;17259:3;17255:12;17248:19;;17035:238;;;:::o;17279:379::-;;17442:67;17506:2;17501:3;17442:67;:::i;:::-;17435:74;;17539:34;17535:1;17530:3;17526:11;17519:55;17605:17;17600:2;17595:3;17591:12;17584:39;17649:2;17644:3;17640:12;17633:19;;17425:233;;;:::o;17664:329::-;;17827:67;17891:2;17886:3;17827:67;:::i;:::-;17820:74;;17924:33;17920:1;17915:3;17911:11;17904:54;17984:2;17979:3;17975:12;17968:19;;17810:183;;;:::o;17999:118::-;18086:24;18104:5;18086:24;:::i;:::-;18081:3;18074:37;18064:53;;:::o;18123:115::-;18208:23;18225:5;18208:23;:::i;:::-;18203:3;18196:36;18186:52;;:::o;18244:112::-;18327:22;18343:5;18327:22;:::i;:::-;18322:3;18315:35;18305:51;;:::o;18362:129::-;18448:36;18478:5;18448:36;:::i;:::-;18443:3;18436:49;18426:65;;:::o;18497:115::-;18582:23;18599:5;18582:23;:::i;:::-;18577:3;18570:36;18560:52;;:::o;18618:663::-;;18881:148;19025:3;18881:148;:::i;:::-;18874:155;;19039:75;19110:3;19101:6;19039:75;:::i;:::-;19139:2;19134:3;19130:12;19123:19;;19152:75;19223:3;19214:6;19152:75;:::i;:::-;19252:2;19247:3;19243:12;19236:19;;19272:3;19265:10;;18863:418;;;;;:::o;19287:222::-;;19418:2;19407:9;19403:18;19395:26;;19431:71;19499:1;19488:9;19484:17;19475:6;19431:71;:::i;:::-;19385:124;;;;:::o;19515:238::-;;19654:2;19643:9;19639:18;19631:26;;19667:79;19743:1;19732:9;19728:17;19719:6;19667:79;:::i;:::-;19621:132;;;;:::o;19759:348::-;;19926:2;19915:9;19911:18;19903:26;;19939:79;20015:1;20004:9;20000:17;19991:6;19939:79;:::i;:::-;20028:72;20096:2;20085:9;20081:18;20072:6;20028:72;:::i;:::-;19893:214;;;;;:::o;20113:210::-;;20238:2;20227:9;20223:18;20215:26;;20251:65;20313:1;20302:9;20298:17;20289:6;20251:65;:::i;:::-;20205:118;;;;:::o;20329:222::-;;20460:2;20449:9;20445:18;20437:26;;20473:71;20541:1;20530:9;20526:17;20517:6;20473:71;:::i;:::-;20427:124;;;;:::o;20557:553::-;;20772:3;20761:9;20757:19;20749:27;;20786:71;20854:1;20843:9;20839:17;20830:6;20786:71;:::i;:::-;20867:72;20935:2;20924:9;20920:18;20911:6;20867:72;:::i;:::-;20949;21017:2;21006:9;21002:18;20993:6;20949:72;:::i;:::-;21031;21099:2;21088:9;21084:18;21075:6;21031:72;:::i;:::-;20739:371;;;;;;;:::o;21116:553::-;;21331:3;21320:9;21316:19;21308:27;;21345:71;21413:1;21402:9;21398:17;21389:6;21345:71;:::i;:::-;21426:72;21494:2;21483:9;21479:18;21470:6;21426:72;:::i;:::-;21508;21576:2;21565:9;21561:18;21552:6;21508:72;:::i;:::-;21590;21658:2;21647:9;21643:18;21634:6;21590:72;:::i;:::-;21298:371;;;;;;;:::o;21675:545::-;;21886:3;21875:9;21871:19;21863:27;;21900:71;21968:1;21957:9;21953:17;21944:6;21900:71;:::i;:::-;21981:68;22045:2;22034:9;22030:18;22021:6;21981:68;:::i;:::-;22059:72;22127:2;22116:9;22112:18;22103:6;22059:72;:::i;:::-;22141;22209:2;22198:9;22194:18;22185:6;22141:72;:::i;:::-;21853:367;;;;;;;:::o;22226:313::-;;22377:2;22366:9;22362:18;22354:26;;22426:9;22420:4;22416:20;22412:1;22401:9;22397:17;22390:47;22454:78;22527:4;22518:6;22454:78;:::i;:::-;22446:86;;22344:195;;;;:::o;22545:419::-;;22749:2;22738:9;22734:18;22726:26;;22798:9;22792:4;22788:20;22784:1;22773:9;22769:17;22762:47;22826:131;22952:4;22826:131;:::i;:::-;22818:139;;22716:248;;;:::o;22970:419::-;;23174:2;23163:9;23159:18;23151:26;;23223:9;23217:4;23213:20;23209:1;23198:9;23194:17;23187:47;23251:131;23377:4;23251:131;:::i;:::-;23243:139;;23141:248;;;:::o;23395:419::-;;23599:2;23588:9;23584:18;23576:26;;23648:9;23642:4;23638:20;23634:1;23623:9;23619:17;23612:47;23676:131;23802:4;23676:131;:::i;:::-;23668:139;;23566:248;;;:::o;23820:419::-;;24024:2;24013:9;24009:18;24001:26;;24073:9;24067:4;24063:20;24059:1;24048:9;24044:17;24037:47;24101:131;24227:4;24101:131;:::i;:::-;24093:139;;23991:248;;;:::o;24245:419::-;;24449:2;24438:9;24434:18;24426:26;;24498:9;24492:4;24488:20;24484:1;24473:9;24469:17;24462:47;24526:131;24652:4;24526:131;:::i;:::-;24518:139;;24416:248;;;:::o;24670:419::-;;24874:2;24863:9;24859:18;24851:26;;24923:9;24917:4;24913:20;24909:1;24898:9;24894:17;24887:47;24951:131;25077:4;24951:131;:::i;:::-;24943:139;;24841:248;;;:::o;25095:419::-;;25299:2;25288:9;25284:18;25276:26;;25348:9;25342:4;25338:20;25334:1;25323:9;25319:17;25312:47;25376:131;25502:4;25376:131;:::i;:::-;25368:139;;25266:248;;;:::o;25520:419::-;;25724:2;25713:9;25709:18;25701:26;;25773:9;25767:4;25763:20;25759:1;25748:9;25744:17;25737:47;25801:131;25927:4;25801:131;:::i;:::-;25793:139;;25691:248;;;:::o;25945:419::-;;26149:2;26138:9;26134:18;26126:26;;26198:9;26192:4;26188:20;26184:1;26173:9;26169:17;26162:47;26226:131;26352:4;26226:131;:::i;:::-;26218:139;;26116:248;;;:::o;26370:419::-;;26574:2;26563:9;26559:18;26551:26;;26623:9;26617:4;26613:20;26609:1;26598:9;26594:17;26587:47;26651:131;26777:4;26651:131;:::i;:::-;26643:139;;26541:248;;;:::o;26795:419::-;;26999:2;26988:9;26984:18;26976:26;;27048:9;27042:4;27038:20;27034:1;27023:9;27019:17;27012:47;27076:131;27202:4;27076:131;:::i;:::-;27068:139;;26966:248;;;:::o;27220:419::-;;27424:2;27413:9;27409:18;27401:26;;27473:9;27467:4;27463:20;27459:1;27448:9;27444:17;27437:47;27501:131;27627:4;27501:131;:::i;:::-;27493:139;;27391:248;;;:::o;27645:419::-;;27849:2;27838:9;27834:18;27826:26;;27898:9;27892:4;27888:20;27884:1;27873:9;27869:17;27862:47;27926:131;28052:4;27926:131;:::i;:::-;27918:139;;27816:248;;;:::o;28070:419::-;;28274:2;28263:9;28259:18;28251:26;;28323:9;28317:4;28313:20;28309:1;28298:9;28294:17;28287:47;28351:131;28477:4;28351:131;:::i;:::-;28343:139;;28241:248;;;:::o;28495:419::-;;28699:2;28688:9;28684:18;28676:26;;28748:9;28742:4;28738:20;28734:1;28723:9;28719:17;28712:47;28776:131;28902:4;28776:131;:::i;:::-;28768:139;;28666:248;;;:::o;28920:419::-;;29124:2;29113:9;29109:18;29101:26;;29173:9;29167:4;29163:20;29159:1;29148:9;29144:17;29137:47;29201:131;29327:4;29201:131;:::i;:::-;29193:139;;29091:248;;;:::o;29345:419::-;;29549:2;29538:9;29534:18;29526:26;;29598:9;29592:4;29588:20;29584:1;29573:9;29569:17;29562:47;29626:131;29752:4;29626:131;:::i;:::-;29618:139;;29516:248;;;:::o;29770:419::-;;29974:2;29963:9;29959:18;29951:26;;30023:9;30017:4;30013:20;30009:1;29998:9;29994:17;29987:47;30051:131;30177:4;30051:131;:::i;:::-;30043:139;;29941:248;;;:::o;30195:419::-;;30399:2;30388:9;30384:18;30376:26;;30448:9;30442:4;30438:20;30434:1;30423:9;30419:17;30412:47;30476:131;30602:4;30476:131;:::i;:::-;30468:139;;30366:248;;;:::o;30620:419::-;;30824:2;30813:9;30809:18;30801:26;;30873:9;30867:4;30863:20;30859:1;30848:9;30844:17;30837:47;30901:131;31027:4;30901:131;:::i;:::-;30893:139;;30791:248;;;:::o;31045:419::-;;31249:2;31238:9;31234:18;31226:26;;31298:9;31292:4;31288:20;31284:1;31273:9;31269:17;31262:47;31326:131;31452:4;31326:131;:::i;:::-;31318:139;;31216:248;;;:::o;31470:419::-;;31674:2;31663:9;31659:18;31651:26;;31723:9;31717:4;31713:20;31709:1;31698:9;31694:17;31687:47;31751:131;31877:4;31751:131;:::i;:::-;31743:139;;31641:248;;;:::o;31895:419::-;;32099:2;32088:9;32084:18;32076:26;;32148:9;32142:4;32138:20;32134:1;32123:9;32119:17;32112:47;32176:131;32302:4;32176:131;:::i;:::-;32168:139;;32066:248;;;:::o;32320:419::-;;32524:2;32513:9;32509:18;32501:26;;32573:9;32567:4;32563:20;32559:1;32548:9;32544:17;32537:47;32601:131;32727:4;32601:131;:::i;:::-;32593:139;;32491:248;;;:::o;32745:419::-;;32949:2;32938:9;32934:18;32926:26;;32998:9;32992:4;32988:20;32984:1;32973:9;32969:17;32962:47;33026:131;33152:4;33026:131;:::i;:::-;33018:139;;32916:248;;;:::o;33170:419::-;;33374:2;33363:9;33359:18;33351:26;;33423:9;33417:4;33413:20;33409:1;33398:9;33394:17;33387:47;33451:131;33577:4;33451:131;:::i;:::-;33443:139;;33341:248;;;:::o;33595:419::-;;33799:2;33788:9;33784:18;33776:26;;33848:9;33842:4;33838:20;33834:1;33823:9;33819:17;33812:47;33876:131;34002:4;33876:131;:::i;:::-;33868:139;;33766:248;;;:::o;34020:222::-;;34151:2;34140:9;34136:18;34128:26;;34164:71;34232:1;34221:9;34217:17;34208:6;34164:71;:::i;:::-;34118:124;;;;:::o;34248:218::-;;34377:2;34366:9;34362:18;34354:26;;34390:69;34456:1;34445:9;34441:17;34432:6;34390:69;:::i;:::-;34344:122;;;;:::o;34472:324::-;;34627:2;34616:9;34612:18;34604:26;;34640:69;34706:1;34695:9;34691:17;34682:6;34640:69;:::i;:::-;34719:70;34785:2;34774:9;34770:18;34761:6;34719:70;:::i;:::-;34594:202;;;;;:::o;34802:214::-;;34929:2;34918:9;34914:18;34906:26;;34942:67;35006:1;34995:9;34991:17;34982:6;34942:67;:::i;:::-;34896:120;;;;:::o;35022:218::-;;35151:2;35140:9;35136:18;35128:26;;35164:69;35230:1;35219:9;35215:17;35206:6;35164:69;:::i;:::-;35118:122;;;;:::o;35246:328::-;;35403:2;35392:9;35388:18;35380:26;;35416:70;35483:1;35472:9;35468:17;35459:6;35416:70;:::i;:::-;35496:71;35563:2;35552:9;35548:18;35539:6;35496:71;:::i;:::-;35370:204;;;;;:::o;35580:278::-;;35646:2;35640:9;35630:19;;35688:4;35680:6;35676:17;35795:6;35783:10;35780:22;35759:18;35747:10;35744:34;35741:62;35738:2;;;35806:13;;:::i;:::-;35738:2;35841:10;35837:2;35830:22;35620:238;;;;:::o;35864:306::-;;36031:18;36023:6;36020:30;36017:2;;;36053:13;;:::i;:::-;36017:2;36098:4;36090:6;36086:17;36078:25;;36158:4;36152;36148:15;36140:23;;35946:224;;;:::o;36176:99::-;;36262:5;36256:12;36246:22;;36235:40;;;:::o;36281:169::-;;36399:6;36394:3;36387:19;36439:4;36434:3;36430:14;36415:29;;36377:73;;;;:::o;36456:148::-;;36595:3;36580:18;;36570:34;;;;:::o;36610:96::-;;36676:24;36694:5;36676:24;:::i;:::-;36665:35;;36655:51;;;:::o;36712:90::-;;36789:5;36782:13;36775:21;36764:32;;36754:48;;;:::o;36808:77::-;;36874:5;36863:16;;36853:32;;;:::o;36891:126::-;;36968:42;36961:5;36957:54;36946:65;;36936:81;;;:::o;37023:77::-;;37089:5;37078:16;;37068:32;;;:::o;37106:93::-;;37182:10;37175:5;37171:22;37160:33;;37150:49;;;:::o;37205:86::-;;37280:4;37273:5;37269:16;37258:27;;37248:43;;;:::o;37297:109::-;;37373:26;37366:5;37362:38;37351:49;;37341:65;;;:::o;37412:134::-;;37503:37;37534:5;37503:37;:::i;:::-;37490:50;;37480:66;;;:::o;37552:126::-;;37635:37;37666:5;37635:37;:::i;:::-;37622:50;;37612:66;;;:::o;37684:113::-;;37767:24;37785:5;37767:24;:::i;:::-;37754:37;;37744:53;;;:::o;37803:111::-;;37885:23;37902:5;37885:23;:::i;:::-;37872:36;;37862:52;;;:::o;37920:307::-;37988:1;37998:113;38012:6;38009:1;38006:13;37998:113;;;38097:1;38092:3;38088:11;38082:18;38078:1;38073:3;38069:11;38062:39;38034:2;38031:1;38027:10;38022:15;;37998:113;;;38129:6;38126:1;38123:13;38120:2;;;38209:1;38200:6;38195:3;38191:16;38184:27;38120:2;37969:258;;;;:::o;38233:79::-;;38301:5;38290:16;;38280:32;;;:::o;38318:48::-;38351:9;38372:102;;38464:2;38460:7;38455:2;38448:5;38444:14;38440:28;38430:38;;38420:54;;;:::o;38480:122::-;38553:24;38571:5;38553:24;:::i;:::-;38546:5;38543:35;38533:2;;38592:1;38589;38582:12;38533:2;38523:79;:::o;38608:122::-;38681:24;38699:5;38681:24;:::i;:::-;38674:5;38671:35;38661:2;;38720:1;38717;38710:12;38661:2;38651:79;:::o;38736:122::-;38809:24;38827:5;38809:24;:::i;:::-;38802:5;38799:35;38789:2;;38848:1;38845;38838:12;38789:2;38779:79;:::o;38864:120::-;38936:23;38953:5;38936:23;:::i;:::-;38929:5;38926:34;38916:2;;38974:1;38971;38964:12;38916:2;38906:78;:::o;38990:118::-;39061:22;39077:5;39061:22;:::i;:::-;39054:5;39051:33;39041:2;;39098:1;39095;39088:12;39041:2;39031:77;:::o

Swarm Source

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