ETH Price: $3,063.19 (-2.54%)
Gas: 9 Gwei

Contract

0xeA8B776BCDeF61cc70DC839df1c8cfF9C4d83a90
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Value
0x60806040123850942021-05-07 4:40:411095 days ago1620362441IN
 Contract Creation
0 ETH0.2121146946

Latest 3 internal transactions

Advanced mode:
Parent Transaction Hash Block From To Value
124081702021-05-10 18:08:391092 days ago1620670119
0xeA8B776B...9C4d83a90
0.4 ETH
124081112021-05-10 17:55:551092 days ago1620669355
0xeA8B776B...9C4d83a90
0.4 ETH
124081052021-05-10 17:53:371092 days ago1620669217
0xeA8B776B...9C4d83a90
0.4 ETH
Loading...
Loading

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

Contract Name:
PeriFinance

Compiler Version
v0.5.17+commit.d19bba13

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

/*
    ___            _       ___  _                          
    | .\ ___  _ _ <_> ___ | __><_>._ _  ___ ._ _  ___  ___ 
    |  _// ._>| '_>| ||___|| _> | || ' |<_> || ' |/ | '/ ._>
    |_|  \___.|_|  |_|     |_|  |_||_|_|<___||_|_|\_|_.\___.
    
* PeriFinance: PeriFinance.sol
*
* Latest source (may be newer): https://github.com/PeriFinance/periFinance/blob/master/contracts/PeriFinance.sol
* Docs: Will be added in the future. /contracts/PeriFinance
*
* Contract Dependencies: 
*	- BasePeriFinance
*	- ExternStateToken
*	- IAddressResolver
*	- IERC20
*	- IPeriFinance
*	- MixinResolver
*	- Owned
*	- Proxyable
*	- State
* Libraries: 
*	- SafeDecimalMath
*	- SafeMath
*	- VestingEntries
*
* MIT License
* ===========
*
* Copyright (c) 2021 PeriFinance
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
*/



pragma solidity >=0.4.24;

// https://docs.peri.finance/contracts/source/interfaces/ierc20
interface IERC20 {
    // ERC20 Optional Views
    function name() external view returns (string memory);

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

    function decimals() external view returns (uint8);

    // Views
    function totalSupply() external view returns (uint);

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

    function allowance(address owner, address spender) external view returns (uint);

    // Mutative functions
    function transfer(address to, uint value) external returns (bool);

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

    function transferFrom(
        address from,
        address to,
        uint value
    ) external returns (bool);

    // Events
    event Transfer(address indexed from, address indexed to, uint value);

    event Approval(address indexed owner, address indexed spender, uint value);
}


// https://docs.peri.finance/contracts/source/contracts/owned
contract Owned {
    address public owner;
    address public nominatedOwner;

    constructor(address _owner) public {
        require(_owner != address(0), "Owner address cannot be 0");
        owner = _owner;
        emit OwnerChanged(address(0), _owner);
    }

    function nominateNewOwner(address _owner) external onlyOwner {
        nominatedOwner = _owner;
        emit OwnerNominated(_owner);
    }

    function acceptOwnership() external {
        require(msg.sender == nominatedOwner, "You must be nominated before you can accept ownership");
        emit OwnerChanged(owner, nominatedOwner);
        owner = nominatedOwner;
        nominatedOwner = address(0);
    }

    modifier onlyOwner {
        _onlyOwner();
        _;
    }

    function _onlyOwner() private view {
        require(msg.sender == owner, "Only the contract owner may perform this action");
    }

    event OwnerNominated(address newOwner);
    event OwnerChanged(address oldOwner, address newOwner);
}


// Inheritance


// Internal references


// https://docs.peri.finance/contracts/source/contracts/proxy
contract Proxy is Owned {
    Proxyable public target;

    constructor(address _owner) public Owned(_owner) {}

    function setTarget(Proxyable _target) external onlyOwner {
        target = _target;
        emit TargetUpdated(_target);
    }

    function _emit(
        bytes calldata callData,
        uint numTopics,
        bytes32 topic1,
        bytes32 topic2,
        bytes32 topic3,
        bytes32 topic4
    ) external onlyTarget {
        uint size = callData.length;
        bytes memory _callData = callData;

        assembly {
            /* The first 32 bytes of callData contain its length (as specified by the abi).
             * Length is assumed to be a uint256 and therefore maximum of 32 bytes
             * in length. It is also leftpadded to be a multiple of 32 bytes.
             * This means moving call_data across 32 bytes guarantees we correctly access
             * the data itself. */
            switch numTopics
                case 0 {
                    log0(add(_callData, 32), size)
                }
                case 1 {
                    log1(add(_callData, 32), size, topic1)
                }
                case 2 {
                    log2(add(_callData, 32), size, topic1, topic2)
                }
                case 3 {
                    log3(add(_callData, 32), size, topic1, topic2, topic3)
                }
                case 4 {
                    log4(add(_callData, 32), size, topic1, topic2, topic3, topic4)
                }
        }
    }

    // solhint-disable no-complex-fallback
    function() external payable {
        // Mutable call setting Proxyable.messageSender as this is using call not delegatecall
        target.setMessageSender(msg.sender);

        assembly {
            let free_ptr := mload(0x40)
            calldatacopy(free_ptr, 0, calldatasize)

            /* We must explicitly forward ether to the underlying contract as well. */
            let result := call(gas, sload(target_slot), callvalue, free_ptr, calldatasize, 0, 0)
            returndatacopy(free_ptr, 0, returndatasize)

            if iszero(result) {
                revert(free_ptr, returndatasize)
            }
            return(free_ptr, returndatasize)
        }
    }

    modifier onlyTarget {
        require(Proxyable(msg.sender) == target, "Must be proxy target");
        _;
    }

    event TargetUpdated(Proxyable newTarget);
}


// Inheritance


// Internal references


// https://docs.peri.finance/contracts/source/contracts/proxyable
contract Proxyable is Owned {
    // This contract should be treated like an abstract contract

    /* The proxy this contract exists behind. */
    Proxy public proxy;
    Proxy public integrationProxy;

    /* The caller of the proxy, passed through to this contract.
     * Note that every function using this member must apply the onlyProxy or
     * optionalProxy modifiers, otherwise their invocations can use stale values. */
    address public messageSender;

    constructor(address payable _proxy) internal {
        // This contract is abstract, and thus cannot be instantiated directly
        require(owner != address(0), "Owner must be set");

        proxy = Proxy(_proxy);
        emit ProxyUpdated(_proxy);
    }

    function setProxy(address payable _proxy) external onlyOwner {
        proxy = Proxy(_proxy);
        emit ProxyUpdated(_proxy);
    }

    function setIntegrationProxy(address payable _integrationProxy) external onlyOwner {
        integrationProxy = Proxy(_integrationProxy);
    }

    function setMessageSender(address sender) external onlyProxy {
        messageSender = sender;
    }

    modifier onlyProxy {
        _onlyProxy();
        _;
    }

    function _onlyProxy() private view {
        require(Proxy(msg.sender) == proxy || Proxy(msg.sender) == integrationProxy, "Only the proxy can call");
    }

    modifier optionalProxy {
        _optionalProxy();
        _;
    }

    function _optionalProxy() private {
        if (Proxy(msg.sender) != proxy && Proxy(msg.sender) != integrationProxy && messageSender != msg.sender) {
            messageSender = msg.sender;
        }
    }

    modifier optionalProxy_onlyOwner {
        _optionalProxy_onlyOwner();
        _;
    }

    // solhint-disable-next-line func-name-mixedcase
    function _optionalProxy_onlyOwner() private {
        if (Proxy(msg.sender) != proxy && Proxy(msg.sender) != integrationProxy && messageSender != msg.sender) {
            messageSender = msg.sender;
        }
        require(messageSender == owner, "Owner only function");
    }

    event ProxyUpdated(address proxyAddress);
}


/**
 * @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, 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");
        uint256 c = a - b;

        return c;
    }

    /**
     * @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) {
        // 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-solidity/pull/522
        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. Reverts 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) {
        // Solidity only automatically asserts when dividing by 0
        require(b > 0, "SafeMath: division by zero");
        uint256 c = a / b;
        // assert(a == b * c + a % b); // There is no case in which this doesn't hold

        return c;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Reverts 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;
    }
}


// Libraries


// https://docs.peri.finance/contracts/source/libraries/safedecimalmath
library SafeDecimalMath {
    using SafeMath for uint;

    /* Number of decimal places in the representations. */
    uint8 public constant decimals = 18;
    uint8 public constant highPrecisionDecimals = 27;

    /* The number representing 1.0. */
    uint public constant UNIT = 10**uint(decimals);

    /* The number representing 1.0 for higher fidelity numbers. */
    uint public constant PRECISE_UNIT = 10**uint(highPrecisionDecimals);
    uint private constant UNIT_TO_HIGH_PRECISION_CONVERSION_FACTOR = 10**uint(highPrecisionDecimals - decimals);

    /**
     * @return Provides an interface to UNIT.
     */
    function unit() external pure returns (uint) {
        return UNIT;
    }

    /**
     * @return Provides an interface to PRECISE_UNIT.
     */
    function preciseUnit() external pure returns (uint) {
        return PRECISE_UNIT;
    }

    /**
     * @return The result of multiplying x and y, interpreting the operands as fixed-point
     * decimals.
     *
     * @dev A unit factor is divided out after the product of x and y is evaluated,
     * so that product must be less than 2**256. As this is an integer division,
     * the internal division always rounds down. This helps save on gas. Rounding
     * is more expensive on gas.
     */
    function multiplyDecimal(uint x, uint y) internal pure returns (uint) {
        /* Divide by UNIT to remove the extra factor introduced by the product. */
        return x.mul(y) / UNIT;
    }

    /**
     * @return The result of safely multiplying x and y, interpreting the operands
     * as fixed-point decimals of the specified precision unit.
     *
     * @dev The operands should be in the form of a the specified unit factor which will be
     * divided out after the product of x and y is evaluated, so that product must be
     * less than 2**256.
     *
     * Unlike multiplyDecimal, this function rounds the result to the nearest increment.
     * Rounding is useful when you need to retain fidelity for small decimal numbers
     * (eg. small fractions or percentages).
     */
    function _multiplyDecimalRound(
        uint x,
        uint y,
        uint precisionUnit
    ) private pure returns (uint) {
        /* Divide by UNIT to remove the extra factor introduced by the product. */
        uint quotientTimesTen = x.mul(y) / (precisionUnit / 10);

        if (quotientTimesTen % 10 >= 5) {
            quotientTimesTen += 10;
        }

        return quotientTimesTen / 10;
    }

    /**
     * @return The result of safely multiplying x and y, interpreting the operands
     * as fixed-point decimals of a precise unit.
     *
     * @dev The operands should be in the precise unit factor which will be
     * divided out after the product of x and y is evaluated, so that product must be
     * less than 2**256.
     *
     * Unlike multiplyDecimal, this function rounds the result to the nearest increment.
     * Rounding is useful when you need to retain fidelity for small decimal numbers
     * (eg. small fractions or percentages).
     */
    function multiplyDecimalRoundPrecise(uint x, uint y) internal pure returns (uint) {
        return _multiplyDecimalRound(x, y, PRECISE_UNIT);
    }

    /**
     * @return The result of safely multiplying x and y, interpreting the operands
     * as fixed-point decimals of a standard unit.
     *
     * @dev The operands should be in the standard unit factor which will be
     * divided out after the product of x and y is evaluated, so that product must be
     * less than 2**256.
     *
     * Unlike multiplyDecimal, this function rounds the result to the nearest increment.
     * Rounding is useful when you need to retain fidelity for small decimal numbers
     * (eg. small fractions or percentages).
     */
    function multiplyDecimalRound(uint x, uint y) internal pure returns (uint) {
        return _multiplyDecimalRound(x, y, UNIT);
    }

    /**
     * @return The result of safely dividing x and y. The return value is a high
     * precision decimal.
     *
     * @dev y is divided after the product of x and the standard precision unit
     * is evaluated, so the product of x and UNIT must be less than 2**256. As
     * this is an integer division, the result is always rounded down.
     * This helps save on gas. Rounding is more expensive on gas.
     */
    function divideDecimal(uint x, uint y) internal pure returns (uint) {
        /* Reintroduce the UNIT factor that will be divided out by y. */
        return x.mul(UNIT).div(y);
    }

    /**
     * @return The result of safely dividing x and y. The return value is as a rounded
     * decimal in the precision unit specified in the parameter.
     *
     * @dev y is divided after the product of x and the specified precision unit
     * is evaluated, so the product of x and the specified precision unit must
     * be less than 2**256. The result is rounded to the nearest increment.
     */
    function _divideDecimalRound(
        uint x,
        uint y,
        uint precisionUnit
    ) private pure returns (uint) {
        uint resultTimesTen = x.mul(precisionUnit * 10).div(y);

        if (resultTimesTen % 10 >= 5) {
            resultTimesTen += 10;
        }

        return resultTimesTen / 10;
    }

    /**
     * @return The result of safely dividing x and y. The return value is as a rounded
     * standard precision decimal.
     *
     * @dev y is divided after the product of x and the standard precision unit
     * is evaluated, so the product of x and the standard precision unit must
     * be less than 2**256. The result is rounded to the nearest increment.
     */
    function divideDecimalRound(uint x, uint y) internal pure returns (uint) {
        return _divideDecimalRound(x, y, UNIT);
    }

    /**
     * @return The result of safely dividing x and y. The return value is as a rounded
     * high precision decimal.
     *
     * @dev y is divided after the product of x and the high precision unit
     * is evaluated, so the product of x and the high precision unit must
     * be less than 2**256. The result is rounded to the nearest increment.
     */
    function divideDecimalRoundPrecise(uint x, uint y) internal pure returns (uint) {
        return _divideDecimalRound(x, y, PRECISE_UNIT);
    }

    /**
     * @dev Convert a standard decimal representation to a high precision one.
     */
    function decimalToPreciseDecimal(uint i) internal pure returns (uint) {
        return i.mul(UNIT_TO_HIGH_PRECISION_CONVERSION_FACTOR);
    }

    /**
     * @dev Convert a high precision decimal to a standard decimal representation.
     */
    function preciseDecimalToDecimal(uint i) internal pure returns (uint) {
        uint quotientTimesTen = i / (UNIT_TO_HIGH_PRECISION_CONVERSION_FACTOR / 10);

        if (quotientTimesTen % 10 >= 5) {
            quotientTimesTen += 10;
        }

        return quotientTimesTen / 10;
    }
}


// Inheritance


// https://docs.peri.finance/contracts/source/contracts/state
contract State is Owned {
    // the address of the contract that can modify variables
    // this can only be changed by the owner of this contract
    address public associatedContract;

    constructor(address _associatedContract) internal {
        // This contract is abstract, and thus cannot be instantiated directly
        require(owner != address(0), "Owner must be set");

        associatedContract = _associatedContract;
        emit AssociatedContractUpdated(_associatedContract);
    }

    /* ========== SETTERS ========== */

    // Change the associated contract to a new address
    function setAssociatedContract(address _associatedContract) external onlyOwner {
        associatedContract = _associatedContract;
        emit AssociatedContractUpdated(_associatedContract);
    }

    /* ========== MODIFIERS ========== */

    modifier onlyAssociatedContract {
        require(msg.sender == associatedContract, "Only the associated contract can perform this action");
        _;
    }

    /* ========== EVENTS ========== */

    event AssociatedContractUpdated(address associatedContract);
}


// Inheritance


// https://docs.peri.finance/contracts/source/contracts/tokenstate
contract TokenState is Owned, State {
    /* ERC20 fields. */
    mapping(address => uint) public balanceOf;
    mapping(address => mapping(address => uint)) public allowance;

    constructor(address _owner, address _associatedContract) public Owned(_owner) State(_associatedContract) {}

    /* ========== SETTERS ========== */

    /**
     * @notice Set ERC20 allowance.
     * @dev Only the associated contract may call this.
     * @param tokenOwner The authorising party.
     * @param spender The authorised party.
     * @param value The total value the authorised party may spend on the
     * authorising party's behalf.
     */
    function setAllowance(
        address tokenOwner,
        address spender,
        uint value
    ) external onlyAssociatedContract {
        allowance[tokenOwner][spender] = value;
    }

    /**
     * @notice Set the balance in a given account
     * @dev Only the associated contract may call this.
     * @param account The account whose value to set.
     * @param value The new balance of the given account.
     */
    function setBalanceOf(address account, uint value) external onlyAssociatedContract {
        balanceOf[account] = value;
    }
}


// Inheritance


// Libraries


// Internal references


// https://docs.peri.finance/contracts/source/contracts/externstatetoken
contract ExternStateToken is Owned, Proxyable {
    using SafeMath for uint;
    using SafeDecimalMath for uint;

    /* ========== STATE VARIABLES ========== */

    /* Stores balances and allowances. */
    TokenState public tokenState;

    /* Other ERC20 fields. */
    string public name;
    string public symbol;
    uint public totalSupply;
    uint8 public decimals;

    constructor(
        address payable _proxy,
        TokenState _tokenState,
        string memory _name,
        string memory _symbol,
        uint _totalSupply,
        uint8 _decimals,
        address _owner
    ) public Owned(_owner) Proxyable(_proxy) {
        tokenState = _tokenState;

        name = _name;
        symbol = _symbol;
        totalSupply = _totalSupply;
        decimals = _decimals;
    }

    /* ========== VIEWS ========== */

    /**
     * @notice Returns the ERC20 allowance of one party to spend on behalf of another.
     * @param owner The party authorising spending of their funds.
     * @param spender The party spending tokenOwner's funds.
     */
    function allowance(address owner, address spender) public view returns (uint) {
        return tokenState.allowance(owner, spender);
    }

    /**
     * @notice Returns the ERC20 token balance of a given account.
     */
    function balanceOf(address account) external view returns (uint) {
        return tokenState.balanceOf(account);
    }

    /* ========== MUTATIVE FUNCTIONS ========== */

    /**
     * @notice Set the address of the TokenState contract.
     * @dev This can be used to "pause" transfer functionality, by pointing the tokenState at 0x000..
     * as balances would be unreachable.
     */
    function setTokenState(TokenState _tokenState) external optionalProxy_onlyOwner {
        tokenState = _tokenState;
        emitTokenStateUpdated(address(_tokenState));
    }

    function _internalTransfer(
        address from,
        address to,
        uint value
    ) internal returns (bool) {
        /* Disallow transfers to irretrievable-addresses. */
        require(to != address(0) && to != address(this) && to != address(proxy), "Cannot transfer to this address");

        // Insufficient balance will be handled by the safe subtraction.
        tokenState.setBalanceOf(from, tokenState.balanceOf(from).sub(value));
        tokenState.setBalanceOf(to, tokenState.balanceOf(to).add(value));

        // Emit a standard ERC20 transfer event
        emitTransfer(from, to, value);

        return true;
    }

    /**
     * @dev Perform an ERC20 token transfer. Designed to be called by transfer functions possessing
     * the onlyProxy or optionalProxy modifiers.
     */
    function _transferByProxy(
        address from,
        address to,
        uint value
    ) internal returns (bool) {
        return _internalTransfer(from, to, value);
    }

    /*
     * @dev Perform an ERC20 token transferFrom. Designed to be called by transferFrom functions
     * possessing the optionalProxy or optionalProxy modifiers.
     */
    function _transferFromByProxy(
        address sender,
        address from,
        address to,
        uint value
    ) internal returns (bool) {
        /* Insufficient allowance will be handled by the safe subtraction. */
        tokenState.setAllowance(from, sender, tokenState.allowance(from, sender).sub(value));
        return _internalTransfer(from, to, value);
    }

    /**
     * @notice Approves spender to transfer on the message sender's behalf.
     */
    function approve(address spender, uint value) public optionalProxy returns (bool) {
        address sender = messageSender;

        tokenState.setAllowance(sender, spender, value);
        emitApproval(sender, spender, value);
        return true;
    }

    /* ========== EVENTS ========== */
    function addressToBytes32(address input) internal pure returns (bytes32) {
        return bytes32(uint256(uint160(input)));
    }

    event Transfer(address indexed from, address indexed to, uint value);
    bytes32 internal constant TRANSFER_SIG = keccak256("Transfer(address,address,uint256)");

    function emitTransfer(
        address from,
        address to,
        uint value
    ) internal {
        proxy._emit(abi.encode(value), 3, TRANSFER_SIG, addressToBytes32(from), addressToBytes32(to), 0);
    }

    event Approval(address indexed owner, address indexed spender, uint value);
    bytes32 internal constant APPROVAL_SIG = keccak256("Approval(address,address,uint256)");

    function emitApproval(
        address owner,
        address spender,
        uint value
    ) internal {
        proxy._emit(abi.encode(value), 3, APPROVAL_SIG, addressToBytes32(owner), addressToBytes32(spender), 0);
    }

    event TokenStateUpdated(address newTokenState);
    bytes32 internal constant TOKENSTATEUPDATED_SIG = keccak256("TokenStateUpdated(address)");

    function emitTokenStateUpdated(address newTokenState) internal {
        proxy._emit(abi.encode(newTokenState), 1, TOKENSTATEUPDATED_SIG, 0, 0, 0);
    }
}


// https://docs.peri.finance/contracts/source/interfaces/iaddressresolver
interface IAddressResolver {
    function getAddress(bytes32 name) external view returns (address);

    function getPynth(bytes32 key) external view returns (address);

    function requireAndGetAddress(bytes32 name, string calldata reason) external view returns (address);
}


// https://docs.peri.finance/contracts/source/interfaces/ipynth
interface IPynth {
    // Views
    function currencyKey() external view returns (bytes32);

    function transferablePynths(address account) external view returns (uint);

    // Mutative functions
    function transferAndSettle(address to, uint value) external returns (bool);

    function transferFromAndSettle(
        address from,
        address to,
        uint value
    ) external returns (bool);

    // Restricted: used internally to PeriFinance
    function burn(address account, uint amount) external;

    function issue(address account, uint amount) external;
}


// https://docs.peri.finance/contracts/source/interfaces/iissuer
interface IIssuer {
    // Views
    function anyPynthOrPERIRateIsInvalid() external view returns (bool anyRateInvalid);

    function availableCurrencyKeys() external view returns (bytes32[] memory);

    function availablePynthCount() external view returns (uint);

    function availablePynths(uint index) external view returns (IPynth);

    function canBurnPynths(address account) external view returns (bool);

    function collateral(address account) external view returns (uint);

    function collateralisationRatio(address issuer) external view returns (uint);

    function collateralisationRatioAndAnyRatesInvalid(address _issuer)
        external
        view
        returns (uint cratio, bool anyRateIsInvalid);

    function debtBalanceOf(address issuer, bytes32 currencyKey) external view returns (uint debtBalance);

    function issuanceRatio() external view returns (uint);

    function lastIssueEvent(address account) external view returns (uint);

    function maxIssuablePynths(address issuer) external view returns (uint maxIssuable);

    function minimumStakeTime() external view returns (uint);

    function remainingIssuablePynths(address issuer)
        external
        view
        returns (
            uint maxIssuable,
            uint alreadyIssued,
            uint totalSystemDebt
        );

    function pynths(bytes32 currencyKey) external view returns (IPynth);

    function getPynths(bytes32[] calldata currencyKeys) external view returns (IPynth[] memory);

    function pynthsByAddress(address pynthAddress) external view returns (bytes32);

    function totalIssuedPynths(bytes32 currencyKey, bool excludeEtherCollateral) external view returns (uint);

    function transferablePeriFinanceAndAnyRateIsInvalid(address account, uint balance)
        external
        view
        returns (uint transferable, bool anyRateIsInvalid);

    // Restricted: used internally to PeriFinance
    function issuePynths(address from, uint amount) external;

    function issuePynthsOnBehalf(
        address issueFor,
        address from,
        uint amount
    ) external;

    function issueMaxPynths(address from) external;

    function issueMaxPynthsOnBehalf(address issueFor, address from) external;

    function stakeUSDCAndIssuePynths(
        address from,
        uint usdcStakeAmount,
        uint issueAmount
    ) external;

    function stakeUSDCAndIssueMaxPynths(address from, uint usdcStakeAmount) external;

