ETH Price: $3,451.98 (-0.83%)
Gas: 9 Gwei

Contract

0x54f667dB585b7B10347429C72c36c8B59aB441cb
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Approve203268322024-07-17 14:25:3521 hrs ago1721226335IN
0x54f667dB...59aB441cb
0 ETH0.0008753817.80748509
Approve203228262024-07-17 1:01:1134 hrs ago1721178071IN
0x54f667dB...59aB441cb
0 ETH0.000328936.69139656
Approve203210792024-07-16 19:11:2340 hrs ago1721157083IN
0x54f667dB...59aB441cb
0 ETH0.0005485911.15989238
Approve203188382024-07-16 11:41:352 days ago1721130095IN
0x54f667dB...59aB441cb
0 ETH0.000369827.52326779
Approve203138582024-07-15 18:59:592 days ago1721069999IN
0x54f667dB...59aB441cb
0 ETH0.0006865913.96707248
Transfer203138342024-07-15 18:55:112 days ago1721069711IN
0x54f667dB...59aB441cb
0 ETH0.0043652915.63639608
Transfer203027602024-07-14 5:49:594 days ago1720936199IN
0x54f667dB...59aB441cb
0 ETH0.000166813.07726386
Transfer203027202024-07-14 5:41:594 days ago1720935719IN
0x54f667dB...59aB441cb
0 ETH0.000099123.06794818
Approve202817842024-07-11 7:31:357 days ago1720683095IN
0x54f667dB...59aB441cb
0 ETH0.000229964.67230991
Approve202743842024-07-10 6:44:118 days ago1720593851IN
0x54f667dB...59aB441cb
0 ETH0.000339036.89684887
Transfer202595452024-07-08 4:55:5910 days ago1720414559IN
0x54f667dB...59aB441cb
0 ETH0.000491391.68575565
Approve202515932024-07-07 2:16:3511 days ago1720318595IN
0x54f667dB...59aB441cb
0 ETH0.000078951.60606965
Approve202513562024-07-07 1:28:3511 days ago1720315715IN
0x54f667dB...59aB441cb
0 ETH0.000097671.98450837
Approve202379752024-07-05 4:39:4713 days ago1720154387IN
0x54f667dB...59aB441cb
0 ETH0.0014505829.47267107
Approve202324502024-07-04 10:07:2314 days ago1720087643IN
0x54f667dB...59aB441cb
0 ETH0.0002951610.95477298
Approve202266412024-07-03 14:40:4714 days ago1720017647IN
0x54f667dB...59aB441cb
0 ETH0.0007265614.78024
Approve202252222024-07-03 9:55:2315 days ago1720000523IN
0x54f667dB...59aB441cb
0 ETH0.000099253.69188903
Approve202250372024-07-03 9:17:3515 days ago1719998255IN
0x54f667dB...59aB441cb
0 ETH0.000262985.38386506
Approve202230202024-07-03 2:32:2315 days ago1719973943IN
0x54f667dB...59aB441cb
0 ETH0.000088713.29990548
Transfer202223972024-07-03 0:26:5915 days ago1719966419IN
0x54f667dB...59aB441cb
0 ETH0.000629134.52105613
Approve202215192024-07-02 21:30:1115 days ago1719955811IN
0x54f667dB...59aB441cb
0 ETH0.000272645.54630001
Approve201940272024-06-29 1:21:1119 days ago1719624071IN
0x54f667dB...59aB441cb
0 ETH0.000129562.63249463
Approve201892692024-06-28 9:24:2320 days ago1719566663IN
0x54f667dB...59aB441cb
0 ETH0.000232264.71904305
Approve201892312024-06-28 9:16:4720 days ago1719566207IN
0x54f667dB...59aB441cb
0 ETH0.000174013.56071866
Approve201881652024-06-28 5:42:3520 days ago1719553355IN
0x54f667dB...59aB441cb
0 ETH0.000077652.88862029
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Contract Source Code Verified (Exact Match)

Contract Name:
GoodOldFashionedUnRegisteredSecurity

Compiler Version
v0.8.24+commit.e11b9ed9

Optimization Enabled:
No with 201 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

// File: @openzeppelin/contracts/utils/math/SignedMath.sol


// OpenZeppelin Contracts (last updated v5.0.0) (utils/math/SignedMath.sol)

pragma solidity ^0.8.20;

/**
 * @dev Standard signed math utilities missing in the Solidity language.
 */