    function burnPynths(address from, uint amount) external;

    function burnPynthsOnBehalf(
        address burnForAddress,
        address from,
        uint amount
    ) external;

    function burnPynthsToTarget(address from) external;

    function burnPynthsToTargetOnBehalf(address burnForAddress, address from) external;

    function unstakeUSDCAndBurnPynths(
        address from,
        uint usdcUnstakeAmount,
        uint burnAmount
    ) external;

    function unstakeUSDCToMaxAndBurnPynths(address from, uint burnAmount) external;

    function liquidateDelinquentAccount(
        address account,
        uint pusdAmount,
        address liquidator
    ) external returns (uint totalRedeemed, uint amountToLiquidate);
}


// Inheritance


// Internal references


// https://docs.peri.finance/contracts/source/contracts/addressresolver
contract AddressResolver is Owned, IAddressResolver {
    mapping(bytes32 => address) public repository;

    constructor(address _owner) public Owned(_owner) {}

    /* ========== RESTRICTED FUNCTIONS ========== */

    function importAddresses(bytes32[] calldata names, address[] calldata destinations) external onlyOwner {
        require(names.length == destinations.length, "Input lengths must match");

        for (uint i = 0; i < names.length; i++) {
            bytes32 name = names[i];
            address destination = destinations[i];
            repository[name] = destination;
            emit AddressImported(name, destination);
        }
    }

    /* ========= PUBLIC FUNCTIONS ========== */

    function rebuildCaches(MixinResolver[] calldata destinations) external {
        for (uint i = 0; i < destinations.length; i++) {
            destinations[i].rebuildCache();
        }
    }

    /* ========== VIEWS ========== */

    function areAddressesImported(bytes32[] calldata names, address[] calldata destinations) external view returns (bool) {
        for (uint i = 0; i < names.length; i++) {
            if (repository[names[i]] != destinations[i]) {
                return false;
            }
        }
        return true;
    }

    function getAddress(bytes32 name) external view returns (address) {
        return repository[name];
    }

    function requireAndGetAddress(bytes32 name, string calldata reason) external view returns (address) {
        address _foundAddress = repository[name];
        require(_foundAddress != address(0), reason);
        return _foundAddress;
    }

    function getPynth(bytes32 key) external view returns (address) {
        IIssuer issuer = IIssuer(repository["Issuer"]);
        require(address(issuer) != address(0), "Cannot find Issuer address");
        return address(issuer.pynths(key));
    }

    /* ========== EVENTS ========== */

    event AddressImported(bytes32 name, address destination);
}


// solhint-disable payable-fallback

// https://docs.peri.finance/contracts/source/contracts/readproxy
contract ReadProxy is Owned {
    address public target;

    constructor(address _owner) public Owned(_owner) {}

    function setTarget(address _target) external onlyOwner {
        target = _target;
        emit TargetUpdated(target);
    }

    function() external {
        // The basics of a proxy read call
        // Note that msg.sender in the underlying will always be the address of this contract.
        assembly {
            calldatacopy(0, 0, calldatasize)

            // Use of staticcall - this will revert if the underlying function mutates state
            let result := staticcall(gas, sload(target_slot), 0, calldatasize, 0, 0)
            returndatacopy(0, 0, returndatasize)

            if iszero(result) {
                revert(0, returndatasize)
            }
            return(0, returndatasize)
        }
    }

    event TargetUpdated(address newTarget);
}


// Inheritance


// Internal references


// https://docs.peri.finance/contracts/source/contracts/mixinresolver
contract MixinResolver {
    AddressResolver public resolver;

    mapping(bytes32 => address) private addressCache;

    constructor(address _resolver) internal {
        resolver = AddressResolver(_resolver);
    }

    /* ========== INTERNAL FUNCTIONS ========== */

    function combineArrays(bytes32[] memory first, bytes32[] memory second)
        internal
        pure
        returns (bytes32[] memory combination)
    {
        combination = new bytes32[](first.length + second.length);

        for (uint i = 0; i < first.length; i++) {
            combination[i] = first[i];
        }

        for (uint j = 0; j < second.length; j++) {
            combination[first.length + j] = second[j];
        }
    }

    /* ========== PUBLIC FUNCTIONS ========== */

    // Note: this function is public not external in order for it to be overridden and invoked via super in subclasses
    function resolverAddressesRequired() public view returns (bytes32[] memory addresses) {}

    function rebuildCache() public {
        bytes32[] memory requiredAddresses = resolverAddressesRequired();
        // The resolver must call this function whenver it updates its state
        for (uint i = 0; i < requiredAddresses.length; i++) {
            bytes32 name = requiredAddresses[i];
            // Note: can only be invoked once the resolver has all the targets needed added
            address destination =
                resolver.requireAndGetAddress(name, string(abi.encodePacked("Resolver missing target: ", name)));
            addressCache[name] = destination;
            emit CacheUpdated(name, destination);
        }
    }

    /* ========== VIEWS ========== */

    function isResolverCached() external view returns (bool) {
        bytes32[] memory requiredAddresses = resolverAddressesRequired();
        for (uint i = 0; i < requiredAddresses.length; i++) {
            bytes32 name = requiredAddresses[i];
            // false if our cache is invalid or if the resolver doesn't have the required address
            if (resolver.getAddress(name) != addressCache[name] || addressCache[name] == address(0)) {
                return false;
            }
        }

        return true;
    }

    /* ========== INTERNAL FUNCTIONS ========== */

    function requireAndGetAddress(bytes32 name) internal view returns (address) {
        address _foundAddress = addressCache[name];
        require(_foundAddress != address(0), string(abi.encodePacked("Missing address: ", name)));
        return _foundAddress;
    }

    /* ========== EVENTS ========== */

    event CacheUpdated(bytes32 name, address destination);
}


interface IVirtualPynth {
    // Views
    function balanceOfUnderlying(address account) external view returns (uint);

    function rate() external view returns (uint);

    function readyToSettle() external view returns (bool);

    function secsLeftInWaitingPeriod() external view returns (uint);

    function settled() external view returns (bool);

    function pynth() external view returns (IPynth);

    // Mutative functions
    function settle(address account) external;
}


// https://docs.peri.finance/contracts/source/interfaces/iperiFinance
interface IPeriFinance {
    // Views
    function anyPynthOrPERIRateIsInvalid() external view returns (bool anyRateInvalid);

    function availableCurrencyKeys() external view returns (bytes32[] memory);

    function availablePynthCount() external view returns (uint);

    function availablePynths(uint index) external view returns (IPynth);

    function collateral(address account) external view returns (uint);

    function collateralisationRatio(address issuer) external view returns (uint);

    function debtBalanceOf(address issuer, bytes32 currencyKey) external view returns (uint);

    function isWaitingPeriod(bytes32 currencyKey) external view returns (bool);

    function maxIssuablePynths(address issuer) external view returns (uint maxIssuable);

    function remainingIssuablePynths(address issuer)
        external
        view
        returns (
            uint maxIssuable,
            uint alreadyIssued,
            uint totalSystemDebt
        );

    function pynths(bytes32 currencyKey) external view returns (IPynth);

    function pynthsByAddress(address pynthAddress) external view returns (bytes32);

    function totalIssuedPynths(bytes32 currencyKey) external view returns (uint);

    function totalIssuedPynthsExcludeEtherCollateral(bytes32 currencyKey) external view returns (uint);

    function transferablePeriFinance(address account) external view returns (uint transferable);

    // Mutative Functions
    function burnPynths(uint amount) external;

    function burnPynthsOnBehalf(address burnForAddress, uint amount) external;

    function burnPynthsToTarget() external;

    function burnPynthsToTargetOnBehalf(address burnForAddress) external;

    function exchange(
        bytes32 sourceCurrencyKey,
        uint sourceAmount,
        bytes32 destinationCurrencyKey
    ) external returns (uint amountReceived);

    function exchangeOnBehalf(
        address exchangeForAddress,
        bytes32 sourceCurrencyKey,
        uint sourceAmount,
        bytes32 destinationCurrencyKey
    ) external returns (uint amountReceived);

    function exchangeWithTracking(
        bytes32 sourceCurrencyKey,
        uint sourceAmount,
        bytes32 destinationCurrencyKey,
        address originator,
        bytes32 trackingCode
    ) external returns (uint amountReceived);

    function exchangeOnBehalfWithTracking(
        address exchangeForAddress,
        bytes32 sourceCurrencyKey,
        uint sourceAmount,
        bytes32 destinationCurrencyKey,
        address originator,
        bytes32 trackingCode
    ) external returns (uint amountReceived);

    function exchangeWithVirtual(
        bytes32 sourceCurrencyKey,
        uint sourceAmount,
        bytes32 destinationCurrencyKey,
        bytes32 trackingCode
    ) external returns (uint amountReceived, IVirtualPynth vPynth);

    function issueMaxPynths() external;

    function issuePynths(uint amount) external;

    function issuePynthsOnBehalf(address issueForAddress, uint amount) external;

    function issueMaxPynthsOnBehalf(address issueForAddress) external;

    function stakeUSDCAndIssuePynths(uint usdcStakeAmount, uint issueAmount) external;

    function stakeUSDCAndIssueMaxPynths(uint usdcStakingAmount) external;

    function unstakeUSDCAndBurnPynths(uint usdcUnstakeAmount, uint burnAmount) external;

    function unstakeUSDCToMaxAndBurnPynths(uint burnAmount) external;

    function mint() external returns (bool);

    function settle(bytes32 currencyKey)
        external
        returns (
            uint reclaimed,
            uint refunded,
            uint numEntries
        );

    // Liquidations
    function liquidateDelinquentAccount(address account, uint pusdAmount) external returns (bool);

    // Restricted Functions

    function mintSecondary(address account, uint amount) external;

    function mintSecondaryRewards(uint amount) external;

    function burnSecondary(address account, uint amount) external;
}


// https://docs.peri.finance/contracts/source/interfaces/iperiFinancestate
interface IPeriFinanceState {
    // Views
    function debtLedger(uint index) external view returns (uint);

    function issuanceData(address account) external view returns (uint initialDebtOwnership, uint debtEntryIndex);

    function debtLedgerLength() external view returns (uint);

    function hasIssued(address account) external view returns (bool);

    function lastDebtLedgerEntry() external view returns (uint);

    // Mutative functions
    function incrementTotalIssuerCount() external;

    function decrementTotalIssuerCount() external;

    function setCurrentIssuanceData(address account, uint initialDebtOwnership) external;

    function appendDebtLedgerValue(uint value) external;

    function clearIssuanceData(address account) external;

    // Views
    function periDebtLedger(uint index) external view returns (uint);

    function periIssuanceData(address account) external view returns (uint initialDebtOwnership, uint debtEntryIndex);

    function periDebtLedgerLength() external view returns (uint);

    function hasPeriIssued(address account) external view returns (bool);

    function lastPeriDebtLedgerEntry() external view returns (uint);

    // Mutative functions
    function incrementTotalPeriIssuerCount() external;

    function decrementTotalPeriIssuerCount() external;

    function setCurrentPeriIssuanceData(address account, uint initialDebtOwnership) external;

    function appendPeriDebtLedgerValue(uint value) external;

    function clearPeriIssuanceData(address account) external;
}


// https://docs.peri.finance/contracts/source/interfaces/isystemstatus
interface ISystemStatus {
    struct Status {
        bool canSuspend;
        bool canResume;
    }

    struct Suspension {
        bool suspended;
        // reason is an integer code,
        // 0 => no reason, 1 => upgrading, 2+ => defined by system usage
        uint248 reason;
    }

    // Views
    function accessControl(bytes32 section, address account) external view returns (bool canSuspend, bool canResume);

    function requireSystemActive() external view;

    function requireIssuanceActive() external view;

    function requireExchangeActive() external view;

    function requireExchangeBetweenPynthsAllowed(bytes32 sourceCurrencyKey, bytes32 destinationCurrencyKey) external view;

    function requirePynthActive(bytes32 currencyKey) external view;

    function requirePynthsActive(bytes32 sourceCurrencyKey, bytes32 destinationCurrencyKey) external view;

    function systemSuspension() external view returns (bool suspended, uint248 reason);

    function issuanceSuspension() external view returns (bool suspended, uint248 reason);

    function exchangeSuspension() external view returns (bool suspended, uint248 reason);

    function pynthExchangeSuspension(bytes32 currencyKey) external view returns (bool suspended, uint248 reason);

    function pynthSuspension(bytes32 currencyKey) external view returns (bool suspended, uint248 reason);

    function getPynthExchangeSuspensions(bytes32[] calldata pynths)
        external
        view
        returns (bool[] memory exchangeSuspensions, uint256[] memory reasons);

    function getPynthSuspensions(bytes32[] calldata pynths)
        external
        view
        returns (bool[] memory suspensions, uint256[] memory reasons);

    // Restricted functions
    function suspendPynth(bytes32 currencyKey, uint256 reason) external;

    function updateAccessControl(
        bytes32 section,
        address account,
        bool canSuspend,
        bool canResume
    ) external;
}


// https://docs.peri.finance/contracts/source/interfaces/iexchanger
interface IExchanger {
    // Views
    function calculateAmountAfterSettlement(
        address from,
        bytes32 currencyKey,
        uint amount,
        uint refunded
    ) external view returns (uint amountAfterSettlement);

    function isPynthRateInvalid(bytes32 currencyKey) external view returns (bool);

    function maxSecsLeftInWaitingPeriod(address account, bytes32 currencyKey) external view returns (uint);

    function settlementOwing(address account, bytes32 currencyKey)
        external
        view
        returns (
            uint reclaimAmount,
            uint rebateAmount,
            uint numEntries
        );

    function hasWaitingPeriodOrSettlementOwing(address account, bytes32 currencyKey) external view returns (bool);

    function feeRateForExchange(bytes32 sourceCurrencyKey, bytes32 destinationCurrencyKey)
        external
        view
        returns (uint exchangeFeeRate);

    function getAmountsForExchange(
        uint sourceAmount,
        bytes32 sourceCurrencyKey,
        bytes32 destinationCurrencyKey
    )
        external
        view
        returns (
            uint amountReceived,
            uint fee,
            uint exchangeFeeRate
        );

    function priceDeviationThresholdFactor() external view returns (uint);

    function waitingPeriodSecs() external view returns (uint);

    // Mutative functions
    function exchange(
        address from,
        bytes32 sourceCurrencyKey,
        uint sourceAmount,
        bytes32 destinationCurrencyKey,
        address destinationAddress
    ) external returns (uint amountReceived);

    function exchangeOnBehalf(
        address exchangeForAddress,
        address from,
        bytes32 sourceCurrencyKey,
        uint sourceAmount,
        bytes32 destinationCurrencyKey
    ) external returns (uint amountReceived);

    function exchangeWithTracking(
        address from,
        bytes32 sourceCurrencyKey,
        uint sourceAmount,
        bytes32 destinationCurrencyKey,
        address destinationAddress,
        address originator,
        bytes32 trackingCode
    ) external returns (uint amountReceived);

    function exchangeOnBehalfWithTracking(
        address exchangeForAddress,
        address from,
        bytes32 sourceCurrencyKey,
        uint sourceAmount,
        bytes32 destinationCurrencyKey,
        address originator,
        bytes32 trackingCode
    ) external returns (uint amountReceived);

    function exchangeWithVirtual(
        address from,
        bytes32 sourceCurrencyKey,
        uint sourceAmount,
        bytes32 destinationCurrencyKey,
        address destinationAddress,
        bytes32 trackingCode
    ) external returns (uint amountReceived, IVirtualPynth vPynth);

    function settle(address from, bytes32 currencyKey)
        external
        returns (
            uint reclaimed,
            uint refunded,
            uint numEntries
        );

    function setLastExchangeRateForPynth(bytes32 currencyKey, uint rate) external;

    function suspendPynthWithInvalidRate(bytes32 currencyKey) external;
}


// https://docs.peri.finance/contracts/source/interfaces/irewardsdistribution
interface IRewardsDistribution {
    // Structs
    struct DistributionData {
        address destination;
        uint amount;
    }

    // Views
    function authority() external view returns (address);

    function distributions(uint index) external view returns (address destination, uint amount); // DistributionData

    function distributionsLength() external view returns (uint);

    // Mutative Functions
    function distributeRewards(uint amount) external returns (bool);
}


// Inheritance


// Libraries


// Internal references