library SignedMath {
    /**
     * @dev Returns the largest of two signed numbers.
     */
    function max(int256 a, int256 b) internal pure returns (int256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two signed numbers.
     */
    function min(int256 a, int256 b) internal pure returns (int256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two signed numbers without overflow.
     * The result is rounded towards zero.
     */
    function average(int256 a, int256 b) internal pure returns (int256) {
        // Formula from the book "Hacker's Delight"
        int256 x = (a & b) + ((a ^ b) >> 1);
        return x + (int256(uint256(x) >> 255) & (a ^ b));
    }

    /**
     * @dev Returns the absolute unsigned value of a signed value.
     */
    function abs(int256 n) internal pure returns (uint256) {
        unchecked {
            // must be unchecked in order to support `n = type(int256).min`
            return uint256(n >= 0 ? n : -n);
        }
    }
}

// File: @openzeppelin/contracts/utils/math/Math.sol


// OpenZeppelin Contracts (last updated v5.0.0) (utils/math/Math.sol)

pragma solidity ^0.8.20;

/**
 * @dev Standard math utilities missing in the Solidity language.
 */
library Math {
    /**
     * @dev Muldiv operation overflow.
     */
    error MathOverflowedMulDiv();

    enum Rounding {
        Floor, // Toward negative infinity
        Ceil, // Toward positive infinity
        Trunc, // Toward zero
        Expand // Away from zero
    }

    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

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

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

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

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

    /**
     * @dev Returns the largest of two numbers.
     */
    function max(uint256 a, uint256 b) internal pure returns (uint256) {
        return a > b ? a : b;
    }

    /**
     * @dev Returns the smallest of two numbers.
     */
    function min(uint256 a, uint256 b) internal pure returns (uint256) {
        return a < b ? a : b;
    }

    /**
     * @dev Returns the average of two numbers. The result is rounded towards
     * zero.
     */
    function average(uint256 a, uint256 b) internal pure returns (uint256) {
        // (a + b) / 2 can overflow.
        return (a & b) + (a ^ b) / 2;
    }

    /**
     * @dev Returns the ceiling of the division of two numbers.
     *
     * This differs from standard division with `/` in that it rounds towards infinity instead
     * of rounding towards zero.
     */
    function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
        if (b == 0) {
            // Guarantee the same behavior as in a regular Solidity division.
            return a / b;
        }

        // (a + b - 1) / b can overflow on addition, so we distribute.
        return a == 0 ? 0 : (a - 1) / b + 1;
    }

    /**
     * @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or
     * denominator == 0.
     * @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv) with further edits by
     * Uniswap Labs also under MIT license.
     */
    function mulDiv(uint256 x, uint256 y, uint256 denominator) internal pure returns (uint256 result) {
        unchecked {
            // 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
            // use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
            // variables such that product = prod1 * 2^256 + prod0.
            uint256 prod0 = x * y; // Least significant 256 bits of the product
            uint256 prod1; // Most significant 256 bits of the product
            assembly {
                let mm := mulmod(x, y, not(0))
                prod1 := sub(sub(mm, prod0), lt(mm, prod0))
            }

            // Handle non-overflow cases, 256 by 256 division.
            if (prod1 == 0) {
                // Solidity will revert if denominator == 0, unlike the div opcode on its own.
                // The surrounding unchecked block does not change this fact.
                // See https://docs.soliditylang.org/en/latest/control-structures.html#checked-or-unchecked-arithmetic.
                return prod0 / denominator;
            }

            // Make sure the result is less than 2^256. Also prevents denominator == 0.
            if (denominator <= prod1) {
                revert MathOverflowedMulDiv();
            }

            ///////////////////////////////////////////////
            // 512 by 256 division.
            ///////////////////////////////////////////////

            // Make division exact by subtracting the remainder from [prod1 prod0].
            uint256 remainder;
            assembly {
                // Compute remainder using mulmod.
                remainder := mulmod(x, y, denominator)

                // Subtract 256 bit number from 512 bit number.
                prod1 := sub(prod1, gt(remainder, prod0))
                prod0 := sub(prod0, remainder)
            }

            // Factor powers of two out of denominator and compute largest power of two divisor of denominator.
            // Always >= 1. See https://cs.stackexchange.com/q/138556/92363.

            uint256 twos = denominator & (0 - denominator);
            assembly {
                // Divide denominator by twos.
                denominator := div(denominator, twos)

                // Divide [prod1 prod0] by twos.
                prod0 := div(prod0, twos)

                // Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
                twos := add(div(sub(0, twos), twos), 1)
            }

            // Shift in bits from prod1 into prod0.
            prod0 |= prod1 * twos;

            // Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
            // that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
            // four bits. That is, denominator * inv = 1 mod 2^4.
            uint256 inverse = (3 * denominator) ^ 2;

            // Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also
            // works in modular arithmetic, doubling the correct bits in each step.
            inverse *= 2 - denominator * inverse; // inverse mod 2^8
            inverse *= 2 - denominator * inverse; // inverse mod 2^16
            inverse *= 2 - denominator * inverse; // inverse mod 2^32
            inverse *= 2 - denominator * inverse; // inverse mod 2^64
            inverse *= 2 - denominator * inverse; // inverse mod 2^128
            inverse *= 2 - denominator * inverse; // inverse mod 2^256

            // Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
            // This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
            // less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
            // is no longer required.
            result = prod0 * inverse;
            return result;
        }
    }

    /**
     * @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
     */
    function mulDiv(uint256 x, uint256 y, uint256 denominator, Rounding rounding) internal pure returns (uint256) {
        uint256 result = mulDiv(x, y, denominator);
        if (unsignedRoundsUp(rounding) && mulmod(x, y, denominator) > 0) {
            result += 1;
        }
        return result;
    }

    /**
     * @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded
     * towards zero.
     *
     * Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
     */
    function sqrt(uint256 a) internal pure returns (uint256) {
        if (a == 0) {
            return 0;
        }

        // For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
        //
        // We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
        // `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
        //
        // This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
        // → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
        // → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
        //
        // Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
        uint256 result = 1 << (log2(a) >> 1);

        // At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
        // since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
        // every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
        // into the expected uint128 result.
        unchecked {
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            result = (result + a / result) >> 1;
            return min(result, a / result);
        }
    }

    /**
     * @notice Calculates sqrt(a), following the selected rounding direction.
     */
    function sqrt(uint256 a, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = sqrt(a);
            return result + (unsignedRoundsUp(rounding) && result * result < a ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 2 of a positive value rounded towards zero.
     * Returns 0 if given 0.
     */
    function log2(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 128;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 64;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 32;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 16;
            }
            if (value >> 8 > 0) {
                value >>= 8;
                result += 8;
            }
            if (value >> 4 > 0) {
                value >>= 4;
                result += 4;
            }
            if (value >> 2 > 0) {
                value >>= 2;
                result += 2;
            }
            if (value >> 1 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 2, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log2(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log2(value);
            return result + (unsignedRoundsUp(rounding) && 1 << result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 10 of a positive value rounded towards zero.
     * Returns 0 if given 0.
     */
    function log10(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >= 10 ** 64) {
                value /= 10 ** 64;
                result += 64;
            }
            if (value >= 10 ** 32) {
                value /= 10 ** 32;
                result += 32;
            }
            if (value >= 10 ** 16) {
                value /= 10 ** 16;
                result += 16;
            }
            if (value >= 10 ** 8) {
                value /= 10 ** 8;
                result += 8;
            }
            if (value >= 10 ** 4) {
                value /= 10 ** 4;
                result += 4;
            }
            if (value >= 10 ** 2) {
                value /= 10 ** 2;
                result += 2;
            }
            if (value >= 10 ** 1) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 10, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log10(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log10(value);
            return result + (unsignedRoundsUp(rounding) && 10 ** result < value ? 1 : 0);
        }
    }

    /**
     * @dev Return the log in base 256 of a positive value rounded towards zero.
     * Returns 0 if given 0.
     *
     * Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
     */
    function log256(uint256 value) internal pure returns (uint256) {
        uint256 result = 0;
        unchecked {
            if (value >> 128 > 0) {
                value >>= 128;
                result += 16;
            }
            if (value >> 64 > 0) {
                value >>= 64;
                result += 8;
            }
            if (value >> 32 > 0) {
                value >>= 32;
                result += 4;
            }
            if (value >> 16 > 0) {
                value >>= 16;
                result += 2;
            }
            if (value >> 8 > 0) {
                result += 1;
            }
        }
        return result;
    }

    /**
     * @dev Return the log in base 256, following the selected rounding direction, of a positive value.
     * Returns 0 if given 0.
     */
    function log256(uint256 value, Rounding rounding) internal pure returns (uint256) {
        unchecked {
            uint256 result = log256(value);
            return result + (unsignedRoundsUp(rounding) && 1 << (result << 3) < value ? 1 : 0);
        }
    }

    /**
     * @dev Returns whether a provided rounding mode is considered rounding up for unsigned integers.
     */
    function unsignedRoundsUp(Rounding rounding) internal pure returns (bool) {
        return uint8(rounding) % 2 == 1;
    }
}

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


// OpenZeppelin Contracts (last updated v5.0.0) (utils/Strings.sol)

pragma solidity ^0.8.20;



/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant HEX_DIGITS = "0123456789abcdef";
    uint8 private constant ADDRESS_LENGTH = 20;

    /**
     * @dev The `value` string doesn't fit in the specified `length`.
     */
    error StringsInsufficientHexLength(uint256 value, uint256 length);

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        unchecked {
            uint256 length = Math.log10(value) + 1;
            string memory buffer = new string(length);
            uint256 ptr;
            /// @solidity memory-safe-assembly
            assembly {
                ptr := add(buffer, add(32, length))
            }
            while (true) {
                ptr--;
                /// @solidity memory-safe-assembly
                assembly {
                    mstore8(ptr, byte(mod(value, 10), HEX_DIGITS))
                }
                value /= 10;
                if (value == 0) break;
            }
            return buffer;
        }
    }

    /**
     * @dev Converts a `int256` to its ASCII `string` decimal representation.
     */
    function toStringSigned(int256 value) internal pure returns (string memory) {
        return string.concat(value < 0 ? "-" : "", toString(SignedMath.abs(value)));
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        unchecked {
            return toHexString(value, Math.log256(value) + 1);
        }
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        uint256 localValue = value;
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = HEX_DIGITS[localValue & 0xf];
            localValue >>= 4;
        }
        if (localValue != 0) {
            revert StringsInsufficientHexLength(value, length);
        }
        return string(buffer);
    }

    /**
     * @dev Converts an `address` with fixed length of 20 bytes to its not checksummed ASCII `string` hexadecimal
     * representation.
     */
    function toHexString(address addr) internal pure returns (string memory) {
        return toHexString(uint256(uint160(addr)), ADDRESS_LENGTH);
    }

    /**
     * @dev Returns true if the two strings are equal.
     */
    function equal(string memory a, string memory b) internal pure returns (bool) {
        return bytes(a).length == bytes(b).length && keccak256(bytes(a)) == keccak256(bytes(b));
    }
}

// File: contracts/Gofurs.sol

//SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.0;


abstract contract Ownable {
    event OwnershipTransferred(address indexed user, address indexed newOwner);

    error Unauthorized();
    error InvalidOwner();

    address public owner;

    modifier onlyOwner() virtual {
        if (msg.sender != owner) revert Unauthorized();

        _;
    }

    constructor(address _owner) {
        if (_owner == address(0)) revert InvalidOwner();

        owner = _owner;

        emit OwnershipTransferred(address(0), _owner);
    }

    function transferOwnership(address _owner) public virtual onlyOwner {
        if (_owner == address(0)) revert InvalidOwner();

        owner = _owner;

        emit OwnershipTransferred(msg.sender, _owner);
    }

    function revokeOwnership() public virtual onlyOwner {
        owner = address(0);

        emit OwnershipTransferred(msg.sender, address(0));
    }
}

abstract contract ERC721Receiver {
    function onERC721Received(
        address,
        address,
        uint256,
        bytes calldata
    ) external virtual returns (bytes4) {
        return ERC721Receiver.onERC721Received.selector;
    }
}

/// @notice ERC404
///         A gas-efficient, mixed ERC20 / ERC721 implementation
///         with native liquidity and fractionalization.
///
///         This is an experimental standard designed to integrate
///         with pre-existing ERC20 / ERC721 support as smoothly as
///         possible.
///
/// @dev    In order to support full functionality of ERC20 and ERC721
///         supply assumptions are made that slightly constraint usage.
///         Ensure decimals are sufficiently large (standard 18 recommended)
///         as ids are effectively encoded in the lowest range of amounts.
///
///         NFTs are spent on ERC20 functions in a FILO queue, this is by
///         design.
///
abstract contract ERC404 is Ownable {
    // Events
    event ERC20Transfer(
        address indexed from,
        address indexed to,
        uint256 amount
    );
    event Approval(
        address indexed owner,
        address indexed spender,
        uint256 amount
    );
    event Transfer(
        address indexed from,
        address indexed to,
        uint256 indexed id
    );
    event ERC721Approval(
        address indexed owner,
        address indexed spender,
        uint256 indexed id
    );
    event ApprovalForAll(
        address indexed owner,
        address indexed operator,
        bool approved
    );

    // Errors
    error NotFound();
    error AlreadyExists();
    error InvalidRecipient();
    error InvalidSender();
    error UnsafeRecipient();

    // Metadata
    /// @dev Token name
    string public name;

    /// @dev Token symbol
    string public symbol;

    /// @dev Decimals for fractional representation
    uint8 public immutable decimals;

    /// @dev Total supply in fractionalized representation
    uint256 public immutable totalSupply;

    /// @dev Current mint counter, monotonically increasing to ensure accurate ownership
    uint256 public minted;

    // Mappings
    /// @dev Balance of user in fractional representation
    mapping(address => uint256) public balanceOf;

    /// @dev Allowance of user in fractional representation
    mapping(address => mapping(address => uint256)) public allowance;

    /// @dev Approval in native representaion
    mapping(uint256 => address) public getApproved;

    /// @dev Approval for all in native representation
    mapping(address => mapping(address => bool)) public isApprovedForAll;

    /// @dev Owner of id in native representation
    mapping(uint256 => address) internal _ownerOf;

    /// @dev Array of owned ids in native representation
    mapping(address => uint256[]) internal _owned;

    /// @dev Tracks indices for the _owned mapping
    mapping(uint256 => uint256) internal _ownedIndex;

    /// @dev Addresses whitelisted from minting / burning for gas savings (pairs, routers, etc)
    mapping(address => bool) public whitelist;

    // Constructor
    constructor(
        string memory _name,
        string memory _symbol,
        uint8 _decimals,
        uint256 _totalNativeSupply,
        address _owner
    ) Ownable(_owner) {
        name = _name;
        symbol = _symbol;
        decimals = _decimals;
        totalSupply = _totalNativeSupply * (10 ** decimals);
    }

    /// @notice Initialization function to set pairs / etc
    ///         saving gas by avoiding mint / burn on unnecessary targets
    function setWhitelist(address target, bool state) public onlyOwner {
        whitelist[target] = state;
    }

    /// @notice Function to find owner of a given native token
    function ownerOf(uint256 id) public view virtual returns (address owner) {
        owner = _ownerOf[id];

        if (owner == address(0)) {
            revert NotFound();
        }
    }

    /// @notice tokenURI must be implemented by child contract
    function tokenURI(uint256 id) public view virtual returns (string memory);

    /// @notice Function for token approvals
    /// @dev This function assumes id / native if amount less than or equal to current max id
    function approve(
        address spender,
        uint256 amountOrId
    ) public virtual returns (bool) {
        if (amountOrId <= minted && amountOrId > 0) {
            address owner = _ownerOf[amountOrId];

            if (msg.sender != owner && !isApprovedForAll[owner][msg.sender]) {
                revert Unauthorized();
            }

            getApproved[amountOrId] = spender;

            emit Approval(owner, spender, amountOrId);
        } else {
            allowance[msg.sender][spender] = amountOrId;

            emit Approval(msg.sender, spender, amountOrId);
        }

        return true;
    }

    /// @notice Function native approvals
    function setApprovalForAll(address operator, bool approved) public virtual {
        isApprovedForAll[msg.sender][operator] = approved;

        emit ApprovalForAll(msg.sender, operator, approved);
    }

    /// @notice Function for mixed transfers
    /// @dev This function assumes id / native if amount less than or equal to current max id
    function transferFrom(
        address from,
        address to,
        uint256 amountOrId
    ) public virtual {
        if (amountOrId <= minted) {
            if (from != _ownerOf[amountOrId]) {
                revert InvalidSender();
            }

            if (to == address(0)) {
                revert InvalidRecipient();
            }

            if (
                msg.sender != from &&
                !isApprovedForAll[from][msg.sender] &&
                msg.sender != getApproved[amountOrId]
            ) {
                revert Unauthorized();
            }

            balanceOf[from] -= _getUnit();

            unchecked {
                balanceOf[to] += _getUnit();
            }

            _ownerOf[amountOrId] = to;
            delete getApproved[amountOrId];

            // update _owned for sender
            uint256 updatedId = _owned[from][_owned[from].length - 1];
            _owned[from][_ownedIndex[amountOrId]] = updatedId;
            // pop
            _owned[from].pop();
            // update index for the moved id
            _ownedIndex[updatedId] = _ownedIndex[amountOrId];
            // push token to to owned
            _owned[to].push(amountOrId);
            // update index for to owned
            _ownedIndex[amountOrId] = _owned[to].length - 1;

            emit Transfer(from, to, amountOrId);
            emit ERC20Transfer(from, to, _getUnit());
        } else {
            uint256 allowed = allowance[from][msg.sender];

            if (allowed != type(uint256).max)
                allowance[from][msg.sender] = allowed - amountOrId;

            _transfer(from, to, amountOrId);
        }
    }

    /// @notice Function for fractional transfers
    function transfer(
        address to,
        uint256 amount
    ) public virtual returns (bool) {
        return _transfer(msg.sender, to, amount);
    }

    /// @notice Function for native transfers with contract support
    function safeTransferFrom(
        address from,
        address to,
        uint256 id
    ) public virtual {
        transferFrom(from, to, id);

        if (
            to.code.length != 0 &&
            ERC721Receiver(to).onERC721Received(msg.sender, from, id, "") !=
            ERC721Receiver.onERC721Received.selector
        ) {
            revert UnsafeRecipient();
        }
    }

    /// @notice Function for native transfers with contract support and callback data
    function safeTransferFrom(
        address from,
        address to,
        uint256 id,
        bytes calldata data
    ) public virtual {
        transferFrom(from, to, id);

        if (
            to.code.length != 0 &&
            ERC721Receiver(to).onERC721Received(msg.sender, from, id, data) !=
            ERC721Receiver.onERC721Received.selector
        ) {
            revert UnsafeRecipient();
        }
    }

    /// @notice Internal function for fractional transfers
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal returns (bool) {
        uint256 unit = _getUnit();
        uint256 balanceBeforeSender = balanceOf[from];
        uint256 balanceBeforeReceiver = balanceOf[to];

        balanceOf[from] -= amount;

        unchecked {
            balanceOf[to] += amount;
        }

        // Skip burn for certain addresses to save gas
        if (!whitelist[from]) {
            uint256 tokens_to_burn = (balanceBeforeSender / unit) -
                (balanceOf[from] / unit);
            for (uint256 i = 0; i < tokens_to_burn; i++) {
                _burn(from);
            }
        }

        // Skip minting for certain addresses to save gas
        if (!whitelist[to]) {
            uint256 tokens_to_mint = (balanceOf[to] / unit) -
                (balanceBeforeReceiver / unit);
            for (uint256 i = 0; i < tokens_to_mint; i++) {
                _mint(to);
            }
        }

        emit ERC20Transfer(from, to, amount);
        return true;
    }

    // Internal utility logic
    function _getUnit() internal view returns (uint256) {
        return 10 ** decimals;
    }

    function _mint(address to) internal virtual {
        if (to == address(0)) {
            revert InvalidRecipient();
        }

        unchecked {
            minted++;
        }

        uint256 id = minted;

        if (_ownerOf[id] != address(0)) {
            revert AlreadyExists();
        }

        _ownerOf[id] = to;
        _owned[to].push(id);
        _ownedIndex[id] = _owned[to].length - 1;

        emit Transfer(address(0), to, id);
    }

    function _burn(address from) internal virtual {
        if (from == address(0)) {
            revert InvalidSender();
        }

        uint256 id = _owned[from][_owned[from].length - 1];
        _owned[from].pop();
        delete _ownedIndex[id];
        delete _ownerOf[id];
        delete getApproved[id];

        emit Transfer(from, address(0), id);
    }

    function _setNameSymbol(
        string memory _name,
        string memory _symbol
    ) internal {
        name = _name;
        symbol = _symbol;
    }
}
      
contract GoodOldFashionedUnRegisteredSecurity is ERC404 {
    string public dataURI;
    string public baseTokenURI;

    constructor(
        address _owner
    ) ERC404("Good Old Fashioned Un Registered Security", "GOFURS", 18, 10000, _owner) {
        balanceOf[_owner] = 10000 * 10 ** 18;

    }
    

    function setDataURI(string memory _dataURI) public onlyOwner {
        dataURI = _dataURI;
    }

    function setTokenURI(string memory _tokenURI) public onlyOwner {
        baseTokenURI = _tokenURI;
    }

    function setNameSymbol(
        string memory _name,
        string memory _symbol
    ) public onlyOwner {
        _setNameSymbol(_name, _symbol);
    }

    function tokenURI(uint256 id) public view override returns (string memory) {
        if (bytes(baseTokenURI).length > 0) {
            return string.concat(baseTokenURI, Strings.toString(id));
        } else {
            uint8 seed = uint8(bytes1(keccak256(abi.encodePacked(id))));
            string memory image;
            string memory name;

            if (seed <= 100) {
                image = "minty.jpeg";
                name = "Minty 'Big Bank' Burrower";
            } else if (seed <= 140) {
                image = "skyler.jpeg";
                name = "Skyler 'Buzzword' Whiskerton";
            } else if (seed <= 180) {
                image = "gizmo.jpeg";
                name = "Gizmo 'Mega Byte' Furnandez";
            } else if (seed <= 220) {
                image = "rusty.jpeg";
                name = "Rusty 'The Engine' Digwell";
            } else if (seed <= 240) {
                image = "camo.jpeg";
                name = "Camo 'Lockdown' McTunnel";    
            } else if (seed <= 255) {
                image = "neon.jpeg";
                name = "Neon 'Flash Drive' Glowpaw";
            }

            string memory jsonPreImage = string.concat(
                string.concat(
                    string.concat('{"name": "GOFURS #', Strings.toString(id)),
                    '","description":"A Good Old Fashioned Un Registered Security, enabled by ERC404.","external_url":"https://gofurs.cash","image":"'
                ),
                string.concat(dataURI, image)
            );
            string memory jsonPostImage = string.concat(
                '","attributes":[{"trait_type":"Name","value":"',
                name
            );
            string memory jsonPostTraits = '"}]}';

            return
                string.concat(
                    "data:application/json;utf8,",
                    string.concat(
                        string.concat(jsonPreImage, jsonPostImage),
                        jsonPostTraits
                    )
                );
        }
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"AlreadyExists","type":"error"},{"inputs":[],"name":"InvalidOwner","type":"error"},{"inputs":[],"name":"InvalidRecipient","type":"error"},{"inputs":[],"name":"InvalidSender","type":"error"},{"inputs":[],"name":"NotFound","type":"error"},{"inputs":[],"name":"Unauthorized","type":"error"},{"inputs":[],"name":"UnsafeRecipient","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","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":"amount","type":"uint256"}],"name":"ERC20Transfer","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"ERC721Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"id","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amountOrId","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"dataURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"owner","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"revokeOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"id","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_dataURI","type":"string"}],"name":"setDataURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"}],"name":"setNameSymbol","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_tokenURI","type":"string"}],"name":"setTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"target","type":"address"},{"internalType":"bool","name":"state","type":"bool"}],"name":"setWhitelist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"id","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amountOrId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"whitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]