contract BasePeriFinance is IERC20, ExternStateToken, MixinResolver, IPeriFinance {
    using SafeMath for uint;
    using SafeDecimalMath for uint;

    // ========== STATE VARIABLES ==========

    struct LockState {
        address account;
        uint startTime;
        uint iterations;
        uint totalAmount;
        uint unitTime;
        uint endTime;
    }

    // Available Pynths which can be used with the system
    string public constant TOKEN_NAME = "Peri Finance Token";
    string public constant TOKEN_SYMBOL = "PERI";
    uint8 public constant DECIMALS = 18;
    bytes32 public constant pUSD = "pUSD";

    mapping(address => LockState) public lockStates;

    event LockChanged(
        address indexed account,
        uint startTime,
        uint iterations,
        uint totalAmount,
        uint unitTime,
        uint endTime
    );

    // ========== ADDRESS RESOLVER CONFIGURATION ==========
    bytes32 private constant CONTRACT_PERIFINANCESTATE = "PeriFinanceState";
    bytes32 private constant CONTRACT_SYSTEMSTATUS = "SystemStatus";
    bytes32 private constant CONTRACT_EXCHANGER = "Exchanger";
    bytes32 private constant CONTRACT_ISSUER = "Issuer";
    bytes32 private constant CONTRACT_REWARDSDISTRIBUTION = "RewardsDistribution";

    // ========== CONSTRUCTOR ==========

    constructor(
        address payable _proxy,
        TokenState _tokenState,
        address _owner,
        uint _totalSupply,
        address _resolver
    )
        public
        ExternStateToken(_proxy, _tokenState, TOKEN_NAME, TOKEN_SYMBOL, _totalSupply, DECIMALS, _owner)
        MixinResolver(_resolver)
    {}

    // ========== VIEWS ==========

    // Note: use public visibility so that it can be invoked in a subclass
    function resolverAddressesRequired() public view returns (bytes32[] memory addresses) {
        addresses = new bytes32[](5);
        addresses[0] = CONTRACT_PERIFINANCESTATE;
        addresses[1] = CONTRACT_SYSTEMSTATUS;
        addresses[2] = CONTRACT_EXCHANGER;
        addresses[3] = CONTRACT_ISSUER;
        addresses[4] = CONTRACT_REWARDSDISTRIBUTION;
    }

    function periFinanceState() internal view returns (IPeriFinanceState) {
        return IPeriFinanceState(requireAndGetAddress(CONTRACT_PERIFINANCESTATE));
    }

    function systemStatus() internal view returns (ISystemStatus) {
        return ISystemStatus(requireAndGetAddress(CONTRACT_SYSTEMSTATUS));
    }

    function exchanger() internal view returns (IExchanger) {
        return IExchanger(requireAndGetAddress(CONTRACT_EXCHANGER));
    }

    function issuer() internal view returns (IIssuer) {
        return IIssuer(requireAndGetAddress(CONTRACT_ISSUER));
    }

    function rewardsDistribution() internal view returns (IRewardsDistribution) {
        return IRewardsDistribution(requireAndGetAddress(CONTRACT_REWARDSDISTRIBUTION));
    }

    function debtBalanceOf(address account, bytes32 currencyKey) external view returns (uint) {
        return issuer().debtBalanceOf(account, currencyKey);
    }

    function totalIssuedPynths(bytes32 currencyKey) external view returns (uint) {
        return issuer().totalIssuedPynths(currencyKey, false);
    }

    function totalIssuedPynthsExcludeEtherCollateral(bytes32 currencyKey) external view returns (uint) {
        return issuer().totalIssuedPynths(currencyKey, true);
    }

    function availableCurrencyKeys() external view returns (bytes32[] memory) {
        return issuer().availableCurrencyKeys();
    }

    function availablePynthCount() external view returns (uint) {
        return issuer().availablePynthCount();
    }

    function availablePynths(uint index) external view returns (IPynth) {
        return issuer().availablePynths(index);
    }

    function pynths(bytes32 currencyKey) external view returns (IPynth) {
        return issuer().pynths(currencyKey);
    }

    function pynthsByAddress(address pynthAddress) external view returns (bytes32) {
        return issuer().pynthsByAddress(pynthAddress);
    }

    function isWaitingPeriod(bytes32 currencyKey) external view returns (bool) {
        return exchanger().maxSecsLeftInWaitingPeriod(messageSender, currencyKey) > 0;
    }

    function anyPynthOrPERIRateIsInvalid() external view returns (bool anyRateInvalid) {
        return issuer().anyPynthOrPERIRateIsInvalid();
    }

    function maxIssuablePynths(address account) external view returns (uint maxIssuable) {
        return issuer().maxIssuablePynths(account);
    }

    function remainingIssuablePynths(address account)
        external
        view
        returns (
            uint maxIssuable,
            uint alreadyIssued,
            uint totalSystemDebt
        )
    {
        return issuer().remainingIssuablePynths(account);
    }

    function collateralisationRatio(address _issuer) external view returns (uint) {
        return issuer().collateralisationRatio(_issuer);
    }

    function collateral(address account) external view returns (uint) {
        return issuer().collateral(account);
    }

    function transferablePeriFinance(address account) external view returns (uint transferable) {
        (transferable, ) = issuer().transferablePeriFinanceAndAnyRateIsInvalid(account, tokenState.balanceOf(account));
    }

    function _canTransfer(address account, uint value) internal view returns (bool) {
        require(!_isLocked(account, value), "PERI : Locked balance");

        (uint initialDebtOwnership, ) = periFinanceState().issuanceData(account);

        if (initialDebtOwnership > 0) {
            (uint transferable, bool anyRateIsInvalid) =
                issuer().transferablePeriFinanceAndAnyRateIsInvalid(account, tokenState.balanceOf(account));
            require(value <= transferable, "Cannot transfer staked or escrowed PERI");
            require(!anyRateIsInvalid, "A pynth or PERI rate is invalid");
        }
        return true;
    }

    function setLock(
        address account,
        uint delay,
        uint iterations,
        uint totalLockAmount,
        uint interval
    ) external onlyOwner {
        uint _startTime = delay.add(block.timestamp);
        uint _endTime = _startTime.add(iterations.mul(interval));

        lockStates[account] = LockState(account, _startTime, iterations, totalLockAmount, interval, _endTime);

        emit LockChanged(account, _startTime, iterations, totalLockAmount, interval, _endTime);
    }

    function resetLock(address account) external onlyOwner {
        delete lockStates[account];
        emit LockChanged(account, 0, 0, 0, 0, 0);
    }

    function getLock(address account)
        public
        view
        returns (
            address,
            uint,
            uint,
            uint,
            uint,
            uint
        )
    {
        return (
            lockStates[account].account,
            lockStates[account].startTime,
            lockStates[account].iterations,
            lockStates[account].totalAmount,
            lockStates[account].unitTime,
            lockStates[account].endTime
        );
    }

    function getLockCalculation(address account) public view returns (uint, uint) {
        LockState memory userLockInfo = lockStates[account];

        // Releasing is not started yet, or user is not locked
        if (userLockInfo.startTime > block.timestamp || userLockInfo.startTime == 0) {
            return (userLockInfo.iterations, userLockInfo.totalAmount);
        }

        uint iterRemains = (userLockInfo.endTime.sub(block.timestamp)).div(userLockInfo.unitTime);
        uint lockAmount = userLockInfo.totalAmount.mul(iterRemains).div(userLockInfo.iterations);

        return (iterRemains, lockAmount);
    }

    function _isLocked(address account, uint amount) internal view returns (bool) {
        LockState memory userLockInfo = lockStates[account];

        // Account is not locked
        if (userLockInfo.startTime == 0 || userLockInfo.endTime < block.timestamp) {
            return false;
        }

        // Releasing is not started yet
        if (userLockInfo.startTime > block.timestamp) {
            return true;
        }

        (, uint lockAmount) = getLockCalculation(account);
        uint accountBalance = tokenState.balanceOf(account);

        // Account's remained balance may less than lock amount
        if (accountBalance.sub(amount) < lockAmount) {
            return true;
        }

        return false;
    }

    // ========== MUTATIVE FUNCTIONS ==========

    function exchange(
        bytes32 sourceCurrencyKey,
        uint sourceAmount,
        bytes32 destinationCurrencyKey
    ) external exchangeActive(sourceCurrencyKey, destinationCurrencyKey) optionalProxy returns (uint amountReceived) {
        _notImplemented();
        return exchanger().exchange(messageSender, sourceCurrencyKey, sourceAmount, destinationCurrencyKey, messageSender);
    }

    function exchangeOnBehalf(
        address exchangeForAddress,
        bytes32 sourceCurrencyKey,
        uint sourceAmount,
        bytes32 destinationCurrencyKey
    ) external exchangeActive(sourceCurrencyKey, destinationCurrencyKey) optionalProxy returns (uint amountReceived) {
        _notImplemented();
        return
            exchanger().exchangeOnBehalf(
                exchangeForAddress,
                messageSender,
                sourceCurrencyKey,
                sourceAmount,
                destinationCurrencyKey
            );
    }

    function settle(bytes32 currencyKey)
        external
        optionalProxy
        returns (
            uint reclaimed,
            uint refunded,
            uint numEntriesSettled
        )
    {
        _notImplemented();
        return exchanger().settle(messageSender, currencyKey);
    }

    function exchangeWithTracking(
        bytes32 sourceCurrencyKey,
        uint sourceAmount,
        bytes32 destinationCurrencyKey,
        address originator,
        bytes32 trackingCode
    ) external exchangeActive(sourceCurrencyKey, destinationCurrencyKey) optionalProxy returns (uint amountReceived) {
        _notImplemented();
        return
            exchanger().exchangeWithTracking(
                messageSender,
                sourceCurrencyKey,
                sourceAmount,
                destinationCurrencyKey,
                messageSender,
                originator,
                trackingCode
            );
    }

    function exchangeOnBehalfWithTracking(
        address exchangeForAddress,
        bytes32 sourceCurrencyKey,
        uint sourceAmount,
        bytes32 destinationCurrencyKey,
        address originator,
        bytes32 trackingCode
    ) external exchangeActive(sourceCurrencyKey, destinationCurrencyKey) optionalProxy returns (uint amountReceived) {
        _notImplemented();
        return
            exchanger().exchangeOnBehalfWithTracking(
                exchangeForAddress,
                messageSender,
                sourceCurrencyKey,
                sourceAmount,
                destinationCurrencyKey,
                originator,
                trackingCode
            );
    }

    function transfer(address to, uint value) external optionalProxy systemActive returns (bool) {
        // Ensure they're not trying to exceed their locked amount -- only if they have debt.
        _canTransfer(messageSender, value);

        // Perform the transfer: if there is a problem an exception will be thrown in this call.
        _transferByProxy(messageSender, to, value);

        return true;
    }

    function transferFrom(
        address from,
        address to,
        uint value
    ) external optionalProxy systemActive returns (bool) {
        // Ensure they're not trying to exceed their locked amount -- only if they have debt.
        _canTransfer(from, value);

        // Perform the transfer: if there is a problem,
        // an exception will be thrown in this call.
        return _transferFromByProxy(messageSender, from, to, value);
    }

    function issuePynths(uint amount) external issuanceActive optionalProxy {
        return issuer().issuePynths(messageSender, amount);
    }

    function issuePynthsOnBehalf(address issueForAddress, uint amount) external issuanceActive optionalProxy {
        return issuer().issuePynthsOnBehalf(issueForAddress, messageSender, amount);
    }

    function issueMaxPynths() external issuanceActive optionalProxy {
        return issuer().issueMaxPynths(messageSender);
    }

    function issueMaxPynthsOnBehalf(address issueForAddress) external issuanceActive optionalProxy {
        return issuer().issueMaxPynthsOnBehalf(issueForAddress, messageSender);
    }

    function stakeUSDCAndIssuePynths(uint usdcStakeAmount, uint issueAmount) external issuanceActive optionalProxy {
        return issuer().stakeUSDCAndIssuePynths(messageSender, usdcStakeAmount, issueAmount);
    }

    function stakeUSDCAndIssueMaxPynths(uint usdcStakeAmount) external issuanceActive optionalProxy {
        return issuer().stakeUSDCAndIssueMaxPynths(messageSender, usdcStakeAmount);
    }

    function burnPynths(uint amount) external issuanceActive optionalProxy {
        return issuer().burnPynths(messageSender, amount);
    }

    function burnPynthsOnBehalf(address burnForAddress, uint amount) external issuanceActive optionalProxy {
        return issuer().burnPynthsOnBehalf(burnForAddress, messageSender, amount);
    }

    function burnPynthsToTarget() external issuanceActive optionalProxy {
        return issuer().burnPynthsToTarget(messageSender);
    }

    function burnPynthsToTargetOnBehalf(address burnForAddress) external issuanceActive optionalProxy {
        return issuer().burnPynthsToTargetOnBehalf(burnForAddress, messageSender);
    }

    function unstakeUSDCAndBurnPynths(uint usdcUnstakeAmount, uint burnAmount) external issuanceActive optionalProxy {
        return issuer().unstakeUSDCAndBurnPynths(messageSender, usdcUnstakeAmount, burnAmount);
    }

    function unstakeUSDCToMaxAndBurnPynths(uint burnAmount) external issuanceActive optionalProxy {
        return issuer().unstakeUSDCToMaxAndBurnPynths(messageSender, burnAmount);
    }

    function exchangeWithVirtual(
        bytes32,
        uint,
        bytes32,
        bytes32
    ) external returns (uint, IVirtualPynth) {
        _notImplemented();
    }

    function mint() external returns (bool) {
        _notImplemented();
    }

    function liquidateDelinquentAccount(address, uint) external returns (bool) {
        _notImplemented();
    }

    function mintSecondary(address, uint) external {
        _notImplemented();
    }

    function mintSecondaryRewards(uint) external {
        _notImplemented();
    }

    function burnSecondary(address, uint) external {
        _notImplemented();
    }

    function _notImplemented() internal pure {
        revert("Cannot be run on this layer");
    }

    // ========== MODIFIERS ==========

    modifier systemActive() {
        _systemActive();
        _;
    }

    function _systemActive() private {
        systemStatus().requireSystemActive();
    }

    modifier issuanceActive() {
        _issuanceActive();
        _;
    }

    function _issuanceActive() private {
        systemStatus().requireIssuanceActive();
    }

    modifier exchangeActive(bytes32 src, bytes32 dest) {
        _exchangeActive(src, dest);
        _;
    }

    function _exchangeActive(bytes32 src, bytes32 dest) private {
        systemStatus().requireExchangeBetweenPynthsAllowed(src, dest);
    }

    modifier onlyExchanger() {
        _onlyExchanger();
        _;
    }

    function _onlyExchanger() private {
        require(msg.sender == address(exchanger()), "Only Exchanger can invoke this");
    }

    // ========== EVENTS ==========
    event PynthExchange(
        address indexed account,
        bytes32 fromCurrencyKey,
        uint256 fromAmount,
        bytes32 toCurrencyKey,
        uint256 toAmount,
        address toAddress
    );
    bytes32 internal constant PYNTHEXCHANGE_SIG =
        keccak256("PynthExchange(address,bytes32,uint256,bytes32,uint256,address)");

    function emitPynthExchange(
        address account,
        bytes32 fromCurrencyKey,
        uint256 fromAmount,
        bytes32 toCurrencyKey,
        uint256 toAmount,
        address toAddress
    ) external onlyExchanger {
        proxy._emit(
            abi.encode(fromCurrencyKey, fromAmount, toCurrencyKey, toAmount, toAddress),
            2,
            PYNTHEXCHANGE_SIG,
            addressToBytes32(account),
            0,
            0
        );
    }

    event ExchangeTracking(bytes32 indexed trackingCode, bytes32 toCurrencyKey, uint256 toAmount);
    bytes32 internal constant EXCHANGE_TRACKING_SIG = keccak256("ExchangeTracking(bytes32,bytes32,uint256)");

    function emitExchangeTracking(
        bytes32 trackingCode,
        bytes32 toCurrencyKey,
        uint256 toAmount
    ) external onlyExchanger {
        proxy._emit(abi.encode(toCurrencyKey, toAmount), 2, EXCHANGE_TRACKING_SIG, trackingCode, 0, 0);
    }

    event ExchangeReclaim(address indexed account, bytes32 currencyKey, uint amount);
    bytes32 internal constant EXCHANGERECLAIM_SIG = keccak256("ExchangeReclaim(address,bytes32,uint256)");

    function emitExchangeReclaim(
        address account,
        bytes32 currencyKey,
        uint256 amount
    ) external onlyExchanger {
        proxy._emit(abi.encode(currencyKey, amount), 2, EXCHANGERECLAIM_SIG, addressToBytes32(account), 0, 0);
    }

    event ExchangeRebate(address indexed account, bytes32 currencyKey, uint amount);
    bytes32 internal constant EXCHANGEREBATE_SIG = keccak256("ExchangeRebate(address,bytes32,uint256)");

    function emitExchangeRebate(
        address account,
        bytes32 currencyKey,
        uint256 amount
    ) external onlyExchanger {
        proxy._emit(abi.encode(currencyKey, amount), 2, EXCHANGEREBATE_SIG, addressToBytes32(account), 0, 0);
    }
}


// https://docs.peri.finance/contracts/source/interfaces/irewardescrow
interface IRewardEscrow {
    // Views
    function balanceOf(address account) external view returns (uint);

    function numVestingEntries(address account) external view returns (uint);

    function totalEscrowedAccountBalance(address account) external view returns (uint);

    function totalVestedAccountBalance(address account) external view returns (uint);

    function getVestingScheduleEntry(address account, uint index) external view returns (uint[2] memory);

    function getNextVestingIndex(address account) external view returns (uint);

    // Mutative functions
    function appendVestingEntry(address account, uint quantity) external;

    function vest() external;
}


pragma experimental ABIEncoderV2;

library VestingEntries {
    struct VestingEntry {
        uint64 endTime;
        uint256 escrowAmount;
    }
    struct VestingEntryWithID {
        uint64 endTime;
        uint256 escrowAmount;
        uint256 entryID;
    }
}

interface IRewardEscrowV2 {
    // Views
    function balanceOf(address account) external view returns (uint);

    function numVestingEntries(address account) external view returns (uint);

    function totalEscrowedAccountBalance(address account) external view returns (uint);

    function totalVestedAccountBalance(address account) external view returns (uint);

    function getVestingQuantity(address account, uint256[] calldata entryIDs) external view returns (uint);

    function getVestingSchedules(
        address account,
        uint256 index,
        uint256 pageSize
    ) external view returns (VestingEntries.VestingEntryWithID[] memory);

    function getAccountVestingEntryIDs(
        address account,
        uint256 index,
        uint256 pageSize
    ) external view returns (uint256[] memory);

    function getVestingEntryClaimable(address account, uint256 entryID) external view returns (uint);

    function getVestingEntry(address account, uint256 entryID) external view returns (uint64, uint256);

    // Mutative functions
    function vest(uint256[] calldata entryIDs) external;

    function createEscrowEntry(
        address beneficiary,
        uint256 deposit,
        uint256 duration
    ) external;

    function appendVestingEntry(
        address account,
        uint256 quantity,
        uint256 duration
    ) external;

    function migrateVestingSchedule(address _addressToMigrate) external;

    function migrateAccountEscrowBalances(
        address[] calldata accounts,
        uint256[] calldata escrowBalances,
        uint256[] calldata vestedBalances
    ) external;

    // Account Merging
    function startMergingWindow() external;

    function mergeAccount(address accountToMerge, uint256[] calldata entryIDs) external;

    function nominateAccountToMerge(address account) external;

    function accountMergingIsOpen() external view returns (bool);

    // L2 Migration
    function importVestingEntries(
        address account,
        uint256 escrowedAmount,
        VestingEntries.VestingEntry[] calldata vestingEntries
    ) external;

    // Return amount of PERI transfered to PynthetixBridgeToOptimism deposit contract
    function burnForMigration(address account, uint256[] calldata entryIDs)
        external
        returns (uint256 escrowedAccountBalance, VestingEntries.VestingEntry[] memory vestingEntries);
}


// https://docs.peri.finance/contracts/source/interfaces/isupplyschedule
interface ISupplySchedule {
    // Views
    function mintableSupply() external view returns (uint);

    function isMintable() external view returns (bool);

    function minterReward() external view returns (uint);

    // Mutative functions
    function recordMintEvent(uint supplyMinted) external returns (bool);
}


// Inheritance


// Internal references


// https://docs.peri.finance/contracts/source/contracts/periFinance
contract PeriFinance is BasePeriFinance {
    // ========== ADDRESS RESOLVER CONFIGURATION ==========
    bytes32 private constant CONTRACT_REWARD_ESCROW = "RewardEscrow";
    bytes32 private constant CONTRACT_REWARDESCROW_V2 = "RewardEscrowV2";
    bytes32 private constant CONTRACT_SUPPLYSCHEDULE = "SupplySchedule";

    // ========== CONSTRUCTOR ==========

    constructor(
        address payable _proxy,
        TokenState _tokenState,
        address _owner,
        uint _totalSupply,
        address _resolver
    ) public BasePeriFinance(_proxy, _tokenState, _owner, _totalSupply, _resolver) {}

    function resolverAddressesRequired() public view returns (bytes32[] memory addresses) {
        bytes32[] memory existingAddresses = BasePeriFinance.resolverAddressesRequired();
        bytes32[] memory newAddresses = new bytes32[](3);
        newAddresses[0] = CONTRACT_REWARD_ESCROW;
        newAddresses[1] = CONTRACT_REWARDESCROW_V2;
        newAddresses[2] = CONTRACT_SUPPLYSCHEDULE;
        return combineArrays(existingAddresses, newAddresses);
    }

    // ========== VIEWS ==========

    function rewardEscrow() internal view returns (IRewardEscrow) {
        return IRewardEscrow(requireAndGetAddress(CONTRACT_REWARD_ESCROW));
    }

    function rewardEscrowV2() internal view returns (IRewardEscrowV2) {
        return IRewardEscrowV2(requireAndGetAddress(CONTRACT_REWARDESCROW_V2));
    }

    function supplySchedule() internal view returns (ISupplySchedule) {
        return ISupplySchedule(requireAndGetAddress(CONTRACT_SUPPLYSCHEDULE));
    }

    // ========== OVERRIDDEN FUNCTIONS ==========

    function exchangeWithVirtual(
        bytes32 sourceCurrencyKey,
        uint sourceAmount,
        bytes32 destinationCurrencyKey,
        bytes32 trackingCode
    )
        external
        exchangeActive(sourceCurrencyKey, destinationCurrencyKey)
        optionalProxy
        returns (uint amountReceived, IVirtualPynth vPynth)
    {
        _notImplemented();
        return
            exchanger().exchangeWithVirtual(
                messageSender,
                sourceCurrencyKey,
                sourceAmount,
                destinationCurrencyKey,
                messageSender,
                trackingCode
            );
    }

    function settle(bytes32 currencyKey)
        external
        optionalProxy
        returns (
            uint reclaimed,
            uint refunded,
            uint numEntriesSettled
        )
    {
        _notImplemented();
        return exchanger().settle(messageSender, currencyKey);
    }

    function mint() external issuanceActive returns (bool) {
        require(address(rewardsDistribution()) != address(0), "RewardsDistribution not set");

        ISupplySchedule _supplySchedule = supplySchedule();
        IRewardsDistribution _rewardsDistribution = rewardsDistribution();

        uint supplyToMint = _supplySchedule.mintableSupply();
        require(supplyToMint > 0, "No supply is mintable");

        // record minting event before mutation to token supply
        _supplySchedule.recordMintEvent(supplyToMint);

        // Set minted PERI balance to RewardEscrow's balance
        // Minus the minterReward and set balance of minter to add reward
        uint minterReward = _supplySchedule.minterReward();
        // Get the remainder
        uint amountToDistribute = supplyToMint.sub(minterReward);

        // Set the token balance to the RewardsDistribution contract
        tokenState.setBalanceOf(
            address(_rewardsDistribution),
            tokenState.balanceOf(address(_rewardsDistribution)).add(amountToDistribute)
        );
        emitTransfer(address(this), address(_rewardsDistribution), amountToDistribute);

        // Kick off the distribution of rewards
        _rewardsDistribution.distributeRewards(amountToDistribute);

        // Assign the minters reward.
        tokenState.setBalanceOf(msg.sender, tokenState.balanceOf(msg.sender).add(minterReward));
        emitTransfer(address(this), msg.sender, minterReward);

        totalSupply = totalSupply.add(supplyToMint);

        return true;
    }

    function liquidateDelinquentAccount(address account, uint pusdAmount)
        external
        systemActive
        optionalProxy
        returns (bool)
    {
        _notImplemented();
        (uint totalRedeemed, uint amountLiquidated) =
            issuer().liquidateDelinquentAccount(account, pusdAmount, messageSender);

        emitAccountLiquidated(account, totalRedeemed, amountLiquidated, messageSender);

        // Transfer PERI redeemed to messageSender
        // Reverts if amount to redeem is more than balanceOf account, ie due to escrowed balance
        return _transferByProxy(account, messageSender, totalRedeemed);
    }

    /* Once off function for SIP-60 to migrate PERI balances in the RewardEscrow contract
     * To the new RewardEscrowV2 contract
     */
    function migrateEscrowBalanceToRewardEscrowV2() external onlyOwner {
        // Record balanceOf(RewardEscrow) contract
        uint rewardEscrowBalance = tokenState.balanceOf(address(rewardEscrow()));

        // transfer all of RewardEscrow's balance to RewardEscrowV2
        // _internalTransfer emits the transfer event
        _internalTransfer(address(rewardEscrow()), address(rewardEscrowV2()), rewardEscrowBalance);
    }

    // ========== EVENTS ==========
    event AccountLiquidated(address indexed account, uint periRedeemed, uint amountLiquidated, address liquidator);
    bytes32 internal constant ACCOUNTLIQUIDATED_SIG = keccak256("AccountLiquidated(address,uint256,uint256,address)");

    function emitAccountLiquidated(
        address account,
        uint256 periRedeemed,
        uint256 amountLiquidated,
        address liquidator
    ) internal {
        proxy._emit(
            abi.encode(periRedeemed, amountLiquidated, liquidator),
            2,
            ACCOUNTLIQUIDATED_SIG,
            addressToBytes32(account),
            0,
            0
        );
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address payable","name":"_proxy","type":"address"},{"internalType":"contract TokenState","name":"_tokenState","type":"address"},{"internalType":"address","name":"_owner","type":"address"},{"internalType":"uint256","name":"_totalSupply","type":"uint256"},{"internalType":"address","name":"_resolver","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"periRedeemed","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amountLiquidated","type":"uint256"},{"indexed":false,"internalType":"address","name":"liquidator","type":"address"}],"name":"AccountLiquidated","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":false,"internalType":"bytes32","name":"name","type":"bytes32"},{"indexed":false,"internalType":"address","name":"destination","type":"address"}],"name":"CacheUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bytes32","name":"currencyKey","type":"bytes32"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ExchangeRebate","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bytes32","name":"currencyKey","type":"bytes32"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ExchangeReclaim","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bytes32","name":"trackingCode","type":"bytes32"},{"indexed":false,"internalType":"bytes32","name":"toCurrencyKey","type":"bytes32"},{"indexed":false,"internalType":"uint256","name":"toAmount","type":"uint256"}],"name":"ExchangeTracking","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"startTime","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"iterations","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"totalAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"unitTime","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"endTime","type":"uint256"}],"name":"LockChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"oldOwner","type":"address"},{"indexed":false,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnerChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnerNominated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"proxyAddress","type":"address"}],"name":"ProxyUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"bytes32","name":"fromCurrencyKey","type":"bytes32"},{"indexed":false,"internalType":"uint256","name":"fromAmount","type":"uint256"},{"indexed":false,"internalType":"bytes32","name":"toCurrencyKey","type":"bytes32"},{"indexed":false,"internalType":"uint256","name":"toAmount","type":"uint256"},{"indexed":false,"internalType":"address","name":"toAddress","type":"address"}],"name":"PynthExchange","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"newTokenState","type":"address"}],"name":"TokenStateUpdated","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"},{"constant":true,"inputs":[],"name":"DECIMALS","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"TOKEN_NAME","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"TOKEN_SYMBOL","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"acceptOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"anyPynthOrPERIRateIsInvalid","outputs":[{"internalType":"bool","name":"anyRateInvalid","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"availableCurrencyKeys","outputs":[{"internalType":"bytes32[]","name":"","type":"bytes32[]"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"availablePynthCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"availablePynths","outputs":[{"internalType":"contract IPynth","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnPynths","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"burnForAddress","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnPynthsOnBehalf","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"burnPynthsToTarget","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"burnForAddress","type":"address"}],"name":"burnPynthsToTargetOnBehalf","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"burnSecondary","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"collateral","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"_issuer","type":"address"}],"name":"collateralisationRatio","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bytes32","name":"currencyKey","type":"bytes32"}],"name":"debtBalanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bytes32","name":"currencyKey","type":"bytes32"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"emitExchangeRebate","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bytes32","name":"currencyKey","type":"bytes32"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"emitExchangeReclaim","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"bytes32","name":"trackingCode","type":"bytes32"},{"internalType":"bytes32","name":"toCurrencyKey","type":"bytes32"},{"internalType":"uint256","name":"toAmount","type":"uint256"}],"name":"emitExchangeTracking","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bytes32","name":"fromCurrencyKey","type":"bytes32"},{"internalType":"uint256","name":"fromAmount","type":"uint256"},{"internalType":"bytes32","name":"toCurrencyKey","type":"bytes32"},{"internalType":"uint256","name":"toAmount","type":"uint256"},{"internalType":"address","name":"toAddress","type":"address"}],"name":"emitPynthExchange","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"bytes32","name":"sourceCurrencyKey","type":"bytes32"},{"internalType":"uint256","name":"sourceAmount","type":"uint256"},{"internalType":"bytes32","name":"destinationCurrencyKey","type":"bytes32"}],"name":"exchange","outputs":[{"internalType":"uint256","name":"amountReceived","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"exchangeForAddress","type":"address"},{"internalType":"bytes32","name":"sourceCurrencyKey","type":"bytes32"},{"internalType":"uint256","name":"sourceAmount","type":"uint256"},{"internalType":"bytes32","name":"destinationCurrencyKey","type":"bytes32"}],"name":"exchangeOnBehalf","outputs":[{"internalType":"uint256","name":"amountReceived","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"exchangeForAddress","type":"address"},{"internalType":"bytes32","name":"sourceCurrencyKey","type":"bytes32"},{"internalType":"uint256","name":"sourceAmount","type":"uint256"},{"internalType":"bytes32","name":"destinationCurrencyKey","type":"bytes32"},{"internalType":"address","name":"originator","type":"address"},{"internalType":"bytes32","name":"trackingCode","type":"bytes32"}],"name":"exchangeOnBehalfWithTracking","outputs":[{"internalType":"uint256","name":"amountReceived","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"bytes32","name":"sourceCurrencyKey","type":"bytes32"},{"internalType":"uint256","name":"sourceAmount","type":"uint256"},{"internalType":"bytes32","name":"destinationCurrencyKey","type":"bytes32"},{"internalType":"address","name":"originator","type":"address"},{"internalType":"bytes32","name":"trackingCode","type":"bytes32"}],"name":"exchangeWithTracking","outputs":[{"internalType":"uint256","name":"amountReceived","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"bytes32","name":"sourceCurrencyKey","type":"bytes32"},{"internalType":"uint256","name":"sourceAmount","type":"uint256"},{"internalType":"bytes32","name":"destinationCurrencyKey","type":"bytes32"},{"internalType":"bytes32","name":"trackingCode","type":"bytes32"}],"name":"exchangeWithVirtual","outputs":[{"internalType":"uint256","name":"amountReceived","type":"uint256"},{"internalType":"contract IVirtualPynth","name":"vPynth","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getLock","outputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getLockCalculation","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"integrationProxy","outputs":[{"internalType":"contract Proxy","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"isResolverCached","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"bytes32","name":"currencyKey","type":"bytes32"}],"name":"isWaitingPeriod","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"issueMaxPynths","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"issueForAddress","type":"address"}],"name":"issueMaxPynthsOnBehalf","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"issuePynths","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"issueForAddress","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"issuePynthsOnBehalf","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"pusdAmount","type":"uint256"}],"name":"liquidateDelinquentAccount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"lockStates","outputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"startTime","type":"uint256"},{"internalType":"uint256","name":"iterations","type":"uint256"},{"internalType":"uint256","name":"totalAmount","type":"uint256"},{"internalType":"uint256","name":"unitTime","type":"uint256"},{"internalType":"uint256","name":"endTime","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"maxIssuablePynths","outputs":[{"internalType":"uint256","name":"maxIssuable","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"messageSender","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"migrateEscrowBalanceToRewardEscrowV2","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"mint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"mintSecondary","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"mintSecondaryRewards","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"nominateNewOwner","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"nominatedOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"pUSD","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"proxy","outputs":[{"internalType":"contract Proxy","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"bytes32","name":"currencyKey","type":"bytes32"}],"name":"pynths","outputs":[{"internalType":"contract IPynth","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"pynthAddress","type":"address"}],"name":"pynthsByAddress","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"rebuildCache","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"remainingIssuablePynths","outputs":[{"internalType":"uint256","name":"maxIssuable","type":"uint256"},{"internalType":"uint256","name":"alreadyIssued","type":"uint256"},{"internalType":"uint256","name":"totalSystemDebt","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"resetLock","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"resolver","outputs":[{"internalType":"contract AddressResolver","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"resolverAddressesRequired","outputs":[{"internalType":"bytes32[]","name":"addresses","type":"bytes32[]"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address payable","name":"_integrationProxy","type":"address"}],"name":"setIntegrationProxy","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"delay","type":"uint256"},{"internalType":"uint256","name":"iterations","type":"uint256"},{"internalType":"uint256","name":"totalLockAmount","type":"uint256"},{"internalType":"uint256","name":"interval","type":"uint256"}],"name":"setLock","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"setMessageSender","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address payable","name":"_proxy","type":"address"}],"name":"setProxy","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"contract TokenState","name":"_tokenState","type":"address"}],"name":"setTokenState","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"bytes32","name":"currencyKey","type":"bytes32"}],"name":"settle","outputs":[{"internalType":"uint256","name":"reclaimed","type":"uint256"},{"internalType":"uint256","name":"refunded","type":"uint256"},{"internalType":"uint256","name":"numEntriesSettled","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"usdcStakeAmount","type":"uint256"}],"name":"stakeUSDCAndIssueMaxPynths","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"usdcStakeAmount","type":"uint256"},{"internalType":"uint256","name":"issueAmount","type":"uint256"}],"name":"stakeUSDCAndIssuePynths","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"tokenState","outputs":[{"internalType":"contract TokenState","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"bytes32","name":"currencyKey","type":"bytes32"}],"name":"totalIssuedPynths","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"bytes32","name":"currencyKey","type":"bytes32"}],"name":"totalIssuedPynthsExcludeEtherCollateral","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"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"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"transferablePeriFinance","outputs":[{"internalType":"uint256","name":"transferable","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"usdcUnstakeAmount","type":"uint256"},{"internalType":"uint256","name":"burnAmount","type":"uint256"}],"name":"unstakeUSDCAndBurnPynths","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"burnAmount","type":"uint256"}],"name":"unstakeUSDCToMaxAndBurnPynths","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"}]

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061045f5760003560e01c80637857637c1161024c578063c836fa0a11610146578063e3c3af98116100c3578063ec55688911610087578063ec55688914610962578063edef719a146106bb578063ee52a2f31461096a578063f5adc4f51461097d578063f9eea80c146109855761045f565b8063e3c3af981461090e578063e58c3e8614610921578063e6203ed114610934578063e7eb636d14610947578063e90dd9e21461095a5761045f565b8063d6980ba11161010a578063d6980ba1146108ba578063d8a1f76f146108cd578063d99947de146108e0578063dd62ed3e146108e8578063ddd03a3f146108fb5761045f565b8063c836fa0a14610866578063c9a2f3ad14610879578063d37c4d8b1461088c578063d3a712021461089f578063d67bdd25146108b25761045f565b8063987757dd116101d4578063a5fdc5de11610198578063a5fdc5de14610807578063a9059cbb1461081a578063ace88afd1461082d578063b07ecd2e14610840578063bc67f832146108535761045f565b8063987757dd146107b35780639cbdaeb6146107c65780639df95f9f146107ce5780639f769807146107e1578063a311c7c2146107f45761045f565b80638e2ac0ea1161021b5780638e2ac0ea1461076a57806391e56b681461077257806395b80e121461078557806395d89b411461079857806397107d6d146107a05761045f565b80637857637c1461073f57806379ba509714610752578063899ffef41461075a5780638da5cb5b146107625761045f565b806330ead7601161035d57806355182ccb116102e55780636f01a986116102a95780636f01a986146106e9578063705a2369146106fc57806370a082311461070f57806372cb051f1461072257806374185360146107375761045f565b806355182ccb1461069557806357ad4663146106a8578063666ed4f1146106bb5780636b76222f146106ce5780636b9db4e6146106d65761045f565b80633b09280a1161032c5780633b09280a14610630578063415d917e1461065257806342f760cb1461066557806353a47bb71461067857806354037f761461068d5761045f565b806330ead760146105dd578063313ce567146105f057806337580f90146105f85780633a560e351461061d5761045f565b806318160ddd116103eb57806328691a75116103af57806328691a75146105845780632a905318146105975780632af64bd31461059f5780632b793f67146105a75780632e0f2625146105c85761045f565b806318160ddd1461052e57806318821400146105435780631b99084c1461054b5780631fce304d1461055e57806323b872dd146105715761045f565b80630ce4f2ef116104325780630ce4f2ef146104cc5780630e30963c146104df5780631249c58b14610500578063131b0ae7146105085780631627540c1461051b5761045f565b806304f3bcec1461046457806306fdde0314610482578063095ea7b3146104975780630b717465146104b7575b600080fd5b61046c61098d565b6040516104799190614c23565b60405180910390f35b61048a6109a1565b6040516104799190614c73565b6104aa6104a5366004613bab565b610a2f565b6040516104799190614acd565b6104ca6104c5366004613e37565b610abd565b005b6104ca6104da366004613ae8565b610b3e565b6104f26104ed366004613eeb565b610b88565b604051610479929190614d84565b6104aa610c4a565b6104ca610516366004613ae8565b611074565b6104ca610529366004613ae8565b61109e565b6105366110fc565b6040516104799190614adb565b61048a611102565b6104ca610559366004613cf5565b611130565b6104aa61056c366004613e37565b6111f2565b6104aa61057f366004613b5e565b611287565b6104ca610592366004613ae8565b6112c6565b61048a611310565b6104aa611330565b6105ba6105b5366004613ae8565b61144c565b604051610479929190614b12565b6105d0611540565b6040516104799190614dd6565b6105366105eb366004613e94565b611545565b6105d0611606565b61060b610606366004613ae8565b61160f565b60405161047996959493929190614a7a565b6104ca61062b366004613fa9565b61164e565b61064361063e366004613ae8565b6116d2565b60405161047993929190614dad565b6104ca610660366004613e37565b611767565b6104ca610673366004613bab565b6117b2565b6106806117fe565b604051610479919061483e565b6104ca61180d565b6105366106a3366004613ae8565b61188b565b61046c6106b6366004613e37565b611910565b6104ca6106c9366004613bab565b611995565b6104ca61199d565b61060b6106e4366004613ae8565b611a48565b6104ca6106f7366004613bdb565b611a8c565b6104ca61070a366004613e37565b611b45565b61053661071d366004613ae8565b611b90565b61072a611bc1565b6040516104799190614abc565b6104ca611c44565b6104ca61074d366004613d6f565b611d96565b6104ca611ea3565b61072a611f3f565b610680612000565b6104ca61200f565b610536610780366004613c6e565b612058565b6104ca610793366004613fa9565b612119565b61048a612166565b6104ca6107ae366004613ae8565b6121c1565b6106436107c1366004613e37565b612214565b61046c612292565b61046c6107dc366004613e37565b6122a1565b6104ca6107ef366004613f2b565b6122d6565b610536610802366004613ae8565b612302565b610536610815366004613ae8565b612337565b6104aa610828366004613bab565b61236c565b6104ca61083b366004613bdb565b6123b6565b6104ca61084e366004613e37565b612403565b6104ca610861366004613ae8565b61244e565b610536610874366004613c0d565b612478565b610536610887366004613ae8565b612533565b61053661089a366004613bab565b612568565b6105366108ad366004613e37565b6125ef565b610680612627565b6105366108c8366004613e37565b612636565b6104ca6108db366004613e37565b61266e565b610536612676565b6105366108f6366004613b24565b6126f0565b6104ca610909366004613e73565b612723565b61053661091c366004613ae8565b61279f565b6104ca61092f366004613bab565b6128a7565b6104aa610942366004613bab565b6128f3565b6104ca610955366004613ae8565b6129df565b61046c612a6e565b61046c612a7d565b610536610978366004613e73565b612a8c565b6104aa612b47565b610536612bc1565b60095461010090046001600160a01b031681565b6006805460408051602060026001851615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015610a275780601f106109fc57610100808354040283529160200191610a27565b820191906000526020600020905b815481529060010190602001808311610a0a57829003601f168201915b505050505081565b6000610a39612bcc565b60048054600554604051633691826360e21b81526001600160a01b0392831693919092169163da46098c91610a74918591899189910161492e565b600060405180830381600087803b158015610a8e57600080fd5b505af1158015610aa2573d6000803e3d6000fd5b50505050610ab1818585612c22565b60019150505b92915050565b610ac5612ca2565b610acd612bcc565b610ad5612cf6565b600480546040516303f70fdd60e01b81526001600160a01b03938416936303f70fdd93610b089390911691869101614956565b600060405180830381600087803b158015610b2257600080fd5b505af1158015610b36573d6000803e3d6000fd5b505050505b50565b610b46612ca2565b610b4e612bcc565b610b56612cf6565b60048054604051632334883560e11b81526001600160a01b0393841693634669106a93610b0893879392169101614875565b6000808584610b978282612d0a565b610b9f612bcc565b610ba7612d6b565b610baf612d83565b60048054604051633ce6548960e21b81526001600160a01b039384169363f399522493610bea93909116918d918d918d9185918e91016149e8565b6040805180830381600087803b158015610c0357600080fd5b505af1158015610c17573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250610c3b9190810190613f79565b93509350505094509492505050565b6000610c54612ca2565b6000610c5e612d9a565b6001600160a01b03161415610c8e5760405162461bcd60e51b8152600401610c8590614d04565b60405180910390fd5b6000610c98612dbb565b90506000610ca4612d9a565b90506000826001600160a01b031663cc5c095c6040518163ffffffff1660e01b815260040160206040518083038186803b158015610ce157600080fd5b505afa158015610cf5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250610d199190810190613e55565b905060008111610d3b5760405162461bcd60e51b8152600401610c8590614d44565b604051637e7961d760e01b81526001600160a01b03841690637e7961d790610d67908490600401614adb565b602060405180830381600087803b158015610d8157600080fd5b505af1158015610d95573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250610db99190810190613e19565b506000836001600160a01b0316639bdd7ac76040518163ffffffff1660e01b815260040160206040518083038186803b158015610df557600080fd5b505afa158015610e09573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250610e2d9190810190613e55565b90506000610e41838363ffffffff612dd716565b6005546040516370a0823160e01b81529192506001600160a01b03169063b46310f6908690610ede90859085906370a0823190610e8290869060040161483e565b60206040518083038186803b158015610e9a57600080fd5b505afa158015610eae573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250610ed29190810190613e55565b9063ffffffff612dff16565b6040518363ffffffff1660e01b8152600401610efb929190614956565b600060405180830381600087803b158015610f1557600080fd5b505af1158015610f29573d6000803e3d6000fd5b50505050610f38308583612e24565b604051630b32e9c760e31b81526001600160a01b038516906359974e3890610f64908490600401614adb565b602060405180830381600087803b158015610f7e57600080fd5b505af1158015610f92573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250610fb69190810190613e19565b506005546040516370a0823160e01b81526001600160a01b039091169063b46310f6903390610ff790869085906370a0823190610e8290869060040161484c565b6040518363ffffffff1660e01b815260040161101492919061485a565b600060405180830381600087803b15801561102e57600080fd5b505af1158015611042573d6000803e3d6000fd5b50505050611051303384612e24565b600854611064908463ffffffff612dff16565b6008555060019450505050505b90565b61107c612e67565b600380546001600160a01b0319166001600160a01b0392909216919091179055565b6110a6612e67565b600180546001600160a01b0319166001600160a01b0383161790556040517f906a1c6bd7e3091ea86693dd029a831c19049ce77f1dce2ce0bab1cacbabce22906110f190839061483e565b60405180910390a150565b60085481565b604051806040016040528060128152602001712832b934902334b730b731b2902a37b5b2b760711b81525081565b611138612e91565b6002546040516001600160a01b039091169063907dff97906111669088908890889088908890602001614b40565b6040516020818303038152906040526002604051611183906147c6565b60405180910390206111948b612ec9565b6000806040518763ffffffff1660e01b81526004016111b896959493929190614ba2565b600060405180830381600087803b1580156111d257600080fd5b505af11580156111e6573d6000803e3d6000fd5b50505050505050505050565b6000806111fd612d83565b600480546040516301670a7b60e21b81526001600160a01b039384169363059c29ec936112309390911691889101614956565b60206040518083038186803b15801561124857600080fd5b505afa15801561125c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052506112809190810190613e55565b1192915050565b6000611291612bcc565b611299612ed5565b6112a38483612f15565b506004546112bc906001600160a01b031685858561311b565b90505b9392505050565b6112ce612ca2565b6112d6612bcc565b6112de612cf6565b600480546040516330662ab960e01b81526001600160a01b03938416936330662ab993610b0893879392169101614875565b604051806040016040528060048152602001635045524960e01b81525081565b6000606061133c611f3f565b905060005b815181101561144357600082828151811061135857fe5b6020908102919091018101516000818152600a9092526040918290205460095492516321f8a72160e01b81529193506001600160a01b0390811692610100900416906321f8a721906113ae908590600401614adb565b60206040518083038186803b1580156113c657600080fd5b505afa1580156113da573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052506113fe9190810190613b06565b6001600160a01b031614158061142957506000818152600a60205260409020546001600160a01b0316155b1561143a5760009350505050611071565b50600101611341565b50600191505090565b6000806114576139dd565b506001600160a01b038084166000908152600b6020908152604091829020825160c081018452815490941684526001810154918401829052600281015492840192909252600382015460608401526004820154608084015260059091015460a08301524210806114c957506020810151155b156114e25780604001518160600151925092505061153b565b600061150f8260800151611503428560a00151612dd790919063ffffffff16565b9063ffffffff61322216565b90506000611532836040015161150384866060015161325790919063ffffffff16565b91945090925050505b915091565b601281565b600085846115538282612d0a565b61155b612bcc565b611563612d6b565b61156b612d83565b600480546040516321aea91760e21b81526001600160a01b03938416936386baa45c936115a893909116918d918d918d9185918e918e91016149a6565b602060405180830381600087803b1580156115c257600080fd5b505af11580156115d6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052506115fa9190810190613e55565b98975050505050505050565b60095460ff1681565b600b602052600090815260409020805460018201546002830154600384015460048501546005909501546001600160a01b039094169492939192909186565b611656612ca2565b61165e612bcc565b611666612cf6565b600480546040516390c494ab60e01b81526001600160a01b03938416936390c494ab9361169b93909116918791879101614a5f565b600060405180830381600087803b1580156116b557600080fd5b505af11580156116c9573d6000803e3d6000fd5b505050505b5050565b60008060006116df612cf6565b6001600160a01b0316633b09280a856040518263ffffffff1660e01b815260040161170a919061483e565b60606040518083038186803b15801561172257600080fd5b505afa158015611736573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525061175a9190810190613ff8565b9250925092509193909250565b61176f612ca2565b611777612bcc565b61177f612cf6565b60048054604051635e085bd960e11b81526001600160a01b039384169363bc10b7b293610b089390911691869101614956565b6117ba612ca2565b6117c2612bcc565b6117ca612cf6565b6004805460405163e71c452f60e01b81526001600160a01b039384169363e71c452f9361169b93889392169187910161492e565b6001546001600160a01b031681565b611815612ca2565b61181d612bcc565b611825612cf6565b60048054604051632b612fc160e11b81526001600160a01b03938416936356c25f829361185693909116910161483e565b600060405180830381600087803b15801561187057600080fd5b505af1158015611884573d6000803e3d6000fd5b505050505b565b6000611895612cf6565b6001600160a01b03166355182ccb836040518263ffffffff1660e01b81526004016118c0919061483e565b60206040518083038186803b1580156118d857600080fd5b505afa1580156118ec573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250610ab79190810190613e55565b600061191a612cf6565b6001600160a01b03166357ad4663836040518263ffffffff1660e01b81526004016119459190614adb565b60206040518083038186803b15801561195d57600080fd5b505afa158015611971573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250610ab79190810190613f0d565b6116ce612d6b565b6119a5612e67565b6005546000906001600160a01b03166370a082316119c1613291565b6040518263ffffffff1660e01b81526004016119dd919061483e565b60206040518083038186803b1580156119f557600080fd5b505afa158015611a09573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250611a2d9190810190613e55565b90506116ce611a3a613291565b611a426132ab565b836132c7565b6001600160a01b039081166000908152600b602052604090208054600182015460028301546003840154600485015460059095015493909516959194909390929091565b611a94612e91565b6002546040516001600160a01b039091169063907dff9790611abc9085908590602001614b12565b6040516020818303038152906040526002604051611ad9906147fc565b6040518091039020611aea88612ec9565b6000806040518763ffffffff1660e01b8152600401611b0e96959493929190614ba2565b600060405180830381600087803b158015611b2857600080fd5b505af1158015611b3c573d6000803e3d6000fd5b50505050505050565b611b4d612ca2565b611b55612bcc565b611b5d612cf6565b6004805460405163ba92122360e01b81526001600160a01b039384169363ba92122393610b089390911691869101614956565b6005546040516370a0823160e01b81526000916001600160a01b0316906370a08231906118c090859060040161483e565b6060611bcb612cf6565b6001600160a01b03166372cb051f6040518163ffffffff1660e01b815260040160006040518083038186803b158015611c0357600080fd5b505afa158015611c17573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052611c3f9190810190613de4565b905090565b6060611c4e611f3f565b905060005b81518110156116ce576000828281518110611c6a57fe5b602002602001015190506000600960019054906101000a90046001600160a01b03166001600160a01b031663dacb2d018384604051602001611cac9190614828565b6040516020818303038152906040526040518363ffffffff1660e01b8152600401611cd8929190614b20565b60206040518083038186803b158015611cf057600080fd5b505afa158015611d04573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250611d289190810190613b06565b6000838152600a60205260409081902080546001600160a01b0319166001600160a01b038416179055519091507f88a93678a3692f6789d9546fc621bf7234b101ddb7d4fe479455112831b8aa6890611d849084908490614ae9565b60405180910390a15050600101611c53565b611d9e612e67565b6000611db0854263ffffffff612dff16565b90506000611dd4611dc7868563ffffffff61325716565b839063ffffffff612dff16565b6040805160c0810182526001600160a01b038a811680835260208084018881528486018c8152606086018c8152608087018c815260a088018a81526000878152600b90965294899020975188546001600160a01b0319169716969096178755915160018701555160028601555160038501559151600484015590516005909201919091559051919250907e53a2d0a74627ad6d346bc05ca92631666b0cec11ac95505fe1f048f3845e1190611e929085908990899089908890614dbb565b60405180910390a250505050505050565b6001546001600160a01b03163314611ecd5760405162461bcd60e51b8152600401610c8590614c94565b6000546001546040517fb532073b38c83145e3e5135377a08bf9aab55bc0fd7c1179cd4fb995d2a5159c92611f10926001600160a01b0391821692911690614875565b60405180910390a160018054600080546001600160a01b03199081166001600160a01b03841617909155169055565b606080611f4a613449565b60408051600380825260808201909252919250606091906020820183803883390190505090506b526577617264457363726f7760a01b81600081518110611f8d57fe5b6020026020010181815250506d2932bbb0b93222b9b1b937bbab1960911b81600181518110611fb857fe5b6020026020010181815250506d537570706c795363686564756c6560901b81600281518110611fe357fe5b602002602001018181525050611ff9828261353e565b9250505090565b6000546001600160a01b031681565b612017612ca2565b61201f612bcc565b612027612cf6565b6004805460405163f0617e5b60e01b81526001600160a01b039384169363f0617e5b9361185693909116910161483e565b600085846120668282612d0a565b61206e612bcc565b612076612d6b565b61207e612d83565b60048054604051636fffe53b60e11b81526001600160a01b039384169363dfffca76936120ba938f939216918e918e918e918e918e91016148d2565b602060405180830381600087803b1580156120d457600080fd5b505af11580156120e8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525061210c9190810190613e55565b9998505050505050505050565b612121612ca2565b612129612bcc565b612131612cf6565b6004805460405163ec874b8360e01b81526001600160a01b039384169363ec874b839361169b93909116918791879101614a5f565b6007805460408051602060026001851615610100026000190190941693909304601f81018490048402820184019092528181529291830182828015610a275780601f106109fc57610100808354040283529160200191610a27565b6121c9612e67565b600280546001600160a01b0319166001600160a01b0383161790556040517ffc80377ca9c49cc11ae6982f390a42db976d5530af7c43889264b13fbbd7c57e906110f190839061484c565b6000806000612221612bcc565b612229612d6b565b612231612d83565b600480546040516306c5a00b60e21b81526001600160a01b0393841693631b16802c936122649390911691899101614956565b606060405180830381600087803b15801561227e57600080fd5b505af1158015611736573d6000803e3d6000fd5b6003546001600160a01b031681565b60006122ab612cf6565b6001600160a01b0316639df95f9f836040518263ffffffff1660e01b81526004016119459190614adb565b6122de6135f3565b600580546001600160a01b0319166001600160a01b038316179055610b3b81613678565b600061230c612cf6565b6001600160a01b031663a311c7c2836040518263ffffffff1660e01b81526004016118c0919061483e565b6000612341612cf6565b6001600160a01b031663a5fdc5de836040518263ffffffff1660e01b81526004016118c0919061483e565b6000612376612bcc565b61237e612ed5565b600454612394906001600160a01b031683612f15565b506004546123ac906001600160a01b031684846136ea565b5060019392505050565b6123be612e91565b6002546040516001600160a01b039091169063907dff97906123e69085908590602001614b12565b6040516020818303038152906040526002604051611ad9906147bb565b61240b612ca2565b612413612bcc565b61241b612cf6565b6004805460405163012a629560e31b81526001600160a01b039384169363095314a893610b089390911691869101614956565b6124566136f7565b600480546001600160a01b0319166001600160a01b0392909216919091179055565b600083826124868282612d0a565b61248e612bcc565b612496612d6b565b61249e612d83565b60048054604051630d4388eb60e31b81526001600160a01b0393841693636a1c4758936124d6938d939216918c918c918c9101614890565b602060405180830381600087803b1580156124f057600080fd5b505af1158015612504573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052506125289190810190613e55565b979650505050505050565b600061253d612cf6565b6001600160a01b031663c9a2f3ad836040518263ffffffff1660e01b81526004016118c0919061483e565b6000612572612cf6565b6001600160a01b031663d37c4d8b84846040518363ffffffff1660e01b815260040161259f929190614956565b60206040518083038186803b1580156125b757600080fd5b505afa1580156125cb573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052506112bf9190810190613e55565b60006125f9612cf6565b6001600160a01b031663f023e8db8360006040518363ffffffff1660e01b81526004016118c0929190614af7565b6004546001600160a01b031681565b6000612640612cf6565b6001600160a01b031663f023e8db8360016040518363ffffffff1660e01b81526004016118c0929190614af7565b610b3b612d6b565b6000612680612cf6565b6001600160a01b031663d99947de6040518163ffffffff1660e01b815260040160206040518083038186803b1580156126b857600080fd5b505afa1580156126cc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250611c3f9190810190613e55565b600554604051636eb1769f60e11b81526000916001600160a01b03169063dd62ed3e9061259f9086908690600401614875565b61272b612e91565b6002546040516001600160a01b039091169063907dff97906127539085908590602001614b12565b604051602081830303815290604052600260405161277090614807565b6040519081900381206001600160e01b031960e086901b168252611b0e93929189906000908190600401614ba2565b60006127a9612cf6565b6005546040516370a0823160e01b81526001600160a01b0392831692638d542eb39286929116906370a08231906127e490849060040161483e565b60206040518083038186803b1580156127fc57600080fd5b505afa158015612810573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052506128349190810190613e55565b6040518363ffffffff1660e01b8152600401612851929190614956565b604080518083038186803b15801561286857600080fd5b505afa15801561287c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052506128a09190810190613f49565b5092915050565b6128af612ca2565b6128b7612bcc565b6128bf612cf6565b6004805460405163daa0101560e01b81526001600160a01b039384169363daa010159361169b93889392169187910161492e565b60006128fd612ed5565b612905612bcc565b61290d612d6b565b600080612918612cf6565b6004805460405163298f137d60e21b81526001600160a01b039384169363a63c4df49361294d938b938b939091169101614a37565b6040805180830381600087803b15801561296657600080fd5b505af115801561297a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525061299e9190810190613fc8565b60045491935091506129be908690849084906001600160a01b0316613736565b6004546129d69086906001600160a01b0316846136ea565b95945050505050565b6129e7612e67565b6001600160a01b0381166000818152600b602052604080822080546001600160a01b031916815560018101839055600281018390556003810183905560048101839055600501829055517e53a2d0a74627ad6d346bc05ca92631666b0cec11ac95505fe1f048f3845e1191612a63918190819081908190614c31565b60405180910390a250565b6005546001600160a01b031681565b6002546001600160a01b031681565b60008382612a9a8282612d0a565b612aa2612bcc565b612aaa612d6b565b612ab2612d83565b60048054604051630a1e187d60e01b81526001600160a01b0393841693630a1e187d93612aeb93909116918b918b918b91859101614964565b602060405180830381600087803b158015612b0557600080fd5b505af1158015612b19573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250612b3d9190810190613e55565b9695505050505050565b6000612b51612cf6565b6001600160a01b031663f5adc4f56040518163ffffffff1660e01b815260040160206040518083038186803b158015612b8957600080fd5b505afa158015612b9d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250611c3f9190810190613e19565b631c1554d160e21b81565b6002546001600160a01b03163314801590612bf257506003546001600160a01b03163314155b8015612c0957506004546001600160a01b03163314155b1561188957600480546001600160a01b03191633179055565b6002546040516001600160a01b039091169063907dff9790612c48908490602001614adb565b6040516020818303038152906040526003604051612c65906147f1565b6040518091039020612c7688612ec9565b612c7f88612ec9565b60006040518763ffffffff1660e01b8152600401611b0e96959493929190614bdc565b612caa6137ea565b6001600160a01b0316637c3125416040518163ffffffff1660e01b815260040160006040518083038186803b158015612ce257600080fd5b505afa158015611884573d6000803e3d6000fd5b6000611c3f6524b9b9bab2b960d11b613800565b612d126137ea565b6001600160a01b0316632cb28bd883836040518363ffffffff1660e01b8152600401612d3f929190614b12565b60006040518083038186803b158015612d5757600080fd5b505afa1580156116c9573d6000803e3d6000fd5b60405162461bcd60e51b8152600401610c8590614ce4565b6000611c3f6822bc31b430b733b2b960b91b613800565b6000611c3f722932bbb0b93239a234b9ba3934b13aba34b7b760691b613800565b6000611c3f6d537570706c795363686564756c6560901b613800565b600082821115612df95760405162461bcd60e51b8152600401610c8590614cd4565b50900390565b6000828201838110156112bf5760405162461bcd60e51b8152600401610c8590614cc4565b6002546040516001600160a01b039091169063907dff9790612e4a908490602001614adb565b6040516020818303038152906040526003604051612c6590614833565b6000546001600160a01b031633146118895760405162461bcd60e51b8152600401610c8590614d14565b612e99612d83565b6001600160a01b0316336001600160a01b0316146118895760405162461bcd60e51b8152600401610c8590614cb4565b6001600160a01b031690565b612edd6137ea565b6001600160a01b031663086dabd16040518163ffffffff1660e01b815260040160006040518083038186803b158015612ce257600080fd5b6000612f21838361385d565b15612f3e5760405162461bcd60e51b8152600401610c8590614d74565b6000612f486139bf565b6001600160a01b0316638b3f8088856040518263ffffffff1660e01b8152600401612f73919061483e565b604080518083038186803b158015612f8a57600080fd5b505afa158015612f9e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250612fc29190810190613fc8565b5090508015610ab157600080612fd6612cf6565b6005546040516370a0823160e01b81526001600160a01b0392831692638d542eb3928a929116906370a082319061301190849060040161483e565b60206040518083038186803b15801561302957600080fd5b505afa15801561303d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052506130619190810190613e55565b6040518363ffffffff1660e01b815260040161307e929190614956565b604080518083038186803b15801561309557600080fd5b505afa1580156130a9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052506130cd9190810190613f49565b91509150818511156130f15760405162461bcd60e51b8152600401610c8590614d54565b801561310f5760405162461bcd60e51b8152600401610c8590614d24565b50600195945050505050565b600554604051636eb1769f60e11b81526000916001600160a01b03169063da46098c90869088906131bc908790869063dd62ed3e906131609087908790600401614875565b60206040518083038186803b15801561317857600080fd5b505afa15801561318c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052506131b09190810190613e55565b9063ffffffff612dd716565b6040518463ffffffff1660e01b81526004016131da9392919061492e565b600060405180830381600087803b1580156131f457600080fd5b505af1158015613208573d6000803e3d6000fd5b505050506132178484846132c7565b90505b949350505050565b60008082116132435760405162461bcd60e51b8152600401610c8590614cf4565b600082848161324e57fe5b04949350505050565b60008261326657506000610ab7565b8282028284828161327357fe5b04146112bf5760405162461bcd60e51b8152600401610c8590614d34565b6000611c3f6b526577617264457363726f7760a01b613800565b6000611c3f6d2932bbb0b93222b9b1b937bbab1960911b613800565b60006001600160a01b038316158015906132ea57506001600160a01b0383163014155b801561330457506002546001600160a01b03848116911614155b6133205760405162461bcd60e51b8152600401610c8590614c84565b6005546040516370a0823160e01b81526001600160a01b039091169063b46310f690869061336090869085906370a082319061316090869060040161483e565b6040518363ffffffff1660e01b815260040161337d929190614956565b600060405180830381600087803b15801561339757600080fd5b505af11580156133ab573d6000803e3d6000fd5b50506005546040516370a0823160e01b81526001600160a01b03909116925063b46310f6915085906133ef90869085906370a0823190610e8290869060040161483e565b6040518363ffffffff1660e01b815260040161340c929190614956565b600060405180830381600087803b15801561342657600080fd5b505af115801561343a573d6000803e3d6000fd5b505050506123ac848484612e24565b60408051600580825260c082019092526060916020820160a0803883390190505090506f5065726946696e616e6365537461746560801b8160008151811061348d57fe5b6020026020010181815250506b53797374656d53746174757360a01b816001815181106134b657fe5b6020026020010181815250506822bc31b430b733b2b960b91b816002815181106134dc57fe5b6020026020010181815250506524b9b9bab2b960d11b816003815181106134ff57fe5b602002602001018181525050722932bbb0b93239a234b9ba3934b13aba34b7b760691b8160048151811061352f57fe5b60200260200101818152505090565b6060815183510160405190808252806020026020018201604052801561356e578160200160208202803883390190505b50905060005b83518110156135b05783818151811061358957fe5b602002602001015182828151811061359d57fe5b6020908102919091010152600101613574565b5060005b82518110156128a0578281815181106135c957fe5b60200260200101518282865101815181106135e057fe5b60209081029190910101526001016135b4565b6002546001600160a01b0316331480159061361957506003546001600160a01b03163314155b801561363057506004546001600160a01b03163314155b1561364857600480546001600160a01b031916331790555b6000546004546001600160a01b039081169116146118895760405162461bcd60e51b8152600401610c8590614ca4565b6002546040516001600160a01b039091169063907dff979061369e90849060200161483e565b60405160208183030381529060405260016040516136bb90614812565b6040519081900381206001600160e01b031960e086901b168252610b0893929160009081908190600401614b4e565b60006112bc8484846132c7565b6002546001600160a01b031633148061371a57506003546001600160a01b031633145b6118895760405162461bcd60e51b8152600401610c8590614d64565b6002546040516001600160a01b039091169063907dff979061376090869086908690602001614d9f565b604051602081830303815290604052600260405161377d9061481d565b604051809103902061378e89612ec9565b6000806040518763ffffffff1660e01b81526004016137b296959493929190614ba2565b600060405180830381600087803b1580156137cc57600080fd5b505af11580156137e0573d6000803e3d6000fd5b5050505050505050565b6000611c3f6b53797374656d53746174757360a01b5b6000818152600a602090815260408083205490516001600160a01b039091169182151591613830918691016147d1565b604051602081830303815290604052906128a05760405162461bcd60e51b8152600401610c859190614c73565b60006138676139dd565b506001600160a01b038084166000908152600b6020908152604091829020825160c081018452815490941684526001810154918401829052600281015492840192909252600382015460608401526004820154608084015260059091015460a083015215806138d95750428160a00151105b156138e8576000915050610ab7565b42816020015111156138fe576001915050610ab7565b60006139098561144c565b6005546040516370a0823160e01b8152919350600092506001600160a01b0316906370a082319061393e90899060040161483e565b60206040518083038186803b15801561395657600080fd5b505afa15801561396a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525061398e9190810190613e55565b9050816139a1828763ffffffff612dd716565b10156139b35760019350505050610ab7565b50600095945050505050565b6000611c3f6f5065726946696e616e6365537461746560801b613800565b6040518060c0016040528060006001600160a01b0316815260200160008152602001600081526020016000815260200160008152602001600081525090565b8035610ab781614ebf565b8051610ab781614ebf565b600082601f830112613a4357600080fd5b8151613a56613a5182614e0b565b614de4565b91508181835260208401935060208101905083856020840282011115613a7b57600080fd5b60005b83811015613aa75781613a918882613ac7565b8452506020928301929190910190600101613a7e565b5050505092915050565b8051610ab781614ed3565b8035610ab781614edc565b8051610ab781614edc565b8051610ab781614ee5565b8035610ab781614ee5565b600060208284031215613afa57600080fd5b600061321a8484613a1c565b600060208284031215613b1857600080fd5b600061321a8484613a27565b60008060408385031215613b3757600080fd5b6000613b438585613a1c565b9250506020613b5485828601613a1c565b9150509250929050565b600080600060608486031215613b7357600080fd5b6000613b7f8686613a1c565b9350506020613b9086828701613a1c565b9250506040613ba186828701613abc565b9150509250925092565b60008060408385031215613bbe57600080fd5b6000613bca8585613a1c565b9250506020613b5485828601613abc565b600080600060608486031215613bf057600080fd5b6000613bfc8686613a1c565b9350506020613b9086828701613abc565b60008060008060808587031215613c2357600080fd5b6000613c2f8787613a1c565b9450506020613c4087828801613abc565b9350506040613c5187828801613abc565b9250506060613c6287828801613abc565b91505092959194509250565b60008060008060008060c08789031215613c8757600080fd5b6000613c938989613a1c565b9650506020613ca489828a01613abc565b9550506040613cb589828a01613abc565b9450506060613cc689828a01613abc565b9350506080613cd789828a01613a1c565b92505060a0613ce889828a01613abc565b9150509295509295509295565b60008060008060008060c08789031215613d0e57600080fd5b6000613d1a8989613a1c565b9650506020613d2b89828a01613abc565b9550506040613d3c89828a01613abc565b9450506060613d4d89828a01613abc565b9350506080613d5e89828a01613abc565b92505060a0613ce889828a01613a1c565b600080600080600060a08688031215613d8757600080fd5b6000613d938888613a1c565b9550506020613da488828901613abc565b9450506040613db588828901613abc565b9350506060613dc688828901613abc565b9250506080613dd788828901613abc565b9150509295509295909350565b600060208284031215613df657600080fd5b815167ffffffffffffffff811115613e0d57600080fd5b61321a84828501613a32565b600060208284031215613e2b57600080fd5b600061321a8484613ab1565b600060208284031215613e4957600080fd5b600061321a8484613abc565b600060208284031215613e6757600080fd5b600061321a8484613ac7565b600080600060608486031215613e8857600080fd5b6000613bfc8686613abc565b600080600080600060a08688031215613eac57600080fd5b6000613eb88888613abc565b9550506020613ec988828901613abc565b9450506040613eda88828901613abc565b9350506060613dc688828901613a1c565b60008060008060808587031215613f0157600080fd5b6000613c2f8787613abc565b600060208284031215613f1f57600080fd5b600061321a8484613ad2565b600060208284031215613f3d57600080fd5b600061321a8484613add565b60008060408385031215613f5c57600080fd5b6000613f688585613ac7565b9250506020613b5485828601613ab1565b60008060408385031215613f8c57600080fd5b6000613f988585613ac7565b9250506020613b5485828601613ad2565b60008060408385031215613fbc57600080fd5b6000613bca8585613abc565b60008060408385031215613fdb57600080fd5b6000613fe78585613ac7565b9250506020613b5485828601613ac7565b60008060006060848603121561400d57600080fd5b60006140198686613ac7565b935050602061402a86828701613ac7565b9250506040613ba186828701613ac7565b600061404783836140c9565b505060200190565b61405881614e65565b82525050565b61405881614e44565b600061407282614e32565b61407c8185614e36565b935061408783614e2c565b8060005b838110156140b557815161409f888261403b565b97506140aa83614e2c565b92505060010161408b565b509495945050505050565b61405881614e4f565b61405881611071565b6140586140de82611071565b611071565b60006140ee82614e32565b6140f88185614e36565b9350614108818560208601614e89565b61411181614eb5565b9093019392505050565b61405881614e54565b61405881614e70565b61405881614e7e565b6000614143601f83614e36565b7f43616e6e6f74207472616e7366657220746f2074686973206164647265737300815260200192915050565b600061417c603583614e36565b7f596f75206d757374206265206e6f6d696e61746564206265666f726520796f7581527402063616e20616363657074206f776e65727368697605c1b602082015260400192915050565b60006141d3601383614e36565b7227bbb732b91037b7363c90333ab731ba34b7b760691b815260200192915050565b6000614202601e83614e36565b7f4f6e6c792045786368616e6765722063616e20696e766f6b6520746869730000815260200192915050565b600061423b601b83614e36565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000815260200192915050565b6000614274602883614e3f565b7f45786368616e67655265636c61696d28616464726573732c627974657333322c81526775696e743235362960c01b602082015260280192915050565b60006142be603e83614e3f565b7f50796e746845786368616e676528616464726573732c627974657333322c756981527f6e743235362c627974657333322c75696e743235362c616464726573732900006020820152603e0192915050565b600061431d601e83614e36565b7f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815260200192915050565b6000614356601b83614e36565b7f43616e6e6f742062652072756e206f6e2074686973206c617965720000000000815260200192915050565b600061438f601a83614e36565b7f536166654d6174683a206469766973696f6e206279207a65726f000000000000815260200192915050565b60006143c8601183614e3f565b70026b4b9b9b4b7339030b2323932b9b99d1607d1b815260110192915050565b60006143f5601b83614e36565b7f52657761726473446973747269627574696f6e206e6f74207365740000000000815260200192915050565b600061442e602f83614e36565b7f4f6e6c792074686520636f6e7472616374206f776e6572206d6179207065726681526e37b936903a3434b99030b1ba34b7b760891b602082015260400192915050565b600061447f602183614e3f565b7f417070726f76616c28616464726573732c616464726573732c75696e743235368152602960f81b602082015260210192915050565b60006144c2601f83614e36565b7f412070796e7468206f722050455249207261746520697320696e76616c696400815260200192915050565b60006144fb602183614e36565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f8152607760f81b602082015260400192915050565b600061453e602783614e3f565b7f45786368616e676552656261746528616464726573732c627974657333322c75815266696e743235362960c81b602082015260270192915050565b6000614587602983614e3f565b7f45786368616e6765547261636b696e6728627974657333322c627974657333328152682c75696e743235362960b81b602082015260290192915050565b60006145d2601a83614e3f565b7f546f6b656e5374617465557064617465642861646472657373290000000000008152601a0192915050565b600061460b603283614e3f565b7f4163636f756e744c69717569646174656428616464726573732c75696e743235815271362c75696e743235362c616464726573732960701b602082015260320192915050565b600061465f601983614e3f565b7f5265736f6c766572206d697373696e67207461726765743a2000000000000000815260190192915050565b6000614698601583614e36565b744e6f20737570706c79206973206d696e7461626c6560581b815260200192915050565b60006146c9602183614e3f565b7f5472616e7366657228616464726573732c616464726573732c75696e743235368152602960f81b602082015260210192915050565b600061470c602783614e36565b7f43616e6e6f74207472616e73666572207374616b6564206f7220657363726f778152666564205045524960c81b602082015260400192915050565b6000614755601783614e36565b7f4f6e6c79207468652070726f78792063616e2063616c6c000000000000000000815260200192915050565b600061478e601583614e36565b7450455249203a204c6f636b65642062616c616e636560581b815260200192915050565b61405881614e5f565b6000610ab782614267565b6000610ab7826142b1565b60006147dc826143bb565b91506147e882846140d2565b50602001919050565b6000610ab782614472565b6000610ab782614531565b6000610ab78261457a565b6000610ab7826145c5565b6000610ab7826145fe565b60006147dc82614652565b6000610ab7826146bc565b60208101610ab7828461405e565b60208101610ab7828461404f565b60408101614868828561404f565b6112bf60208301846140c9565b60408101614883828561405e565b6112bf602083018461405e565b60a0810161489e828861405e565b6148ab602083018761405e565b6148b860408301866140c9565b6148c560608301856140c9565b612b3d60808301846140c9565b60e081016148e0828a61405e565b6148ed602083018961405e565b6148fa60408301886140c9565b61490760608301876140c9565b61491460808301866140c9565b61492160a083018561405e565b6115fa60c08301846140c9565b6060810161493c828661405e565b614949602083018561405e565b61321a60408301846140c9565b60408101614868828561405e565b60a08101614972828861405e565b61497f60208301876140c9565b61498c60408301866140c9565b61499960608301856140c9565b612b3d608083018461405e565b60e081016149b4828a61405e565b6149c160208301896140c9565b6149ce60408301886140c9565b6149db60608301876140c9565b614914608083018661405e565b60c081016149f6828961405e565b614a0360208301886140c9565b614a1060408301876140c9565b614a1d60608301866140c9565b614a2a608083018561405e565b61252860a08301846140c9565b60608101614a45828661405e565b614a5260208301856140c9565b61321a604083018461405e565b60608101614a6d828661405e565b61494960208301856140c9565b60c08101614a88828961405e565b614a9560208301886140c9565b614aa260408301876140c9565b614aaf60608301866140c9565b614a2a60808301856140c9565b602080825281016112bf8184614067565b60208101610ab782846140c0565b60208101610ab782846140c9565b6040810161488382856140c9565b60408101614b0582856140c9565b6112bf60208301846140c0565b6040810161486882856140c9565b60408101614b2e82856140c9565b81810360208301526112bc81846140e3565b60a0810161497282886140c9565b60c08082528101614b5f81896140e3565b9050614b6e602083018861412d565b614b7b60408301876140c9565b614b886060830186614124565b614b956080830185614124565b61252860a0830184614124565b60c08082528101614bb381896140e3565b9050614bc2602083018861412d565b614bcf60408301876140c9565b614b8860608301866140c9565b60c08082528101614bed81896140e3565b9050614bfc602083018861412d565b614c0960408301876140c9565b614c1660608301866140c9565b614b9560808301856140c9565b60208101610ab7828461411b565b60a08101614c3f828861412d565b614c4c602083018761412d565b614c59604083018661412d565b614c66606083018561412d565b612b3d608083018461412d565b602080825281016112bf81846140e3565b60208082528101610ab781614136565b60208082528101610ab78161416f565b60208082528101610ab7816141c6565b60208082528101610ab7816141f5565b60208082528101610ab78161422e565b60208082528101610ab781614310565b60208082528101610ab781614349565b60208082528101610ab781614382565b60208082528101610ab7816143e8565b60208082528101610ab781614421565b60208082528101610ab7816144b5565b60208082528101610ab7816144ee565b60208082528101610ab78161468b565b60208082528101610ab7816146ff565b60208082528101610ab781614748565b60208082528101610ab781614781565b60408101614d9282856140c9565b6112bf602083018461411b565b60608101614a4582866140c9565b60608101614a6d82866140c9565b60a08101614dc982886140c9565b6148ab60208301876140c9565b60208101610ab782846147b2565b60405181810167ffffffffffffffff81118282101715614e0357600080fd5b604052919050565b600067ffffffffffffffff821115614e2257600080fd5b5060209081020190565b60200190565b5190565b90815260200190565b919050565b6000610ab782612ec9565b151590565b6000610ab782614e44565b60ff1690565b6000610ab782614e54565b6000610ab76140de83611071565b6000610ab782611071565b60005b83811015614ea4578181015183820152602001614e8c565b838111156118845750506000910152565b601f01601f191690565b614ec881614e44565b8114610b3b57600080fd5b614ec881614e4f565b614ec881611071565b614ec881614e5456fea365627a7a72315820a366d60ad5da58d33b13bbd1ff543e55ea1ff3df98ad8824fe17b594c15949a46c6578706572696d656e74616cf564736f6c63430005110040