60c060405234801562000010575f80fd5b506040516200453c3803806200453c8339818101604052810190620000369190620002a1565b60405180606001604052806029815260200162004513602991396040518060400160405280600681526020017f474f465552530000000000000000000000000000000000000000000000000000815250601261271084805f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603620000f3576040517f49e27cff00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35084600190816200019e919062000535565b508360029081620001b0919062000535565b508260ff1660808160ff1681525050608051600a620001d09190620007a2565b82620001dd9190620007f2565b60a08181525050505050505069021e19e0c9bab240000060045f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550506200083c565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f6200026b8262000240565b9050919050565b6200027d816200025f565b811462000288575f80fd5b50565b5f815190506200029b8162000272565b92915050565b5f60208284031215620002b957620002b86200023c565b5b5f620002c8848285016200028b565b91505092915050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806200034d57607f821691505b60208210810362000363576200036262000308565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302620003c77fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200038a565b620003d386836200038a565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f6200041d620004176200041184620003eb565b620003f4565b620003eb565b9050919050565b5f819050919050565b6200043883620003fd565b62000450620004478262000424565b84845462000396565b825550505050565b5f90565b6200046662000458565b620004738184846200042d565b505050565b5b818110156200049a576200048e5f826200045c565b60018101905062000479565b5050565b601f821115620004e957620004b38162000369565b620004be846200037b565b81016020851015620004ce578190505b620004e6620004dd856200037b565b83018262000478565b50505b505050565b5f82821c905092915050565b5f6200050b5f1984600802620004ee565b1980831691505092915050565b5f620005258383620004fa565b9150826002028217905092915050565b6200054082620002d1565b67ffffffffffffffff8111156200055c576200055b620002db565b5b62000568825462000335565b620005758282856200049e565b5f60209050601f831160018114620005ab575f841562000596578287015190505b620005a2858262000518565b86555062000611565b601f198416620005bb8662000369565b5f5b82811015620005e457848901518255600182019150602085019450602081019050620005bd565b8683101562000604578489015162000600601f891682620004fa565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f808291508390505b6001851115620006a3578086048111156200067b576200067a62000619565b5b60018516156200068b5780820291505b80810290506200069b8562000646565b94506200065b565b94509492505050565b5f82620006bd57600190506200078f565b81620006cc575f90506200078f565b8160018114620006e55760028114620006f05762000726565b60019150506200078f565b60ff84111562000705576200070462000619565b5b8360020a9150848211156200071f576200071e62000619565b5b506200078f565b5060208310610133831016604e8410600b8410161715620007605782820a9050838111156200075a576200075962000619565b5b6200078f565b6200076f848484600162000652565b9250905081840481111562000789576200078862000619565b5b81810290505b9392505050565b5f60ff82169050919050565b5f620007ae82620003eb565b9150620007bb8362000796565b9250620007ea7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620006ac565b905092915050565b5f620007fe82620003eb565b91506200080b83620003eb565b92508282026200081b81620003eb565b9150828204841483151762000835576200083462000619565b5b5092915050565b60805160a051613cae620008655f395f6108f601525f81816112c701526121a10152613cae5ff3fe608060405234801561000f575f80fd5b50600436106101a7575f3560e01c806370a08231116100f7578063c87b56dd11610095578063e0df5b6f1161006f578063e0df5b6f146104cb578063e985e9c5146104e7578063f28ca1dd14610517578063f2fde38b14610535576101a7565b8063c87b56dd1461044d578063d547cfb71461047d578063dd62ed3e1461049b576101a7565b80639b19251a116100d15780639b19251a146103b5578063a22cb465146103e5578063a9059cbb14610401578063b88d4fde14610431576101a7565b806370a08231146103495780638da5cb5b1461037957806395d89b4114610397576101a7565b80632b968958116101645780634f02c4201161013e5780634f02c420146102c3578063504334c2146102e157806353d6fd59146102fd5780636352211e14610319576101a7565b80632b9689581461027f578063313ce5671461028957806342842e0e146102a7576101a7565b806306fdde03146101ab578063081812fc146101c9578063095ea7b3146101f957806318160ddd1461022957806318d217c31461024757806323b872dd14610263575b5f80fd5b6101b3610551565b6040516101c09190612ca5565b60405180910390f35b6101e360048036038101906101de9190612d09565b6105dd565b6040516101f09190612d73565b60405180910390f35b610213600480360381019061020e9190612db6565b61060d565b6040516102209190612e0e565b60405180910390f35b6102316108f4565b60405161023e9190612e36565b60405180910390f35b610261600480360381019061025c9190612f7b565b610918565b005b61027d60048036038101906102789190612fc2565b6109af565b005b6102876111a6565b005b6102916112c5565b60405161029e919061302d565b60405180910390f35b6102c160048036038101906102bc9190612fc2565b6112e9565b005b6102cb611418565b6040516102d89190612e36565b60405180910390f35b6102fb60048036038101906102f69190613046565b61141e565b005b610317600480360381019061031291906130e6565b6114b0565b005b610333600480360381019061032e9190612d09565b61158c565b6040516103409190612d73565b60405180910390f35b610363600480360381019061035e9190613124565b61162a565b6040516103709190612e36565b60405180910390f35b61038161163f565b60405161038e9190612d73565b60405180910390f35b61039f611662565b6040516103ac9190612ca5565b60405180910390f35b6103cf60048036038101906103ca9190613124565b6116ee565b6040516103dc9190612e0e565b60405180910390f35b6103ff60048036038101906103fa91906130e6565b61170b565b005b61041b60048036038101906104169190612db6565b611803565b6040516104289190612e0e565b60405180910390f35b61044b600480360381019061044691906131ac565b611817565b005b61046760048036038101906104629190612d09565b61194c565b6040516104749190612ca5565b60405180910390f35b610485611e20565b6040516104929190612ca5565b60405180910390f35b6104b560048036038101906104b09190613230565b611eac565b6040516104c29190612e36565b60405180910390f35b6104e560048036038101906104e09190612f7b565b611ecc565b005b61050160048036038101906104fc9190613230565b611f63565b60405161050e9190612e0e565b60405180910390f35b61051f611f8d565b60405161052c9190612ca5565b60405180910390f35b61054f600480360381019061054a9190613124565b612019565b005b6001805461055e9061329b565b80601f016020809104026020016040519081016040528092919081815260200182805461058a9061329b565b80156105d55780601f106105ac576101008083540402835291602001916105d5565b820191905f5260205f20905b8154815290600101906020018083116105b857829003601f168201915b505050505081565b6006602052805f5260405f205f915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f600354821115801561061f57505f82115b15610807575f60085f8481526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614158015610716575060075f8273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b1561074d576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8360065f8581526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925856040516107f99190612e36565b60405180910390a3506108ea565b8160055f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516108e19190612e36565b60405180910390a35b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b5f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461099c576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600c90816109ab9190613468565b5050565b60035481116110675760085f8281526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614610a4d576040517fddb5de5e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ab2576040517f9c8d2cd200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614158015610b70575060075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015610bd8575060065f8281526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614155b15610c0f576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c1761219e565b60045f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254610c629190613564565b92505081905550610c7161219e565b60045f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508160085f8381526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060065f8281526020019081526020015f205f6101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690555f60095f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20600160095f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2080549050610dc79190613564565b81548110610dd857610dd7613597565b5b905f5260205f20015490508060095f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20600a5f8581526020019081526020015f205481548110610e4457610e43613597565b5b905f5260205f20018190555060095f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20805480610e9d57610e9c6135c4565b5b600190038181905f5260205f20015f90559055600a5f8381526020019081526020015f2054600a5f8381526020019081526020015f208190555060095f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2082908060018154018082558091505060019003905f5260205f20015f9091909190915055600160095f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2080549050610f859190613564565b600a5f8481526020019081526020015f2081905550818373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fe59fdd36d0d223c0c7d996db7ad796880f45e1936cb0bb7ac102e7082e03148761104c61219e565b6040516110599190612e36565b60405180910390a3506111a1565b5f60055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146111935781816111169190613564565b60055f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505b61119e8484846121d1565b50505b505050565b5f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461122a576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f805f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505f73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3565b7f000000000000000000000000000000000000000000000000000000000000000081565b6112f48383836109af565b5f8273ffffffffffffffffffffffffffffffffffffffff163b141580156113dc575063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19168273ffffffffffffffffffffffffffffffffffffffff1663150b7a023386856040518463ffffffff1660e01b815260040161137a93929190613624565b6020604051808303815f875af1158015611396573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906113ba91906136c1565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614155b15611413576040517f3da6393100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505050565b60035481565b5f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146114a2576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6114ac8282612515565b5050565b5f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611534576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600b5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b5f60085f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611625576040517fc5723b5100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6004602052805f5260405f205f915090505481565b5f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6002805461166f9061329b565b80601f016020809104026020016040519081016040528092919081815260200182805461169b9061329b565b80156116e65780601f106116bd576101008083540402835291602001916116e6565b820191905f5260205f20905b8154815290600101906020018083116116c957829003601f168201915b505050505081565b600b602052805f5260405f205f915054906101000a900460ff1681565b8060075f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117f79190612e0e565b60405180910390a35050565b5f61180f3384846121d1565b905092915050565b6118228585856109af565b5f8473ffffffffffffffffffffffffffffffffffffffff163b1415801561190e575063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19168473ffffffffffffffffffffffffffffffffffffffff1663150b7a0233888787876040518663ffffffff1660e01b81526004016118ac959493929190613718565b6020604051808303815f875af11580156118c8573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906118ec91906136c1565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614155b15611945576040517f3da6393100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5050505050565b60605f600d805461195c9061329b565b9050111561199657600d61196f83612539565b60405160200161198092919061381e565b6040516020818303038152906040529050611e1b565b5f826040516020016119a89190613861565b6040516020818303038152906040528051906020012060f81c905060608060648360ff1611611a46576040518060400160405280600a81526020017f6d696e74792e6a7065670000000000000000000000000000000000000000000081525091506040518060400160405280601981526020017f4d696e747920274269672042616e6b2720427572726f776572000000000000008152509050611cc7565b608c8360ff1611611ac6576040518060400160405280600b81526020017f736b796c65722e6a70656700000000000000000000000000000000000000000081525091506040518060400160405280601c81526020017f536b796c6572202742757a7a776f72642720576869736b6572746f6e000000008152509050611cc6565b60b48360ff1611611b46576040518060400160405280600a81526020017f67697a6d6f2e6a7065670000000000000000000000000000000000000000000081525091506040518060400160405280601b81526020017f47697a6d6f20274d656761204279746527204675726e616e64657a00000000008152509050611cc5565b60dc8360ff1611611bc6576040518060400160405280600a81526020017f72757374792e6a7065670000000000000000000000000000000000000000000081525091506040518060400160405280601a81526020017f5275737479202754686520456e67696e65272044696777656c6c0000000000008152509050611cc4565b60f08360ff1611611c46576040518060400160405280600981526020017f63616d6f2e6a706567000000000000000000000000000000000000000000000081525091506040518060400160405280601881526020017f43616d6f20274c6f636b646f776e27204d6354756e6e656c00000000000000008152509050611cc3565b60ff8360ff1611611cc2576040518060400160405280600981526020017f6e656f6e2e6a706567000000000000000000000000000000000000000000000081525091506040518060400160405280601a81526020017f4e656f6e2027466c6173682044726976652720476c6f7770617700000000000081525090505b5b5b5b5b5b5f611cd186612539565b604051602001611ce191906138a1565b604051602081830303815290604052604051602001611d009190613982565b604051602081830303815290604052600c84604051602001611d2392919061381e565b604051602081830303815290604052604051602001611d439291906139a3565b60405160208183030381529060405290505f82604051602001611d669190613a36565b60405160208183030381529060405290505f6040518060400160405280600481526020017f227d5d7d0000000000000000000000000000000000000000000000000000000081525090508282604051602001611dc39291906139a3565b60405160208183030381529060405281604051602001611de49291906139a3565b604051602081830303815290604052604051602001611e039190613a7d565b60405160208183030381529060405296505050505050505b919050565b600d8054611e2d9061329b565b80601f0160208091040260200160405190810160405280929190818152602001828054611e599061329b565b8015611ea45780601f10611e7b57610100808354040283529160200191611ea4565b820191905f5260205f20905b815481529060010190602001808311611e8757829003601f168201915b505050505081565b6005602052815f5260405f20602052805f5260405f205f91509150505481565b5f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611f50576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600d9081611f5f9190613468565b5050565b6007602052815f5260405f20602052805f5260405f205f915091509054906101000a900460ff1681565b600c8054611f9a9061329b565b80601f0160208091040260200160405190810160405280929190818152602001828054611fc69061329b565b80156120115780601f10611fe857610100808354040283529160200191612011565b820191905f5260205f20905b815481529060010190602001808311611ff457829003601f168201915b505050505081565b5f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461209d576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612102576040517f49e27cff00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350565b5f7f0000000000000000000000000000000000000000000000000000000000000000600a6121cc9190613bd1565b905090565b5f806121db61219e565b90505f60045f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490505f60045f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508460045f8973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546122ab9190613564565b925050819055508460045f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282540192505081905550600b5f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff166123cf575f8360045f8a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546123949190613c48565b84846123a09190613c48565b6123aa9190613564565b90505f5b818110156123cc576123bf89612603565b80806001019150506123ae565b50505b600b5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff166124a2575f838261242a9190613c48565b8460045f8a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546124739190613c48565b61247d9190613564565b90505f5b8181101561249f5761249288612848565b8080600101915050612481565b50505b8573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fe59fdd36d0d223c0c7d996db7ad796880f45e1936cb0bb7ac102e7082e031487876040516124ff9190612e36565b60405180910390a3600193505050509392505050565b81600190816125249190613468565b5080600290816125349190613468565b505050565b60605f600161254784612aca565b0190505f8167ffffffffffffffff81111561256557612564612e57565b5b6040519080825280601f01601f1916602001820160405280156125975781602001600182028036833780820191505090505b5090505f82602001820190505b6001156125f8578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a85816125ed576125ec613c1b565b5b0494505f85036125a4575b819350505050919050565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612668576040517fddb5de5e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f60095f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20600160095f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20805490506126f39190613564565b8154811061270457612703613597565b5b905f5260205f200154905060095f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2080548061275c5761275b6135c4565b5b600190038181905f5260205f20015f90559055600a5f8281526020019081526020015f205f905560085f8281526020019081526020015f205f6101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905560065f8281526020019081526020015f205f6101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055805f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036128ad576040517f9c8d2cd200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60035f81548092919060010191905055505f60035490505f73ffffffffffffffffffffffffffffffffffffffff1660085f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612959576040517f23369fa600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8160085f8381526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060095f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081908060018154018082558091505060019003905f5260205f20015f9091909190915055600160095f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2080549050612a569190613564565b600a5f8381526020019081526020015f2081905550808273ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b5f805f90507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612b26577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381612b1c57612b1b613c1b565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612b63576d04ee2d6d415b85acef81000000008381612b5957612b58613c1b565b5b0492506020810190505b662386f26fc100008310612b9257662386f26fc100008381612b8857612b87613c1b565b5b0492506010810190505b6305f5e1008310612bbb576305f5e1008381612bb157612bb0613c1b565b5b0492506008810190505b6127108310612be0576127108381612bd657612bd5613c1b565b5b0492506004810190505b60648310612c035760648381612bf957612bf8613c1b565b5b0492506002810190505b600a8310612c12576001810190505b80915050919050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015612c52578082015181840152602081019050612c37565b5f8484015250505050565b5f601f19601f8301169050919050565b5f612c7782612c1b565b612c818185612c25565b9350612c91818560208601612c35565b612c9a81612c5d565b840191505092915050565b5f6020820190508181035f830152612cbd8184612c6d565b905092915050565b5f604051905090565b5f80fd5b5f80fd5b5f819050919050565b612ce881612cd6565b8114612cf2575f80fd5b50565b5f81359050612d0381612cdf565b92915050565b5f60208284031215612d1e57612d1d612cce565b5b5f612d2b84828501612cf5565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f612d5d82612d34565b9050919050565b612d6d81612d53565b82525050565b5f602082019050612d865f830184612d64565b92915050565b612d9581612d53565b8114612d9f575f80fd5b50565b5f81359050612db081612d8c565b92915050565b5f8060408385031215612dcc57612dcb612cce565b5b5f612dd985828601612da2565b9250506020612dea85828601612cf5565b9150509250929050565b5f8115159050919050565b612e0881612df4565b82525050565b5f602082019050612e215f830184612dff565b92915050565b612e3081612cd6565b82525050565b5f602082019050612e495f830184612e27565b92915050565b5f80fd5b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b612e8d82612c5d565b810181811067ffffffffffffffff82111715612eac57612eab612e57565b5b80604052505050565b5f612ebe612cc5565b9050612eca8282612e84565b919050565b5f67ffffffffffffffff821115612ee957612ee8612e57565b5b612ef282612c5d565b9050602081019050919050565b828183375f83830152505050565b5f612f1f612f1a84612ecf565b612eb5565b905082815260208101848484011115612f3b57612f3a612e53565b5b612f46848285612eff565b509392505050565b5f82601f830112612f6257612f61612e4f565b5b8135612f72848260208601612f0d565b91505092915050565b5f60208284031215612f9057612f8f612cce565b5b5f82013567ffffffffffffffff811115612fad57612fac612cd2565b5b612fb984828501612f4e565b91505092915050565b5f805f60608486031215612fd957612fd8612cce565b5b5f612fe686828701612da2565b9350506020612ff786828701612da2565b925050604061300886828701612cf5565b9150509250925092565b5f60ff82169050919050565b61302781613012565b82525050565b5f6020820190506130405f83018461301e565b92915050565b5f806040838503121561305c5761305b612cce565b5b5f83013567ffffffffffffffff81111561307957613078612cd2565b5b61308585828601612f4e565b925050602083013567ffffffffffffffff8111156130a6576130a5612cd2565b5b6130b285828601612f4e565b9150509250929050565b6130c581612df4565b81146130cf575f80fd5b50565b5f813590506130e0816130bc565b92915050565b5f80604083850312156130fc576130fb612cce565b5b5f61310985828601612da2565b925050602061311a858286016130d2565b9150509250929050565b5f6020828403121561313957613138612cce565b5b5f61314684828501612da2565b91505092915050565b5f80fd5b5f80fd5b5f8083601f84011261316c5761316b612e4f565b5b8235905067ffffffffffffffff8111156131895761318861314f565b5b6020830191508360018202830111156131a5576131a4613153565b5b9250929050565b5f805f805f608086880312156131c5576131c4612cce565b5b5f6131d288828901612da2565b95505060206131e388828901612da2565b94505060406131f488828901612cf5565b935050606086013567ffffffffffffffff81111561321557613214612cd2565b5b61322188828901613157565b92509250509295509295909350565b5f806040838503121561324657613245612cce565b5b5f61325385828601612da2565b925050602061326485828601612da2565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806132b257607f821691505b6020821081036132c5576132c461326e565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026133277fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826132ec565b61333186836132ec565b95508019841693508086168417925050509392505050565b5f819050919050565b5f61336c61336761336284612cd6565b613349565b612cd6565b9050919050565b5f819050919050565b61338583613352565b61339961339182613373565b8484546132f8565b825550505050565b5f90565b6133ad6133a1565b6133b881848461337c565b505050565b5b818110156133db576133d05f826133a5565b6001810190506133be565b5050565b601f821115613420576133f1816132cb565b6133fa846132dd565b81016020851015613409578190505b61341d613415856132dd565b8301826133bd565b50505b505050565b5f82821c905092915050565b5f6134405f1984600802613425565b1980831691505092915050565b5f6134588383613431565b9150826002028217905092915050565b61347182612c1b565b67ffffffffffffffff81111561348a57613489612e57565b5b613494825461329b565b61349f8282856133df565b5f60209050601f8311600181146134d0575f84156134be578287015190505b6134c8858261344d565b86555061352f565b601f1984166134de866132cb565b5f5b82811015613505578489015182556001820191506020850194506020810190506134e0565b86831015613522578489015161351e601f891682613431565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61356e82612cd6565b915061357983612cd6565b925082820390508181111561359157613590613537565b5b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603160045260245ffd5b5f82825260208201905092915050565b50565b5f61360f5f836135f1565b915061361a82613601565b5f82019050919050565b5f6080820190506136375f830186612d64565b6136446020830185612d64565b6136516040830184612e27565b818103606083015261366281613604565b9050949350505050565b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6136a08161366c565b81146136aa575f80fd5b50565b5f815190506136bb81613697565b92915050565b5f602082840312156136d6576136d5612cce565b5b5f6136e3848285016136ad565b91505092915050565b5f6136f783856135f1565b9350613704838584612eff565b61370d83612c5d565b840190509392505050565b5f60808201905061372b5f830188612d64565b6137386020830187612d64565b6137456040830186612e27565b81810360608301526137588184866136ec565b90509695505050505050565b5f81905092915050565b5f815461377a8161329b565b6137848186613764565b9450600182165f811461379e57600181146137b3576137e5565b60ff19831686528115158202860193506137e5565b6137bc856132cb565b5f5b838110156137dd578154818901526001820191506020810190506137be565b838801955050505b50505092915050565b5f6137f882612c1b565b6138028185613764565b9350613812818560208601612c35565b80840191505092915050565b5f613829828561376e565b915061383582846137ee565b91508190509392505050565b5f819050919050565b61385b61385682612cd6565b613841565b82525050565b5f61386c828461384a565b60208201915081905092915050565b7f7b226e616d65223a2022474f4655525320230000000000000000000000000000815250565b5f6138ab8261387b565b6012820191506138bb82846137ee565b915081905092915050565b7f222c226465736372697074696f6e223a224120476f6f64204f6c6420466173685f8201527f696f6e656420556e20526567697374657265642053656375726974792c20656e60208201527f61626c6564206279204552433430342e222c2265787465726e616c5f75726c2260408201527f3a2268747470733a2f2f676f667572732e63617368222c22696d616765223a22606082015250565b5f61396c608083613764565b9150613977826138c6565b608082019050919050565b5f61398d82846137ee565b915061399882613960565b915081905092915050565b5f6139ae82856137ee565b91506139ba82846137ee565b91508190509392505050565b7f222c2261747472696275746573223a5b7b2274726169745f74797065223a224e5f8201527f616d65222c2276616c7565223a22000000000000000000000000000000000000602082015250565b5f613a20602e83613764565b9150613a2b826139c6565b602e82019050919050565b5f613a4082613a14565b9150613a4c82846137ee565b915081905092915050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b757466382c0000000000815250565b5f613a8782613a57565b601b82019150613a9782846137ee565b915081905092915050565b5f8160011c9050919050565b5f808291508390505b6001851115613af757808604811115613ad357613ad2613537565b5b6001851615613ae25780820291505b8081029050613af085613aa2565b9450613ab7565b94509492505050565b5f82613b0f5760019050613bca565b81613b1c575f9050613bca565b8160018114613b325760028114613b3c57613b6b565b6001915050613bca565b60ff841115613b4e57613b4d613537565b5b8360020a915084821115613b6557613b64613537565b5b50613bca565b5060208310610133831016604e8410600b8410161715613ba05782820a905083811115613b9b57613b9a613537565b5b613bca565b613bad8484846001613aae565b92509050818404811115613bc457613bc3613537565b5b81810290505b9392505050565b5f613bdb82612cd6565b9150613be683613012565b9250613c137fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484613b00565b905092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f613c5282612cd6565b9150613c5d83612cd6565b925082613c6d57613c6c613c1b565b5b82820490509291505056fea26469706673582212202fc7627bb3209b674d219c8434bd71f2f47a5a78ffeed0415ee14456a4d3d06464736f6c63430008180033476f6f64204f6c642046617368696f6e656420556e2052656769737465726564205365637572697479000000000000000000000000fdf2e77f113a87d419b25659e8787ab019e5e0da

Deployed Bytecode

0x608060405234801561000f575f80fd5b50600436106101a7575f3560e01c806370a08231116100f7578063c87b56dd11610095578063e0df5b6f1161006f578063e0df5b6f146104cb578063e985e9c5146104e7578063f28ca1dd14610517578063f2fde38b14610535576101a7565b8063c87b56dd1461044d578063d547cfb71461047d578063dd62ed3e1461049b576101a7565b80639b19251a116100d15780639b19251a146103b5578063a22cb465146103e5578063a9059cbb14610401578063b88d4fde14610431576101a7565b806370a08231146103495780638da5cb5b1461037957806395d89b4114610397576101a7565b80632b968958116101645780634f02c4201161013e5780634f02c420146102c3578063504334c2146102e157806353d6fd59146102fd5780636352211e14610319576101a7565b80632b9689581461027f578063313ce5671461028957806342842e0e146102a7576101a7565b806306fdde03146101ab578063081812fc146101c9578063095ea7b3146101f957806318160ddd1461022957806318d217c31461024757806323b872dd14610263575b5f80fd5b6101b3610551565b6040516101c09190612ca5565b60405180910390f35b6101e360048036038101906101de9190612d09565b6105dd565b6040516101f09190612d73565b60405180910390f35b610213600480360381019061020e9190612db6565b61060d565b6040516102209190612e0e565b60405180910390f35b6102316108f4565b60405161023e9190612e36565b60405180910390f35b610261600480360381019061025c9190612f7b565b610918565b005b61027d60048036038101906102789190612fc2565b6109af565b005b6102876111a6565b005b6102916112c5565b60405161029e919061302d565b60405180910390f35b6102c160048036038101906102bc9190612fc2565b6112e9565b005b6102cb611418565b6040516102d89190612e36565b60405180910390f35b6102fb60048036038101906102f69190613046565b61141e565b005b610317600480360381019061031291906130e6565b6114b0565b005b610333600480360381019061032e9190612d09565b61158c565b6040516103409190612d73565b60405180910390f35b610363600480360381019061035e9190613124565b61162a565b6040516103709190612e36565b60405180910390f35b61038161163f565b60405161038e9190612d73565b60405180910390f35b61039f611662565b6040516103ac9190612ca5565b60405180910390f35b6103cf60048036038101906103ca9190613124565b6116ee565b6040516103dc9190612e0e565b60405180910390f35b6103ff60048036038101906103fa91906130e6565b61170b565b005b61041b60048036038101906104169190612db6565b611803565b6040516104289190612e0e565b60405180910390f35b61044b600480360381019061044691906131ac565b611817565b005b61046760048036038101906104629190612d09565b61194c565b6040516104749190612ca5565b60405180910390f35b610485611e20565b6040516104929190612ca5565b60405180910390f35b6104b560048036038101906104b09190613230565b611eac565b6040516104c29190612e36565b60405180910390f35b6104e560048036038101906104e09190612f7b565b611ecc565b005b61050160048036038101906104fc9190613230565b611f63565b60405161050e9190612e0e565b60405180910390f35b61051f611f8d565b60405161052c9190612ca5565b60405180910390f35b61054f600480360381019061054a9190613124565b612019565b005b6001805461055e9061329b565b80601f016020809104026020016040519081016040528092919081815260200182805461058a9061329b565b80156105d55780601f106105ac576101008083540402835291602001916105d5565b820191905f5260205f20905b8154815290600101906020018083116105b857829003601f168201915b505050505081565b6006602052805f5260405f205f915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b5f600354821115801561061f57505f82115b15610807575f60085f8481526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690508073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614158015610716575060075f8273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b1561074d576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8360065f8581526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508373ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925856040516107f99190612e36565b60405180910390a3506108ea565b8160055f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925846040516108e19190612e36565b60405180910390a35b6001905092915050565b7f00000000000000000000000000000000000000000000021e19e0c9bab240000081565b5f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461099c576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600c90816109ab9190613468565b5050565b60035481116110675760085f8281526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614610a4d576040517fddb5de5e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ab2576040517f9c8d2cd200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614158015610b70575060075f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015610bd8575060065f8281526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614155b15610c0f576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610c1761219e565b60045f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254610c629190613564565b92505081905550610c7161219e565b60045f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825401925050819055508160085f8381526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060065f8281526020019081526020015f205f6101000a81549073ffffffffffffffffffffffffffffffffffffffff02191690555f60095f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20600160095f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2080549050610dc79190613564565b81548110610dd857610dd7613597565b5b905f5260205f20015490508060095f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20600a5f8581526020019081526020015f205481548110610e4457610e43613597565b5b905f5260205f20018190555060095f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20805480610e9d57610e9c6135c4565b5b600190038181905f5260205f20015f90559055600a5f8381526020019081526020015f2054600a5f8381526020019081526020015f208190555060095f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2082908060018154018082558091505060019003905f5260205f20015f9091909190915055600160095f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2080549050610f859190613564565b600a5f8481526020019081526020015f2081905550818373ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fe59fdd36d0d223c0c7d996db7ad796880f45e1936cb0bb7ac102e7082e03148761104c61219e565b6040516110599190612e36565b60405180910390a3506111a1565b5f60055f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146111935781816111169190613564565b60055f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505b61119e8484846121d1565b50505b505050565b5f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461122a576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f805f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505f73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3565b7f000000000000000000000000000000000000000000000000000000000000001281565b6112f48383836109af565b5f8273ffffffffffffffffffffffffffffffffffffffff163b141580156113dc575063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19168273ffffffffffffffffffffffffffffffffffffffff1663150b7a023386856040518463ffffffff1660e01b815260040161137a93929190613624565b6020604051808303815f875af1158015611396573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906113ba91906136c1565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614155b15611413576040517f3da6393100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505050565b60035481565b5f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff16146114a2576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6114ac8282612515565b5050565b5f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611534576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600b5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b5f60085f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690505f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611625576040517fc5723b5100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6004602052805f5260405f205f915090505481565b5f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6002805461166f9061329b565b80601f016020809104026020016040519081016040528092919081815260200182805461169b9061329b565b80156116e65780601f106116bd576101008083540402835291602001916116e6565b820191905f5260205f20905b8154815290600101906020018083116116c957829003601f168201915b505050505081565b600b602052805f5260405f205f915054906101000a900460ff1681565b8060075f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117f79190612e0e565b60405180910390a35050565b5f61180f3384846121d1565b905092915050565b6118228585856109af565b5f8473ffffffffffffffffffffffffffffffffffffffff163b1415801561190e575063150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19168473ffffffffffffffffffffffffffffffffffffffff1663150b7a0233888787876040518663ffffffff1660e01b81526004016118ac959493929190613718565b6020604051808303815f875af11580156118c8573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906118ec91906136c1565b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614155b15611945576040517f3da6393100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5050505050565b60605f600d805461195c9061329b565b9050111561199657600d61196f83612539565b60405160200161198092919061381e565b6040516020818303038152906040529050611e1b565b5f826040516020016119a89190613861565b6040516020818303038152906040528051906020012060f81c905060608060648360ff1611611a46576040518060400160405280600a81526020017f6d696e74792e6a7065670000000000000000000000000000000000000000000081525091506040518060400160405280601981526020017f4d696e747920274269672042616e6b2720427572726f776572000000000000008152509050611cc7565b608c8360ff1611611ac6576040518060400160405280600b81526020017f736b796c65722e6a70656700000000000000000000000000000000000000000081525091506040518060400160405280601c81526020017f536b796c6572202742757a7a776f72642720576869736b6572746f6e000000008152509050611cc6565b60b48360ff1611611b46576040518060400160405280600a81526020017f67697a6d6f2e6a7065670000000000000000000000000000000000000000000081525091506040518060400160405280601b81526020017f47697a6d6f20274d656761204279746527204675726e616e64657a00000000008152509050611cc5565b60dc8360ff1611611bc6576040518060400160405280600a81526020017f72757374792e6a7065670000000000000000000000000000000000000000000081525091506040518060400160405280601a81526020017f5275737479202754686520456e67696e65272044696777656c6c0000000000008152509050611cc4565b60f08360ff1611611c46576040518060400160405280600981526020017f63616d6f2e6a706567000000000000000000000000000000000000000000000081525091506040518060400160405280601881526020017f43616d6f20274c6f636b646f776e27204d6354756e6e656c00000000000000008152509050611cc3565b60ff8360ff1611611cc2576040518060400160405280600981526020017f6e656f6e2e6a706567000000000000000000000000000000000000000000000081525091506040518060400160405280601a81526020017f4e656f6e2027466c6173682044726976652720476c6f7770617700000000000081525090505b5b5b5b5b5b5f611cd186612539565b604051602001611ce191906138a1565b604051602081830303815290604052604051602001611d009190613982565b604051602081830303815290604052600c84604051602001611d2392919061381e565b604051602081830303815290604052604051602001611d439291906139a3565b60405160208183030381529060405290505f82604051602001611d669190613a36565b60405160208183030381529060405290505f6040518060400160405280600481526020017f227d5d7d0000000000000000000000000000000000000000000000000000000081525090508282604051602001611dc39291906139a3565b60405160208183030381529060405281604051602001611de49291906139a3565b604051602081830303815290604052604051602001611e039190613a7d565b60405160208183030381529060405296505050505050505b919050565b600d8054611e2d9061329b565b80601f0160208091040260200160405190810160405280929190818152602001828054611e599061329b565b8015611ea45780601f10611e7b57610100808354040283529160200191611ea4565b820191905f5260205f20905b815481529060010190602001808311611e8757829003601f168201915b505050505081565b6005602052815f5260405f20602052805f5260405f205f91509150505481565b5f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611f50576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600d9081611f5f9190613468565b5050565b6007602052815f5260405f20602052805f5260405f205f915091509054906101000a900460ff1681565b600c8054611f9a9061329b565b80601f0160208091040260200160405190810160405280929190818152602001828054611fc69061329b565b80156120115780601f10611fe857610100808354040283529160200191612011565b820191905f5260205f20905b815481529060010190602001808311611ff457829003601f168201915b505050505081565b5f8054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461209d576040517f82b4290000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612102576040517f49e27cff00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805f806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350565b5f7f0000000000000000000000000000000000000000000000000000000000000012600a6121cc9190613bd1565b905090565b5f806121db61219e565b90505f60045f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490505f60045f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508460045f8973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282546122ab9190613564565b925050819055508460045f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8282540192505081905550600b5f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff166123cf575f8360045f8a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546123949190613c48565b84846123a09190613c48565b6123aa9190613564565b90505f5b818110156123cc576123bf89612603565b80806001019150506123ae565b50505b600b5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff166124a2575f838261242a9190613c48565b8460045f8a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546124739190613c48565b61247d9190613564565b90505f5b8181101561249f5761249288612848565b8080600101915050612481565b50505b8573ffffffffffffffffffffffffffffffffffffffff168773ffffffffffffffffffffffffffffffffffffffff167fe59fdd36d0d223c0c7d996db7ad796880f45e1936cb0bb7ac102e7082e031487876040516124ff9190612e36565b60405180910390a3600193505050509392505050565b81600190816125249190613468565b5080600290816125349190613468565b505050565b60605f600161254784612aca565b0190505f8167ffffffffffffffff81111561256557612564612e57565b5b6040519080825280601f01601f1916602001820160405280156125975781602001600182028036833780820191505090505b5090505f82602001820190505b6001156125f8578080600190039150507f3031323334353637383961626364656600000000000000000000000000000000600a86061a8153600a85816125ed576125ec613c1b565b5b0494505f85036125a4575b819350505050919050565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603612668576040517fddb5de5e00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5f60095f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20600160095f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20805490506126f39190613564565b8154811061270457612703613597565b5b905f5260205f200154905060095f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2080548061275c5761275b6135c4565b5b600190038181905f5260205f20015f90559055600a5f8281526020019081526020015f205f905560085f8281526020019081526020015f205f6101000a81549073ffffffffffffffffffffffffffffffffffffffff021916905560065f8281526020019081526020015f205f6101000a81549073ffffffffffffffffffffffffffffffffffffffff0219169055805f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036128ad576040517f9c8d2cd200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60035f81548092919060010191905055505f60035490505f73ffffffffffffffffffffffffffffffffffffffff1660085f8381526020019081526020015f205f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614612959576040517f23369fa600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8160085f8381526020019081526020015f205f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060095f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081908060018154018082558091505060019003905f5260205f20015f9091909190915055600160095f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2080549050612a569190613564565b600a5f8381526020019081526020015f2081905550808273ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b5f805f90507a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008310612b26577a184f03e93ff9f4daa797ed6e38ed64bf6a1f0100000000000000008381612b1c57612b1b613c1b565b5b0492506040810190505b6d04ee2d6d415b85acef81000000008310612b63576d04ee2d6d415b85acef81000000008381612b5957612b58613c1b565b5b0492506020810190505b662386f26fc100008310612b9257662386f26fc100008381612b8857612b87613c1b565b5b0492506010810190505b6305f5e1008310612bbb576305f5e1008381612bb157612bb0613c1b565b5b0492506008810190505b6127108310612be0576127108381612bd657612bd5613c1b565b5b0492506004810190505b60648310612c035760648381612bf957612bf8613c1b565b5b0492506002810190505b600a8310612c12576001810190505b80915050919050565b5f81519050919050565b5f82825260208201905092915050565b5f5b83811015612c52578082015181840152602081019050612c37565b5f8484015250505050565b5f601f19601f8301169050919050565b5f612c7782612c1b565b612c818185612c25565b9350612c91818560208601612c35565b612c9a81612c5d565b840191505092915050565b5f6020820190508181035f830152612cbd8184612c6d565b905092915050565b5f604051905090565b5f80fd5b5f80fd5b5f819050919050565b612ce881612cd6565b8114612cf2575f80fd5b50565b5f81359050612d0381612cdf565b92915050565b5f60208284031215612d1e57612d1d612cce565b5b5f612d2b84828501612cf5565b91505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f612d5d82612d34565b9050919050565b612d6d81612d53565b82525050565b5f602082019050612d865f830184612d64565b92915050565b612d9581612d53565b8114612d9f575f80fd5b50565b5f81359050612db081612d8c565b92915050565b5f8060408385031215612dcc57612dcb612cce565b5b5f612dd985828601612da2565b9250506020612dea85828601612cf5565b9150509250929050565b5f8115159050919050565b612e0881612df4565b82525050565b5f602082019050612e215f830184612dff565b92915050565b612e3081612cd6565b82525050565b5f602082019050612e495f830184612e27565b92915050565b5f80fd5b5f80fd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b612e8d82612c5d565b810181811067ffffffffffffffff82111715612eac57612eab612e57565b5b80604052505050565b5f612ebe612cc5565b9050612eca8282612e84565b919050565b5f67ffffffffffffffff821115612ee957612ee8612e57565b5b612ef282612c5d565b9050602081019050919050565b828183375f83830152505050565b5f612f1f612f1a84612ecf565b612eb5565b905082815260208101848484011115612f3b57612f3a612e53565b5b612f46848285612eff565b509392505050565b5f82601f830112612f6257612f61612e4f565b5b8135612f72848260208601612f0d565b91505092915050565b5f60208284031215612f9057612f8f612cce565b5b5f82013567ffffffffffffffff811115612fad57612fac612cd2565b5b612fb984828501612f4e565b91505092915050565b5f805f60608486031215612fd957612fd8612cce565b5b5f612fe686828701612da2565b9350506020612ff786828701612da2565b925050604061300886828701612cf5565b9150509250925092565b5f60ff82169050919050565b61302781613012565b82525050565b5f6020820190506130405f83018461301e565b92915050565b5f806040838503121561305c5761305b612cce565b5b5f83013567ffffffffffffffff81111561307957613078612cd2565b5b61308585828601612f4e565b925050602083013567ffffffffffffffff8111156130a6576130a5612cd2565b5b6130b285828601612f4e565b9150509250929050565b6130c581612df4565b81146130cf575f80fd5b50565b5f813590506130e0816130bc565b92915050565b5f80604083850312156130fc576130fb612cce565b5b5f61310985828601612da2565b925050602061311a858286016130d2565b9150509250929050565b5f6020828403121561313957613138612cce565b5b5f61314684828501612da2565b91505092915050565b5f80fd5b5f80fd5b5f8083601f84011261316c5761316b612e4f565b5b8235905067ffffffffffffffff8111156131895761318861314f565b5b6020830191508360018202830111156131a5576131a4613153565b5b9250929050565b5f805f805f608086880312156131c5576131c4612cce565b5b5f6131d288828901612da2565b95505060206131e388828901612da2565b94505060406131f488828901612cf5565b935050606086013567ffffffffffffffff81111561321557613214612cd2565b5b61322188828901613157565b92509250509295509295909350565b5f806040838503121561324657613245612cce565b5b5f61325385828601612da2565b925050602061326485828601612da2565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f60028204905060018216806132b257607f821691505b6020821081036132c5576132c461326e565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026133277fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826132ec565b61333186836132ec565b95508019841693508086168417925050509392505050565b5f819050919050565b5f61336c61336761336284612cd6565b613349565b612cd6565b9050919050565b5f819050919050565b61338583613352565b61339961339182613373565b8484546132f8565b825550505050565b5f90565b6133ad6133a1565b6133b881848461337c565b505050565b5b818110156133db576133d05f826133a5565b6001810190506133be565b5050565b601f821115613420576133f1816132cb565b6133fa846132dd565b81016020851015613409578190505b61341d613415856132dd565b8301826133bd565b50505b505050565b5f82821c905092915050565b5f6134405f1984600802613425565b1980831691505092915050565b5f6134588383613431565b9150826002028217905092915050565b61347182612c1b565b67ffffffffffffffff81111561348a57613489612e57565b5b613494825461329b565b61349f8282856133df565b5f60209050601f8311600181146134d0575f84156134be578287015190505b6134c8858261344d565b86555061352f565b601f1984166134de866132cb565b5f5b82811015613505578489015182556001820191506020850194506020810190506134e0565b86831015613522578489015161351e601f891682613431565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61356e82612cd6565b915061357983612cd6565b925082820390508181111561359157613590613537565b5b92915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603160045260245ffd5b5f82825260208201905092915050565b50565b5f61360f5f836135f1565b915061361a82613601565b5f82019050919050565b5f6080820190506136375f830186612d64565b6136446020830185612d64565b6136516040830184612e27565b818103606083015261366281613604565b9050949350505050565b5f7fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b6136a08161366c565b81146136aa575f80fd5b50565b5f815190506136bb81613697565b92915050565b5f602082840312156136d6576136d5612cce565b5b5f6136e3848285016136ad565b91505092915050565b5f6136f783856135f1565b9350613704838584612eff565b61370d83612c5d565b840190509392505050565b5f60808201905061372b5f830188612d64565b6137386020830187612d64565b6137456040830186612e27565b81810360608301526137588184866136ec565b90509695505050505050565b5f81905092915050565b5f815461377a8161329b565b6137848186613764565b9450600182165f811461379e57600181146137b3576137e5565b60ff19831686528115158202860193506137e5565b6137bc856132cb565b5f5b838110156137dd578154818901526001820191506020810190506137be565b838801955050505b50505092915050565b5f6137f882612c1b565b6138028185613764565b9350613812818560208601612c35565b80840191505092915050565b5f613829828561376e565b915061383582846137ee565b91508190509392505050565b5f819050919050565b61385b61385682612cd6565b613841565b82525050565b5f61386c828461384a565b60208201915081905092915050565b7f7b226e616d65223a2022474f4655525320230000000000000000000000000000815250565b5f6138ab8261387b565b6012820191506138bb82846137ee565b915081905092915050565b7f222c226465736372697074696f6e223a224120476f6f64204f6c6420466173685f8201527f696f6e656420556e20526567697374657265642053656375726974792c20656e60208201527f61626c6564206279204552433430342e222c2265787465726e616c5f75726c2260408201527f3a2268747470733a2f2f676f667572732e63617368222c22696d616765223a22606082015250565b5f61396c608083613764565b9150613977826138c6565b608082019050919050565b5f61398d82846137ee565b915061399882613960565b915081905092915050565b5f6139ae82856137ee565b91506139ba82846137ee565b91508190509392505050565b7f222c2261747472696275746573223a5b7b2274726169745f74797065223a224e5f8201527f616d65222c2276616c7565223a22000000000000000000000000000000000000602082015250565b5f613a20602e83613764565b9150613a2b826139c6565b602e82019050919050565b5f613a4082613a14565b9150613a4c82846137ee565b915081905092915050565b7f646174613a6170706c69636174696f6e2f6a736f6e3b757466382c0000000000815250565b5f613a8782613a57565b601b82019150613a9782846137ee565b915081905092915050565b5f8160011c9050919050565b5f808291508390505b6001851115613af757808604811115613ad357613ad2613537565b5b6001851615613ae25780820291505b8081029050613af085613aa2565b9450613ab7565b94509492505050565b5f82613b0f5760019050613bca565b81613b1c575f9050613bca565b8160018114613b325760028114613b3c57613b6b565b6001915050613bca565b60ff841115613b4e57613b4d613537565b5b8360020a915084821115613b6557613b64613537565b5b50613bca565b5060208310610133831016604e8410600b8410161715613ba05782820a905083811115613b9b57613b9a613537565b5b613bca565b613bad8484846001613aae565b92509050818404811115613bc457613bc3613537565b5b81810290505b9392505050565b5f613bdb82612cd6565b9150613be683613012565b9250613c137fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484613b00565b905092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f613c5282612cd6565b9150613c5d83612cd6565b925082613c6d57613c6c613c1b565b5b82820490509291505056fea26469706673582212202fc7627bb3209b674d219c8434bd71f2f47a5a78ffeed0415ee14456a4d3d06464736f6c63430008180033

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