Deployed Bytecode Sourcemap

72938:6181:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;72938:6181:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35356:31;;;:::i;:::-;;;;;;;;;;;;;;;;22702:18;;;:::i;:::-;;;;;;;;26042:260;;;;;;;;;:::i;:::-;;;;;;;;64755:185;;;;;;;;;:::i;:::-;;64331:190;;;;;;;;;:::i;74608:662::-;;;;;;;;;:::i;:::-;;;;;;;;;75592:1586;;;:::i;7612:145::-;;;;;;;;;:::i;3247:141::-;;;;;;;;;:::i;22754:23::-;;;:::i;:::-;;;;;;;;50835:56;;;:::i;66988:484::-;;;;;;;;;:::i;54533:171::-;;;;;;;;;:::i;62259:467::-;;;;;;;;;:::i;63226:184::-;;;;;;;;;:::i;50898:44::-;;;:::i;37051:537::-;;;:::i;57683:632::-;;;;;;;;;:::i;:::-;;;;;;;;;50949:35;;;:::i;:::-;;;;;;;;60441:659;;;;;;;;;:::i;22784:21::-;;;:::i;51037:47::-;;;;;;;;;:::i;:::-;;;;;;;;;;;;;64529:218;;;;;;;;;:::i;55021:282::-;;;;;;;;;:::i;:::-;;;;;;;;;;63640:189;;;;;;;;;:::i;63984:195::-;;;;;;;;;:::i;3016:29::-;;;:::i;:::-;;;;;;;;64187:136;;;:::i;54867:146::-;;;;;;;;;:::i;54252:122::-;;;;;;;;;:::i;65339:83::-;;;;;;;;;:::i;77993:437::-;;;:::i;57161:514::-;;;;;;;;;:::i;68623:258::-;;;;;;;;;:::i;62734:141::-;;;;;;;;;:::i;23761:120::-;;;;;;;;;:::i;53855:132::-;;;:::i;:::-;;;;;;;;36345:657;;;:::i;56480:514::-;;;;;;;;;:::i;3396:271::-;;;:::i;73565:464::-;;;:::i;2989:20::-;;;:::i;63090:128::-;;;:::i;61108:717::-;;;;;;;;;:::i;63418:214::-;;;;;;;;;:::i;22727:20::-;;;:::i;7467:137::-;;;;;;;;;:::i;75278:306::-;;;;;;;;;:::i;6890:29::-;;;:::i;54119:125::-;;;;;;;;;:::i;24166:177::-;;;;;;;;;:::i;55311:144::-;;;;;;;;;:::i;55463:120::-;;;;;;;;;:::i;61833:418::-;;;;;;;;;:::i;68161:260::-;;;;;;;;;:::i;63837:139::-;;;;;;;;;:::i;7765:102::-;;;;;;;;;:::i;59546:573::-;;;;;;;;;:::i;54382:143::-;;;;;;;;;:::i;53352:160::-;;;;;;;;;:::i;53520:149::-;;;;;;;;;:::i;7159:28::-;;;:::i;53677:170::-;;;;;;;;;:::i;65430:81::-;;;;;;;;;:::i;53995:116::-;;;:::i;23527:140::-;;;;;;;;;:::i;67693:263::-;;;;;;;;;:::i;55591:221::-;;;;;;;;;:::i;62883:199::-;;;;;;;;;:::i;77186:656::-;;;;;;;;;:::i;57002:151::-;;;;;;;;;:::i;22634:28::-;;;:::i;6865:18::-;;;:::i;59136:402::-;;;;;;;;;:::i;54712:147::-;;;:::i;50991:37::-;;;:::i;35356:31::-;;;;;;-1:-1:-1;;;;;35356:31:0;;:::o;22702:18::-;;;;;;;;;;;;;;;-1:-1:-1;;22702:18:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;26042:260::-;26118:4;8144:16;:14;:16::i;:::-;26152:13;;;26178:10;;:47;;-1:-1:-1;;;26178:47:0;;-1:-1:-1;;;;;26152:13:0;;;;26178:10;;;;;:23;;:47;;26152:13;;26210:7;;26219:5;;26178:47;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;26178:47:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;26178:47:0;;;;26236:36;26249:6;26257:7;26266:5;26236:12;:36::i;:::-;26290:4;26283:11;;;8171:1;26042:260;;;;:::o;64755:185::-;65968:17;:15;:17::i;:::-;8144:16;:14;:16::i;:::-;64867:8;:6;:8::i;:::-;64906:13;;;64867:65;;-1:-1:-1;;;64867:65:0;;-1:-1:-1;;;;;64867:38:0;;;;;;:65;;64906:13;;;;64921:10;;64867:65;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;64867:65:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;64867:65:0;;;;8171:1;64755:185;:::o;64331:190::-;65968:17;:15;:17::i;:::-;8144:16;:14;:16::i;:::-;64447:8;:6;:8::i;:::-;64499:13;;;64447:66;;-1:-1:-1;;;64447:66:0;;-1:-1:-1;;;;;64447:35:0;;;;;;:66;;64483:14;;64499:13;;;64447:66;;;74608:662;74906:19;74927:20;74822:17;74841:22;66175:26;66191:3;66196:4;66175:15;:26::i;:::-;8144:16;:14;:16::i;:::-;74965:17;:15;:17::i;:::-;75013:11;:9;:11::i;:::-;75063:13;;;75013:249;;-1:-1:-1;;;75013:249:0;;-1:-1:-1;;;;;75013:31:0;;;;;;:249;;75063:13;;;;75095:17;;75131:12;;75162:22;;75063:13;;75235:12;;75013:249;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;75013:249:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;75013:249:0;;;;;;;101:4:-1;97:9;90:4;84;80:15;76:31;69:5;65:43;126:6;120:4;113:20;0:138;75013:249:0;;;;;;;;;74993:269;;;;74608:662;;;;;;;;;:::o;75592:1586::-;75641:4;65968:17;:15;:17::i;:::-;75708:1;75674:21;:19;:21::i;:::-;-1:-1:-1;;;;;75666:44:0;;;75658:84;;;;-1:-1:-1;;;75658:84:0;;;;;;;;;;;;;;;;;75755:31;75789:16;:14;:16::i;:::-;75755:50;;75816:41;75860:21;:19;:21::i;:::-;75816:65;;75894:17;75914:15;-1:-1:-1;;;;;75914:30:0;;:32;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;75914:32:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;75914:32:0;;;;;;;101:4:-1;97:9;90:4;84;80:15;76:31;69:5;65:43;126:6;120:4;113:20;0:138;75914:32:0;;;;;;;;;75894:52;;75980:1;75965:12;:16;75957:50;;;;-1:-1:-1;;;75957:50:0;;;;;;;;;76085:45;;-1:-1:-1;;;76085:45:0;;-1:-1:-1;;;;;76085:31:0;;;;;:45;;76117:12;;76085:45;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;76085:45:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;76085:45:0;;;;;;;101:4:-1;97:9;90:4;84;80:15;76:31;69:5;65:43;126:6;120:4;113:20;0:138;76085:45:0;;;;;;;;;;76280:17;76300:15;-1:-1:-1;;;;;76300:28:0;;:30;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;76300:30:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;76300:30:0;;;;;;;101:4:-1;97:9;90:4;84;80:15;76:31;69:5;65:43;126:6;120:4;113:20;0:138;76300:30:0;;;;;;;;;76280:50;-1:-1:-1;76371:23:0;76397:30;:12;76280:50;76397:30;:16;:30;:::i;:::-;76510:10;;76592:51;;-1:-1:-1;;;76592:51:0;;76371:56;;-1:-1:-1;;;;;;76510:10:0;;:23;;76556:20;;76592:75;;76371:56;;76510:10;;76592:20;;:51;;76556:20;;76592:51;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;76592:51:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;76592:51:0;;;;;;;101:4:-1;97:9;90:4;84;80:15;76:31;69:5;65:43;126:6;120:4;113:20;0:138;76592:51:0;;;;;;;;;:55;:75;:55;:75;:::i;:::-;76510:168;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;76510:168:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;76510:168:0;;;;76689:78;76710:4;76725:20;76748:18;76689:12;:78::i;:::-;76829:58;;-1:-1:-1;;;76829:58:0;;-1:-1:-1;;;;;76829:38:0;;;;;:58;;76868:18;;76829:58;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;76829:58:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;76829:58:0;;;;;;;101:4:-1;97:9;90:4;84;80:15;76:31;69:5;65:43;126:6;120:4;113:20;0:138;76829:58:0;;;;;;;;;-1:-1:-1;76939:10:0;;76975:32;;-1:-1:-1;;;76975:32:0;;-1:-1:-1;;;;;76939:10:0;;;;:23;;76963:10;;76975:50;;77012:12;;76939:10;;76975:20;;:32;;76963:10;;76975:32;;;;:50;76939:87;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;76939:87:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;76939:87:0;;;;77037:53;77058:4;77065:10;77077:12;77037;:53::i;:::-;77117:11;;:29;;77133:12;77117:29;:15;:29;:::i;:::-;77103:11;:43;-1:-1:-1;77166:4:0;;-1:-1:-1;;;;;65996:1:0;75592:1586;:::o;7612:145::-;3705:12;:10;:12::i;:::-;7706:16;:43;;-1:-1:-1;;;;;;7706:43:0;-1:-1:-1;;;;;7706:43:0;;;;;;;;;;7612:145::o;3247:141::-;3705:12;:10;:12::i;:::-;3319:14;:23;;-1:-1:-1;;;;;;3319:23:0;-1:-1:-1;;;;;3319:23:0;;;;;3358:22;;;;;;3319:23;;3358:22;;;;;;;;;;3247:141;:::o;22754:23::-;;;;:::o;50835:56::-;;;;;;;;;;;;;;-1:-1:-1;;;50835:56:0;;;;:::o;66988:484::-;66413:16;:14;:16::i;:::-;67232:5;;67258:75;;-1:-1:-1;;;;;67232:5:0;;;;:11;;67258:75;;67269:15;;67286:10;;67298:13;;67313:8;;67323:9;;67258:75;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;67258:75:0;;;67348:1;66904:75;;;;;;;;;;;;;;67396:25;67413:7;67396:16;:25::i;:::-;67436:1;67452;67232:232;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;67232:232:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;67232:232:0;;;;66988:484;;;;;;:::o;54533:171::-;54602:4;54695:1;54626:11;:9;:11::i;:::-;54665:13;;;54626:66;;-1:-1:-1;;;54626:66:0;;-1:-1:-1;;;;;54626:38:0;;;;;;:66;;54665:13;;;;54680:11;;54626:66;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;54626:66:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;54626:66:0;;;;;;;101:4:-1;97:9;90:4;84;80:15;76:31;69:5;65:43;126:6;120:4;113:20;0:138;54626:66:0;;;;;;;;;:70;;54533:171;-1:-1:-1;;54533:171:0:o;62259:467::-;62398:4;8144:16;:14;:16::i;:::-;65792:15;:13;:15::i;:::-;62510:25;62523:4;62529:5;62510:12;:25::i;:::-;-1:-1:-1;62687:13:0;;62666:52;;-1:-1:-1;;;;;62687:13:0;62702:4;62708:2;62712:5;62666:20;:52::i;:::-;62659:59;;65818:1;62259:467;;;;;:::o;63226:184::-;65968:17;:15;:17::i;:::-;8144:16;:14;:16::i;:::-;63339:8;:6;:8::i;:::-;63388:13;;;63339:63;;-1:-1:-1;;;63339:63:0;;-1:-1:-1;;;;;63339:31:0;;;;;;:63;;63371:15;;63388:13;;;63339:63;;;50898:44;;;;;;;;;;;;;;-1:-1:-1;;;50898:44:0;;;;:::o;37051:537::-;37102:4;37119:34;37156:27;:25;:27::i;:::-;37119:64;-1:-1:-1;37199:6:0;37194:363;37215:17;:24;37211:1;:28;37194:363;;;37261:12;37276:17;37294:1;37276:20;;;;;;;;;;;;;;;;;;;37443:18;;;;:12;:18;;;;;;;;;37414:8;;:25;;-1:-1:-1;;;37414:25:0;;37276:20;;-1:-1:-1;;;;;;37443:18:0;;;;;37414:8;;;;:19;;:25;;37276:20;;37414:25;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;37414:25:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;37414:25:0;;;;;;;101:4:-1;97:9;90:4;84;80:15;76:31;69:5;65:43;126:6;120:4;113:20;0:138;37414:25:0;;;;;;;;;-1:-1:-1;;;;;37414:47:0;;;:83;;;-1:-1:-1;37495:1:0;37465:18;;;:12;:18;;;;;;-1:-1:-1;;;;;37465:18:0;:32;37414:83;37410:136;;;37525:5;37518:12;;;;;;;37410:136;-1:-1:-1;37241:3:0;;37194:363;;;;37576:4;37569:11;;;37051:537;:::o;57683:632::-;57749:4;57755;57772:29;;:::i;:::-;-1:-1:-1;;;;;;57804:19:0;;;;;;;:10;:19;;;;;;;;;57772:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57929:15;-1:-1:-1;57904:40:0;:71;;-1:-1:-1;57948:22:0;;;;:27;57904:71;57900:162;;;58000:12;:23;;;58025:12;:24;;;57992:58;;;;;;;57900:162;58074:16;58093:70;58141:12;:21;;;58094:41;58119:15;58094:12;:20;;;:24;;:41;;;;:::i;:::-;58093:47;:70;:47;:70;:::i;:::-;58074:89;;58174:15;58192:70;58238:12;:23;;;58192:41;58221:11;58192:12;:24;;;:28;;:41;;;;:::i;:70::-;58283:11;;-1:-1:-1;58174:88:0;;-1:-1:-1;;;57683:632:0;;;;:::o;50949:35::-;50982:2;50949:35;:::o;60441:659::-;60733:19;60667:17;60686:22;66175:26;66191:3;66196:4;66175:15;:26::i;:::-;8144:16;:14;:16::i;:::-;60765:17;:15;:17::i;:::-;60813:11;:9;:11::i;:::-;60864:13;;;60813:279;;-1:-1:-1;;;60813:279:0;;-1:-1:-1;;;;;60813:32:0;;;;;;:279;;60864:13;;;;60896:17;;60932:12;;60963:22;;60864:13;;61036:10;;61065:12;;60813:279;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;60813:279:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;60813:279:0;;;;;;;101:4:-1;97:9;90:4;84;80:15;76:31;69:5;65:43;126:6;120:4;113:20;0:138;60813:279:0;;;;;;;;;60793:299;60441:659;-1:-1:-1;;;;;;;;60441:659:0:o;22784:21::-;;;;;;:::o;51037:47::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;51037:47:0;;;;;;;;;;;:::o;64529:218::-;65968:17;:15;:17::i;:::-;8144:16;:14;:16::i;:::-;64660:8;:6;:8::i;:::-;64694:13;;;64660:79;;-1:-1:-1;;;64660:79:0;;-1:-1:-1;;;;;64660:33:0;;;;;;:79;;64694:13;;;;64709:17;;64728:10;;64660:79;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;64660:79:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;64660:79:0;;;;8171:1;64529:218;;:::o;55021:282::-;55135:16;55166:18;55199:20;55254:8;:6;:8::i;:::-;-1:-1:-1;;;;;55254:32:0;;55287:7;55254:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;55254:41:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;55254:41:0;;;;;;;101:4:-1;97:9;90:4;84;80:15;76:31;69:5;65:43;126:6;120:4;113:20;0:138;55254:41:0;;;;;;;;;55247:48;;;;;;55021:282;;;;;:::o;63640:189::-;65968:17;:15;:17::i;:::-;8144:16;:14;:16::i;:::-;63754:8;:6;:8::i;:::-;63790:13;;;63754:67;;-1:-1:-1;;;63754:67:0;;-1:-1:-1;;;;;63754:35:0;;;;;;:67;;63790:13;;;;63805:15;;63754:67;;;63984:195;65968:17;:15;:17::i;:::-;8144:16;:14;:16::i;:::-;64105:8;:6;:8::i;:::-;64149:13;;;64105:66;;-1:-1:-1;;;64105:66:0;;-1:-1:-1;;;;;64105:27:0;;;;;;:66;;64133:14;;64149:13;;;64164:6;;64105:66;;;3016:29;;;-1:-1:-1;;;;;3016:29:0;;:::o;64187:136::-;65968:17;:15;:17::i;:::-;8144:16;:14;:16::i;:::-;64273:8;:6;:8::i;:::-;64301:13;;;64273:42;;-1:-1:-1;;;64273:42:0;;-1:-1:-1;;;;;64273:27:0;;;;;;:42;;64301:13;;;;64273:42;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;64273:42:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;64273:42:0;;;;8171:1;64187:136::o;54867:146::-;54934:16;54970:8;:6;:8::i;:::-;-1:-1:-1;;;;;54970:26:0;;54997:7;54970:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;54970:35:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;54970:35:0;;;;;;;101:4:-1;97:9;90:4;84;80:15;76:31;69:5;65:43;126:6;120:4;113:20;0:138;54970:35:0;;;;;;;;54252:122;54312:6;54338:8;:6;:8::i;:::-;-1:-1:-1;;;;;54338:15:0;;54354:11;54338:28;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;54338:28:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;54338:28:0;;;;;;;101:4:-1;97:9;90:4;84;80:15;76:31;69:5;65:43;126:6;120:4;113:20;0:138;54338:28:0;;;;;;;;65339:83;65397:17;:15;:17::i;77993:437::-;3705:12;:10;:12::i;:::-;78150:10;;78123:24;;-1:-1:-1;;;;;78150:10:0;:20;78179:14;:12;:14::i;:::-;78150:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;78150:45:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;78150:45:0;;;;;;;101:4:-1;97:9;90:4;84;80:15;76:31;69:5;65:43;126:6;120:4;113:20;0:138;78150:45:0;;;;;;;;;78123:72;;78332:90;78358:14;:12;:14::i;:::-;78383:16;:14;:16::i;:::-;78402:19;78332:17;:90::i;57161:514::-;-1:-1:-1;;;;;57409:19:0;;;57257:7;57409:19;;;:10;:19;;;;;:27;;;57451:29;;;57495:30;;;;57540:31;;;;57586:28;;;;57629:27;;;;;57409;;;;;57451:29;;57495:30;;57540:31;;57586:28;;57161:514::o;68623:258::-;66413:16;:14;:16::i;:::-;68773:5;;68785:31;;-1:-1:-1;;;;;68773:5:0;;;;:11;;68785:31;;68796:11;;68809:6;;68785:31;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;68785:31:0;;;68818:1;68562:52;;;;;;;;;;;;;;68841:25;68858:7;68841:16;:25::i;:::-;68868:1;68871;68773:100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;68773:100:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;68773:100:0;;;;68623:258;;;:::o;62734:141::-;65968:17;:15;:17::i;:::-;8144:16;:14;:16::i;:::-;62824:8;:6;:8::i;:::-;62845:13;;;62824:43;;-1:-1:-1;;;62824:43:0;;-1:-1:-1;;;;;62824:20:0;;;;;;:43;;62845:13;;;;62860:6;;62824:43;;;23761:120;23844:10;;:29;;-1:-1:-1;;;23844:29:0;;23820:4;;-1:-1:-1;;;;;23844:10:0;;:20;;:29;;23865:7;;23844:29;;;;53855:132;53911:16;53947:8;:6;:8::i;:::-;-1:-1:-1;;;;;53947:30:0;;:32;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;53947:32:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;53947:32:0;;;;;;39:16:-1;36:1;17:17;2:54;101:4;53947:32:0;80:15:-1;;;-1:-1;;76:31;65:43;;120:4;113:20;53947:32:0;;;;;;;;;53940:39;;53855:132;:::o;36345:657::-;36387:34;36424:27;:25;:27::i;:::-;36387:64;-1:-1:-1;36545:6:0;36540:455;36561:17;:24;36557:1;:28;36540:455;;;36607:12;36622:17;36640:1;36622:20;;;;;;;;;;;;;;36607:35;;36750:19;36789:8;;;;;;;;;-1:-1:-1;;;;;36789:8:0;-1:-1:-1;;;;;36789:29:0;;36819:4;36878;36832:51;;;;;;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;36832:51:0;;;36789:96;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;36789:96:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;36789:96:0;;;;;;;101:4:-1;97:9;90:4;84;80:15;76:31;69:5;65:43;126:6;120:4;113:20;0:138;36789:96:0;;;;;;;;;36900:18;;;;:12;:18;;;;;;;:32;;-1:-1:-1;;;;;;36900:32:0;-1:-1:-1;;;;;36900:32:0;;;;;36952:31;36900:32;;-1:-1:-1;36952:31:0;;;;36900:18;;:32;;36952:31;;;;;;;;;;-1:-1:-1;;36587:3:0;;36540:455;;56480:514;3705:12;:10;:12::i;:::-;56662:15;56680:26;:5;56690:15;56680:26;:9;:26;:::i;:::-;56662:44;-1:-1:-1;56717:13:0;56733:40;56748:24;:10;56763:8;56748:24;:14;:24;:::i;:::-;56733:10;;:40;:14;:40;:::i;:::-;56808:79;;;;;;;;-1:-1:-1;;;;;56808:79:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;56786:19:0;;;:10;:19;;;;;;;:101;;;;-1:-1:-1;;;;;;56786:101:0;;;;;;;;;;;-1:-1:-1;56786:101:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56905:81;;56808:79;;-1:-1:-1;56808:79:0;56905:81;;;;56808:79;;;;;;;;;;56905:81;;;;;;;;;;3728:1;;56480:514;;;;;:::o;3396:271::-;3465:14;;-1:-1:-1;;;;;3465:14:0;3451:10;:28;3443:94;;;;-1:-1:-1;;;3443:94:0;;;;;;;;;3566:5;;;3573:14;3553:35;;;;;;-1:-1:-1;;;;;3566:5:0;;;;3573:14;;;3553:35;;;;;;;;;;3607:14;;;;3599:22;;-1:-1:-1;;;;;;3599:22:0;;;-1:-1:-1;;;;;3607:14:0;;3599:22;;;;3632:27;;;3396:271::o;73565:464::-;73623:26;73662:34;73699:43;:41;:43::i;:::-;73785:16;;;73799:1;73785:16;;;;;;;;;73662:80;;-1:-1:-1;73753:29:0;;73785:16;;;;73753:29;;105:10:-1;73785:16:0;88:34:-1;136:17;;-1:-1;73785:16:0;73753:48;;-1:-1:-1;;;73812:12:0;73825:1;73812:15;;;;;;;;;;;;;:40;;;;;-1:-1:-1;;;73863:12:0;73876:1;73863:15;;;;;;;;;;;;;:42;;;;;-1:-1:-1;;;73916:12:0;73929:1;73916:15;;;;;;;;;;;;;:41;;;;;73975:46;73989:17;74008:12;73975:13;:46::i;:::-;73968:53;;;;73565:464;:::o;2989:20::-;;;-1:-1:-1;;;;;2989:20:0;;:::o;63090:128::-;65968:17;:15;:17::i;:::-;8144:16;:14;:16::i;:::-;63172:8;:6;:8::i;:::-;63196:13;;;63172:38;;-1:-1:-1;;;63172:38:0;;-1:-1:-1;;;;;63172:23:0;;;;;;:38;;63196:13;;;;63172:38;;;61108:717;61445:19;61379:17;61398:22;66175:26;66191:3;66196:4;66175:15;:26::i;:::-;8144:16;:14;:16::i;:::-;61477:17;:15;:17::i;:::-;61525:11;:9;:11::i;:::-;61621:13;;;61525:292;;-1:-1:-1;;;61525:292:0;;-1:-1:-1;;;;;61525:40:0;;;;;;:292;;61584:18;;61621:13;;;61653:17;;61689:12;;61720:22;;61761:10;;61790:12;;61525:292;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;61525:292:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;61525:292:0;;;;;;;101:4:-1;97:9;90:4;84;80:15;76:31;69:5;65:43;126:6;120:4;113:20;0:138;61525:292:0;;;;;;;;;61505:312;61108:717;-1:-1:-1;;;;;;;;;61108:717:0:o;63418:214::-;65968:17;:15;:17::i;:::-;8144:16;:14;:16::i;:::-;63547:8;:6;:8::i;:::-;63580:13;;;63547:77;;-1:-1:-1;;;63547:77:0;;-1:-1:-1;;;;;63547:32:0;;;;;;:77;;63580:13;;;;63595:15;;63612:11;;63547:77;;;22727:20;;;;;;;;;;;;;;;-1:-1:-1;;22727:20:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7467:137;3705:12;:10;:12::i;:::-;7539:5;:21;;-1:-1:-1;;;;;;7539:21:0;-1:-1:-1;;;;;7539:21:0;;;;;7576:20;;;;;;7539:21;;7576:20;;75278:306;75388:14;75417:13;75445:22;8144:16;:14;:16::i;:::-;75495:17;:15;:17::i;:::-;75530:11;:9;:11::i;:::-;75549:13;;;75530:46;;-1:-1:-1;;;75530:46:0;;-1:-1:-1;;;;;75530:18:0;;;;;;:46;;75549:13;;;;75564:11;;75530:46;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;75530:46:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;6890:29:0;;;-1:-1:-1;;;;;6890:29:0;;:::o;54119:125::-;54179:6;54205:8;:6;:8::i;:::-;-1:-1:-1;;;;;54205:24:0;;54230:5;54205:31;;;;;;;;;;;;;;;;24166:177;8449:26;:24;:26::i;:::-;24257:10;:24;;-1:-1:-1;;;;;;24257:24:0;-1:-1:-1;;;;;24257:24:0;;;;;24292:43;24257:24;24292:21;:43::i;55311:144::-;55383:4;55407:8;:6;:8::i;:::-;-1:-1:-1;;;;;55407:31:0;;55439:7;55407:40;;;;;;;;;;;;;;;;55463:120;55523:4;55547:8;:6;:8::i;:::-;-1:-1:-1;;;;;55547:19:0;;55567:7;55547:28;;;;;;;;;;;;;;;;61833:418;61920:4;8144:16;:14;:16::i;:::-;65792:15;:13;:15::i;:::-;62045:13;;62032:34;;-1:-1:-1;;;;;62045:13:0;62060:5;62032:12;:34::i;:::-;-1:-1:-1;62194:13:0;;62177:42;;-1:-1:-1;;;;;62194:13:0;62209:2;62213:5;62177:16;:42::i;:::-;-1:-1:-1;62239:4:0;;61833:418;-1:-1:-1;;;61833:418:0:o;68161:260::-;66413:16;:14;:16::i;:::-;68312:5;;68324:31;;-1:-1:-1;;;;;68312:5:0;;;;:11;;68324:31;;68335:11;;68348:6;;68324:31;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;68324:31:0;;;68357:1;68099:53;;;;;;63837:139;65968:17;:15;:17::i;:::-;8144:16;:14;:16::i;:::-;63926:8;:6;:8::i;:::-;63946:13;;;63926:42;;-1:-1:-1;;;63926:42:0;;-1:-1:-1;;;;;63926:19:0;;;;;;:42;;63946:13;;;;63961:6;;63926:42;;;7765:102;7905:12;:10;:12::i;:::-;7837:13;:22;;-1:-1:-1;;;;;;7837:22:0;-1:-1:-1;;;;;7837:22:0;;;;;;;;;;7765:102::o;59546:573::-;59811:19;59745:17;59764:22;66175:26;66191:3;66196:4;66175:15;:26::i;:::-;8144:16;:14;:16::i;:::-;59843:17;:15;:17::i;:::-;59891:11;:9;:11::i;:::-;59975:13;;;59891:220;;-1:-1:-1;;;59891:220:0;;-1:-1:-1;;;;;59891:28:0;;;;;;:220;;59938:18;;59975:13;;;60007:17;;60043:12;;60074:22;;59891:220;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;59891:220:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;59891:220:0;;;;;;;101:4:-1;97:9;90:4;84;80:15;76:31;69:5;65:43;126:6;120:4;113:20;0:138;59891:220:0;;;;;;;;;59871:240;59546:573;-1:-1:-1;;;;;;;59546:573:0:o;54382:143::-;54452:7;54479:8;:6;:8::i;:::-;-1:-1:-1;;;;;54479:24:0;;54504:12;54479:38;;;;;;;;;;;;;;;;53352:160;53436:4;53460:8;:6;:8::i;:::-;-1:-1:-1;;;;;53460:22:0;;53483:7;53492:11;53460:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;53460:44:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;53460:44:0;;;;;;;101:4:-1;97:9;90:4;84;80:15;76:31;69:5;65:43;126:6;120:4;113:20;0:138;53460:44:0;;;;;;;;53520:149;53591:4;53615:8;:6;:8::i;:::-;-1:-1:-1;;;;;53615:26:0;;53642:11;53655:5;53615:46;;;;;;;;;;;;;;;;;7159:28;;;-1:-1:-1;;;;;7159:28:0;;:::o;53677:170::-;53770:4;53794:8;:6;:8::i;:::-;-1:-1:-1;;;;;53794:26:0;;53821:11;53834:4;53794:45;;;;;;;;;;;;;;;;;65430:81;65486:17;:15;:17::i;53995:116::-;54049:4;54073:8;:6;:8::i;:::-;-1:-1:-1;;;;;54073:28:0;;:30;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;54073:30:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;54073:30:0;;;;;;;101:4:-1;97:9;90:4;84;80:15;76:31;69:5;65:43;126:6;120:4;113:20;0:138;54073:30:0;;;;;;;;23527:140;23623:10;;:36;;-1:-1:-1;;;23623:36:0;;23599:4;;-1:-1:-1;;;;;23623:10:0;;:20;;:36;;23644:5;;23651:7;;23623:36;;;;67693:263;66413:16;:14;:16::i;:::-;67854:5;;67866:35;;-1:-1:-1;;;;;67854:5:0;;;;:11;;67866:35;;67877:13;;67892:8;;67866:35;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;67866:35:0;;;67903:1;67630:54;;;;;;;;;;;;;;;-1:-1:-1;;;;;;67854:94:0;;;;;;;;;;;67929:12;;67943:1;;;;67854:94;;;;55591:221;55664:17;55713:8;:6;:8::i;:::-;55774:10;;:29;;-1:-1:-1;;;55774:29:0;;-1:-1:-1;;;;;55713:51:0;;;;;;55765:7;;55774:10;;;:20;;:29;;55765:7;;55774:29;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;55774:29:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;55774:29:0;;;;;;;101:4:-1;97:9;90:4;84;80:15;76:31;69:5;65:43;126:6;120:4;113:20;0:138;55774:29:0;;;;;;;;;55713:91;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;55713:91:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;55713:91:0;;;;;;;101:4:-1;97:9;90:4;84;80:15;76:31;69:5;65:43;126:6;120:4;113:20;0:138;55713:91:0;;;;;;;;;-1:-1:-1;55694:110:0;55591:221;-1:-1:-1;;55591:221:0:o;62883:199::-;65968:17;:15;:17::i;:::-;8144:16;:14;:16::i;:::-;63006:8;:6;:8::i;:::-;63052:13;;;63006:68;;-1:-1:-1;;;63006:68:0;;-1:-1:-1;;;;;63006:28:0;;;;;;:68;;63035:15;;63052:13;;;63067:6;;63006:68;;;77186:656;77337:4;65792:15;:13;:15::i;:::-;8144:16;:14;:16::i;:::-;77359:17;:15;:17::i;:::-;77388:18;77408:21;77446:8;:6;:8::i;:::-;77503:13;;;77446:71;;-1:-1:-1;;;77446:71:0;;-1:-1:-1;;;;;77446:35:0;;;;;;:71;;77482:7;;77491:10;;77503:13;;;;77446:71;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;77446:71:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;77446:71:0;;;;;;;101:4:-1;97:9;90:4;84;80:15;76:31;69:5;65:43;126:6;120:4;113:20;0:138;77446:71:0;;;;;;;;;77594:13;;77387:130;;-1:-1:-1;77387:130:0;-1:-1:-1;77530:78:0;;77552:7;;77387:130;;;;-1:-1:-1;;;;;77594:13:0;77530:21;:78::i;:::-;77805:13;;77779:55;;77796:7;;-1:-1:-1;;;;;77805:13:0;77820;77779:16;:55::i;:::-;77772:62;77186:656;-1:-1:-1;;;;;77186:656:0:o;57002:151::-;3705:12;:10;:12::i;:::-;-1:-1:-1;;;;;57075:19:0;;;;;;:10;:19;;;;;;57068:26;;-1:-1:-1;;;;;;57068:26:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;57110:35;;;;;57075:19;;;;;;;;57110:35;;;;;;;;;;57002:151;:::o;22634:28::-;;;-1:-1:-1;;;;;22634:28:0;;:::o;6865:18::-;;;-1:-1:-1;;;;;6865:18:0;;:::o;59136:402::-;59356:19;59290:17;59309:22;66175:26;66191:3;66196:4;66175:15;:26::i;:::-;8144:16;:14;:16::i;:::-;59388:17;:15;:17::i;:::-;59423:11;:9;:11::i;:::-;59444:13;;;59423:107;;-1:-1:-1;;;59423:107:0;;-1:-1:-1;;;;;59423:20:0;;;;;;:107;;59444:13;;;;59459:17;;59478:12;;59492:22;;59444:13;;59423:107;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;59423:107:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;59423:107:0;;;;;;;101:4:-1;97:9;90:4;84;80:15;76:31;69:5;65:43;126:6;120:4;113:20;0:138;59423:107:0;;;;;;;;;59416:114;59136:402;-1:-1:-1;;;;;;59136:402:0:o;54712:147::-;54774:19;54813:8;:6;:8::i;:::-;-1:-1:-1;;;;;54813:36:0;;:38;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;54813:38:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;54813:38:0;;;;;;;101:4:-1;97:9;90:4;84;80:15;76:31;69:5;65:43;126:6;120:4;113:20;0:138;54813:38:0;;;;;;;;50991:37;-1:-1:-1;;;50991:37:0;:::o;8188:209::-;8258:5;;-1:-1:-1;;;;;8258:5:0;8243:10;8237:26;;;;:67;;-1:-1:-1;8288:16:0;;-1:-1:-1;;;;;8288:16:0;8273:10;8267:37;;8237:67;:98;;;;-1:-1:-1;8308:13:0;;-1:-1:-1;;;;;8308:13:0;8325:10;8308:27;;8237:98;8233:157;;;8352:13;:26;;-1:-1:-1;;;;;;8352:26:0;8368:10;8352:26;;;8188:209::o;27063:230::-;27183:5;;27195:17;;-1:-1:-1;;;;;27183:5:0;;;;:11;;27195:17;;27206:5;;27195:17;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;27195:17:0;;;27214:1;27008:46;;;;;;;;;;;;;;27231:23;27248:5;27231:16;:23::i;:::-;27256:25;27273:7;27256:16;:25::i;:::-;27283:1;27183:102;;;;;;;;;;;;;;;;;;;;;66013:92;66059:14;:12;:14::i;:::-;-1:-1:-1;;;;;66059:36:0;;:38;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;66059:38:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;53040:122:0;53081:7;53116:37;-1:-1:-1;;;53116:20:0;:37::i;66229:140::-;66300:14;:12;:14::i;:::-;-1:-1:-1;;;;;66300:50:0;;66351:3;66356:4;66300:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;66300:61:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;65610:97:0;65662:37;;-1:-1:-1;;;65662:37:0;;;;;;;;52898:134;52942:10;52983:40;-1:-1:-1;;;52983:20:0;:40::i;53170:174::-;53224:20;53285:50;-1:-1:-1;;;53285:20:0;:50::i;74393:154::-;74442:15;74493:45;-1:-1:-1;;;74493:20:0;:45::i;10187:184::-;10245:7;10278:1;10273;:6;;10265:49;;;;-1:-1:-1;;;10265:49:0;;;;;;;;;-1:-1:-1;10337:5:0;;;10187:184::o;9731:181::-;9789:7;9821:5;;;9845:6;;;;9837:46;;;;-1:-1:-1;;;9837:46:0;;;;;;;;26660:218;26774:5;;26786:17;;-1:-1:-1;;;;;26774:5:0;;;;:11;;26786:17;;26797:5;;26786:17;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;26786:17:0;;;26805:1;26605:46;;;;;;3745:133;3813:5;;-1:-1:-1;;;;;3813:5:0;3799:10;:19;3791:79;;;;-1:-1:-1;;;3791:79:0;;;;;;;;66457:130;66532:11;:9;:11::i;:::-;-1:-1:-1;;;;;66510:34:0;:10;-1:-1:-1;;;;;66510:34:0;;66502:77;;;;-1:-1:-1;;;66502:77:0;;;;;;;;26350:131;-1:-1:-1;;;;;26449:23:0;;26350:131::o;65835:88::-;65879:14;:12;:14::i;:::-;-1:-1:-1;;;;;65879:34:0;;:36;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;55820:652:0;55894:4;55920:25;55930:7;55939:5;55920:9;:25::i;:::-;55919:26;55911:60;;;;-1:-1:-1;;;55911:60:0;;;;;;;;;55985:25;56016:18;:16;:18::i;:::-;-1:-1:-1;;;;;56016:31:0;;56048:7;56016:40;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;56016:40:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;56016:40:0;;;;;;;101:4:-1;97:9;90:4;84;80:15;76:31;69:5;65:43;126:6;120:4;113:20;0:138;56016:40:0;;;;;;;;;-1:-1:-1;55984:72:0;-1:-1:-1;56073:24:0;;56069:374;;56115:17;56134:21;56176:8;:6;:8::i;:::-;56237:10;;:29;;-1:-1:-1;;;56237:29:0;;-1:-1:-1;;;;;56176:51:0;;;;;;56228:7;;56237:10;;;:20;;:29;;56228:7;;56237:29;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;56237:29:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;56237:29:0;;;;;;;101:4:-1;97:9;90:4;84;80:15;76:31;69:5;65:43;126:6;120:4;113:20;0:138;56237:29:0;;;;;;;;;56176:91;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;56176:91:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;56176:91:0;;;;;;;101:4:-1;97:9;90:4;84;80:15;76:31;69:5;65:43;126:6;120:4;113:20;0:138;56176:91:0;;;;;;;;;56114:153;;;;56299:12;56290:5;:21;;56282:73;;;;-1:-1:-1;;;56282:73:0;;;;;;;;;56379:16;56378:17;56370:61;;;;-1:-1:-1;;;56370:61:0;;;;;;;;;-1:-1:-1;56460:4:0;;55820:652;-1:-1:-1;;;;;55820:652:0:o;25554:385::-;25795:10;;25833:34;;-1:-1:-1;;;25833:34:0;;25699:4;;-1:-1:-1;;;;;25795:10:0;;:23;;25819:4;;25825:6;;25833:45;;25872:5;;25795:10;;25833:20;;:34;;25819:4;;25825:6;;25833:34;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;25833:34:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;25833:34:0;;;;;;;101:4:-1;97:9;90:4;84;80:15;76:31;69:5;65:43;126:6;120:4;113:20;0:138;25833:34:0;;;;;;;;;:38;:45;:38;:45;:::i;:::-;25795:84;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;25795:84:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;25795:84:0;;;;25897:34;25915:4;25921:2;25925:5;25897:17;:34::i;:::-;25890:41;;25554:385;;;;;;;:::o;11560:333::-;11618:7;11717:1;11713;:5;11705:44;;;;-1:-1:-1;;;11705:44:0;;;;;;;;;11760:9;11776:1;11772;:5;;;;;;;11560:333;-1:-1:-1;;;;11560:333:0:o;10622:470::-;10680:7;10924:6;10920:47;;-1:-1:-1;10954:1:0;10947:8;;10920:47;10991:5;;;10995:1;10991;:5;:1;11015:5;;;;;:10;11007:56;;;;-1:-1:-1;;;11007:56:0;;;;;;;;74075:147;74122:13;74169:44;-1:-1:-1;;;74169:20:0;:44::i;74230:155::-;74279:15;74330:46;-1:-1:-1;;;74330:20:0;:46::i;24351:656::-;24468:4;-1:-1:-1;;;;;24555:16:0;;;;;;:39;;-1:-1:-1;;;;;;24575:19:0;;24589:4;24575:19;;24555:39;:63;;;;-1:-1:-1;24612:5:0;;-1:-1:-1;;;;;24598:20:0;;;24612:5;;24598:20;;24555:63;24547:107;;;;-1:-1:-1;;;24547:107:0;;;;;;;;;24741:10;;24771:26;;-1:-1:-1;;;24771:26:0;;-1:-1:-1;;;;;24741:10:0;;;;:23;;24765:4;;24771:37;;24802:5;;24741:10;;24771:20;;:26;;24765:4;;24771:26;;;;:37;24741:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;24741:68:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;-1:-1;;24820:10:0;;24848:24;;-1:-1:-1;;;24848:24:0;;-1:-1:-1;;;;;24820:10:0;;;;-1:-1:-1;24820:23:0;;-1:-1:-1;24844:2:0;;24848:35;;24877:5;;24820:10;;24848:20;;:24;;24844:2;;24848:24;;;;:35;24820:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;24820:64:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;24820:64:0;;;;24946:29;24959:4;24965:2;24969:5;24946:12;:29::i;52196:370::-;52305:16;;;52319:1;52305:16;;;;;;;;;52254:26;;52305:16;;;17:15:-1;;105:10;52305:16:0;88:34:-1;136:17;;-1:-1;52305:16:0;52293:28;;-1:-1:-1;;;52332:9:0;52342:1;52332:12;;;;;;;;;;;;;:40;;;;;-1:-1:-1;;;52383:9:0;52393:1;52383:12;;;;;;;;;;;;;:36;;;;;-1:-1:-1;;;52430:9:0;52440:1;52430:12;;;;;;;;;;;;;:33;;;;;-1:-1:-1;;;52474:9:0;52484:1;52474:12;;;;;;;;;;;;;:30;;;;;-1:-1:-1;;;52515:9:0;52525:1;52515:12;;;;;;;;;;;;;:43;;;;;52196:370;:::o;35611:458::-;35733:28;35822:6;:13;35807:5;:12;:28;35793:43;;;;;;;;;;;;;;;;;;;;;;29:2:-1;21:6;17:15;117:4;105:10;97:6;88:34;136:17;;-1:-1;35793:43:0;-1:-1:-1;35779:57:0;-1:-1:-1;35854:6:0;35849:92;35870:5;:12;35866:1;:16;35849:92;;;35921:5;35927:1;35921:8;;;;;;;;;;;;;;35904:11;35916:1;35904:14;;;;;;;;;;;;;;;;;:25;35884:3;;35849:92;;;-1:-1:-1;35958:6:0;35953:109;35974:6;:13;35970:1;:17;35953:109;;;36041:6;36048:1;36041:9;;;;;;;;;;;;;;36009:11;36036:1;36021:5;:12;:16;36009:29;;;;;;;;;;;;;;;;;:41;35989:3;;35953:109;;8557:284;8637:5;;-1:-1:-1;;;;;8637:5:0;8622:10;8616:26;;;;:67;;-1:-1:-1;8667:16:0;;-1:-1:-1;;;;;8667:16:0;8652:10;8646:37;;8616:67;:98;;;;-1:-1:-1;8687:13:0;;-1:-1:-1;;;;;8687:13:0;8704:10;8687:27;;8616:98;8612:157;;;8731:13;:26;;-1:-1:-1;;;;;;8731:26:0;8747:10;8731:26;;;8612:157;8804:5;;8787:13;;-1:-1:-1;;;;;8787:13:0;;;8804:5;;8787:22;8779:54;;;;-1:-1:-1;;;8779:54:0;;;;;;;;27452:155;27526:5;;27538:25;;-1:-1:-1;;;;;27526:5:0;;;;:11;;27538:25;;27549:13;;27538:25;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;27538:25:0;;;27565:1;27404:39;;;;;;;;;;;;;;;-1:-1:-1;;;;;;27526:73:0;;;;;;;;;;;27591:1;;;;;;27526:73;;;;25184:182;25300:4;25324:34;25342:4;25348:2;25352:5;25324:17;:34::i;7945:157::-;8020:5;;-1:-1:-1;;;;;8020:5:0;8005:10;7999:26;;:67;;-1:-1:-1;8050:16:0;;-1:-1:-1;;;;;8050:16:0;8035:10;8029:37;7999:67;7991:103;;;;-1:-1:-1;;;7991:103:0;;;;;;;;78714:402;78893:5;;78919:54;;-1:-1:-1;;;;;78893:5:0;;;;:11;;78919:54;;78930:12;;78944:16;;78962:10;;78919:54;;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;78919:54:0;;;78988:1;78642:63;;;;;;;;;;;;;;79040:25;79057:7;79040:16;:25::i;:::-;79080:1;79096;78893:215;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;78893:215:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;78893:215:0;;;;78714:402;;;;:::o;52744:146::-;52791:13;52838:43;-1:-1:-1;;;37650:268:0;37717:7;37761:18;;;:12;:18;;;;;;;;;37834:43;;-1:-1:-1;;;;;37761:18:0;;;;37798:27;;;;37834:43;;37774:4;;37834:43;;;;;;49:4:-1;39:7;30;26:21;22:32;13:7;6:49;37834:43:0;;;37790:89;;;;;-1:-1:-1;;;37790:89:0;;;;;;;;;58323:754;58395:4;58412:29;;:::i;:::-;-1:-1:-1;;;;;;58444:19:0;;;;;;;:10;:19;;;;;;;;;58412:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58514:27;;:69;;;58568:15;58545:12;:20;;;:38;58514:69;58510:114;;;58607:5;58600:12;;;;;58510:114;58706:15;58681:12;:22;;;:40;58677:84;;;58745:4;58738:11;;;;;58677:84;58776:15;58795:27;58814:7;58795:18;:27::i;:::-;58855:10;;:29;;-1:-1:-1;;;58855:29:0;;58773:49;;-1:-1:-1;58833:19:0;;-1:-1:-1;;;;;;58855:10:0;;:20;;:29;;58876:7;;58855:29;;;;;;;;;;;;;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;58855:29:0;;;;8:9:-1;5:2;;;45:16;42:1;39;24:38;77:16;74:1;67:27;5:2;58855:29:0;;;;;;;101:4:-1;97:9;90:4;84;80:15;76:31;69:5;65:43;126:6;120:4;113:20;0:138;58855:29:0;;;;;;;;;58833:51;-1:-1:-1;58995:10:0;58966:26;58833:51;58985:6;58966:26;:18;:26;:::i;:::-;:39;58962:83;;;59029:4;59022:11;;;;;;;58962:83;-1:-1:-1;59064:5:0;;58323:754;-1:-1:-1;;;;;58323:754:0:o;52574:162::-;52625:17;52680:47;-1:-1:-1;;;52680:20:0;:47::i;72938:6181::-;;;;;;;;;;-1:-1:-1;;;;;72938:6181:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;5:130:-1:-;72:20;;97:33;72:20;97:33;;142:134;220:13;;238:33;220:13;238:33;;454:722;;582:3;575:4;567:6;563:17;559:27;549:2;;600:1;597;590:12;549:2;630:6;624:13;652:80;667:64;724:6;667:64;;;652:80;;;643:89;;749:5;774:6;767:5;760:21;804:4;796:6;792:17;782:27;;826:4;821:3;817:14;810:21;;879:6;926:3;918:4;910:6;906:17;901:3;897:27;894:36;891:2;;;943:1;940;933:12;891:2;968:1;953:217;978:6;975:1;972:13;953:217;;;1036:3;1058:48;1102:3;1090:10;1058:48;;;1046:61;;-1:-1;1130:4;1121:14;;;;1149;;;;;1000:1;993:9;953:217;;;957:14;542:634;;;;;;;;1184:128;1259:13;;1277:30;1259:13;1277:30;;1319:130;1386:20;;1411:33;1386:20;1411:33;;1456:134;1534:13;;1552:33;1534:13;1552:33;;1597:164;1690:13;;1708:48;1690:13;1708:48;;1953:166;2038:20;;2063:51;2038:20;2063:51;;2404:241;;2508:2;2496:9;2487:7;2483:23;2479:32;2476:2;;;2524:1;2521;2514:12;2476:2;2559:1;2576:53;2621:7;2601:9;2576:53;;2652:263;;2767:2;2755:9;2746:7;2742:23;2738:32;2735:2;;;2783:1;2780;2773:12;2735:2;2818:1;2835:64;2891:7;2871:9;2835:64;;3186:366;;;3307:2;3295:9;3286:7;3282:23;3278:32;3275:2;;;3323:1;3320;3313:12;3275:2;3358:1;3375:53;3420:7;3400:9;3375:53;;;3365:63;;3337:97;3465:2;3483:53;3528:7;3519:6;3508:9;3504:22;3483:53;;;3473:63;;3444:98;3269:283;;;;;;3559:491;;;;3697:2;3685:9;3676:7;3672:23;3668:32;3665:2;;;3713:1;3710;3703:12;3665:2;3748:1;3765:53;3810:7;3790:9;3765:53;;;3755:63;;3727:97;3855:2;3873:53;3918:7;3909:6;3898:9;3894:22;3873:53;;;3863:63;;3834:98;3963:2;3981:53;4026:7;4017:6;4006:9;4002:22;3981:53;;;3971:63;;3942:98;3659:391;;;;;;4057:366;;;4178:2;4166:9;4157:7;4153:23;4149:32;4146:2;;;4194:1;4191;4184:12;4146:2;4229:1;4246:53;4291:7;4271:9;4246:53;;;4236:63;;4208:97;4336:2;4354:53;4399:7;4390:6;4379:9;4375:22;4354:53;;4430:491;;;;4568:2;4556:9;4547:7;4543:23;4539:32;4536:2;;;4584:1;4581;4574:12;4536:2;4619:1;4636:53;4681:7;4661:9;4636:53;;;4626:63;;4598:97;4726:2;4744:53;4789:7;4780:6;4769:9;4765:22;4744:53;;4928:617;;;;;5083:3;5071:9;5062:7;5058:23;5054:33;5051:2;;;5100:1;5097;5090:12;5051:2;5135:1;5152:53;5197:7;5177:9;5152:53;;;5142:63;;5114:97;5242:2;5260:53;5305:7;5296:6;5285:9;5281:22;5260:53;;;5250:63;;5221:98;5350:2;5368:53;5413:7;5404:6;5393:9;5389:22;5368:53;;;5358:63;;5329:98;5458:2;5476:53;5521:7;5512:6;5501:9;5497:22;5476:53;;;5466:63;;5437:98;5045:500;;;;;;;;5552:869;;;;;;;5741:3;5729:9;5720:7;5716:23;5712:33;5709:2;;;5758:1;5755;5748:12;5709:2;5793:1;5810:53;5855:7;5835:9;5810:53;;;5800:63;;5772:97;5900:2;5918:53;5963:7;5954:6;5943:9;5939:22;5918:53;;;5908:63;;5879:98;6008:2;6026:53;6071:7;6062:6;6051:9;6047:22;6026:53;;;6016:63;;5987:98;6116:2;6134:53;6179:7;6170:6;6159:9;6155:22;6134:53;;;6124:63;;6095:98;6224:3;6243:53;6288:7;6279:6;6268:9;6264:22;6243:53;;;6233:63;;6203:99;6333:3;6352:53;6397:7;6388:6;6377:9;6373:22;6352:53;;;6342:63;;6312:99;5703:718;;;;;;;;;6428:869;;;;;;;6617:3;6605:9;6596:7;6592:23;6588:33;6585:2;;;6634:1;6631;6624:12;6585:2;6669:1;6686:53;6731:7;6711:9;6686:53;;;6676:63;;6648:97;6776:2;6794:53;6839:7;6830:6;6819:9;6815:22;6794:53;;;6784:63;;6755:98;6884:2;6902:53;6947:7;6938:6;6927:9;6923:22;6902:53;;;6892:63;;6863:98;6992:2;7010:53;7055:7;7046:6;7035:9;7031:22;7010:53;;;7000:63;;6971:98;7100:3;7119:53;7164:7;7155:6;7144:9;7140:22;7119:53;;;7109:63;;7079:99;7209:3;7228:53;7273:7;7264:6;7253:9;7249:22;7228:53;;7677:743;;;;;;7849:3;7837:9;7828:7;7824:23;7820:33;7817:2;;;7866:1;7863;7856:12;7817:2;7901:1;7918:53;7963:7;7943:9;7918:53;;;7908:63;;7880:97;8008:2;8026:53;8071:7;8062:6;8051:9;8047:22;8026:53;;;8016:63;;7987:98;8116:2;8134:53;8179:7;8170:6;8159:9;8155:22;8134:53;;;8124:63;;8095:98;8224:2;8242:53;8287:7;8278:6;8267:9;8263:22;8242:53;;;8232:63;;8203:98;8332:3;8351:53;8396:7;8387:6;8376:9;8372:22;8351:53;;;8341:63;;8311:99;7811:609;;;;;;;;;8427:392;;8567:2;8555:9;8546:7;8542:23;8538:32;8535:2;;;8583:1;8580;8573:12;8535:2;8618:24;;8662:18;8651:30;;8648:2;;;8694:1;8691;8684:12;8648:2;8714:89;8795:7;8786:6;8775:9;8771:22;8714:89;;8826:257;;8938:2;8926:9;8917:7;8913:23;8909:32;8906:2;;;8954:1;8951;8944:12;8906:2;8989:1;9006:61;9059:7;9039:9;9006:61;;9090:241;;9194:2;9182:9;9173:7;9169:23;9165:32;9162:2;;;9210:1;9207;9200:12;9162:2;9245:1;9262:53;9307:7;9287:9;9262:53;;9338:263;;9453:2;9441:9;9432:7;9428:23;9424:32;9421:2;;;9469:1;9466;9459:12;9421:2;9504:1;9521:64;9577:7;9557:9;9521:64;;9608:491;;;;9746:2;9734:9;9725:7;9721:23;9717:32;9714:2;;;9762:1;9759;9752:12;9714:2;9797:1;9814:53;9859:7;9839:9;9814:53;;10604:743;;;;;;10776:3;10764:9;10755:7;10751:23;10747:33;10744:2;;;10793:1;10790;10783:12;10744:2;10828:1;10845:53;10890:7;10870:9;10845:53;;;10835:63;;10807:97;10935:2;10953:53;10998:7;10989:6;10978:9;10974:22;10953:53;;;10943:63;;10914:98;11043:2;11061:53;11106:7;11097:6;11086:9;11082:22;11061:53;;;11051:63;;11022:98;11151:2;11169:53;11214:7;11205:6;11194:9;11190:22;11169:53;;11354:617;;;;;11509:3;11497:9;11488:7;11484:23;11480:33;11477:2;;;11526:1;11523;11516:12;11477:2;11561:1;11578:53;11623:7;11603:9;11578:53;;11978:293;;12108:2;12096:9;12087:7;12083:23;12079:32;12076:2;;;12124:1;12121;12114:12;12076:2;12159:1;12176:79;12247:7;12227:9;12176:79;;12278:277;;12400:2;12388:9;12379:7;12375:23;12371:32;12368:2;;;12416:1;12413;12406:12;12368:2;12451:1;12468:71;12531:7;12511:9;12468:71;;13080:393;;;13209:2;13197:9;13188:7;13184:23;13180:32;13177:2;;;13225:1;13222;13215:12;13177:2;13260:1;13277:64;13333:7;13313:9;13277:64;;;13267:74;;13239:108;13378:2;13396:61;13449:7;13440:6;13429:9;13425:22;13396:61;;13480:443;;;13634:2;13622:9;13613:7;13609:23;13605:32;13602:2;;;13650:1;13647;13640:12;13602:2;13685:1;13702:64;13758:7;13738:9;13702:64;;;13692:74;;13664:108;13803:2;13821:86;13899:7;13890:6;13879:9;13875:22;13821:86;;13930:366;;;14051:2;14039:9;14030:7;14026:23;14022:32;14019:2;;;14067:1;14064;14057:12;14019:2;14102:1;14119:53;14164:7;14144:9;14119:53;;14303:399;;;14435:2;14423:9;14414:7;14410:23;14406:32;14403:2;;;14451:1;14448;14441:12;14403:2;14486:1;14503:64;14559:7;14539:9;14503:64;;;14493:74;;14465:108;14604:2;14622:64;14678:7;14669:6;14658:9;14654:22;14622:64;;14709:535;;;;14858:2;14846:9;14837:7;14833:23;14829:32;14826:2;;;14874:1;14871;14864:12;14826:2;14909:1;14926:64;14982:7;14962:9;14926:64;;;14916:74;;14888:108;15027:2;15045:64;15101:7;15092:6;15081:9;15077:22;15045:64;;;15035:74;;15006:109;15146:2;15164:64;15220:7;15211:6;15200:9;15196:22;15164:64;;15252:173;;15339:46;15381:3;15373:6;15339:46;;;-1:-1;;15414:4;15405:14;;15332:93;15433:142;15524:45;15563:5;15524:45;;;15519:3;15512:58;15506:69;;;15582:113;15665:24;15683:5;15665:24;;15733:690;;15878:54;15926:5;15878:54;;;15945:86;16024:6;16019:3;15945:86;;;15938:93;;16052:56;16102:5;16052:56;;;16128:7;16156:1;16141:260;16166:6;16163:1;16160:13;16141:260;;;16233:6;16227:13;16254:63;16313:3;16298:13;16254:63;;;16247:70;;16334:60;16387:6;16334:60;;;16324:70;-1:-1;;16188:1;16181:9;16141:260;;;-1:-1;16414:3;;15857:566;-1:-1;;;;;15857:566;16431:104;16508:21;16523:5;16508:21;;16542:103;16615:24;16633:5;16615:24;;16772:152;16873:45;16893:24;16911:5;16893:24;;;16873:45;;16931:343;;17041:38;17073:5;17041:38;;;17091:70;17154:6;17149:3;17091:70;;;17084:77;;17166:52;17211:6;17206:3;17199:4;17192:5;17188:16;17166:52;;;17239:29;17261:6;17239:29;;;17230:39;;;;17021:253;-1:-1;;;17021:253;17281:174;17388:61;17443:5;17388:61;;18146:142;18237:45;18276:5;18237:45;;18295:142;18386:45;18425:5;18386:45;;19592:331;;19752:67;19816:2;19811:3;19752:67;;;19852:33;19832:54;;19914:2;19905:12;;19738:185;-1:-1;;19738:185;19932:390;;20092:67;20156:2;20151:3;20092:67;;;20192:34;20172:55;;-1:-1;;;20256:2;20247:12;;20240:45;20313:2;20304:12;;20078:244;-1:-1;;20078:244;20331:319;;20491:67;20555:2;20550:3;20491:67;;;-1:-1;;;20571:42;;20641:2;20632:12;;20477:173;-1:-1;;20477:173;20659:330;;20819:67;20883:2;20878:3;20819:67;;;20919:32;20899:53;;20980:2;20971:12;;20805:184;-1:-1;;20805:184;20998:327;;21158:67;21222:2;21217:3;21158:67;;;21258:29;21238:50;;21316:2;21307:12;;21144:181;-1:-1;;21144:181;21334:413;;21512:85;21594:2;21589:3;21512:85;;;21630:34;21610:55;;-1:-1;;;21694:2;21685:12;;21678:32;21738:2;21729:12;;21498:249;-1:-1;;21498:249;21756:435;;21934:85;22016:2;22011:3;21934:85;;;22052:34;22032:55;;22121:32;22116:2;22107:12;;22100:54;22182:2;22173:12;;21920:271;-1:-1;;21920:271;22200:330;;22360:67;22424:2;22419:3;22360:67;;;22460:32;22440:53;;22521:2;22512:12;;22346:184;-1:-1;;22346:184;22539:327;;22699:67;22763:2;22758:3;22699:67;;;22799:29;22779:50;;22857:2;22848:12;;22685:181;-1:-1;;22685:181;22875:326;;23035:67;23099:2;23094:3;23035:67;;;23135:28;23115:49;;23192:2;23183:12;;23021:180;-1:-1;;23021:180;23210:353;;23388:85;23470:2;23465:3;23388:85;;;-1:-1;;;23486:40;;23554:2;23545:12;;23374:189;-1:-1;;23374:189;23572:327;;23732:67;23796:2;23791:3;23732:67;;;23832:29;23812:50;;23890:2;23881:12;;23718:181;-1:-1;;23718:181;23908:384;;24068:67;24132:2;24127:3;24068:67;;;24168:34;24148:55;;-1:-1;;;24232:2;24223:12;;24216:39;24283:2;24274:12;;24054:238;-1:-1;;24054:238;24301:406;;24479:85;24561:2;24556:3;24479:85;;;24597:34;24577:55;;-1:-1;;;24661:2;24652:12;;24645:25;24698:2;24689:12;;24465:242;-1:-1;;24465:242;24716:331;;24876:67;24940:2;24935:3;24876:67;;;24976:33;24956:54;;25038:2;25029:12;;24862:185;-1:-1;;24862:185;25056:370;;25216:67;25280:2;25275:3;25216:67;;;25316:34;25296:55;;-1:-1;;;25380:2;25371:12;;25364:25;25417:2;25408:12;;25202:224;-1:-1;;25202:224;25435:412;;25613:85;25695:2;25690:3;25613:85;;;25731:34;25711:55;;-1:-1;;;25795:2;25786:12;;25779:31;25838:2;25829:12;;25599:248;-1:-1;;25599:248;25856:414;;26034:85;26116:2;26111:3;26034:85;;;26152:34;26132:55;;-1:-1;;;26216:2;26207:12;;26200:33;26261:2;26252:12;;26020:250;-1:-1;;26020:250;26279:362;;26457:85;26539:2;26534:3;26457:85;;;26575:28;26555:49;;26632:2;26623:12;;26443:198;-1:-1;;26443:198;26650:423;;26828:85;26910:2;26905:3;26828:85;;;26946:34;26926:55;;-1:-1;;;27010:2;27001:12;;26994:42;27064:2;27055:12;;26814:259;-1:-1;;26814:259;27082:361;;27260:85;27342:2;27337:3;27260:85;;;27378:27;27358:48;;27434:2;27425:12;;27246:197;-1:-1;;27246:197;27452:321;;27612:67;27676:2;27671:3;27612:67;;;-1:-1;;;27692:44;;27764:2;27755:12;;27598:175;-1:-1;;27598:175;27782:406;;27960:85;28042:2;28037:3;27960:85;;;28078:34;28058:55;;-1:-1;;;28142:2;28133:12;;28126:25;28179:2;28170:12;;27946:242;-1:-1;;27946:242;28197:376;;28357:67;28421:2;28416:3;28357:67;;;28457:34;28437:55;;-1:-1;;;28521:2;28512:12;;28505:31;28564:2;28555:12;;28343:230;-1:-1;;28343:230;28582:323;;28742:67;28806:2;28801:3;28742:67;;;28842:25;28822:46;;28896:2;28887:12;;28728:177;-1:-1;;28728:177;28914:321;;29074:67;29138:2;29133:3;29074:67;;;-1:-1;;;29154:44;;29226:2;29217:12;;29060:175;-1:-1;;29060:175;29363:107;29442:22;29458:5;29442:22;;29477:372;;29676:148;29820:3;29676:148;;29856:372;;30055:148;30199:3;30055:148;;30235:511;;30462:148;30606:3;30462:148;;;30455:155;;30621:75;30692:3;30683:6;30621:75;;;-1:-1;30718:2;30709:12;;30443:303;-1:-1;30443:303;30753:372;;30952:148;31096:3;30952:148;;31132:372;;31331:148;31475:3;31331:148;;31511:372;;31710:148;31854:3;31710:148;;31890:372;;32089:148;32233:3;32089:148;;32269:372;;32468:148;32612:3;32468:148;;32648:511;;32875:148;33019:3;32875:148;;33166:372;;33365:148;33509:3;33365:148;;33545:213;33663:2;33648:18;;33677:71;33652:9;33721:6;33677:71;;33765:229;33891:2;33876:18;;33905:79;33880:9;33957:6;33905:79;;34001:340;34155:2;34140:18;;34169:79;34144:9;34221:6;34169:79;;;34259:72;34327:2;34316:9;34312:18;34303:6;34259:72;;34348:324;34494:2;34479:18;;34508:71;34483:9;34552:6;34508:71;;;34590:72;34658:2;34647:9;34643:18;34634:6;34590:72;;34679:659;34909:3;34894:19;;34924:71;34898:9;34968:6;34924:71;;;35006:72;35074:2;35063:9;35059:18;35050:6;35006:72;;;35089;35157:2;35146:9;35142:18;35133:6;35089:72;;;35172;35240:2;35229:9;35225:18;35216:6;35172:72;;;35255:73;35323:3;35312:9;35308:19;35299:6;35255:73;;35345:883;35631:3;35616:19;;35646:71;35620:9;35690:6;35646:71;;;35728:72;35796:2;35785:9;35781:18;35772:6;35728:72;;;35811;35879:2;35868:9;35864:18;35855:6;35811:72;;;35894;35962:2;35951:9;35947:18;35938:6;35894:72;;;35977:73;36045:3;36034:9;36030:19;36021:6;35977:73;;;36061;36129:3;36118:9;36114:19;36105:6;36061:73;;;36145;36213:3;36202:9;36198:19;36189:6;36145:73;;36235:435;36409:2;36394:18;;36423:71;36398:9;36467:6;36423:71;;;36505:72;36573:2;36562:9;36558:18;36549:6;36505:72;;;36588;36656:2;36645:9;36641:18;36632:6;36588:72;;36677:324;36823:2;36808:18;;36837:71;36812:9;36881:6;36837:71;;37008:659;37238:3;37223:19;;37253:71;37227:9;37297:6;37253:71;;;37335:72;37403:2;37392:9;37388:18;37379:6;37335:72;;;37418;37486:2;37475:9;37471:18;37462:6;37418:72;;;37501;37569:2;37558:9;37554:18;37545:6;37501:72;;;37584:73;37652:3;37641:9;37637:19;37628:6;37584:73;;37674:883;37960:3;37945:19;;37975:71;37949:9;38019:6;37975:71;;;38057:72;38125:2;38114:9;38110:18;38101:6;38057:72;;;38140;38208:2;38197:9;38193:18;38184:6;38140:72;;;38223;38291:2;38280:9;38276:18;38267:6;38223:72;;;38306:73;38374:3;38363:9;38359:19;38350:6;38306:73;;38564:771;38822:3;38807:19;;38837:71;38811:9;38881:6;38837:71;;;38919:72;38987:2;38976:9;38972:18;38963:6;38919:72;;;39002;39070:2;39059:9;39055:18;39046:6;39002:72;;;39085;39153:2;39142:9;39138:18;39129:6;39085:72;;;39168:73;39236:3;39225:9;39221:19;39212:6;39168:73;;;39252;39320:3;39309:9;39305:19;39296:6;39252:73;;39673:435;39847:2;39832:18;;39861:71;39836:9;39905:6;39861:71;;;39943:72;40011:2;40000:9;39996:18;39987:6;39943:72;;;40026;40094:2;40083:9;40079:18;40070:6;40026:72;;40115:435;40289:2;40274:18;;40303:71;40278:9;40347:6;40303:71;;;40385:72;40453:2;40442:9;40438:18;40429:6;40385:72;;40557:771;40815:3;40800:19;;40830:71;40804:9;40874:6;40830:71;;;40912:72;40980:2;40969:9;40965:18;40956:6;40912:72;;;40995;41063:2;41052:9;41048:18;41039:6;40995:72;;;41078;41146:2;41135:9;41131:18;41122:6;41078:72;;;41161:73;41229:3;41218:9;41214:19;41205:6;41161:73;;41335:361;41503:2;41517:47;;;41488:18;;41578:108;41488:18;41672:6;41578:108;;41703:201;41815:2;41800:18;;41829:65;41804:9;41867:6;41829:65;;41911:213;42029:2;42014:18;;42043:71;42018:9;42087:6;42043:71;;42131:324;42277:2;42262:18;;42291:71;42266:9;42335:6;42291:71;;42462:312;42602:2;42587:18;;42616:71;42591:9;42660:6;42616:71;;;42698:66;42760:2;42749:9;42745:18;42736:6;42698:66;;42781:324;42927:2;42912:18;;42941:71;42916:9;42985:6;42941:71;;43112:412;43278:2;43263:18;;43292:71;43267:9;43336:6;43292:71;;;43411:9;43405:4;43401:20;43396:2;43385:9;43381:18;43374:48;43436:78;43509:4;43500:6;43436:78;;43862:659;44092:3;44077:19;;44107:71;44081:9;44151:6;44107:71;;44528:919;44836:3;44851:47;;;44821:19;;44912:76;44821:19;44974:6;44912:76;;;44904:84;;44999:80;45075:2;45064:9;45060:18;45051:6;44999:80;;;45090:72;45158:2;45147:9;45143:18;45134:6;45090:72;;;45173:80;45249:2;45238:9;45234:18;45225:6;45173:80;;;45264:81;45340:3;45329:9;45325:19;45316:6;45264:81;;;45356;45432:3;45421:9;45417:19;45408:6;45356:81;;45454:903;45754:3;45769:47;;;45739:19;;45830:76;45739:19;45892:6;45830:76;;;45822:84;;45917:80;45993:2;45982:9;45978:18;45969:6;45917:80;;;46008:72;46076:2;46065:9;46061:18;46052:6;46008:72;;;46091;46159:2;46148:9;46144:18;46135:6;46091:72;;46364:887;46656:3;46671:47;;;46641:19;;46732:76;46641:19;46794:6;46732:76;;;46724:84;;46819:80;46895:2;46884:9;46880:18;46871:6;46819:80;;;46910:72;46978:2;46967:9;46963:18;46954:6;46910:72;;;46993;47061:2;47050:9;47046:18;47037:6;46993:72;;;47076:73;47144:3;47133:9;47129:19;47120:6;47076:73;;47258:261;47400:2;47385:18;;47414:95;47389:9;47482:6;47414:95;;48294:739;48564:3;48549:19;;48579:79;48553:9;48631:6;48579:79;;;48669:80;48745:2;48734:9;48730:18;48721:6;48669:80;;;48760;48836:2;48825:9;48821:18;48812:6;48760:80;;;48851;48927:2;48916:9;48912:18;48903:6;48851:80;;;48942:81;49018:3;49007:9;49003:19;48994:6;48942:81;;49040:293;49174:2;49188:47;;;49159:18;;49249:74;49159:18;49309:6;49249:74;;49648:407;49839:2;49853:47;;;49824:18;;49914:131;49824:18;49914:131;;50062:407;50253:2;50267:47;;;50238:18;;50328:131;50238:18;50328:131;;50476:407;50667:2;50681:47;;;50652:18;;50742:131;50652:18;50742:131;;50890:407;51081:2;51095:47;;;51066:18;;51156:131;51066:18;51156:131;;51304:407;51495:2;51509:47;;;51480:18;;51570:131;51480:18;51570:131;;51718:407;51909:2;51923:47;;;51894:18;;51984:131;51894:18;51984:131;;52132:407;52323:2;52337:47;;;52308:18;;52398:131;52308:18;52398:131;;52546:407;52737:2;52751:47;;;52722:18;;52812:131;52722:18;52812:131;;52960:407;53151:2;53165:47;;;53136:18;;53226:131;53136:18;53226:131;;53374:407;53565:2;53579:47;;;53550:18;;53640:131;53550:18;53640:131;;53788:407;53979:2;53993:47;;;53964:18;;54054:131;53964:18;54054:131;;54202:407;54393:2;54407:47;;;54378:18;;54468:131;54378:18;54468:131;;54616:407;54807:2;54821:47;;;54792:18;;54882:131;54792:18;54882:131;;55030:407;55221:2;55235:47;;;55206:18;;55296:131;55206:18;55296:131;;55444:407;55635:2;55649:47;;;55620:18;;55710:131;55620:18;55710:131;;55858:407;56049:2;56063:47;;;56034:18;;56124:131;56034:18;56124:131;;56492:368;56660:2;56645:18;;56674:71;56649:9;56718:6;56674:71;;;56756:94;56846:2;56835:9;56831:18;56822:6;56756:94;;57198:435;57372:2;57357:18;;57386:71;57361:9;57430:6;57386:71;;57640:435;57814:2;57799:18;;57828:71;57803:9;57872:6;57828:71;;58082:659;58312:3;58297:19;;58327:71;58301:9;58371:6;58327:71;;;58409:72;58477:2;58466:9;58462:18;58453:6;58409:72;;58748:205;58862:2;58847:18;;58876:67;58851:9;58916:6;58876:67;;58960:256;59022:2;59016:9;59048:17;;;59123:18;59108:34;;59144:22;;;59105:62;59102:2;;;59180:1;59177;59170:12;59102:2;59196;59189:22;59000:216;;-1:-1;59000:216;59223:304;;59382:18;59374:6;59371:30;59368:2;;;59414:1;59411;59404:12;59368:2;-1:-1;59449:4;59437:17;;;59502:15;;59305:222;59534:151;59658:4;59649:14;;59606:79;59692:137;59795:12;;59766:63;60334:178;60452:19;;;60501:4;60492:14;;60445:67;60864:145;61000:3;60978:31;-1:-1;60978:31;61017:91;;61079:24;61097:5;61079:24;;61221:85;61287:13;61280:21;;61263:43;61392:106;;61469:24;61487:5;61469:24;;62035:81;62106:4;62095:16;;62078:38;62123:129;;62210:37;62241:5;62210:37;;63758:138;;63845:46;63858:32;63884:5;63858:32;;63903:116;;63990:24;64008:5;63990:24;;64639:268;64704:1;64711:101;64725:6;64722:1;64719:13;64711:101;;;64792:11;;;64786:18;64773:11;;;64766:39;64747:2;64740:10;64711:101;;;64827:6;64824:1;64821:13;64818:2;;;-1:-1;;64892:1;64874:16;;64867:27;64688:219;64996:97;65084:2;65064:14;-1:-1;;65060:28;;65044:49;65201:117;65270:24;65288:5;65270:24;;;65263:5;65260:35;65250:2;;65309:1;65306;65299:12;65465:111;65531:21;65546:5;65531:21;;65583:117;65652:24;65670:5;65652:24;;65707:147;65791:39;65824:5;65791:39;

Swarm Source

bzzr://a366d60ad5da58d33b13bbd1ff543e55ea1ff3df98ad8824fe17b594c15949a4

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.