000000000000000000000000fdf2e77f113a87d419b25659e8787ab019e5e0da

-----Decoded View---------------
Arg [0] : _owner (address): 0xfDF2e77F113a87D419b25659E8787AB019e5e0DA

-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000fdf2e77f113a87d419b25659e8787ab019e5e0da


Deployed Bytecode Sourcemap

31741:2802:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22865:18;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23576:46;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25407:642;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23101:36;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32063:98;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;26456:1716;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20862:151;;;:::i;:::-;;23001:31;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28468:405;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23236:21;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32283:158;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24736:111;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24919:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23342:44;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20303:20;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22919;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24187:41;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26100:207;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28231:160;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28968:437;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;32449:2091;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31832:26;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23456:64;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;32169:106;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23687:68;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31804:21;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20635:219;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22865:18;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;23576:46::-;;;;;;;;;;;;;;;;;;;;;;:::o;25407:642::-;25510:4;25545:6;;25531:10;:20;;:38;;;;;25568:1;25555:10;:14;25531:38;25527:491;;;25586:13;25602:8;:20;25611:10;25602:20;;;;;;;;;;;;;;;;;;;;;25586:36;;25657:5;25643:19;;:10;:19;;;;:59;;;;;25667:16;:23;25684:5;25667:23;;;;;;;;;;;;;;;:35;25691:10;25667:35;;;;;;;;;;;;;;;;;;;;;;;;;25666:36;25643:59;25639:121;;;25730:14;;;;;;;;;;;;;;25639:121;25802:7;25776:11;:23;25788:10;25776:23;;;;;;;;;;;;:33;;;;;;;;;;;;;;;;;;25847:7;25831:36;;25840:5;25831:36;;;25856:10;25831:36;;;;;;:::i;:::-;;;;;;;;25571:308;25527:491;;;25933:10;25900:9;:21;25910:10;25900:21;;;;;;;;;;;;;;;:30;25922:7;25900:30;;;;;;;;;;;;;;;:43;;;;25986:7;25965:41;;25974:10;25965:41;;;25995:10;25965:41;;;;;;:::i;:::-;;;;;;;;25527:491;26037:4;26030:11;;25407:642;;;;:::o;23101:36::-;;;:::o;32063:98::-;20390:5;;;;;;;;;;20376:19;;:10;:19;;;20372:46;;20404:14;;;;;;;;;;;;;;20372:46;32145:8:::1;32135:7;:18;;;;;;:::i;:::-;;32063:98:::0;:::o;26456:1716::-;26602:6;;26588:10;:20;26584:1581;;26637:8;:20;26646:10;26637:20;;;;;;;;;;;;;;;;;;;;;26629:28;;:4;:28;;;26625:91;;26685:15;;;;;;;;;;;;;;26625:91;26750:1;26736:16;;:2;:16;;;26732:82;;26780:18;;;;;;;;;;;;;;26732:82;26866:4;26852:18;;:10;:18;;;;:74;;;;;26892:16;:22;26909:4;26892:22;;;;;;;;;;;;;;;:34;26915:10;26892:34;;;;;;;;;;;;;;;;;;;;;;;;;26891:35;26852:74;:132;;;;;26961:11;:23;26973:10;26961:23;;;;;;;;;;;;;;;;;;;;;26947:37;;:10;:37;;;;26852:132;26830:226;;;27026:14;;;;;;;;;;;;;;26830:226;27091:10;:8;:10::i;:::-;27072:9;:15;27082:4;27072:15;;;;;;;;;;;;;;;;:29;;;;;;;:::i;:::-;;;;;;;;27164:10;:8;:10::i;:::-;27147:9;:13;27157:2;27147:13;;;;;;;;;;;;;;;;:27;;;;;;;;;;;27229:2;27206:8;:20;27215:10;27206:20;;;;;;;;;;;;:25;;;;;;;;;;;;;;;;;;27253:11;:23;27265:10;27253:23;;;;;;;;;;;;27246:30;;;;;;;;;;;27334:17;27354:6;:12;27361:4;27354:12;;;;;;;;;;;;;;;27389:1;27367:6;:12;27374:4;27367:12;;;;;;;;;;;;;;;:19;;;;:23;;;;:::i;:::-;27354:37;;;;;;;;:::i;:::-;;;;;;;;;;27334:57;;27446:9;27406:6;:12;27413:4;27406:12;;;;;;;;;;;;;;;27419:11;:23;27431:10;27419:23;;;;;;;;;;;;27406:37;;;;;;;;:::i;:::-;;;;;;;;;:49;;;;27490:6;:12;27497:4;27490:12;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;27594:11;:23;27606:10;27594:23;;;;;;;;;;;;27569:11;:22;27581:9;27569:22;;;;;;;;;;;:48;;;;27671:6;:10;27678:2;27671:10;;;;;;;;;;;;;;;27687;27671:27;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27801:1;27781:6;:10;27788:2;27781:10;;;;;;;;;;;;;;;:17;;;;:21;;;;:::i;:::-;27755:11;:23;27767:10;27755:23;;;;;;;;;;;:47;;;;27843:10;27839:2;27824:30;;27833:4;27824:30;;;;;;;;;;;;27894:2;27874:35;;27888:4;27874:35;;;27898:10;:8;:10::i;:::-;27874:35;;;;;;:::i;:::-;;;;;;;;26610:1311;26584:1581;;;27942:15;27960:9;:15;27970:4;27960:15;;;;;;;;;;;;;;;:27;27976:10;27960:27;;;;;;;;;;;;;;;;27942:45;;28019:17;28008:7;:28;28004:101;;28095:10;28085:7;:20;;;;:::i;:::-;28055:9;:15;28065:4;28055:15;;;;;;;;;;;;;;;:27;28071:10;28055:27;;;;;;;;;;;;;;;:50;;;;28004:101;28122:31;28132:4;28138:2;28142:10;28122:9;:31::i;:::-;;27927:238;26584:1581;26456:1716;;;:::o;20862:151::-;20390:5;;;;;;;;;;20376:19;;:10;:19;;;20372:46;;20404:14;;;;;;;;;;;;;;20372:46;20941:1:::1;20925:5:::0;::::1;:18;;;;;;;;;;;;;;;;;;21002:1;20961:44;;20982:10;20961:44;;;;;;;;;;;;20862:151::o:0;23001:31::-;;;:::o;28468:405::-;28592:26;28605:4;28611:2;28615;28592:12;:26::i;:::-;28667:1;28649:2;:14;;;:19;;:154;;;;;28763:40;;;28685:118;;;28700:2;28685:35;;;28721:10;28733:4;28739:2;28685:61;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:118;;;;;28649:154;28631:235;;;28837:17;;;;;;;;;;;;;;28631:235;28468:405;;;:::o;23236:21::-;;;;:::o;32283:158::-;20390:5;;;;;;;;;;20376:19;;:10;:19;;;20372:46;;20404:14;;;;;;;;;;;;;;20372:46;32403:30:::1;32418:5;32425:7;32403:14;:30::i;:::-;32283:158:::0;;:::o;24736:111::-;20390:5;;;;;;;;;;20376:19;;:10;:19;;;20372:46;;20404:14;;;;;;;;;;;;;;20372:46;24834:5:::1;24814:9;:17;24824:6;24814:17;;;;;;;;;;;;;;;;:25;;;;;;;;;;;;;;;;;;24736:111:::0;;:::o;24919:193::-;24977:13;25011:8;:12;25020:2;25011:12;;;;;;;;;;;;;;;;;;;;;25003:20;;25057:1;25040:19;;:5;:19;;;25036:69;;25083:10;;;;;;;;;;;;;;25036:69;24919:193;;;:::o;23342:44::-;;;;;;;;;;;;;;;;;:::o;20303:20::-;;;;;;;;;;;;:::o;22919:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;24187:41::-;;;;;;;;;;;;;;;;;;;;;;:::o;26100:207::-;26227:8;26186:16;:28;26203:10;26186:28;;;;;;;;;;;;;;;:38;26215:8;26186:38;;;;;;;;;;;;;;;;:49;;;;;;;;;;;;;;;;;;26280:8;26253:46;;26268:10;26253:46;;;26290:8;26253:46;;;;;;:::i;:::-;;;;;;;;26100:207;;:::o;28231:160::-;28326:4;28350:33;28360:10;28372:2;28376:6;28350:9;:33::i;:::-;28343:40;;28231:160;;;;:::o;28968:437::-;29122:26;29135:4;29141:2;29145;29122:12;:26::i;:::-;29197:1;29179:2;:14;;;:19;;:156;;;;;29295:40;;;29215:120;;;29230:2;29215:35;;;29251:10;29263:4;29269:2;29273:4;;29215:63;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:120;;;;;29179:156;29161:237;;;29369:17;;;;;;;;;;;;;;29161:237;28968:437;;;;;:::o;32449:2091::-;32509:13;32568:1;32545:12;32539:26;;;;;:::i;:::-;;;:30;32535:1998;;;32607:12;32621:20;32638:2;32621:16;:20::i;:::-;32593:49;;;;;;;;;:::i;:::-;;;;;;;;;;;;;32586:56;;;;32535:1998;32675:10;32728:2;32711:20;;;;;;;;:::i;:::-;;;;;;;;;;;;;32701:31;;;;;;32688:46;;32675:59;;32749:19;32783:18;32830:3;32822:4;:11;;;32818:789;;32854:20;;;;;;;;;;;;;;;;;;;32893:34;;;;;;;;;;;;;;;;;;;32818:789;;;32961:3;32953:4;:11;;;32949:658;;32985:21;;;;;;;;;;;;;;;;;;;33025:37;;;;;;;;;;;;;;;;;;;32949:658;;;33096:3;33088:4;:11;;;33084:523;;33120:20;;;;;;;;;;;;;;;;;;;33159:36;;;;;;;;;;;;;;;;;;;33084:523;;;33229:3;33221:4;:11;;;33217:390;;33253:20;;;;;;;;;;;;;;;;;;;33292:35;;;;;;;;;;;;;;;;;;;33217:390;;;33361:3;33353:4;:11;;;33349:258;;33385:19;;;;;;;;;;;;;;;;;;;33423:33;;;;;;;;;;;;;;;;;;;33349:258;;;33494:3;33486:4;:11;;;33482:125;;33518:19;;;;;;;;;;;;;;;;;;;33556:35;;;;;;;;;;;;;;;;;;;33482:125;33349:258;33217:390;33084:523;32949:658;32818:789;33623:26;33756:20;33773:2;33756:16;:20::i;:::-;33720:57;;;;;;;;:::i;:::-;;;;;;;;;;;;;33684:265;;;;;;;;:::i;:::-;;;;;;;;;;;;;33982:7;33991:5;33968:29;;;;;;;;;:::i;:::-;;;;;;;;;;;;;33652:360;;;;;;;;;:::i;:::-;;;;;;;;;;;;;33623:389;;34027:27;34156:4;34057:118;;;;;;;;:::i;:::-;;;;;;;;;;;;;34027:148;;34190:28;:37;;;;;;;;;;;;;;;;;;;34410:12;34424:13;34396:42;;;;;;;;;:::i;:::-;;;;;;;;;;;;;34465:14;34356:146;;;;;;;;;:::i;:::-;;;;;;;;;;;;;34268:253;;;;;;;;:::i;:::-;;;;;;;;;;;;;34244:277;;;;;;;;32449:2091;;;;:::o;31832:26::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;23456:64::-;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;32169:106::-;20390:5;;;;;;;;;;20376:19;;:10;:19;;;20372:46;;20404:14;;;;;;;;;;;;;;20372:46;32258:9:::1;32243:12;:24;;;;;;:::i;:::-;;32169:106:::0;:::o;23687:68::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;31804:21::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;20635:219::-;20390:5;;;;;;;;;;20376:19;;:10;:19;;;20372:46;;20404:14;;;;;;;;;;;;;;20372:46;20736:1:::1;20718:20;;:6;:20;;::::0;20714:47:::1;;20747:14;;;;;;;;;;;;;;20714:47;20782:6;20774:5;::::0;:14:::1;;;;;;;;;;;;;;;;;;20839:6;20806:40;;20827:10;20806:40;;;;;;;;;;;;20635:219:::0;:::o;30605:92::-;30648:7;30681:8;30675:2;:14;;;;:::i;:::-;30668:21;;30605:92;:::o;29473:1093::-;29586:4;29603:12;29618:10;:8;:10::i;:::-;29603:25;;29639:27;29669:9;:15;29679:4;29669:15;;;;;;;;;;;;;;;;29639:45;;29695:29;29727:9;:13;29737:2;29727:13;;;;;;;;;;;;;;;;29695:45;;29772:6;29753:9;:15;29763:4;29753:15;;;;;;;;;;;;;;;;:25;;;;;;;:::i;:::-;;;;;;;;29833:6;29816:9;:13;29826:2;29816:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;29924:9;:15;29934:4;29924:15;;;;;;;;;;;;;;;;;;;;;;;;;29919:251;;29956:22;30048:4;30030:9;:15;30040:4;30030:15;;;;;;;;;;;;;;;;:22;;;;:::i;:::-;30004:4;29982:19;:26;;;;:::i;:::-;29981:72;;;;:::i;:::-;29956:97;;30073:9;30068:91;30092:14;30088:1;:18;30068:91;;;30132:11;30138:4;30132:5;:11::i;:::-;30108:3;;;;;;;30068:91;;;;29941:229;29919:251;30246:9;:13;30256:2;30246:13;;;;;;;;;;;;;;;;;;;;;;;;;30241:247;;30276:22;30368:4;30344:21;:28;;;;:::i;:::-;30318:4;30302:9;:13;30312:2;30302:13;;;;;;;;;;;;;;;;:20;;;;:::i;:::-;30301:72;;;;:::i;:::-;30276:97;;30393:9;30388:89;30412:14;30408:1;:18;30388:89;;;30452:9;30458:2;30452:5;:9::i;:::-;30428:3;;;;;;;30388:89;;;;30261:227;30241:247;30525:2;30505:31;;30519:4;30505:31;;;30529:6;30505:31;;;;;;:::i;:::-;;;;;;;;30554:4;30547:11;;;;;29473:1093;;;;;:::o;31568:160::-;31688:5;31681:4;:12;;;;;;:::i;:::-;;31713:7;31704:6;:16;;;;;;:::i;:::-;;31568:160;;:::o;17495:718::-;17551:13;17602:14;17639:1;17619:17;17630:5;17619:10;:17::i;:::-;:21;17602:38;;17655:20;17689:6;17678:18;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17655:41;;17711:11;17840:6;17836:2;17832:15;17824:6;17820:28;17813:35;;17877:290;17884:4;17877:290;;;17909:5;;;;;;;;18051:10;18046:2;18039:5;18035:14;18030:32;18025:3;18017:46;18109:2;18100:11;;;;;;:::i;:::-;;;;;18143:1;18134:5;:10;17877:290;18130:21;17877:290;18188:6;18181:13;;;;;17495:718;;;:::o;31187:373::-;31264:1;31248:18;;:4;:18;;;31244:73;;31290:15;;;;;;;;;;;;;;31244:73;31329:10;31342:6;:12;31349:4;31342:12;;;;;;;;;;;;;;;31377:1;31355:6;:12;31362:4;31355:12;;;;;;;;;;;;;;;:19;;;;:23;;;;:::i;:::-;31342:37;;;;;;;;:::i;:::-;;;;;;;;;;31329:50;;31390:6;:12;31397:4;31390:12;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;31426:11;:15;31438:2;31426:15;;;;;;;;;;;31419:22;;;31459:8;:12;31468:2;31459:12;;;;;;;;;;;;31452:19;;;;;;;;;;;31489:11;:15;31501:2;31489:15;;;;;;;;;;;;31482:22;;;;;;;;;;;31549:2;31545:1;31522:30;;31531:4;31522:30;;;;;;;;;;;;31233:327;31187:373;:::o;30705:474::-;30778:1;30764:16;;:2;:16;;;30760:74;;30804:18;;;;;;;;;;;;;;30760:74;30871:6;;:8;;;;;;;;;;;;;30903:10;30916:6;;30903:19;;30963:1;30939:26;;:8;:12;30948:2;30939:12;;;;;;;;;;;;;;;;;;;;;:26;;;30935:81;;30989:15;;;;;;;;;;;;;;30935:81;31043:2;31028:8;:12;31037:2;31028:12;;;;;;;;;;;;:17;;;;;;;;;;;;;;;;;;31056:6;:10;31063:2;31056:10;;;;;;;;;;;;;;;31072:2;31056:19;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31124:1;31104:6;:10;31111:2;31104:10;;;;;;;;;;;;;;;:17;;;;:21;;;;:::i;:::-;31086:11;:15;31098:2;31086:15;;;;;;;;;;;:39;;;;31168:2;31164;31143:28;;31160:1;31143:28;;;;;;;;;;;;30749:430;30705:474;:::o;13899:948::-;13952:7;13972:14;13989:1;13972:18;;14039:8;14030:5;:17;14026:106;;14077:8;14068:17;;;;;;:::i;:::-;;;;;14114:2;14104:12;;;;14026:106;14159:8;14150:5;:17;14146:106;;14197:8;14188:17;;;;;;:::i;:::-;;;;;14234:2;14224:12;;;;14146:106;14279:8;14270:5;:17;14266:106;;14317:8;14308:17;;;;;;:::i;:::-;;;;;14354:2;14344:12;;;;14266:106;14399:7;14390:5;:16;14386:103;;14436:7;14427:16;;;;;;:::i;:::-;;;;;14472:1;14462:11;;;;14386:103;14516:7;14507:5;:16;14503:103;;14553:7;14544:16;;;;;;:::i;:::-;;;;;14589:1;14579:11;;;;14503:103;14633:7;14624:5;:16;14620:103;;14670:7;14661:16;;;;;;:::i;:::-;;;;;14706:1;14696:11;;;;14620:103;14750:7;14741:5;:16;14737:68;;14788:1;14778:11;;;;14737:68;14833:6;14826:13;;;13899:948;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1349:75::-;1382:6;1415:2;1409:9;1399:19;;1349:75;:::o;1430:117::-;1539:1;1536;1529:12;1553:117;1662:1;1659;1652:12;1676:77;1713:7;1742:5;1731:16;;1676:77;;;:::o;1759:122::-;1832:24;1850:5;1832:24;:::i;:::-;1825:5;1822:35;1812:63;;1871:1;1868;1861:12;1812:63;1759:122;:::o;1887:139::-;1933:5;1971:6;1958:20;1949:29;;1987:33;2014:5;1987:33;:::i;:::-;1887:139;;;;:::o;2032:329::-;2091:6;2140:2;2128:9;2119:7;2115:23;2111:32;2108:119;;;2146:79;;:::i;:::-;2108:119;2266:1;2291:53;2336:7;2327:6;2316:9;2312:22;2291:53;:::i;:::-;2281:63;;2237:117;2032:329;;;;:::o;2367:126::-;2404:7;2444:42;2437:5;2433:54;2422:65;;2367:126;;;:::o;2499:96::-;2536:7;2565:24;2583:5;2565:24;:::i;:::-;2554:35;;2499:96;;;:::o;2601:118::-;2688:24;2706:5;2688:24;:::i;:::-;2683:3;2676:37;2601:118;;:::o;2725:222::-;2818:4;2856:2;2845:9;2841:18;2833:26;;2869:71;2937:1;2926:9;2922:17;2913:6;2869:71;:::i;:::-;2725:222;;;;:::o;2953:122::-;3026:24;3044:5;3026:24;:::i;:::-;3019:5;3016:35;3006:63;;3065:1;3062;3055:12;3006:63;2953:122;:::o;3081:139::-;3127:5;3165:6;3152:20;3143:29;;3181:33;3208:5;3181:33;:::i;:::-;3081:139;;;;:::o;3226:474::-;3294:6;3302;3351:2;3339:9;3330:7;3326:23;3322:32;3319:119;;;3357:79;;:::i;:::-;3319:119;3477:1;3502:53;3547:7;3538:6;3527:9;3523:22;3502:53;:::i;:::-;3492:63;;3448:117;3604:2;3630:53;3675:7;3666:6;3655:9;3651:22;3630:53;:::i;:::-;3620:63;;3575:118;3226:474;;;;;:::o;3706:90::-;3740:7;3783:5;3776:13;3769:21;3758:32;;3706:90;;;:::o;3802:109::-;3883:21;3898:5;3883:21;:::i;:::-;3878:3;3871:34;3802:109;;:::o;3917:210::-;4004:4;4042:2;4031:9;4027:18;4019:26;;4055:65;4117:1;4106:9;4102:17;4093:6;4055:65;:::i;:::-;3917:210;;;;:::o;4133:118::-;4220:24;4238:5;4220:24;:::i;:::-;4215:3;4208:37;4133:118;;:::o;4257:222::-;4350:4;4388:2;4377:9;4373:18;4365:26;;4401:71;4469:1;4458:9;4454:17;4445:6;4401:71;:::i;:::-;4257:222;;;;:::o;4485:117::-;4594:1;4591;4584:12;4608:117;4717:1;4714;4707:12;4731:180;4779:77;4776:1;4769:88;4876:4;4873:1;4866:15;4900:4;4897:1;4890:15;4917:281;5000:27;5022:4;5000:27;:::i;:::-;4992:6;4988:40;5130:6;5118:10;5115:22;5094:18;5082:10;5079:34;5076:62;5073:88;;;5141:18;;:::i;:::-;5073:88;5181:10;5177:2;5170:22;4960:238;4917:281;;:::o;5204:129::-;5238:6;5265:20;;:::i;:::-;5255:30;;5294:33;5322:4;5314:6;5294:33;:::i;:::-;5204:129;;;:::o;5339:308::-;5401:4;5491:18;5483:6;5480:30;5477:56;;;5513:18;;:::i;:::-;5477:56;5551:29;5573:6;5551:29;:::i;:::-;5543:37;;5635:4;5629;5625:15;5617:23;;5339:308;;;:::o;5653:146::-;5750:6;5745:3;5740;5727:30;5791:1;5782:6;5777:3;5773:16;5766:27;5653:146;;;:::o;5805:425::-;5883:5;5908:66;5924:49;5966:6;5924:49;:::i;:::-;5908:66;:::i;:::-;5899:75;;5997:6;5990:5;5983:21;6035:4;6028:5;6024:16;6073:3;6064:6;6059:3;6055:16;6052:25;6049:112;;;6080:79;;:::i;:::-;6049:112;6170:54;6217:6;6212:3;6207;6170:54;:::i;:::-;5889:341;5805:425;;;;;:::o;6250:340::-;6306:5;6355:3;6348:4;6340:6;6336:17;6332:27;6322:122;;6363:79;;:::i;:::-;6322:122;6480:6;6467:20;6505:79;6580:3;6572:6;6565:4;6557:6;6553:17;6505:79;:::i;:::-;6496:88;;6312:278;6250:340;;;;:::o;6596:509::-;6665:6;6714:2;6702:9;6693:7;6689:23;6685:32;6682:119;;;6720:79;;:::i;:::-;6682:119;6868:1;6857:9;6853:17;6840:31;6898:18;6890:6;6887:30;6884:117;;;6920:79;;:::i;:::-;6884:117;7025:63;7080:7;7071:6;7060:9;7056:22;7025:63;:::i;:::-;7015:73;;6811:287;6596:509;;;;:::o;7111:619::-;7188:6;7196;7204;7253:2;7241:9;7232:7;7228:23;7224:32;7221:119;;;7259:79;;:::i;:::-;7221:119;7379:1;7404:53;7449:7;7440:6;7429:9;7425:22;7404:53;:::i;:::-;7394:63;;7350:117;7506:2;7532:53;7577:7;7568:6;7557:9;7553:22;7532:53;:::i;:::-;7522:63;;7477:118;7634:2;7660:53;7705:7;7696:6;7685:9;7681:22;7660:53;:::i;:::-;7650:63;;7605:118;7111:619;;;;;:::o;7736:86::-;7771:7;7811:4;7804:5;7800:16;7789:27;;7736:86;;;:::o;7828:112::-;7911:22;7927:5;7911:22;:::i;:::-;7906:3;7899:35;7828:112;;:::o;7946:214::-;8035:4;8073:2;8062:9;8058:18;8050:26;;8086:67;8150:1;8139:9;8135:17;8126:6;8086:67;:::i;:::-;7946:214;;;;:::o;8166:834::-;8254:6;8262;8311:2;8299:9;8290:7;8286:23;8282:32;8279:119;;;8317:79;;:::i;:::-;8279:119;8465:1;8454:9;8450:17;8437:31;8495:18;8487:6;8484:30;8481:117;;;8517:79;;:::i;:::-;8481:117;8622:63;8677:7;8668:6;8657:9;8653:22;8622:63;:::i;:::-;8612:73;;8408:287;8762:2;8751:9;8747:18;8734:32;8793:18;8785:6;8782:30;8779:117;;;8815:79;;:::i;:::-;8779:117;8920:63;8975:7;8966:6;8955:9;8951:22;8920:63;:::i;:::-;8910:73;;8705:288;8166:834;;;;;:::o;9006:116::-;9076:21;9091:5;9076:21;:::i;:::-;9069:5;9066:32;9056:60;;9112:1;9109;9102:12;9056:60;9006:116;:::o;9128:133::-;9171:5;9209:6;9196:20;9187:29;;9225:30;9249:5;9225:30;:::i;:::-;9128:133;;;;:::o;9267:468::-;9332:6;9340;9389:2;9377:9;9368:7;9364:23;9360:32;9357:119;;;9395:79;;:::i;:::-;9357:119;9515:1;9540:53;9585:7;9576:6;9565:9;9561:22;9540:53;:::i;:::-;9530:63;;9486:117;9642:2;9668:50;9710:7;9701:6;9690:9;9686:22;9668:50;:::i;:::-;9658:60;;9613:115;9267:468;;;;;:::o;9741:329::-;9800:6;9849:2;9837:9;9828:7;9824:23;9820:32;9817:119;;;9855:79;;:::i;:::-;9817:119;9975:1;10000:53;10045:7;10036:6;10025:9;10021:22;10000:53;:::i;:::-;9990:63;;9946:117;9741:329;;;;:::o;10076:117::-;10185:1;10182;10175:12;10199:117;10308:1;10305;10298:12;10335:552;10392:8;10402:6;10452:3;10445:4;10437:6;10433:17;10429:27;10419:122;;10460:79;;:::i;:::-;10419:122;10573:6;10560:20;10550:30;;10603:18;10595:6;10592:30;10589:117;;;10625:79;;:::i;:::-;10589:117;10739:4;10731:6;10727:17;10715:29;;10793:3;10785:4;10777:6;10773:17;10763:8;10759:32;10756:41;10753:128;;;10800:79;;:::i;:::-;10753:128;10335:552;;;;;:::o;10893:963::-;10990:6;10998;11006;11014;11022;11071:3;11059:9;11050:7;11046:23;11042:33;11039:120;;;11078:79;;:::i;:::-;11039:120;11198:1;11223:53;11268:7;11259:6;11248:9;11244:22;11223:53;:::i;:::-;11213:63;;11169:117;11325:2;11351:53;11396:7;11387:6;11376:9;11372:22;11351:53;:::i;:::-;11341:63;;11296:118;11453:2;11479:53;11524:7;11515:6;11504:9;11500:22;11479:53;:::i;:::-;11469:63;;11424:118;11609:2;11598:9;11594:18;11581:32;11640:18;11632:6;11629:30;11626:117;;;11662:79;;:::i;:::-;11626:117;11775:64;11831:7;11822:6;11811:9;11807:22;11775:64;:::i;:::-;11757:82;;;;11552:297;10893:963;;;;;;;;:::o;11862:474::-;11930:6;11938;11987:2;11975:9;11966:7;11962:23;11958:32;11955:119;;;11993:79;;:::i;:::-;11955:119;12113:1;12138:53;12183:7;12174:6;12163:9;12159:22;12138:53;:::i;:::-;12128:63;;12084:117;12240:2;12266:53;12311:7;12302:6;12291:9;12287:22;12266:53;:::i;:::-;12256:63;;12211:118;11862:474;;;;;:::o;12342:180::-;12390:77;12387:1;12380:88;12487:4;12484:1;12477:15;12511:4;12508:1;12501:15;12528:320;12572:6;12609:1;12603:4;12599:12;12589:22;;12656:1;12650:4;12646:12;12677:18;12667:81;;12733:4;12725:6;12721:17;12711:27;;12667:81;12795:2;12787:6;12784:14;12764:18;12761:38;12758:84;;12814:18;;:::i;:::-;12758:84;12579:269;12528:320;;;:::o;12854:141::-;12903:4;12926:3;12918:11;;12949:3;12946:1;12939:14;12983:4;12980:1;12970:18;12962:26;;12854:141;;;:::o;13001:93::-;13038:6;13085:2;13080;13073:5;13069:14;13065:23;13055:33;;13001:93;;;:::o;13100:107::-;13144:8;13194:5;13188:4;13184:16;13163:37;;13100:107;;;;:::o;13213:393::-;13282:6;13332:1;13320:10;13316:18;13355:97;13385:66;13374:9;13355:97;:::i;:::-;13473:39;13503:8;13492:9;13473:39;:::i;:::-;13461:51;;13545:4;13541:9;13534:5;13530:21;13521:30;;13594:4;13584:8;13580:19;13573:5;13570:30;13560:40;;13289:317;;13213:393;;;;;:::o;13612:60::-;13640:3;13661:5;13654:12;;13612:60;;;:::o;13678:142::-;13728:9;13761:53;13779:34;13788:24;13806:5;13788:24;:::i;:::-;13779:34;:::i;:::-;13761:53;:::i;:::-;13748:66;;13678:142;;;:::o;13826:75::-;13869:3;13890:5;13883:12;;13826:75;;;:::o;13907:269::-;14017:39;14048:7;14017:39;:::i;:::-;14078:91;14127:41;14151:16;14127:41;:::i;:::-;14119:6;14112:4;14106:11;14078:91;:::i;:::-;14072:4;14065:105;13983:193;13907:269;;;:::o;14182:73::-;14227:3;14182:73;:::o;14261:189::-;14338:32;;:::i;:::-;14379:65;14437:6;14429;14423:4;14379:65;:::i;:::-;14314:136;14261:189;;:::o;14456:186::-;14516:120;14533:3;14526:5;14523:14;14516:120;;;14587:39;14624:1;14617:5;14587:39;:::i;:::-;14560:1;14553:5;14549:13;14540:22;;14516:120;;;14456:186;;:::o;14648:543::-;14749:2;14744:3;14741:11;14738:446;;;14783:38;14815:5;14783:38;:::i;:::-;14867:29;14885:10;14867:29;:::i;:::-;14857:8;14853:44;15050:2;15038:10;15035:18;15032:49;;;15071:8;15056:23;;15032:49;15094:80;15150:22;15168:3;15150:22;:::i;:::-;15140:8;15136:37;15123:11;15094:80;:::i;:::-;14753:431;;14738:446;14648:543;;;:::o;15197:117::-;15251:8;15301:5;15295:4;15291:16;15270:37;;15197:117;;;;:::o;15320:169::-;15364:6;15397:51;15445:1;15441:6;15433:5;15430:1;15426:13;15397:51;:::i;:::-;15393:56;15478:4;15472;15468:15;15458:25;;15371:118;15320:169;;;;:::o;15494:295::-;15570:4;15716:29;15741:3;15735:4;15716:29;:::i;:::-;15708:37;;15778:3;15775:1;15771:11;15765:4;15762:21;15754:29;;15494:295;;;;:::o;15794:1395::-;15911:37;15944:3;15911:37;:::i;:::-;16013:18;16005:6;16002:30;15999:56;;;16035:18;;:::i;:::-;15999:56;16079:38;16111:4;16105:11;16079:38;:::i;:::-;16164:67;16224:6;16216;16210:4;16164:67;:::i;:::-;16258:1;16282:4;16269:17;;16314:2;16306:6;16303:14;16331:1;16326:618;;;;16988:1;17005:6;17002:77;;;17054:9;17049:3;17045:19;17039:26;17030:35;;17002:77;17105:67;17165:6;17158:5;17105:67;:::i;:::-;17099:4;17092:81;16961:222;16296:887;;16326:618;16378:4;16374:9;16366:6;16362:22;16412:37;16444:4;16412:37;:::i;:::-;16471:1;16485:208;16499:7;16496:1;16493:14;16485:208;;;16578:9;16573:3;16569:19;16563:26;16555:6;16548:42;16629:1;16621:6;16617:14;16607:24;;16676:2;16665:9;16661:18;16648:31;;16522:4;16519:1;16515:12;16510:17;;16485:208;;;16721:6;16712:7;16709:19;16706:179;;;16779:9;16774:3;16770:19;16764:26;16822:48;16864:4;16856:6;16852:17;16841:9;16822:48;:::i;:::-;16814:6;16807:64;16729:156;16706:179;16931:1;16927;16919:6;16915:14;16911:22;16905:4;16898:36;16333:611;;;16296:887;;15886:1303;;;15794:1395;;:::o;17195:180::-;17243:77;17240:1;17233:88;17340:4;17337:1;17330:15;17364:4;17361:1;17354:15;17381:194;17421:4;17441:20;17459:1;17441:20;:::i;:::-;17436:25;;17475:20;17493:1;17475:20;:::i;:::-;17470:25;;17519:1;17516;17512:9;17504:17;;17543:1;17537:4;17534:11;17531:37;;;17548:18;;:::i;:::-;17531:37;17381:194;;;;:::o;17581:180::-;17629:77;17626:1;17619:88;17726:4;17723:1;17716:15;17750:4;17747:1;17740:15;17767:180;17815:77;17812:1;17805:88;17912:4;17909:1;17902:15;17936:4;17933:1;17926:15;17953:168;18036:11;18070:6;18065:3;18058:19;18110:4;18105:3;18101:14;18086:29;;17953:168;;;;:::o;18127:114::-;;:::o;18247:362::-;18388:3;18409:65;18472:1;18467:3;18409:65;:::i;:::-;18402:72;;18483:93;18572:3;18483:93;:::i;:::-;18601:1;18596:3;18592:11;18585:18;;18247:362;;;:::o;18615:748::-;18864:4;18902:3;18891:9;18887:19;18879:27;;18916:71;18984:1;18973:9;18969:17;18960:6;18916:71;:::i;:::-;18997:72;19065:2;19054:9;19050:18;19041:6;18997:72;:::i;:::-;19079;19147:2;19136:9;19132:18;19123:6;19079:72;:::i;:::-;19198:9;19192:4;19188:20;19183:2;19172:9;19168:18;19161:48;19226:130;19351:4;19226:130;:::i;:::-;19218:138;;18615:748;;;;;;:::o;19369:149::-;19405:7;19445:66;19438:5;19434:78;19423:89;;19369:149;;;:::o;19524:120::-;19596:23;19613:5;19596:23;:::i;:::-;19589:5;19586:34;19576:62;;19634:1;19631;19624:12;19576:62;19524:120;:::o;19650:141::-;19706:5;19737:6;19731:13;19722:22;;19753:32;19779:5;19753:32;:::i;:::-;19650:141;;;;:::o;19797:349::-;19866:6;19915:2;19903:9;19894:7;19890:23;19886:32;19883:119;;;19921:79;;:::i;:::-;19883:119;20041:1;20066:63;20121:7;20112:6;20101:9;20097:22;20066:63;:::i;:::-;20056:73;;20012:127;19797:349;;;;:::o;20174:314::-;20270:3;20291:70;20354:6;20349:3;20291:70;:::i;:::-;20284:77;;20371:56;20420:6;20415:3;20408:5;20371:56;:::i;:::-;20452:29;20474:6;20452:29;:::i;:::-;20447:3;20443:39;20436:46;;20174:314;;;;;:::o;20494:660::-;20699:4;20737:3;20726:9;20722:19;20714:27;;20751:71;20819:1;20808:9;20804:17;20795:6;20751:71;:::i;:::-;20832:72;20900:2;20889:9;20885:18;20876:6;20832:72;:::i;:::-;20914;20982:2;20971:9;20967:18;20958:6;20914:72;:::i;:::-;21033:9;21027:4;21023:20;21018:2;21007:9;21003:18;20996:48;21061:86;21142:4;21133:6;21125;21061:86;:::i;:::-;21053:94;;20494:660;;;;;;;;:::o;21160:148::-;21262:11;21299:3;21284:18;;21160:148;;;;:::o;21338:874::-;21441:3;21478:5;21472:12;21507:36;21533:9;21507:36;:::i;:::-;21559:89;21641:6;21636:3;21559:89;:::i;:::-;21552:96;;21679:1;21668:9;21664:17;21695:1;21690:166;;;;21870:1;21865:341;;;;21657:549;;21690:166;21774:4;21770:9;21759;21755:25;21750:3;21743:38;21836:6;21829:14;21822:22;21814:6;21810:35;21805:3;21801:45;21794:52;;21690:166;;21865:341;21932:38;21964:5;21932:38;:::i;:::-;21992:1;22006:154;22020:6;22017:1;22014:13;22006:154;;;22094:7;22088:14;22084:1;22079:3;22075:11;22068:35;22144:1;22135:7;22131:15;22120:26;;22042:4;22039:1;22035:12;22030:17;;22006:154;;;22189:6;22184:3;22180:16;22173:23;;21872:334;;21657:549;;21445:767;;21338:874;;;;:::o;22218:390::-;22324:3;22352:39;22385:5;22352:39;:::i;:::-;22407:89;22489:6;22484:3;22407:89;:::i;:::-;22400:96;;22505:65;22563:6;22558:3;22551:4;22544:5;22540:16;22505:65;:::i;:::-;22595:6;22590:3;22586:16;22579:23;;22328:280;22218:390;;;;:::o;22614:429::-;22791:3;22813:92;22901:3;22892:6;22813:92;:::i;:::-;22806:99;;22922:95;23013:3;23004:6;22922:95;:::i;:::-;22915:102;;23034:3;23027:10;;22614:429;;;;;:::o;23049:79::-;23088:7;23117:5;23106:16;;23049:79;;;:::o;23134:157::-;23239:45;23259:24;23277:5;23259:24;:::i;:::-;23239:45;:::i;:::-;23234:3;23227:58;23134:157;;:::o;23297:256::-;23409:3;23424:75;23495:3;23486:6;23424:75;:::i;:::-;23524:2;23519:3;23515:12;23508:19;;23544:3;23537:10;;23297:256;;;;:::o;23559:242::-;23728:66;23723:3;23716:79;23559:242;:::o;23807:542::-;24030:3;24045:138;24179:3;24045:138;:::i;:::-;24208:2;24203:3;24199:12;24192:19;;24228:95;24319:3;24310:6;24228:95;:::i;:::-;24221:102;;24340:3;24333:10;;23807:542;;;;:::o;24355:485::-;24495:66;24491:1;24483:6;24479:14;24472:90;24596:34;24591:2;24583:6;24579:15;24572:59;24665:66;24660:2;24652:6;24648:15;24641:91;24766:66;24761:2;24753:6;24749:15;24742:91;24355:485;:::o;24846:404::-;25006:3;25027:86;25109:3;25104;25027:86;:::i;:::-;25020:93;;25122;25211:3;25122:93;:::i;:::-;25240:3;25235;25231:13;25224:20;;24846:404;;;:::o;25256:541::-;25489:3;25511:95;25602:3;25593:6;25511:95;:::i;:::-;25504:102;;25623:148;25767:3;25623:148;:::i;:::-;25616:155;;25788:3;25781:10;;25256:541;;;;:::o;25803:435::-;25983:3;26005:95;26096:3;26087:6;26005:95;:::i;:::-;25998:102;;26117:95;26208:3;26199:6;26117:95;:::i;:::-;26110:102;;26229:3;26222:10;;25803:435;;;;;:::o;26244:315::-;26384:66;26380:1;26372:6;26368:14;26361:90;26485:66;26480:2;26472:6;26468:15;26461:91;26244:315;:::o;26565:402::-;26725:3;26746:85;26828:2;26823:3;26746:85;:::i;:::-;26739:92;;26840:93;26929:3;26840:93;:::i;:::-;26958:2;26953:3;26949:12;26942:19;;26565:402;;;:::o;26973:541::-;27206:3;27228:148;27372:3;27228:148;:::i;:::-;27221:155;;27393:95;27484:3;27475:6;27393:95;:::i;:::-;27386:102;;27505:3;27498:10;;26973:541;;;;:::o;27520:205::-;27689:29;27684:3;27677:42;27520:205;:::o;27731:542::-;27954:3;27969:138;28103:3;27969:138;:::i;:::-;28132:2;28127:3;28123:12;28116:19;;28152:95;28243:3;28234:6;28152:95;:::i;:::-;28145:102;;28264:3;28257:10;;27731:542;;;;:::o;28279:102::-;28321:8;28368:5;28365:1;28361:13;28340:34;;28279:102;;;:::o;28387:848::-;28448:5;28455:4;28479:6;28470:15;;28503:5;28494:14;;28517:712;28538:1;28528:8;28525:15;28517:712;;;28633:4;28628:3;28624:14;28618:4;28615:24;28612:50;;;28642:18;;:::i;:::-;28612:50;28692:1;28682:8;28678:16;28675:451;;;29107:4;29100:5;29096:16;29087:25;;28675:451;29157:4;29151;29147:15;29139:23;;29187:32;29210:8;29187:32;:::i;:::-;29175:44;;28517:712;;;28387:848;;;;;;;:::o;29241:1073::-;29295:5;29486:8;29476:40;;29507:1;29498:10;;29509:5;;29476:40;29535:4;29525:36;;29552:1;29543:10;;29554:5;;29525:36;29621:4;29669:1;29664:27;;;;29705:1;29700:191;;;;29614:277;;29664:27;29682:1;29673:10;;29684:5;;;29700:191;29745:3;29735:8;29732:17;29729:43;;;29752:18;;:::i;:::-;29729:43;29801:8;29798:1;29794:16;29785:25;;29836:3;29829:5;29826:14;29823:40;;;29843:18;;:::i;:::-;29823:40;29876:5;;;29614:277;;30000:2;29990:8;29987:16;29981:3;29975:4;29972:13;29968:36;29950:2;29940:8;29937:16;29932:2;29926:4;29923:12;29919:35;29903:111;29900:246;;;30056:8;30050:4;30046:19;30037:28;;30091:3;30084:5;30081:14;30078:40;;;30098:18;;:::i;:::-;30078:40;30131:5;;29900:246;30171:42;30209:3;30199:8;30193:4;30190:1;30171:42;:::i;:::-;30156:57;;;;30245:4;30240:3;30236:14;30229:5;30226:25;30223:51;;;30254:18;;:::i;:::-;30223:51;30303:4;30296:5;30292:16;30283:25;;29241:1073;;;;;;:::o;30320:281::-;30378:5;30402:23;30420:4;30402:23;:::i;:::-;30394:31;;30446:25;30462:8;30446:25;:::i;:::-;30434:37;;30490:104;30527:66;30517:8;30511:4;30490:104;:::i;:::-;30481:113;;30320:281;;;;:::o;30607:180::-;30655:77;30652:1;30645:88;30752:4;30749:1;30742:15;30776:4;30773:1;30766:15;30793:185;30833:1;30850:20;30868:1;30850:20;:::i;:::-;30845:25;;30884:20;30902:1;30884:20;:::i;:::-;30879:25;;30923:1;30913:35;;30928:18;;:::i;:::-;30913:35;30970:1;30967;30963:9;30958:14;;30793:185;;;;:::o

Swarm Source

ipfs://2fc7627bb3209b674d219c8434bd71f2f47a5a78ffeed0415ee14456a4d3d064

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  ]

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.